From 6693186d404b3ea965ed4c3982726200d0f4f4d2 Mon Sep 17 00:00:00 2001 From: tmddn3070 Date: Sun, 17 Mar 2024 09:42:36 +0900 Subject: [PATCH] FEAT: Inital commit This Commit Contained Rebrand Patches --- .gitignore | 3 +- Christmas/Cogs/Commands_Aiart.py | 82 - Christmas/Cogs/Commands_Mail.py | 57 - Christmas/Cogs/Commands_Music.py | 88 - Christmas/Database/__init__.py | 137 - Christmas/SearchEngine/Snowball.py | 16 - Christmas/SearchEngine/__init__.py | 15 - Christmas/__main__.py | 24 - Christmas/config.py | 62 - Christmas/discord.py | 57 - Dockerfile | 32 +- LICENSE | 97 +- README.md | 34 +- RUNA/Cogs/Commands_Aiart.py | 114 + {Christmas => RUNA}/Cogs/Commands_Util.py | 115 +- {Christmas => RUNA}/Cogs/Event.py | 141 +- RUNA/Database/MeiliSearch/__init__.py | 19 + RUNA/Database/Mongo/__init__.py | 18 + RUNA/Database/Mongo/guild.py | 0 RUNA/Database/__init__.py | 0 RUNA/Enum.py | 16 + {Christmas => RUNA}/Module.py | 406 +- RUNA/Modules/Exception.py | 42 + RUNA/Modules/Logging.py | 20 + .../Modules}/Tagging/__init__.py | 211 +- .../Modules}/Tagging/model.onnx | Bin {Christmas => RUNA/Modules}/Tagging/tags.csv | 18166 ++++++++-------- {Christmas => RUNA}/UI/AutoComplete.py | 30 +- {Christmas => RUNA}/UI/Buttons.py | 154 +- {Christmas => RUNA}/UI/Embed.py | 766 +- {Christmas => RUNA}/UI/Modal.py | 169 +- {Christmas => RUNA}/UI/Paginator.py | 122 +- {Christmas => RUNA}/__init__.py | 8 +- RUNA/__main__.py | 24 + RUNA/discord.py | 55 + pyproject.toml | 33 + 36 files changed, 10565 insertions(+), 10768 deletions(-) delete mode 100644 Christmas/Cogs/Commands_Aiart.py delete mode 100644 Christmas/Cogs/Commands_Mail.py delete mode 100644 Christmas/Cogs/Commands_Music.py delete mode 100644 Christmas/Database/__init__.py delete mode 100644 Christmas/SearchEngine/Snowball.py delete mode 100644 Christmas/SearchEngine/__init__.py delete mode 100644 Christmas/__main__.py delete mode 100644 Christmas/config.py delete mode 100644 Christmas/discord.py create mode 100644 RUNA/Cogs/Commands_Aiart.py rename {Christmas => RUNA}/Cogs/Commands_Util.py (66%) rename {Christmas => RUNA}/Cogs/Event.py (67%) create mode 100644 RUNA/Database/MeiliSearch/__init__.py create mode 100644 RUNA/Database/Mongo/__init__.py create mode 100644 RUNA/Database/Mongo/guild.py create mode 100644 RUNA/Database/__init__.py create mode 100644 RUNA/Enum.py rename {Christmas => RUNA}/Module.py (95%) create mode 100644 RUNA/Modules/Exception.py create mode 100644 RUNA/Modules/Logging.py rename {Christmas => RUNA/Modules}/Tagging/__init__.py (86%) rename {Christmas => RUNA/Modules}/Tagging/model.onnx (100%) rename {Christmas => RUNA/Modules}/Tagging/tags.csv (96%) rename {Christmas => RUNA}/UI/AutoComplete.py (81%) rename {Christmas => RUNA}/UI/Buttons.py (87%) rename {Christmas => RUNA}/UI/Embed.py (82%) rename {Christmas => RUNA}/UI/Modal.py (88%) rename {Christmas => RUNA}/UI/Paginator.py (93%) rename {Christmas => RUNA}/__init__.py (50%) create mode 100644 RUNA/__main__.py create mode 100644 RUNA/discord.py create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore index 5c43620..140eaf8 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ __pycache__/ # C extensions *.so +.idea # Distribution / packaging .Python @@ -159,5 +160,3 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ - -Christmas/config.json diff --git a/Christmas/Cogs/Commands_Aiart.py b/Christmas/Cogs/Commands_Aiart.py deleted file mode 100644 index b403a48..0000000 --- a/Christmas/Cogs/Commands_Aiart.py +++ /dev/null @@ -1,82 +0,0 @@ -import io -from discord import SlashCommandGroup, Option, Member, Color, File, Attachment -from discord.ext.commands import Cog, BucketType, cooldown, guild_only, Context -from Christmas.Database import database -from Christmas.UI.Embed import ChristmasEmbed, Aiart_Embed -from Christmas.UI.Modal import Aiart -from Christmas.Tagging import Tagging -from Christmas.Cogs.Event import model -class CAiart(Cog): - def __init__(self, bot): - self.bot = bot - - - ART = SlashCommandGroup("그림", "그림 기능") - - @ART.command(name="생성", description="크돌이가 그림을 그려줍니다.") - @cooldown(1, 10, BucketType.user) - async def _생성(self, ctx, ress: Option(str, name="해상도",description="그림의 해상도를 입력해주세요. (기본값: 512x512)", required=False, choices=["1:1", "2:3", "7:4","3:4"], default="1:1"), - shows: Option(str, name="보기여부",description="생성된 그림을 나를 제외한 사람한테 보여줄지 말지를 지정합니다.", choices=["보여주기","보여주지 말기"],required=False, default="보여주기"), - style1: Option(float, name="디테일표현",description="그림의 디테일정도를 지정합니다. -1에 가까울수록 단순한 그림이 나오고 1에 가까울수록 높은 디테일을 구현 합니다.", required=False, min_value=-1,max_value=1, default=0), - style2: Option(float, name="광선표현", description="그림의 광선 디테일 정도를 지정합니다. 0.8에 가까울수록 더 부드럽고 좋은 광선표현을 하지만 그림의 디테일이 떨어지거나 캐릭터일 경우 손이 제대로 생성되지 않을수 있습니다.", required=False, min_value=0,max_value=0.8, default=0), - highquality: Option(str, name="고퀄리티모드", description="그림을 뽑을때 고퀄리티 모드를 사용할지 정합니다. 고퀄리티 모드는 크돌이의 추천 이후 얻는 아트포인트로 사용할수 있습니다.", required=False, choices=["사용하기", "사용하지 않기"], default="사용하지 않기") - ): - if ctx.guild is not None and not await database.get_guild(ctx.guild.id): return await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description="서버가 가입되어있지 않아요! 서버를 가입해주세요!", color=Color.red()),ephemeral=True) - nsfw = False - if highquality == "사용하기": afterprocess = True - else: afterprocess = False - if ctx.channel.is_nsfw(): - nsfw = True - else: - nsfw = False - if shows == "보여주기": shows = False - else: shows = True - if ress == "1:1": resoultion = [512,512] - elif ress == "2:3": resoultion = [512,768] - elif ress == "7:4": resoultion = [896,512] - elif ress == "3:4": resoultion = [600,800] - await database.put_use_art(ctx.guild.id) - if afterprocess == True: - result = await database.use_guild_art_point(ctx.guild.id) - if result is False: return await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description="아트포인트가 부족해요! 아트포인트를 충전해주세요! 아트포인트는 ``/추천``명령어를 통해 충전 가능해요!", color=Color.red()),ephemeral=True) - # allownsfw: bool, res: list, style1: float, style2: float, afterprocess: float - modal = Aiart(title="태그를 입력해주세요",allownsfw=nsfw, res=resoultion, style1=style1, style2=style2, afterprocess=afterprocess, show=shows) - await ctx.send_modal(modal) - - @ART.command(name="분석", description="그림을 분석합니다.") - @cooldown(1, 10, BucketType.user) - @guild_only() - async def _분석(self, ctx: Context, file: Option(Attachment, name="파일", description="분석할 그림을 업로드해주세요.", required=True)): - await ctx.defer(ephemeral=False) - if ctx.guild is not None and not await database.get_guild(ctx.guild.id): return await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description="서버가 가입되어있지 않아요! 서버를 가입해주세요!", color=Color.red()),ephemeral=True) - if not file.content_type.startswith("image/"): return await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description="그림 파일만 업로드해주세요!", color=Color.red()),ephemeral=True) - buffer = await file.read() - taging = Tagging(model=model) - tag = await taging.predict(buffer) - rating = tag[2] - tags = tag[4] - hangul = { - "general": "건전함", - "sensitive": "매우조금 불건전", - "questionable": "조금 불건전", - "explicit": "매우 불건전" - } - ratings = max(rating, key=rating.get) - rating = hangul[ratings] - sorted_tags = sorted(tags.items(), key=lambda x: x[1], reverse=True)[:8] - # UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte - await ctx.respond(embed=Aiart_Embed.evalate(sorted_tags, rating), ephemeral=False, file=File(fp=io.BytesIO(buffer), filename="image.png")) - - @ART.command(name="포인트", description="아트포인트를 확인합니다.") - @cooldown(1, 10, BucketType.user) - @guild_only() - async def _포인트(self, ctx: Context): - await ctx.defer(ephemeral=False) - if ctx.guild is not None and not await database.get_guild(ctx.guild.id): return await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description="서버가 가입되어있지 않아요! 서버를 가입해주세요!", color=Color.red()),ephemeral=True) - point = await database.get_guild_art_point(ctx.guild.id) - use = await database.get_use_art(ctx.guild.id) - await ctx.respond(embed=ChristmasEmbed(title="🎨 아트포인트", description=f"현재 서버의 아트포인트는 {point}개에요!\n 이서버에서는 그림 기능을 {use}번 사용했어요! ", color=Color.green()), ephemeral=False) - - -def setup(bot): - bot.add_cog(CAiart(bot)) \ No newline at end of file diff --git a/Christmas/Cogs/Commands_Mail.py b/Christmas/Cogs/Commands_Mail.py deleted file mode 100644 index 3de3b66..0000000 --- a/Christmas/Cogs/Commands_Mail.py +++ /dev/null @@ -1,57 +0,0 @@ -import pendulum - -from discord import Member, SlashCommandGroup, Option, Color -from discord.ext.commands import Cog, cooldown, BucketType, command, has_permissions, bot_has_permissions, Context, guild_only, bot_has_guild_permissions, check - -from Christmas.UI.Modal import Send_Mail_Modal -from Christmas.UI.Embed import Mail_Embed, ChristmasEmbed -from Christmas.Database import database -from Christmas.UI.Paginator import Mail_Paginator -class CMail(Cog): - def __init__(self, bot): - self.bot = bot - - MAIL = SlashCommandGroup(name="편지", description="편지를 보내거나 확인합니다.") - - @MAIL.command(name="보내기", description="편지를 보냅니다.") - @cooldown(1, 10, BucketType.user) - @guild_only() - async def _send(self, ctx: Context, member: Option(Member, name="보낼사람", description="편지를 받을 사람을 선택해주세요.", required=True)): - christmas = pendulum.datetime(2023, 12, 25, 0, 0, 0) - if pendulum.now() > christmas: - await ctx.respond("이미 편지를 보낼수 있는 기간이 지났어요! 받은 편지가 있다면 확인해보세요!", ephemeral=True) - return - if ctx.author == member: return await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description="자기 자신에게 편지를 보낼수 없어요!", color=Color.red()),ephemeral=True) - if await database.get_mail_user(member.id, ctx.author.id): - if await database.get_instered_mail_edited(member.id, ctx.author.id): - await ctx.respond(embed=Mail_Embed.mail_cant_edit(), ephemeral=True) - return - else: - modal = Send_Mail_Modal(reciveuser=member, editmode=True, title="편지 수정하기") - await ctx.send_modal(modal) - return - else: - modal = Send_Mail_Modal(editmode=False, reciveuser=member, title="편지 보내기") - await ctx.send_modal(modal) - - @MAIL.command(name="확인", description="받은 편지를 확인합니다.") - @cooldown(1, 10, BucketType.user) - async def _check(self, ctx: Context): - #2023년 12월 25일 00시 00분 00초 이후부터 확인 가능 - christmas = pendulum.datetime(2023, 12, 25, 0, 0, 0) - if pendulum.now() < christmas: - await ctx.respond("아직 편지를 확인할수 있는 기간이 아니에요! 조금만 기다려주세요!", ephemeral=True) - return - mails = await database.get_mail(ctx.author.id) - if mails == None: - await ctx.respond(embed=Mail_Embed.mail_notfound(), ephemeral=True) - return - else: - mails = mails["mails"] - embeds = [] - for data in mails: - embeds.append(Mail_Embed.mail_page(data)) - paginator = Mail_Paginator(embeds=embeds, senduser=ctx.author, timeout=None) - await ctx.respond(embed=embeds[0], view=paginator, ephemeral=True) -def setup(bot): - bot.add_cog(CMail(bot)) \ No newline at end of file diff --git a/Christmas/Cogs/Commands_Music.py b/Christmas/Cogs/Commands_Music.py deleted file mode 100644 index b0fc0fd..0000000 --- a/Christmas/Cogs/Commands_Music.py +++ /dev/null @@ -1,88 +0,0 @@ -from discord.utils import basic_autocomplete -from discord import Member, SlashCommandGroup, Option, AutocompleteContext, Color -from discord.ext.commands import Cog, cooldown, BucketType, command, has_permissions, bot_has_permissions, Context, guild_only, bot_has_guild_permissions, check -import wavelink -import random -import pendulum -from Christmas.Database import database -from Christmas.UI.Embed import Music_Embed, ChristmasEmbed -from Christmas.config import ChristmasConfig - -class CMusic(Cog): - def __init__(self, bot): - self.bot = bot - self.config = ChristmasConfig() - - MUSIC = SlashCommandGroup(name="음악", description="음악을 재생합니다.") - # - @MUSIC.command(name="재생", description="LOFI 음악을 재생합니다.") - @cooldown(1, 10, BucketType.user) - @guild_only() - async def _play(self, ctx: Context): - if not await database.get_guild(ctx.guild.id): return await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description="서버가 가입되어있지 않아요! 서버를 가입해주세요!", color=Color.red()),ephemeral=True) - await ctx.defer() - get_guild = await database.get_guild(ctx.guild.id) - if not get_guild["music"] == True: return await ctx.respond(embed=Music_Embed.music_notenable()) - if get_guild["admin_run"] == True: - if not ctx.author.guild_permissions.administrator: return await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description="관리자만 사용할수 있는 명령어에요!", color=Color.red()),ephemeral=True) - if ctx.author.voice == None or ctx.author.voice.channel == None: return await ctx.respond(embed=Music_Embed.author_not_voice()) - player = None - node = wavelink.Pool.get_node() - if node.get_player(ctx.guild.id) == None: - player = await ctx.author.voice.channel.connect(cls=wavelink.Player) - else: - player = node.get_player(ctx.guild.id) - try: - query = None - if pendulum.now() > pendulum.datetime(2023, 12, 24, 12, 0, 0): - query = await wavelink.Playable.search(self.config.CHRISTMAS, source=wavelink.TrackSource.YouTube) - else: - query = await wavelink.Playable.search(random.choice(self.config.LOFI), source=wavelink.TrackSource.YouTube) - await player.play(query[0]) - await ctx.respond(embed=Music_Embed.music_play()) - except Exception as e: - print(e) - - - @MUSIC.command(name="정지", description="음악을 정지합니다.") - @cooldown(1, 10, BucketType.user) - @guild_only() - async def _stop(self, ctx: Context): - if not await database.get_guild(ctx.guild.id): return await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description="서버가 가입되어있지 않아요! 서버를 가입해주세요!", color=Color.red()),ephemeral=True) - await ctx.defer() - get_guild = await database.get_guild(ctx.guild.id) - if not get_guild["music"] == True: return await ctx.respond(embed=Music_Embed.music_notenable()) - if get_guild["admin_run"] == True: - if not ctx.author.guild_permissions.administrator: return await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description="관리자만 사용할수 있는 명령어에요!", color=Color.red()),ephemeral=True) - if ctx.author.voice == None or ctx.author.voice.channel == None: return await ctx.respond(embed=Music_Embed.author_not_voice()) - node = wavelink.Pool.get_node() - player = node.get_player(ctx.guild.id) - if player == None: return await ctx.respond(embed=Music_Embed.music_not_playing(), ephemeral=True) - await player.stop() - # 음악 채널에서 나감 - await player.disconnect() - await ctx.respond(embed=Music_Embed.music_stop()) - - @MUSIC.command(name="설정", description="음악 설정을 변경합니다.") - @cooldown(1, 10, BucketType.user) - @guild_only() - async def _setting(self, ctx: Context, setting: Option(str, name="설정", description="설정할 항목을 선택해주세요!", choices=["음악 활성화", "관리자만 재생 가능"], required=True), value: Option(str, name="값", description="설정할 값을 선택해주세요!", choices=["켜기", "끄기"], required=True)): - if not await database.get_guild(ctx.guild.id): return await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description="서버가 가입되어있지 않아요! 서버를 가입해주세요!", color=Color.red()),ephemeral=True) - await ctx.defer() - if not ctx.author.guild_permissions.administrator: return await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description="관리자만 사용할수 있는 명령어에요!", color=Color.red()),ephemeral=True) - if setting == "관리자만 재생 가능": - if value == "켜기": - await database.update_music_setting(ctx.guild.id, True, "admin_run") - await ctx.respond(embed=Music_Embed.music_setting(True, "admin_run"), ephemeral=True) - else: - await database.update_music_setting(ctx.guild.id, False, "admin_run") - await ctx.respond(embed=Music_Embed.music_setting(False, "admin_run"), ephemeral=True) - if setting == "음악 활성화": - if value == "켜기": - await database.update_music_setting(ctx.guild.id, True, "music") - await ctx.respond(embed=Music_Embed.music_setting(True, "music"), ephemeral=True) - else: - await database.update_music_setting(ctx.guild.id, False, "music") - await ctx.respond(embed=Music_Embed.music_setting(False, "music"), ephemeral=True) -def setup(bot): - bot.add_cog(CMusic(bot)) \ No newline at end of file diff --git a/Christmas/Database/__init__.py b/Christmas/Database/__init__.py deleted file mode 100644 index d78c145..0000000 --- a/Christmas/Database/__init__.py +++ /dev/null @@ -1,137 +0,0 @@ -from motor.motor_asyncio import AsyncIOMotorClient - -from Christmas.config import ChristmasConfig - -class MongoDBClient: - def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs) - self.config = ChristmasConfig() - self.client = AsyncIOMotorClient(self.config.DATABASE["HOST"], int(self.config.DATABASE["PORT"]), username=self.config.DATABASE["USERNAME"], password=self.config.DATABASE["PASSWORD"])[self.config.DATABASE["DATABASE"]] - - async def connect(self): - return self.client - -class database: - - async def get_guild(guild_id: int) -> dict: - conn = await MongoDBClient().connect() - return await conn.guild.find_one({"_id": guild_id}) - - async def register_guild(guild_id: int) -> None: - conn = await MongoDBClient().connect() - await conn.guild.insert_one({"_id": guild_id, "admin_run": False, "music": True}) - - async def leave_guild(guild_id: int) -> None: - conn = await MongoDBClient().connect() - await conn.guild.delete_one({"_id": guild_id}) - - async def insert_mail(send_user_id: int, user_id: int, user_name: str, mail_title: str, mail_content: str): - try: - conn = await MongoDBClient().connect() - mail_title = f"""{mail_title}""" - mail_content = f"""{mail_content}""" - if await conn.mail.find_one({"_id": user_id}) == None: - await conn.mail.insert_one({"_id": user_id, "mails": [{"userid": send_user_id, "username": user_name, "title": mail_title, "content": mail_content, "edited": False}]}) - else: - result = await conn.mail.update_one({"_id": user_id}, {"$push": {"mails": {"userid": send_user_id, "username": user_name, "title": mail_title, "content": mail_content, "edited": False}}}) - print(result) - except Exception as e: - print(e) - - async def update_inserted_mail(send_user_id: int, user_id: int, mail_title: str, mail_content: str): - try: - conn = await MongoDBClient().connect() - await conn.mail.update_one({"_id": user_id, "mails.userid": send_user_id}, {"$set": {"mails.$.title": mail_title, "mails.$.content": mail_content, "mails.$.edited": True}}) - return True - except Exception as e: - print(e) - return None - - async def get_instered_mail_edited(send_user_id: int, user_id: int): - try: - conn = await MongoDBClient().connect() - data = await conn.mail.find_one({"_id": user_id}) - if data == None: return None - for mail in data["mails"]: - if mail["userid"] == send_user_id: - return mail["edited"] - except Exception as e: - print(e) - return None - - async def get_mail(user_id: int): - conn = await MongoDBClient().connect() - data = await conn.mail.find_one({"_id": user_id}) - if data == None: return None - return data - - async def get_mail_user(one_user_id: int, two_user_id: int): - conn = await MongoDBClient().connect() - data = await conn.mail.find_one({"_id": one_user_id}) - if data == None: return False - for mail in data["mails"]: - if mail["userid"] == two_user_id: - return True - - async def register_arcade(guild_id: int, guild_name: str, region): - conn = await MongoDBClient().connect() - await conn.arcade.insert_one({"_id": guild_id, "guild_name": guild_name, "region": region, "normal_snowball": 10000}) - - async def update_guild_name(guild_id: int, guild_name: str): - conn = await MongoDBClient().connect() - await conn.arcade.update_one({"_id": guild_id}, {"$set": {"guild_name": guild_name}}) - - async def get_arcade(guild_id: int): - conn = await MongoDBClient().connect() - return await conn.arcade.find_one({"_id": guild_id}) - - async def update_music_setting(guild_id: int, value: bool, setting: str): - conn = await MongoDBClient().connect() - if setting == "music": - await conn.guild.update_one({"_id": guild_id}, {"$set": {"music": value}}) - elif setting == "admin_run": - await conn.guild.update_one({"_id": guild_id}, {"$set": {"admin_run": value}}) - - async def insert_arcade_point(guild_id: int, user_id: int): - conn = await MongoDBClient().connect() - if await conn.arcadepre.find_one({"_id": guild_id}) == None: - await conn.arcadepre.insert_one({"_id": guild_id, "user": [{"_id": user_id, "point": 1}], "vote": 0}) - else: - await conn.arcadepre.update_one({"_id": guild_id}, {"$inc": {"user.$[elem].point": 1}}, array_filters=[{"elem._id": user_id}]) - - async def insert_guild_art_point(guild_id: int, amount: int): - conn = await MongoDBClient().connect() - if await conn.guild.find_one({"_id": guild_id}) == None: - await conn.guild.insert_one({"_id": guild_id, "art_point": 1}) - else: - await conn.guild.update_one({"_id": guild_id}, {"$inc": {"art_point": amount}}) - - async def use_guild_art_point(guild_id: int): - conn = await MongoDBClient().connect() - if await conn.guild.find_one({"_id": guild_id, "art_point": {"$gt": 0}}) == None: - return False - await conn.guild.update_one({"_id": guild_id}, {"$inc": {"art_point": -1}}) - return True - - async def get_guild_art_point(guild_id: int): - conn = await MongoDBClient().connect() - if await conn.guild.find_one({"_id": guild_id, "art_point": {"$exists": True}}) == None: - return 0 - else: - result = await conn.guild.find_one({"_id": guild_id}) - return result["art_point"] - - async def get_use_art(guild_id: int): - conn = await MongoDBClient().connect() - if await conn.guild.find_one({"_id": guild_id, "art": {"$exists": True}}) == None: - return 0 - else: - result = await conn.guild.find_one({"_id": guild_id}) - return result["art"] - - async def put_use_art(guild_id: int): - conn = await MongoDBClient().connect() - if await conn.guild.find_one({"_id": guild_id, "art": {"$exists": True}}) == None: - await conn.guild.update_one({"_id": guild_id}, {"$set": {"art": 1}}) - else: - await conn.guild.update_one({"_id": guild_id}, {"$inc": {"art": 1}}) \ No newline at end of file diff --git a/Christmas/SearchEngine/Snowball.py b/Christmas/SearchEngine/Snowball.py deleted file mode 100644 index eba7050..0000000 --- a/Christmas/SearchEngine/Snowball.py +++ /dev/null @@ -1,16 +0,0 @@ -from Christmas.SearchEngine import Search - - - -class Snowball: - - async def register_guild(guild_id: int, guild_name: str, region: str): - search = Search() - index = await search.connect() - await index.add_documents([{"guild_id": guild_id, "guild_name": guild_name, "region": region}]) - - async def query_guild(query: str): - search = Search() - index = await search.connect() - result = await index.search(query) - return result \ No newline at end of file diff --git a/Christmas/SearchEngine/__init__.py b/Christmas/SearchEngine/__init__.py deleted file mode 100644 index d271363..0000000 --- a/Christmas/SearchEngine/__init__.py +++ /dev/null @@ -1,15 +0,0 @@ -from meilisearch_python_sdk import AsyncClient as Client -from Christmas.config import ChristmasConfig - - -class Search: - def __init__(self): - self.config = ChristmasConfig() - - async def connect(self): - self.client = Client(self.config.SEARCH_ENGINE["HOST"], self.config.SEARCH_ENGINE["KEY"]) - self.index = self.client.index(self.config.SEARCH_ENGINE["INDEX"]) - return self.index - - async def close(self): - await self.client.aclose() \ No newline at end of file diff --git a/Christmas/__main__.py b/Christmas/__main__.py deleted file mode 100644 index 9decaa3..0000000 --- a/Christmas/__main__.py +++ /dev/null @@ -1,24 +0,0 @@ -import sentry_sdk - -from types import SimpleNamespace -from typing import Any, cast - -from discord import AutoShardedBot, Intents -from discord.ext import commands, tasks - -from Christmas.discord import Christmas, load_cogs, apply_uvloop, inital_sentry_sdk -from Christmas.config import ChristmasConfig -from koreanbots.integrations.discord import DiscordpyKoreanbots - -if __name__ == "__main__": - bot = Christmas( - command_prefix=commands.when_mentioned_or("c!"), - case_insensitive=True, - intents=Intents.default() - ) - config = ChristmasConfig() - DiscordpyKoreanbots(bot, config.KOREANBOT_TOKEN, run_task=True) - load_cogs(bot) - apply_uvloop() - inital_sentry_sdk(config.SENTRY_DSN) - bot.run() \ No newline at end of file diff --git a/Christmas/config.py b/Christmas/config.py deleted file mode 100644 index d8fd6fb..0000000 --- a/Christmas/config.py +++ /dev/null @@ -1,62 +0,0 @@ -import json - - -class ChristmasConfig: - def __init__(self): - self.json = json.load(open("Christmas/config.json", "r")) - - @property - def MODE(self): - return self.json["MODE"] - - @property - def TOKEN(self): - return self.json["TOKEN"] - - @property - def PREFIX(self): - return self.json["PREFIX"] - - @property - def OWNER(self): - return self.json["OWNER"] - - @property - def LOG_CHANNEL(self): - return self.json["LOG_CHANNEL"] - - @property - def OWN_GUILD(self): - return self.json["OWN_GUILD"] - - @property - def DATABASE(self): - return self.json["DATABASE"] - - @property - def LAVALINK(self): - return self.json["LAVALINKS"] - - @property - def AI(self): - return self.json["AI_GATEWAY"] - - @property - def LOFI(self): - return self.json["LOFI"] - - @property - def CHRISTMAS(self): - return self.json["CHRISTMAS"] - - @property - def SEARCH_ENGINE(self): - return self.json["SEARCH_ENGINE"] - - @property - def KOREANBOT_TOKEN(self): - return self.json["KOREANBOT_TOKEN"] - - @property - def SENTRY_DSN(self): - return self.json["SENTRY_DSN"] \ No newline at end of file diff --git a/Christmas/discord.py b/Christmas/discord.py deleted file mode 100644 index 915d4dd..0000000 --- a/Christmas/discord.py +++ /dev/null @@ -1,57 +0,0 @@ -import os -import sentry_sdk -import asyncio -import logging -from sentry_sdk.integrations.asyncio import AsyncioIntegration -from sentry_sdk.integrations.logging import LoggingIntegration - -from types import SimpleNamespace -from typing import Any, cast - -from discord import AutoShardedBot -from discord.ext import commands, tasks - -from Christmas.config import ChristmasConfig - -class Christmas(AutoShardedBot): - def __init__(self, *args: Any, **kwargs: Any): - super().__init__(*args, **kwargs) - self.config = ChristmasConfig() - #self.debug_guilds = [1090621667778244638,1015236495910649926,957142859629342790,1125370139165081612,1170310470503247993] - - def run(self, *args: Any, **kwargs: Any) -> None: - kwargs.update({"token": self.config.TOKEN}) - super().run(*args, **kwargs) - - -def load_cogs(bot: AutoShardedBot) -> None: - for filename in os.listdir("Christmas/Cogs"): - if filename.endswith(".py"): - bot.load_extension(f"Christmas.Cogs.{filename[:-3]}") - - -def apply_uvloop() -> None: - try: - import uvloop - import asyncio - except ImportError: - pass - else: - uvloop.install() - asyncio.set_event_loop_policy(uvloop.EventLoopPolicy()) - -def inital_sentry_sdk(dsn: str) -> None: - logger = logging.getLogger('discord') - logger.setLevel(logging.DEBUG) - handler = logging.FileHandler(filename='discord.log', encoding='utf-8', mode='w') - handler.setFormatter(logging.Formatter('%(asctime)s:%(levelname)s:%(name)s: %(message)s')) - logger.addHandler(handler) - sentry_logging = LoggingIntegration( - level=logging.WARNING, - event_level=logging.ERROR - ) - sentry_sdk.init( - dsn=dsn, - integrations=[sentry_logging, AsyncioIntegration()] - ) - print("inital sentry_sdk") \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index dd38a27..cb5bb6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,28 @@ -FROM python:3.11.5-slim +FROM python:3.12.2-slim-bookworm -WORKDIR /app +ENV PYTHONFAULTHANDLER=1 \ + PYTHONUNBUFFERED=1 \ + PYTHONHASHSEED=random \ + PIP_NO_CACHE_DIR=off \ + PIP_DISABLE_PIP_VERSION_CHECK=on \ + PIP_DEFAULT_TIMEOUT=100 \ + POETRY_NO_INTERACTION=1 \ + POETRY_VIRTUALENVS_CREATE=false \ + POETRY_CACHE_DIR='/var/cache/pypoetry' \ + POETRY_HOME='/usr/local' \ + POETRY_VERSION=1.7.1 -#COPY requirements.txt . -RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y -RUN pip install pandas py-cord koreanbots motor uvloop korcen nanoid pendulum Wavelink onnxruntime psutil meilisearch_python_sdk Pillow opencv-python aiogoogletrans sentry-sdk -RUN pip uninstall -y discord.py py-cord -RUN pip install --no-cache-dir py-cord[speed] py-cord[voice] +RUN apt-get update && apt-get install -y curl libgl1-mesa-glx libglib2.0-0 libsm6 libxrender1 libxext6 + +RUN curl -sSL https://install.python-poetry.org | python3 - RUN ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime -COPY . . -CMD ["python", "-m", "Christmas"] \ No newline at end of file +WORKDIR /app +COPY poetry.lock pyproject.toml /app/ + +RUN poetry install --no-interaction --no-ansi + +COPY . /app + +CMD ["python", "-m", "RUNA"] \ No newline at end of file diff --git a/LICENSE b/LICENSE index 78756b5..127a5bc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,80 +1,23 @@ -Eclipse Public License - v 2.0 -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE (“AGREEMENT”). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. +Boost Software License - Version 1.0 - August 17th, 2003 -1. DEFINITIONS -“Contribution” means: +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: -a) in the case of the initial Contributor, the initial content Distributed under this Agreement, and -b) in the case of each subsequent Contributor: -i) changes to the Program, and -ii) additions to the Program; -where such changes and/or additions to the Program originate from and are Distributed by that particular Contributor. A Contribution “originates” from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include changes or additions to the Program that are not Modified Works. -“Contributor” means any person or entity that Distributes the Program. +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. -“Licensed Patents” mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. - -“Program” means the Contributions Distributed in accordance with this Agreement. - -“Recipient” means anyone who receives the Program under this Agreement or any Secondary License (as applicable), including Contributors. - -“Derivative Works” shall mean any work, whether in Source Code or other form, that is based on (or derived from) the Program and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. - -“Modified Works” shall mean any work in Source Code or other form that results from an addition to, deletion from, or modification of the contents of the Program, including, for purposes of clarity any new file in Source Code form that contains any contents of the Program. Modified Works shall not include works that contain only declarations, interfaces, types, classes, structures, or files of the Program solely in each case in order to link to, bind by name, or subclass the Program or Modified Works thereof. - -“Distribute” means the acts of a) distributing or b) making available in any manner that enables the transfer of a copy. - -“Source Code” means the form of a Program preferred for making modifications, including but not limited to software source code, documentation source, and configuration files. - -“Secondary License” means either the GNU General Public License, Version 2.0, or any later versions of that license, including any exceptions or additional permissions as identified by the initial Contributor. - -2. GRANT OF RIGHTS -a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, Distribute and sublicense the Contribution of such Contributor, if any, and such Derivative Works. -b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in Source Code or other form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. -c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to Distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. -d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. -e) Notwithstanding the terms of any Secondary License, no Contributor makes additional grants to any Recipient (other than those set forth in this Agreement) as a result of such Recipient's receipt of the Program under the terms of a Secondary License (if permitted under the terms of Section 3). -3. REQUIREMENTS -3.1 If a Contributor Distributes the Program in any form, then: - -a) the Program must also be made available as Source Code, in accordance with section 3.2, and the Contributor must accompany the Program with a statement that the Source Code for the Program is available under this Agreement, and informs Recipients how to obtain it in a reasonable manner on or through a medium customarily used for software exchange; and -b) the Contributor may Distribute the Program under a license different than this Agreement, provided that such license: -i) effectively disclaims on behalf of all other Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; -ii) effectively excludes on behalf of all other Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; -iii) does not attempt to limit or alter the recipients' rights in the Source Code under section 3.2; and -iv) requires any subsequent distribution of the Program by any party to be under a license that satisfies the requirements of this section 3. -3.2 When the Program is Distributed as Source Code: - -a) it must be made available under this Agreement, or if the Program (i) is combined with other material in a separate file or files made available under a Secondary License, and (ii) the initial Contributor attached to the Source Code the notice described in Exhibit A of this Agreement, then the Program may be made available under the terms of such Secondary Licenses, and -b) a copy of this Agreement must be included with each copy of the Program. -3.3 Contributors may not remove or alter any copyright, patent, trademark, attribution notices, disclaimers of warranty, or limitations of liability (‘notices’) contained within the Program from any copy of the Program which they Distribute, provided that Contributors may add their own appropriate notices. - -4. COMMERCIAL DISTRIBUTION -Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor (“Commercial Contributor”) hereby agrees to defend and indemnify every other Contributor (“Indemnified Contributor”) against any losses, damages and costs (collectively “Losses”) arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. - -For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. - -5. NO WARRANTY -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. - -6. DISCLAIMER OF LIABILITY -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. GENERAL -If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. - -If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. - -All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. - -Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be Distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to Distribute the Program (including its Contributions) under the new version. - -Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. Nothing in this Agreement is intended to be enforceable by any entity that is not a Contributor or Recipient. No third-party beneficiary rights are created under this Agreement. - -Exhibit A – Form of Secondary Licenses Notice -“This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License, v. 2.0 are satisfied: {name license(s), version(s), and exceptions or additional permissions here}.” - -Simply including a copy of this Agreement, including this Exhibit A is not sufficient to license the Source Code under Secondary Licenses. - -If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md index 62dc282..ea8bdeb 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,33 @@ -# Ce-dol-e +# Runa Bot -크리스마스 기념 봇 \ No newline at end of file + + + + + +## Usage + +### Install +```bash +poetry install +``` + +### Run +```bash +poetry run python -m RUNA +``` + +### Docker Build +```bash +docker build -t runa:latest . +``` + +### Docker Run + +```bash +docker run -d --name runa runa:latest --restart=unless-stopped -e TOKEN="pmababo" -e KOREANBOT_TOKEN="test" -e OWNER_GUILD="1234567890" -e MONGODB_HOST="localhost" -e MONGODB_PORT="27017" -e MONGODB_ID="runa" -e MONGODB_PASSWORD="runa" -e MONGODB_DATABSE="runa" +``` + +## License +[BSL-1.0](https://opensource.org/licenses/BSL-1.0) +``` \ No newline at end of file diff --git a/RUNA/Cogs/Commands_Aiart.py b/RUNA/Cogs/Commands_Aiart.py new file mode 100644 index 0000000..352b9df --- /dev/null +++ b/RUNA/Cogs/Commands_Aiart.py @@ -0,0 +1,114 @@ +import io +from discord import SlashCommandGroup, Option, Member, Color, File, Attachment +from discord.ext.commands import Cog, BucketType, cooldown, guild_only, Context +from RUNA.Database import database +from RUNA.UI.Embed import RunaEmbed, Aiart_Embed +from RUNA.UI.Modal import Aiart +from RUNA.Tagging import Tagging +from RUNA.Cogs.Event import model + + +class CogAiart(Cog): + def __init__(self, bot): + self.bot = bot + + ART = SlashCommandGroup("그림", "AI 그림 기능") + + @ART.command(name="생성", description="루나가 그림을 그려줍니다.") + @cooldown(1, 10, BucketType.user) + async def _generate(self, ctx: Context, + resolution: Option(str, name="해상도", description="그림의 해상도를 입력해주세요. (기본값: 512x512)", + required=False, choices=["1:1", "2:3", "7:4", "3:4"], default="1:1"), + shows: Option(str, name="보기여부", description="생성된 그림을 나를 제외한 사람한테 보여줄지 말지를 지정합니다.", + choices=["보여주기", "보여주지 말기"], required=False, default="보여주기"), + style1: Option(float, name="디테일표현", + description="그림의 디테일정도를 지정합니다. -1에 가까울수록 단순한 그림이 나오고 1에 가까울수록 높은 디테일을 구현 합니다.", + required=False, min_value=-1, max_value=1, default=0), + style2: Option(float, name="광선표현", + description="그림의 광선 디테일 정도를 지정합니다. 0.8에 가까울수록 더 부드럽고 좋은 광선표현을 하지만 그림의 디테일이 떨어지거나 캐릭터일 경우 손이 제대로 생성되지 않을수 있습니다.", + required=False, min_value=0, max_value=0.8, default=0), + high_quality: Option(str, name="고퀄리티모드", + description="그림을 뽑을때 고퀄리티 모드를 사용할지 정합니다. 고퀄리티 모드는 크돌이의 추천 이후 얻는 아트포인트로 사용할수 있습니다.", + required=False, choices=["사용하기", "사용하지 않기"], default="사용하지 않기") + ): + if ctx.guild is not None and not await database.get_guild(ctx.guild.id): return await ctx.respond( + embed=RunaEmbed(title="❌ 에러!", description="서버가 가입되어있지 않아요! 서버를 가입해주세요!", color=Color.red()), + ephemeral=True) + nsfw = False + if high_quality == "사용하기": + after_process = True + else: + after_process = False + if ctx.channel.is_nsfw(): + nsfw = True + else: + nsfw = False + if shows == "보여주기": + shows = False + else: + shows = True + if resolution == "1:1": + resoultion = [512, 512] + elif resolution == "2:3": + resoultion = [512, 768] + elif resolution == "7:4": + resoultion = [896, 512] + elif resolution == "3:4": + resoultion = [600, 800] + await database.put_use_art(ctx.guild.id) + if after_process == True: + result = await database.use_guild_art_point(ctx.guild.id) + if result is False: return await ctx.respond( + embed=RunaEmbed(title="❌ 에러!", description="아트포인트가 부족해요! 아트포인트를 충전해주세요! 아트포인트는 ``/추천``명령어를 통해 충전 가능해요!", + color=Color.red()), ephemeral=True) + # allownsfw: bool, res: list, style1: float, style2: float, afterprocess: float + modal = Aiart(title="태그를 입력해주세요", allownsfw=nsfw, res=resoultion, style1=style1, style2=style2, + afterprocess=after_process, show=shows) + await ctx.send_modal(modal) + + @ART.command(name="분석", description="그림을 분석합니다.") + @cooldown(1, 10, BucketType.user) + @guild_only() + async def _evulate(self, ctx: Context, + file: Option(Attachment, name="파일", description="분석할 그림을 업로드해주세요.", required=True)): + await ctx.defer(ephemeral=False) + if ctx.guild is not None and not await database.get_guild(ctx.guild.id): return await ctx.respond( + embed=RunaEmbed(title="❌ 에러!", description="서버가 가입되어있지 않아요! 서버를 가입해주세요!", color=Color.red()), + ephemeral=True) + if not file.content_type.startswith("image/"): return await ctx.respond( + embed=RunaEmbed(title="❌ 에러!", description="그림 파일만 업로드해주세요!", color=Color.red()), ephemeral=True) + buffer = await file.read() + taging = Tagging() + tag = await taging.predict(buffer) + rating = tag[2] + tags = tag[4] + hangul = { + "general": "건전함", + "sensitive": "매우조금 불건전", + "questionable": "조금 불건전", + "explicit": "매우 불건전" + } + ratings = max(rating, key=rating.get) + rating = hangul[ratings] + sorted_tags = sorted(tags.items(), key=lambda x: x[1], reverse=True)[:8] + # UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte + await ctx.respond(embed=Aiart_Embed.evalate(sorted_tags, rating), ephemeral=False, + file=File(fp=io.BytesIO(buffer), filename="image.png")) + + @ART.command(name="포인트", description="아트포인트를 확인합니다.") + @cooldown(1, 10, BucketType.user) + @guild_only() + async def _point(self, ctx: Context): + await ctx.defer(ephemeral=False) + if ctx.guild is not None and not await database.get_guild(ctx.guild.id): return await ctx.respond( + embed=RunaEmbed(title="❌ 에러!", description="서버가 가입되어있지 않아요! 서버를 가입해주세요!", color=Color.red()), + ephemeral=True) + point = await database.get_guild_art_point(ctx.guild.id) + use = await database.get_use_art(ctx.guild.id) + await ctx.respond( + embed=RunaEmbed(title="🎨 아트포인트", description=f"현재 서버의 아트포인트는 {point}개에요!\n 이서버에서는 그림 기능을 {use}번 사용했어요! ", + color=Color.green()), ephemeral=False) + + +def setup(bot): + bot.add_cog(CogAiart(bot)) diff --git a/Christmas/Cogs/Commands_Util.py b/RUNA/Cogs/Commands_Util.py similarity index 66% rename from Christmas/Cogs/Commands_Util.py rename to RUNA/Cogs/Commands_Util.py index f45e009..7cdc810 100644 --- a/Christmas/Cogs/Commands_Util.py +++ b/RUNA/Cogs/Commands_Util.py @@ -1,55 +1,60 @@ -from discord import ApplicationContext, DiscordException, slash_command, Color -from discord.ext.commands import Cog, cooldown, BucketType, has_permissions, guild_only, Context - -from Christmas.UI.Embed import Default_Embed, ChristmasEmbed -from Christmas.UI.Buttons import Recommanded -from Christmas.Database import database -from Christmas.Module import get_gpuserver_status, Get_Backend_latency -from koreanbots import KoreanbotsRequester -class CUtil(Cog): - def __init__(self, bot): - self.bot = bot - - @guild_only() - @has_permissions(administrator=True) - @cooldown(1, 10, BucketType.user) - @slash_command(name="서버가입", description="서버에 가입합니다.") - async def _join(self, ctx: Context): - try: - if await database.get_guild(ctx.guild.id): return await ctx.respond(embed=Default_Embed.already_register(), ephemeral=True) - await database.register_guild(ctx.guild.id) - await ctx.respond(embed=Default_Embed.register_sucess()) - except Exception as e: - await ctx.respond(embed=Default_Embed.register_failed()) - - @guild_only() - @has_permissions(administrator=True) - @cooldown(1, 10, BucketType.user) - @slash_command(name="서버탈퇴", description="서버에서 탈퇴합니다.") - async def _leave(self, ctx: Context): - if not await database.get_guild(ctx.guild.id): return await ctx.respond(embed=Default_Embed.not_register(), ephemeral=True) - await database.leave_guild(ctx.guild.id) - await ctx.respond(embed=Default_Embed.leave_sucess()) - - - @guild_only() - @cooldown(1, 10, BucketType.user) - @slash_command(name="봇정보", description="봇의 정보를 확인합니다.") - async def _info(self, ctx: Context): - if not await database.get_guild(ctx.guild.id): return await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description="서버가 가입되어있지 않아요! 서버를 가입해주세요!", color=Color.red()),ephemeral=True) - data = await get_gpuserver_status(url=None) - await ctx.respond(embed=Default_Embed.BotInfo(data, bot=self.bot)) - - @cooldown(1, 10, BucketType.user) - @slash_command(name="도움말", description="도움말을 확인합니다.") - async def _help(self, ctx: Context): - await ctx.respond(embed=Default_Embed.help()) - - @cooldown(1, 10, BucketType.user) - @guild_only() - @slash_command(name="추천", description="한디리의 추천링크를 표시해요! 추천 갯수는 추후 크돌이를 통해 오픈될 게임에 영향을 줘요!") - async def _recommand(self, ctx: Context): - await ctx.respond(embed=Default_Embed.recommend(), view=Recommanded(), ephemeral=True) - -def setup(bot): - bot.add_cog(CUtil(bot)) \ No newline at end of file +from discord import ApplicationContext, DiscordException, slash_command, Color +from discord.ext.commands import Cog, cooldown, BucketType, has_permissions, guild_only, Context + +from RUNA.UI.Embed import Default_Embed, ChristmasEmbed +from RUNA.UI.Buttons import Recommanded +from RUNA.Database import database +from RUNA.Module import get_gpuserver_status, Get_Backend_latency + + +class CogUtil(Cog): + def __init__(self, bot): + self.bot = bot + + @guild_only() + @has_permissions(administrator=True) + @cooldown(1, 10, BucketType.user) + @slash_command(name="서버가입", description="서버에 가입합니다.") + async def _join(self, ctx: Context): + try: + if await database.get_guild(ctx.guild.id): return await ctx.respond(embed=Default_Embed.already_register(), + ephemeral=True) + await database.register_guild(ctx.guild.id) + await ctx.respond(embed=Default_Embed.register_sucess()) + except Exception as e: + await ctx.respond(embed=Default_Embed.register_failed()) + + @guild_only() + @has_permissions(administrator=True) + @cooldown(1, 10, BucketType.user) + @slash_command(name="서버탈퇴", description="서버에서 탈퇴합니다.") + async def _leave(self, ctx: Context): + if not await database.get_guild(ctx.guild.id): return await ctx.respond(embed=Default_Embed.not_register(), + ephemeral=True) + await database.leave_guild(ctx.guild.id) + await ctx.respond(embed=Default_Embed.leave_sucess()) + + @guild_only() + @cooldown(1, 10, BucketType.user) + @slash_command(name="봇정보", description="봇의 정보를 확인합니다.") + async def _info(self, ctx: Context): + if not await database.get_guild(ctx.guild.id): return await ctx.respond( + embed=ChristmasEmbed(title="❌ 에러!", description="서버가 가입되어있지 않아요! 서버를 가입해주세요!", color=Color.red()), + ephemeral=True) + data = await get_gpuserver_status(url=None) + await ctx.respond(embed=Default_Embed.BotInfo(data, bot=self.bot)) + + @cooldown(1, 10, BucketType.user) + @slash_command(name="도움말", description="도움말을 확인합니다.") + async def _help(self, ctx: Context): + await ctx.respond(embed=Default_Embed.help()) + + @cooldown(1, 10, BucketType.user) + @guild_only() + @slash_command(name="추천", description="한디리의 추천링크를 표시해요! 추천 갯수는 아트포인트 충전이나 다른 기능에 사용되요!") + async def _recommend(self, ctx: Context): + await ctx.respond(embed=Default_Embed.recommend(), view=Recommanded(), ephemeral=True) + + +def setup(bot): + bot.add_cog(CogUtil(bot)) diff --git a/Christmas/Cogs/Event.py b/RUNA/Cogs/Event.py similarity index 67% rename from Christmas/Cogs/Event.py rename to RUNA/Cogs/Event.py index 873e8a0..a0a6ba0 100644 --- a/Christmas/Cogs/Event.py +++ b/RUNA/Cogs/Event.py @@ -1,76 +1,67 @@ -import random -import wavelink -import pendulum - -import onnxruntime as rt - -from discord import ApplicationContext, DiscordException, Game, Guild, Color -from discord.ext.commands import Cog -from discord.ext import tasks -import sentry_sdk -from discord.ext.commands import CommandOnCooldown, MissingPermissions -from Christmas.UI.Embed import Default_Embed, Music_Embed, ChristmasEmbed -from Christmas.config import ChristmasConfig -from Christmas.Database import database - -model = rt.InferenceSession("Christmas/Tagging/model.onnx", provider_options="CPUExecutionProvider") - -class Event(Cog): - def __init__(self, bot): - self.bot = bot - self.config = ChristmasConfig() - - @Cog.listener() - async def on_application_command_error(self, ctx: ApplicationContext, exception: DiscordException) -> None: - if isinstance(exception, CommandOnCooldown): - await ctx.respond(Default_Embed.cooldown(exception.retry_after), ephemeral=True) - elif isinstance(exception, MissingPermissions): - need_permissions = "" - for perm in exception.missing_permissions: - need_permissions += f"{perm}, " - await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description=f"권한이 부족해요! 필요한 권한: {need_permissions}", color=Color.red()),ephemeral=True) - else: - await ctx.respond(embed=ChristmasEmbed(title="❌ 에러!", description=f"알수 없는 에러가 발생했어요! 봇 소유자에게 연락해주세요.", color=Color.red()),ephemeral=True) - sentry_sdk.capture_exception(exception) - - @Cog.listener() - async def on_ready(self) -> None: - print("Ready!") - await self.bot.change_presence(activity=Game(name="크리스마스에 함께!")) - - @Cog.listener() - async def on_connect(self) -> None: - await self.bot.wait_until_ready() - nodes = [] - for node in self.config.LAVALINK: - nodes.append(wavelink.Node(uri=node["HOST"], password=node["PASSWORD"], identifier=node["IDENTIFIER"])) - await wavelink.Pool.connect(nodes=nodes, client=self.bot) - - @Cog.listener() - async def on_guild_join(self, guild: Guild) -> None: - if guild.system_channel is not None: - await guild.system_channel.send(embed=Default_Embed.default_join_embed()) - else: - await random.choice(guild.text_channels).send(embed=Default_Embed.default_join_embed()) - - @Cog.listener() - async def on_guild_update(self, before: Guild, after: Guild) -> None: - if before.name != after.name: - await database.update_guild_name(after.id, after.name) - - @tasks.loop(seconds=600) - async def notify_all_guild_christmas(self) -> None: - if pendulum.now() > pendulum.datetime(2023, 12, 24, 12, 0, 0): - self.notify_all_guild_christmas.cancel() - return - for guild in self.bot.guilds: - if not await database.get_guild(guild.id): continue - if not await database.get_guild_christmas(guild.id): - await database.update_guild_christmas(guild.id, True) - if guild.system_channel is not None: - await guild.system_channel.send(embed=Music_Embed.changed_christmas()) - else: - await random.choice(guild.text_channels).send(embed=Music_Embed.changed_christmas()) - -def setup(bot): +import random +import pendulum + +import onnxruntime as rt + +from discord import ApplicationContext, DiscordException, Game, Guild, Color +from discord.ext.commands import Cog +from discord.ext import tasks +import sentry_sdk +from discord.ext.commands import CommandOnCooldown, MissingPermissions +from RUNA.UI.Embed import Default_Embed, Music_Embed, RunaEmbed +from RUNA.Database import database + +model = rt.InferenceSession("RUNA/Tagging/model.onnx", provider_options="CPUExecutionProvider") + +class Event(Cog): + def __init__(self, bot): + self.bot = bot + self.config = ChristmasConfig() + + @Cog.listener() + async def on_application_command_error(self, ctx: ApplicationContext, exception: DiscordException) -> None: + if isinstance(exception, CommandOnCooldown): + await ctx.respond(Default_Embed.cooldown(exception.retry_after), ephemeral=True) + elif isinstance(exception, MissingPermissions): + need_permissions = "" + for perm in exception.missing_permissions: + need_permissions += f"{perm}, " + await ctx.respond(embed=RunaEmbed(title="❌ 에러!", description=f"권한이 부족해요! 필요한 권한: {need_permissions}", color=Color.red()),ephemeral=True) + else: + await ctx.respond(embed=RunaEmbed(title="❌ 에러!", description=f"알수 없는 에러가 발생했어요! 봇 소유자에게 연락해주세요.", color=Color.red()),ephemeral=True) + sentry_sdk.capture_exception(exception) + + @Cog.listener() + async def on_ready(self) -> None: + print("Ready!") + await self.bot.change_presence(activity=Game(name="루나봇")) + + + @Cog.listener() + async def on_guild_join(self, guild: Guild) -> None: + if guild.system_channel is not None: + await guild.system_channel.send(embed=Default_Embed.default_join_embed()) + else: + await random.choice(guild.text_channels).send(embed=Default_Embed.default_join_embed()) + + @Cog.listener() + async def on_guild_update(self, before: Guild, after: Guild) -> None: + if before.name != after.name: + await database.update_guild_name(after.id, after.name) + + @tasks.loop(seconds=600) + async def notify_all_guild_christmas(self) -> None: + if pendulum.now() > pendulum.datetime(2023, 12, 24, 12, 0, 0): + self.notify_all_guild_christmas.cancel() + return + for guild in self.bot.guilds: + if not await database.get_guild(guild.id): continue + if not await database.get_guild_christmas(guild.id): + await database.update_guild_christmas(guild.id, True) + if guild.system_channel is not None: + await guild.system_channel.send(embed=Music_Embed.changed_christmas()) + else: + await random.choice(guild.text_channels).send(embed=Music_Embed.changed_christmas()) + +def setup(bot): bot.add_cog(Event(bot)) \ No newline at end of file diff --git a/RUNA/Database/MeiliSearch/__init__.py b/RUNA/Database/MeiliSearch/__init__.py new file mode 100644 index 0000000..e99cba5 --- /dev/null +++ b/RUNA/Database/MeiliSearch/__init__.py @@ -0,0 +1,19 @@ +import os +from meilisearch_python_sdk import AsyncClient as Client +from dotenv import load_dotenv, find_dotenv + +load_dotenv(find_dotenv()) + + +class Search: + def __init__(self): + self.index = None + self.client = None + + async def connect(self): + self.client = Client(os.getenv("MEILI_ADDRESS"), os.getenv("MEILI_MASTER_KEY")) + self.index = self.client.index(os.getenv("MEILI_INDEX")) + return self.index + + async def close(self): + await self.client.aclose() diff --git a/RUNA/Database/Mongo/__init__.py b/RUNA/Database/Mongo/__init__.py new file mode 100644 index 0000000..5e20757 --- /dev/null +++ b/RUNA/Database/Mongo/__init__.py @@ -0,0 +1,18 @@ +import os + +from motor.motor_asyncio import AsyncIOMotorClient +from dotenv import load_dotenv, find_dotenv + +load_dotenv(find_dotenv()) + + +class MongoDBClient: + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self.client = \ + AsyncIOMotorClient(os.getenv("MONGODB_HOST"), int(os.getenv("MONGODB_PORT")), + username=os.getenv("MONGODB_ID"), + password=os.getenv("MONGODB_PASSWORD"))[os.getenv("MONGODB_DATABASE")] + + async def connect(self): + return self.client diff --git a/RUNA/Database/Mongo/guild.py b/RUNA/Database/Mongo/guild.py new file mode 100644 index 0000000..e69de29 diff --git a/RUNA/Database/__init__.py b/RUNA/Database/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/RUNA/Enum.py b/RUNA/Enum.py new file mode 100644 index 0000000..bfbc72b --- /dev/null +++ b/RUNA/Enum.py @@ -0,0 +1,16 @@ +from enum import Enum + + +class STATUS(Enum): + SUCCESS = 0 + ERROR = 1 + NOT_AVAILABLE = 2 + NOT_FOUND = 3 + NOT_AUTHORIZED = 4 + NOT_ALLOWED = 5 + + def __str__(self): + return str(self.value) + + + diff --git a/Christmas/Module.py b/RUNA/Module.py similarity index 95% rename from Christmas/Module.py rename to RUNA/Module.py index 27bba4a..3e64a34 100644 --- a/Christmas/Module.py +++ b/RUNA/Module.py @@ -1,204 +1,204 @@ -import io -import time -import PIL -import base64 -import re -import random -import aiohttp -import asyncio -import sentry_sdk -from aiogoogletrans import Translator -from typing import Any, Dict -from discord import File, Asset -from Christmas.Tagging import Tagging -from Christmas.Cogs.Event import model -translator = Translator() -BLOCKTAG = [ - "nsfw", - "nude", - "nipples", - "nipple", - "pussy", - "public hair", - "gay", - "lesbian", - "corpse", - "no panties", - "no panty", - "no bra", - "bra", - "panty", - "panties", - "underwear", - "undergarment", - "underpants", - "underpant", - "blowjob", - "sex", - "sexy", - "pennis" - "realistic", - "open breasts", - "breasts", - "bikini", - "swimsuit", - "give birth", - "slave" -] - -weight = [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.8, 0.9] -cfg = [6, 7, 8, 9, 10, 11] -#def check_curse(text: str): -# return korcen_checker.check(text) -def is_korean(string): - pattern = re.compile(r"[ㄱ-ㅎㅏ-ㅣ가-힣]") - match = pattern.search(string) - return bool(match) - -async def process_prompt(prompt: str, remove: str, res: list, isnsfw: bool, style1: float, style2: float, afterprocess: bool, avatar): - tags = None - if not avatar == None: - # gif인 경우 png로 변환 - try: - if avatar.url.endswith(".gif"): - avatar = avatar.replace(format="png") - avatar = await avatar.read() - # TypeError: a bytes-like object is required, not 'PngImageFile' - taging = Tagging(model=model) - tags = await taging.predict(avatar) - tags = tags[0] - except Exception as e: - tags = None - man = False - if "남자" in prompt and "여자" in remove: - man = True - if is_korean(prompt): - prompt = await translator.translate(prompt, dest="en") - prompt = prompt.text - if is_korean(remove): - remove = await translator.translate(remove, dest="en") - remove = remove.text - if isnsfw == False: - for i in BLOCKTAG: - if i in prompt: - prompt = prompt.replace(i, "") - default_negative = """(KHFB, AuroraNegative, easynegative, negative_hand-neg, verybadimagenegative_v1.3:0.8), (Worst Quality, Low Quality:1.4), border, skimpy, grayscale, multiple_girls, 3d, realistic, string, multiple hands, chinese, thick abs, chubby abs, lowres, bad anatomy, asymmetric wings, elf, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, large areolae, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry, Multiple legs, multiple feet, tie, (necktie:1.5), several hands, three feet, four legs, three legs,animal ears""" - if style1 != 0: - prompt = prompt + f"" - if style2 != 0: - prompt = prompt + f"" - if remove != None: - negative_prompt = default_negative + "," + remove - if man == True: - prompt = prompt + "," + "(1boy)" - negative_prompt = negative_prompt + "," + "(1girl)" - add_prompt = random.choice([True, False]) - if add_prompt == True: - prompt = prompt + f"" - if tags != None: - prompt = prompt + "," + tags - payloads = {} - if afterprocess == True: - payloads = { - "prompt": prompt, - "negative_prompt": negative_prompt, - "enable_hr": True, - "hr_scale": 1.5, - "hr_upscaler": "R-ESRGAN 4x+ Anime6B", - "seed": random.randint(0, 1000000000), - "steps": 25, - "cfg_scale": random.choice(cfg), - "width": res[0], - "height": res[1], - "sampler_index": "DPM++ 2M Karras", - "refiner_checkpoint": "smooREFINERV2R10_half", - "refiner_switch_at": 0.45, - "alwayson_scripts": { - "ADetailer": { - 'args': [ - { - 'ad_model': 'face_yolov8n.pt', - 'ad_inpaint_only_masked': True - }] - }}} - else: - payloads = { - "prompt": prompt, - "negative_prompt": negative_prompt, - "seed": random.randint(0, 1000000000), - "steps": 25, - "cfg_scale": random.choice(cfg), - "width": res[0], - "height": res[1], - "sampler_index": "DPM++ 2M Karras", - "refiner_checkpoint": "smooREFINERV2R10_half", - "refiner_switch_at": 0.45, - "alwayson_scripts": { - "ADetailer": { - 'args': [ - { - 'ad_model': 'face_yolov8n.pt', - 'ad_inpaint_only_masked': True - }] - }}} - return payloads - - -async def post_gpu_server(url: str, payload: Dict[str, Any]): - async with aiohttp.ClientSession() as session: - try: - async with session.post(url, json=payload, timeout=300) as response: - if response.status == 200: - return {"status": True, "data": await response.json()} - else: - return {"status": False, "data": None} - except Exception as e: - if isinstance(e, asyncio.TimeoutError): - return {"status": False, "data": None} - - -async def image_to_base64(image) -> str: - img = PIL.Image.open(image) - img = img.convert("RGB") - img_byte_arr = io.BytesIO() - img.save(img_byte_arr, format='PNG') - img_byte_arr = img_byte_arr.getvalue() - img_str = base64.b64encode(img_byte_arr).decode("utf-8") - return img_str - - -async def base64_to_image(base642) -> File: - attachment = File(io.BytesIO(base64.b64decode(base642)), filename="image.png") - return attachment - -async def get_gpuserver_status(url) -> Dict: - async with aiohttp.ClientSession() as session: - try: - async with session.get(f"http://172.30.1.49:7860/sdapi/v1/memory", timeout=10) as response: - - if response.status == 200: - result = await response.json() - memstatus = result["ram"]["used"] - cudamemstatus = result["cuda"]["system"]["used"] - oomcount = result["cuda"]["events"]["oom"] - return {"status": "online", "system_memory_usage": bytes_to_gb(memstatus), "cuda_memory_usage": bytes_to_gb(cudamemstatus), "oom_count": oomcount} - except Exception as e: - sentry_sdk.capture_exception(e) - return {"status": "offline"} - -def bytes_to_gb(bytes: int) -> float: - return round(bytes / 1024 / 1024 / 1024, 2) - - -async def Get_Backend_latency(): - start_time = time.time() - async with aiohttp.ClientSession() as client: - try: - async with client.get("http://172.30.1.49:7860/sdapi/v1/memory", timeout=10) as response: - if response.status_code == 200 or response.status_code == 404: - return round(time.time() - start_time, 2) - else: - return None - except Exception as e: - print(e) +import io +import time +import PIL +import base64 +import re +import random +import aiohttp +import asyncio +import sentry_sdk +from aiogoogletrans import Translator +from typing import Any, Dict +from discord import File, Asset +from RUNA.Tagging import Tagging +from RUNA.Cogs.Event import model +translator = Translator() +BLOCKTAG = [ + "nsfw", + "nude", + "nipples", + "nipple", + "pussy", + "public hair", + "gay", + "lesbian", + "corpse", + "no panties", + "no panty", + "no bra", + "bra", + "panty", + "panties", + "underwear", + "undergarment", + "underpants", + "underpant", + "blowjob", + "sex", + "sexy", + "pennis" + "realistic", + "open breasts", + "breasts", + "bikini", + "swimsuit", + "give birth", + "slave" +] + +weight = [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.8, 0.9] +cfg = [6, 7, 8, 9, 10, 11] +#def check_curse(text: str): +# return korcen_checker.check(text) +def is_korean(string): + pattern = re.compile(r"[ㄱ-ㅎㅏ-ㅣ가-힣]") + match = pattern.search(string) + return bool(match) + +async def process_prompt(prompt: str, remove: str, res: list, isnsfw: bool, style1: float, style2: float, afterprocess: bool, avatar): + tags = None + if not avatar == None: + # gif인 경우 png로 변환 + try: + if avatar.url.endswith(".gif"): + avatar = avatar.replace(format="png") + avatar = await avatar.read() + # TypeError: a bytes-like object is required, not 'PngImageFile' + taging = Tagging(model=model) + tags = await taging.predict(avatar) + tags = tags[0] + except Exception as e: + tags = None + man = False + if "남자" in prompt and "여자" in remove: + man = True + if is_korean(prompt): + prompt = await translator.translate(prompt, dest="en") + prompt = prompt.text + if is_korean(remove): + remove = await translator.translate(remove, dest="en") + remove = remove.text + if isnsfw == False: + for i in BLOCKTAG: + if i in prompt: + prompt = prompt.replace(i, "") + default_negative = """(KHFB, AuroraNegative, easynegative, negative_hand-neg, verybadimagenegative_v1.3:0.8), (Worst Quality, Low Quality:1.4), border, skimpy, grayscale, multiple_girls, 3d, realistic, string, multiple hands, chinese, thick abs, chubby abs, lowres, bad anatomy, asymmetric wings, elf, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, large areolae, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry, Multiple legs, multiple feet, tie, (necktie:1.5), several hands, three feet, four legs, three legs,animal ears, nsfw, exposure""" + if style1 != 0: + prompt = prompt + f"" + if style2 != 0: + prompt = prompt + f"" + if remove != None: + negative_prompt = default_negative + "," + remove + if man == True: + prompt = prompt + "," + "(1boy)" + negative_prompt = negative_prompt + "," + "(1girl)" + add_prompt = random.choice([True, False]) + if add_prompt == True: + prompt = prompt + f"" + if tags != None: + prompt = prompt + "," + tags + payloads = {} + if afterprocess == True: + payloads = { + "prompt": prompt, + "negative_prompt": negative_prompt, + "enable_hr": True, + "hr_scale": 1.5, + "hr_upscaler": "R-ESRGAN 4x+ Anime6B", + "seed": random.randint(0, 1000000000), + "steps": 25, + "cfg_scale": random.choice(cfg), + "width": res[0], + "height": res[1], + "sampler_index": "DPM++ 2M Karras", + "refiner_checkpoint": "smooREFINERV2R10_half", + "refiner_switch_at": 0.45, + "alwayson_scripts": { + "ADetailer": { + 'args': [ + { + 'ad_model': 'face_yolov8n.pt', + 'ad_inpaint_only_masked': True + }] + }}} + else: + payloads = { + "prompt": prompt, + "negative_prompt": negative_prompt, + "seed": random.randint(0, 1000000000), + "steps": 25, + "cfg_scale": random.choice(cfg), + "width": res[0], + "height": res[1], + "sampler_index": "DPM++ 2M Karras", + "refiner_checkpoint": "smooREFINERV2R10_half", + "refiner_switch_at": 0.45, + "alwayson_scripts": { + "ADetailer": { + 'args': [ + { + 'ad_model': 'face_yolov8n.pt', + 'ad_inpaint_only_masked': True + }] + }}} + return payloads + + +async def post_gpu_server(url: str, payload: Dict[str, Any]): + async with aiohttp.ClientSession() as session: + try: + async with session.post(url, json=payload, timeout=300) as response: + if response.status == 200: + return {"status": True, "data": await response.json()} + else: + return {"status": False, "data": None} + except Exception as e: + if isinstance(e, asyncio.TimeoutError): + return {"status": False, "data": None} + + +async def image_to_base64(image) -> str: + img = PIL.Image.open(image) + img = img.convert("RGB") + img_byte_arr = io.BytesIO() + img.save(img_byte_arr, format='PNG') + img_byte_arr = img_byte_arr.getvalue() + img_str = base64.b64encode(img_byte_arr).decode("utf-8") + return img_str + + +async def base64_to_image(base642) -> File: + attachment = File(io.BytesIO(base64.b64decode(base642)), filename="image.png") + return attachment + +async def get_gpuserver_status(url) -> Dict: + async with aiohttp.ClientSession() as session: + try: + async with session.get(f"http://172.30.1.49:7860/sdapi/v1/memory", timeout=10) as response: + + if response.status == 200: + result = await response.json() + memstatus = result["ram"]["used"] + cudamemstatus = result["cuda"]["system"]["used"] + oomcount = result["cuda"]["events"]["oom"] + return {"status": "online", "system_memory_usage": bytes_to_gb(memstatus), "cuda_memory_usage": bytes_to_gb(cudamemstatus), "oom_count": oomcount} + except Exception as e: + sentry_sdk.capture_exception(e) + return {"status": "offline"} + +def bytes_to_gb(bytes: int) -> float: + return round(bytes / 1024 / 1024 / 1024, 2) + + +async def Get_Backend_latency(): + start_time = time.time() + async with aiohttp.ClientSession() as client: + try: + async with client.get("http://172.30.1.49:7860/sdapi/v1/memory", timeout=10) as response: + if response.status_code == 200 or response.status_code == 404: + return round(time.time() - start_time, 2) + else: + return None + except Exception as e: + print(e) return None \ No newline at end of file diff --git a/RUNA/Modules/Exception.py b/RUNA/Modules/Exception.py new file mode 100644 index 0000000..5d5828b --- /dev/null +++ b/RUNA/Modules/Exception.py @@ -0,0 +1,42 @@ + + + + + + +class RUNAException(Exception): + def __init__(self, message): + self.message = message + super().__init__(self.message) + + def __str__(self): + return self.message + + def __repr__(self): + return self.message + + +class RUNAWarning(Warning): + def __init__(self, message): + self.message = message + super().__init__(self.message) + + def __str__(self): + return self.message + + def __repr__(self): + return self.message + + +class RUNAInfo(Warning): + def __init__(self, message): + self.message = message + super().__init__(self.message) + + def __str__(self): + return self.message + + def __repr__(self): + return self.message + + diff --git a/RUNA/Modules/Logging.py b/RUNA/Modules/Logging.py new file mode 100644 index 0000000..a582122 --- /dev/null +++ b/RUNA/Modules/Logging.py @@ -0,0 +1,20 @@ +import loguru + + +class Logging: + def __init__(self): + self.logger = loguru.logger + self.logger.add("Logs/Latest.log", rotation="1 day", retention="7 days", level="DEBUG", + format="{time} {level} {message}") + + def error(self, message: str): + self.logger.error(message) + + def warning(self, message: str): + self.logger.warning(message) + + def info(self, message: str): + self.logger.info(message) + + def debug(self, message: str): + self.logger.debug(message) diff --git a/Christmas/Tagging/__init__.py b/RUNA/Modules/Tagging/__init__.py similarity index 86% rename from Christmas/Tagging/__init__.py rename to RUNA/Modules/Tagging/__init__.py index ca22c82..1188b0a 100644 --- a/Christmas/Tagging/__init__.py +++ b/RUNA/Modules/Tagging/__init__.py @@ -1,110 +1,101 @@ -from Christmas.Cogs.Event import model - - -import typing -import asyncio -import io -import PIL -from PIL import Image -import numpy as np -import onnxruntime as rt -import pandas as pd -import cv2 - - - - -class Tagging: - def __init__(self, model, ProviderOptions: typing.Optional[str] = "CPUExecutionProvider"): - self.model_path = "Christmas/Tagging/model.onnx" - self.tag_path = "Christmas/Tagging/tags.csv" - self.model = model - self.general_threshold: typing.Optional[float] = 0.35 - self.character_threshold: typing.Optional[float] = 0.85 - - - - def make_square(self, img, target_size): - old_size = img.shape[:2] - desired_size = max(old_size) - desired_size = max(desired_size, target_size) - - delta_w = desired_size - old_size[1] - delta_h = desired_size - old_size[0] - top, bottom = delta_h // 2, delta_h - (delta_h // 2) - left, right = delta_w // 2, delta_w - (delta_w // 2) - - color = [255, 255, 255] - new_im = cv2.copyMakeBorder( - img, top, bottom, left, right, cv2.BORDER_CONSTANT, value=color - ) - return new_im - - - def smart_resize(self, img, size): - # Assumes the image has already gone through make_square - if img.shape[0] > size: - img = cv2.resize(img, (size, size), interpolation=cv2.INTER_AREA) - elif img.shape[0] < size: - img = cv2.resize(img, (size, size), interpolation=cv2.INTER_CUBIC) - return img - - def load_labels(self, path): - df = pd.read_csv(path) - tag_names = df["name"].tolist() - category = df["category"].tolist() - rating_indexes = [i for i, cat in enumerate(category) if cat == 9] - general_indexes = [i for i, cat in enumerate(category) if cat == 0] - character_indexes = [i for i, cat in enumerate(category) if cat == 4] - return tag_names, rating_indexes, general_indexes, character_indexes - - def preprocess_image(self, image): - image = image.convert("RGBA") - new_image = Image.new("RGBA", image.size, "WHITE") - new_image.paste(image, mask=image) - image = new_image.convert("RGB") - image = np.asarray(image)[:, :, ::-1] - return image - - def _predict_image(self, image, general_threshold, character_threshold): - """discord.File의 byteio를 받아서 이미지를 예측합니다.""" - image = Image.open(io.BytesIO(image)) - tag_names, rating_indexes, general_indexes, character_indexes = self.load_labels(self.tag_path) - model = self.model - - _, height, width, _ = model.get_inputs()[0].shape - - image = self.preprocess_image(image) - image = self.make_square(image, height) - image = self.smart_resize(image, height) - image = image.astype(np.float32) - image = np.expand_dims(image, 0) - - input_name = model.get_inputs()[0].name - label_name = model.get_outputs()[0].name - probs = model.run([label_name], {input_name: image})[0] - - labels = list(zip(tag_names, probs[0].astype(float))) - - # Extract ratings, general, and character labels - ratings_names = [labels[i] for i in rating_indexes] - general_names = [labels[i] for i in general_indexes] - character_names = [labels[i] for i in character_indexes] - - rating = dict(ratings_names) - general_res = {name: prob for name, prob in general_names if prob > general_threshold} - character_res = {name: prob for name, prob in character_names if prob > character_threshold} - - general_res_sorted = dict(sorted(general_res.items(), key=lambda item: item[1], reverse=True)) - a = ", ".join(general_res_sorted.keys()).replace("_", " ").replace("(", "\(").replace(")", "\)") - c = ", ".join(general_res_sorted.keys()) - - return a, c, rating, character_res, general_res_sorted - - - async def predict(self, image, general_threshold: typing.Optional[float] = None, character_threshold: typing.Optional[float] = None): - if general_threshold is None: - general_threshold = self.general_threshold - if character_threshold is None: - character_threshold = self.character_threshold - return await asyncio.to_thread(self._predict_image, image, general_threshold, character_threshold) \ No newline at end of file +import typing +import asyncio +import io +from PIL import Image +import numpy as np +import onnxruntime as rt +import pandas as pd +import cv2 + +model = rt.InferenceSession("RUNA/Tagging/model.onnx", provider_options=["CPUExecutionProvider"]) + + +class Tagging: + def __init__(self): + self.model_path = "RUNA/Tagging/model.onnx" + self.tag_path = "RUNA/Tagging/tags.csv" + self.model = model + self.general_threshold: typing.Optional[float] = 0.35 + self.character_threshold: typing.Optional[float] = 0.85 + + def make_square(self, img, target_size): + old_size = img.shape[:2] + desired_size = max(old_size) + desired_size = max(desired_size, target_size) + + delta_w = desired_size - old_size[1] + delta_h = desired_size - old_size[0] + top, bottom = delta_h // 2, delta_h - (delta_h // 2) + left, right = delta_w // 2, delta_w - (delta_w // 2) + + color = [255, 255, 255] + new_im = cv2.copyMakeBorder( + img, top, bottom, left, right, cv2.BORDER_CONSTANT, value=color + ) + return new_im + + def smart_resize(self, img, size): + # Assumes the image has already gone through make_square + if img.shape[0] > size: + img = cv2.resize(img, (size, size), interpolation=cv2.INTER_AREA) + elif img.shape[0] < size: + img = cv2.resize(img, (size, size), interpolation=cv2.INTER_CUBIC) + return img + + def load_labels(self, path): + df = pd.read_csv(path) + tag_names = df["name"].tolist() + category = df["category"].tolist() + rating_indexes = [i for i, cat in enumerate(category) if cat == 9] + general_indexes = [i for i, cat in enumerate(category) if cat == 0] + character_indexes = [i for i, cat in enumerate(category) if cat == 4] + return tag_names, rating_indexes, general_indexes, character_indexes + + def preprocess_image(self, image): + image = image.convert("RGBA") + new_image = Image.new("RGBA", image.size, "WHITE") + new_image.paste(image, mask=image) + image = new_image.convert("RGB") + image = np.asarray(image)[:, :, ::-1] + return image + + def _predict_image(self, image, general_threshold, character_threshold): + image = Image.open(io.BytesIO(image)) + tag_names, rating_indexes, general_indexes, character_indexes = self.load_labels(self.tag_path) + + _, height, width, _ = self.model.get_inputs()[0].shape + + image = self.preprocess_image(image) + image = self.make_square(image, height) + image = self.smart_resize(image, height) + image = image.astype(np.float32) + image = np.expand_dims(image, 0) + + input_name = model.get_inputs()[0].name + label_name = model.get_outputs()[0].name + probs = model.run([label_name], {input_name: image})[0] + + labels = list(zip(tag_names, probs[0].astype(float))) + + # Extract ratings, general, and character labels + ratings_names = [labels[i] for i in rating_indexes] + general_names = [labels[i] for i in general_indexes] + character_names = [labels[i] for i in character_indexes] + + rating = dict(ratings_names) + general_res = {name: prob for name, prob in general_names if prob > general_threshold} + character_res = {name: prob for name, prob in character_names if prob > character_threshold} + + general_res_sorted = dict(sorted(general_res.items(), key=lambda item: item[1], reverse=True)) + a = ", ".join(general_res_sorted.keys()).replace("_", " ").replace("(", "\(").replace(")", "\)") + c = ", ".join(general_res_sorted.keys()) + + return a, c, rating, character_res, general_res_sorted + + async def predict(self, image, general_threshold: typing.Optional[float] = None, + character_threshold: typing.Optional[float] = None): + if general_threshold is None: + general_threshold = self.general_threshold + if character_threshold is None: + character_threshold = self.character_threshold + return await asyncio.to_thread(self._predict_image, image, general_threshold, character_threshold) diff --git a/Christmas/Tagging/model.onnx b/RUNA/Modules/Tagging/model.onnx similarity index 100% rename from Christmas/Tagging/model.onnx rename to RUNA/Modules/Tagging/model.onnx diff --git a/Christmas/Tagging/tags.csv b/RUNA/Modules/Tagging/tags.csv similarity index 96% rename from Christmas/Tagging/tags.csv rename to RUNA/Modules/Tagging/tags.csv index 561660e..4f937d7 100644 --- a/Christmas/Tagging/tags.csv +++ b/RUNA/Modules/Tagging/tags.csv @@ -1,9084 +1,9084 @@ -tag_id,name,category,count -9999999,general,9,807858 -9999998,sensitive,9,3771700 -9999997,questionable,9,769899 -9999996,explicit,9,560281 -470575,1girl,0,4225150 -212816,solo,0,3515897 -13197,long_hair,0,2982517 -8601,breasts,0,2323580 -469576,looking_at_viewer,0,2089971 -3389,blush,0,2040471 -1815,smile,0,1903619 -15080,short_hair,0,1568265 -11906,open_mouth,0,1565950 -16751,bangs,0,1516840 -10959,blue_eyes,0,1225129 -566835,multiple_girls,0,1120328 -429,skirt,0,1100620 -87788,blonde_hair,0,1098200 -403247,large_breasts,0,1083979 -412368,simple_background,0,1074818 -16867,brown_hair,0,1072209 -12590,shirt,0,1001030 -13200,black_hair,0,981413 -380350,hair_ornament,0,939495 -8526,red_eyes,0,897316 -1882,thighhighs,0,890813 -5735,gloves,0,886283 -383159,long_sleeves,0,883900 -540830,1boy,0,881194 -2373,hat,0,879697 -515193,white_background,0,874291 -2241,dress,0,838290 -4563,bow,0,795194 -464575,ribbon,0,793922 -9294,navel,0,786293 -375387,holding,0,732899 -1821,2girls,0,729721 -6126,animal_ears,0,722334 -4607,cleavage,0,693321 -658573,hair_between_eyes,0,692014 -376054,bare_shoulders,0,656975 -1709,twintails,0,648384 -16578,brown_eyes,0,645874 -16613,jewelry,0,644654 -667868,medium_breasts,0,642525 -12289,sitting,0,630993 -417660,very_long_hair,0,622920 -572080,closed_mouth,0,618062 -464906,underwear,0,610036 -8889,nipples,0,591774 -16509,school_uniform,0,585679 -10960,green_eyes,0,584783 -10953,blue_hair,0,564360 -15675,standing,0,551783 -15654,purple_eyes,0,536623 -466499,collarbone,0,520875 -391,panties,0,506334 -3843,jacket,0,493731 -15674,tail,0,487490 -1681,monochrome,0,478584 -444,swimsuit,0,467619 -608813,full_body,0,463008 -465619,closed_eyes,0,455512 -464561,hair_ribbon,0,449452 -89189,yellow_eyes,0,447582 -376766,white_shirt,0,435867 -547463,upper_body,0,434670 -2355,ponytail,0,431021 -11449,weapon,0,430315 -11429,pink_hair,0,427100 -16442,purple_hair,0,426385 -8101,ass,0,423113 -4334,braid,0,417832 -464559,flower,0,411874 -63,comic,0,411524 -3522,ahoge,0,408654 -16581,white_hair,0,407226 -472154,short_sleeves,0,389311 -384553,:d,0,387533 -622137,hetero,0,384576 -374844,hair_bow,0,381335 -513837,greyscale,0,377967 -16580,grey_hair,0,375103 -1300281,male_focus,0,371503 -2750,heart,0,361897 -2363,pantyhose,0,356177 -484168,sidelocks,0,354421 -6539,bikini,0,349809 -3870,thighs,0,348316 -2365,nude,0,341086 -5403,red_hair,0,338682 -390728,multicolored_hair,0,336863 -660909,cowboy_shot,0,336374 -4569,sweat,0,334084 -383282,pleated_skirt,0,332323 -2376,hairband,0,329485 -13804,earrings,0,328755 -465265,small_breasts,0,325542 -5827,boots,0,320845 -13879,outdoors,0,320641 -301022,lying,0,312125 -4352,censored,0,310189 -194013,frills,0,305699 -664375,parted_lips,0,304757 -387884,detached_sleeves,0,297463 -461042,one_eye_closed,0,294831 -1575,food,0,294463 -1707,japanese_clothes,0,289163 -8388,green_hair,0,286703 -568656,multiple_boys,0,286561 -375669,open_clothes,0,286373 -2866,wings,0,284183 -384774,necktie,0,281254 -2785,horns,0,279479 -406,sky,0,279456 -4190,penis,0,276603 -8672,shoes,0,273266 -6532,glasses,0,264431 -3985,shorts,0,263445 -11826,barefoot,0,260159 -6054,teeth,0,259880 -4378,pussy,0,254400 -268819,serafuku,0,250901 -400314,sleeveless,0,247486 -931006,solo_focus,0,246572 -431446,alternate_costume,0,245996 -4025,choker,0,245304 -435324,day,0,243849 -10863,tongue,0,243841 -15522,pointy_ears,0,237263 -474820,black_gloves,0,236325 -1731,socks,0,235479 -2646,hairclip,0,224901 -10228,elbow_gloves,0,224390 -1793,fang,0,220644 -9843,midriff,0,217384 -2177,striped,0,215308 -581144,puffy_sleeves,0,214965 -2772,shiny,0,213040 -478849,collared_shirt,0,210998 -9864,belt,0,210075 -410129,looking_back,0,208023 -10926,pants,0,206605 -401228,sword,0,203029 -657955,artist_name,0,200583 -455880,black_thighhighs,0,199445 -464549,cloud,0,197453 -375171,indoors,0,197331 -1407561,virtual_youtuber,0,190790 -72,cat_ears,0,189097 -6010,tears,0,187990 -474821,white_gloves,0,187659 -539367,hand_up,0,184840 -411263,signature,0,183546 -400123,hair_flower,0,183132 -71730,dark_skin,0,182935 -399836,3girls,0,181979 -16252,spread_legs,0,179394 -1842,cum,0,177804 -5948,hood,0,176872 -449194,2boys,0,176291 -2357,sex,0,176106 -502710,tongue_out,0,174092 -9168,miniskirt,0,173815 -394970,wide_sleeves,0,172751 -537684,blunt_bangs,0,172693 -401481,on_back,0,172347 -375020,fingerless_gloves,0,171771 -11628,bowtie,0,171509 -374628,black_skirt,0,171449 -426781,medium_hair,0,170863 -16750,pink_eyes,0,168674 -5576,armpits,0,168191 -389378,sailor_collar,0,166004 -445,kimono,0,163145 -632214,grey_background,0,159811 -1573,water,0,158702 -4068,necklace,0,156154 -375229,off_shoulder,0,153621 -467104,stomach,0,153138 -4333,bag,0,151509 -454933,hair_bun,0,151363 -1747,chibi,0,151305 -473983,clothes_lift,0,150801 -1254363,twitter_username,0,150476 -234192,from_behind,0,150284 -656624,star_(symbol),0,150164 -3198,scarf,0,149539 -6346,cape,0,149374 -102962,nail_polish,0,148880 -659098,black_footwear,0,148127 -670071,holding_weapon,0,147624 -3796,bra,0,147612 -14620,white_dress,0,147542 -87676,orange_hair,0,147142 -261,yuri,0,146254 -125238,sweatdrop,0,145506 -4659,armor,0,143723 -465583,rabbit_ears,0,143630 -4019,mole,0,143178 -374791,white_panties,0,142500 -399541,hair_over_one_eye,0,141370 -384884,grin,0,140525 -6107,blurry,0,140047 -393959,huge_breasts,0,138103 -641577,looking_at_another,0,137202 -14599,:o,0,137129 -4152,uniform,0,136675 -13199,black_eyes,0,136390 -273,apron,0,136126 -510962,character_name,0,135131 -6176,vest,0,133100 -39127,black_dress,0,132376 -682673,mosaic_censoring,0,131028 -475187,arm_up,0,130488 -10484,vaginal,0,130137 -470807,red_bow,0,129853 -9882,high_heels,0,129652 -524070,shiny_hair,0,128887 -52138,twin_braids,0,127920 -399827,arms_up,0,126645 -378032,flat_chest,0,126144 -381629,side_ponytail,0,126049 -4052,collar,0,125695 -11904,bracelet,0,125557 -2060,feet,0,125245 -515329,covered_nipples,0,124425 -511141,from_side,0,122971 -560958,dated,0,122085 -413564,two-tone_hair,0,121190 -89368,aqua_eyes,0,120894 -3477,sweater,0,120879 -440465,speech_bubble,0,120449 -375002,white_thighhighs,0,119709 -590165,english_text,0,118831 -6295,leotard,0,118770 -379615,open_jacket,0,116898 -1515536,official_alternate_costume,0,116756 -390401,red_ribbon,0,116423 -633894,dark-skinned_female,0,115383 -652604,two_side_up,0,114391 -464586,tree,0,113682 -464553,cup,0,113550 -490655,blue_sky,0,113376 -1931,sketch,0,112175 -684639,puffy_short_sleeves,0,111946 -5501,lips,0,111075 -428173,blue_skirt,0,110413 -10644,zettai_ryouiki,0,109096 -719985,streaked_hair,0,108228 -5569,coat,0,108099 -547860,black_jacket,0,107631 -395321,crop_top,0,107314 -754325,groin,0,107206 -427008,fingernails,0,106798 -4867,wet,0,105408 -1445905,v-shaped_eyebrows,0,104747 -389404,cat_tail,0,104720 -438623,neckerchief,0,103697 -95405,orange_eyes,0,103149 -1486996,animal_ear_fluff,0,102828 -431755,head_tilt,0,102674 -451371,see-through,0,102344 -391631,gradient,0,101686 -451155,hand_on_hip,0,100931 -589,gun,0,100672 -4311,legs,0,100492 -494251,one-piece_swimsuit,0,100304 -494744,shiny_skin,0,100275 -479939,sleeves_past_wrists,0,100013 -551772,parted_bangs,0,99655 -579466,looking_to_the_side,0,99629 -464572,pillow,0,99176 -412078,wrist_cuffs,0,98658 -89228,grey_eyes,0,98579 -10923,torn_clothes,0,98539 -464535,book,0,98180 -465277,plaid,0,97928 -457408,black_pantyhose,0,97171 -59,maid,0,97157 -537200,symbol-shaped_pupils,0,96639 -481846,hands_up,0,95746 -379475,sash,0,95553 -539584,fur_trim,0,95386 -3314,kneehighs,0,95270 -463173,maid_headdress,0,95208 -7820,military,0,94582 -16718,black_panties,0,94548 -358,cosplay,0,94464 -475418,bare_arms,0,93864 -13132,petals,0,93775 -12552,pubic_hair,0,93487 -524961,black_shirt,0,93152 -2335,fox_ears,0,92753 -128,loli,0,92684 -531371,gradient_background,0,92533 -394174,short_shorts,0,92401 -449676,ascot,0,90602 -1594634,clothing_cutout,0,90293 -822149,completely_nude,0,90178 -375372,dutch_angle,0,89835 -416202,eyelashes,0,88539 -492223,bar_censor,0,88359 -1277433,mole_under_eye,0,88173 -1128907,pokemon_(creature),0,88046 -542846,no_humans,0,87715 -469714,bare_legs,0,87348 -2813,window,0,87096 -7577,open_shirt,0,86869 -464579,sparkle,0,86798 -8641,dress_shirt,0,86540 -10447,kneeling,0,86034 -407186,sleeveless_shirt,0,85905 -389813,single_braid,0,85125 -2687,v,0,84806 -1390441,black_headwear,0,84355 -382397,strapless,0,84204 -412555,4girls,0,84095 -6536,bell,0,83798 -5126,hug,0,83531 -390035,no_bra,0,83268 -7926,saliva,0,83232 -468554,double_bun,0,83167 -474500,black_ribbon,0,82872 -5032,uncensored,0,82813 -94007,aqua_hair,0,82429 -9344,bodysuit,0,81762 -2508,blood,0,80986 -2585,bed,0,80885 -202817,hoodie,0,80505 -387214,military_uniform,0,80184 -6028,sideboob,0,80142 -1247160,black_bow,0,79946 -1269639,covered_navel,0,79696 -464584,tattoo,0,79445 -391128,gradient_hair,0,79377 -444539,skindentation,0,79260 -467863,neck_ribbon,0,79084 -13853,pussy_juice,0,79048 -1736,profile,0,78791 -9312,makeup,0,78404 -443395,thigh_strap,0,78303 -427348,leaning_forward,0,78279 -513475,multiple_views,0,78169 -3918,4koma,0,77795 -411323,capelet,0,77781 -1797,mask,0,77477 -465719,muscular,0,76977 -2217,anus,0,76396 -1595,no_panties,0,76376 -10422,witch_hat,0,76061 -600177,detached_collar,0,75584 -28200,toes,0,75467 -5565,:3,0,75433 -675314,copyright_name,0,75245 -442167,alternate_hairstyle,0,74848 -626,underboob,0,74757 -3472,night,0,74665 -395400,buttons,0,74509 -565513,floating_hair,0,74507 -5832,fruit,0,74401 -568880,sleeveless_dress,0,74380 -460262,depth_of_field,0,74158 -553142,blurry_background,0,73931 -1393877,feet_out_of_frame,0,73883 -381555,headband,0,73755 -529256,fake_animal_ears,0,73059 -402217,^_^,0,72948 -377140,blue_dress,0,72944 -4075,cameltoe,0,72587 -465950,cum_in_pussy,0,72511 -51528,fox_tail,0,72338 -457597,swept_bangs,0,72173 -13176,shadow,0,71857 -374620,black_bikini,0,71747 -503552,red_skirt,0,71298 -420531,nose_blush,0,71248 -4528,bottomless,0,71247 -4320,glowing,0,71120 -1231230,side-tie_bikini_bottom,0,71041 -460802,rose,0,70153 -478565,bed_sheet,0,69319 -1094664,colored_skin,0,69055 -4009,turtleneck,0,68964 -464808,holding_hands,0,68738 -458933,facial_hair,0,68495 -464546,chain,0,68464 -442865,headgear,0,68404 -464534,bird,0,68263 -4108,pov,0,67888 -377844,siblings,0,67882 -2279,headphones,0,67786 -11325,ocean,0,67516 -567316,6+girls,0,67320 -479563,low_twintails,0,67147 -3449,heterochromia,0,67128 -394222,arm_support,0,66756 -10701,animal,0,66577 -546821,halterneck,0,66448 -374938,frown,0,66197 -4244,leaf,0,65930 -258190,beret,0,65845 -1345229,white_headwear,0,65590 -1915,umbrella,0,65482 -490999,on_bed,0,65478 -653206,one_side_up,0,65367 -144876,embarrassed,0,65057 -395448,thigh_boots,0,64869 -446950,fangs,0,64492 -1875867,upper_teeth_only,0,64490 -8714,watermark,0,64472 -444002,from_above,0,64438 -377124,back,0,64206 -436054,highleg,0,64134 -580545,blue_background,0,63957 -1328533,ass_visible_through_thighs,0,63880 -421663,wavy_hair,0,63724 -469652,garter_straps,0,63656 -1382794,black_choker,0,63389 -4010,halo,0,63200 -546609,blue_bow,0,62796 -3988,scar,0,62791 -426936,white_bikini,0,62532 -447393,on_side,0,62264 -418899,plaid_skirt,0,62245 -2904,chair,0,61608 -484666,transparent_background,0,61514 -541727,wariza,0,61484 -481508,facial_mark,0,61342 -10231,mouth_hold,0,61142 -452032,looking_away,0,61139 -400120,traditional_media,0,61046 -2799,beach,0,61036 -2091,bandages,0,61017 -1723,parody,0,61010 -663669,female_pubic_hair,0,61006 -419938,expressionless,0,60732 -1303252,brown_footwear,0,60667 -499624,blush_stickers,0,60546 -8830,shirt_lift,0,60141 -419309,thick_thighs,0,60024 -463179,no_shoes,0,59911 -698161,holding_sword,0,59858 -600250,hair_tubes,0,59809 -375404,chinese_clothes,0,59795 -8091,drill_hair,0,59557 -572767,grabbing,0,59427 -475775,arms_behind_back,0,59272 -375476,soles,0,59215 -3920,obi,0,58917 -572731,heart-shaped_pupils,0,58894 -4207,eating,0,58688 -467856,clothes_pull,0,58462 -415974,looking_down,0,58352 -2993,phone,0,58200 -612641,black_shorts,0,57955 -403649,thigh_gap,0,57892 -514890,black_pants,0,57867 -436576,short_dress,0,57816 -3593,topless,0,57655 -4831,piercing,0,57372 -2770,pantyshot,0,57314 -534835,hair_intakes,0,57252 -2270,eyepatch,0,57130 -511136,border,0,56981 -8831,skirt_lift,0,56906 -476621,floral_print,0,56816 -460404,stuffed_toy,0,56698 -466226,bound,0,56676 -2689,formal,0,56558 -709734,playboy_bunny,0,56534 -647551,flying_sweatdrops,0,56366 -375176,crossed_arms,0,56301 -574407,wavy_mouth,0,56126 -425206,magical_girl,0,56021 -3234,erection,0,55814 -387991,abs,0,55656 -2726,moon,0,55466 -688777,half-closed_eyes,0,55390 -413672,leg_up,0,55163 -420366,from_below,0,54898 -389777,red_dress,0,54821 -477028,cleavage_cutout,0,54599 -3986,sandals,0,54528 -3209,table,0,54497 -13227,happy,0,54420 -356542,sunlight,0,54218 -1850,oral,0,54046 -1976,cover,0,53985 -465810,squatting,0,53344 -1801537,single_hair_bun,0,53328 -2716,cat,0,53145 -419387,testicles,0,53002 -584749,pink_background,0,52864 -5524,sunglasses,0,52501 -488167,scrunchie,0,52459 -1288957,white_footwear,0,52395 -563478,dark-skinned_male,0,52274 -547073,underwear_only,0,52043 -461293,cum_on_body,0,51426 -413179,trembling,0,51424 -445388,bob_cut,0,51373 -3949,ring,0,51372 -9354,bdsm,0,51131 -221,school_swimsuit,0,51107 -582201,mob_cap,0,50771 -385639,wolf_ears,0,50613 -6059,blazer,0,50589 -468534,light_brown_hair,0,50353 -580232,white_jacket,0,50297 -459291,standing_on_one_leg,0,50267 -3875,sleeping,0,50236 -450107,thick_eyebrows,0,50035 -1556,backpack,0,49896 -520398,white_skirt,0,49388 -8068,demon_girl,0,49382 -492544,frilled_dress,0,49309 -643561,eyes_visible_through_hair,0,49304 -15399,breast_grab,0,49237 -6128,cardigan,0,49158 -431235,knee_boots,0,48944 -7952,suspenders,0,48876 -464588,hat_ribbon,0,48794 -465525,crossed_legs,0,48759 -319,lingerie,0,48692 -379915,stuffed_animal,0,48687 -5831,katana,0,48654 -589398,hood_down,0,48528 -466990,;d,0,48266 -487156,3boys,0,48154 -15737,bat_wings,0,48120 -391680,horse_ears,0,48063 -3649,helmet,0,47863 -487205,cloudy_sky,0,47782 -3239,cellphone,0,47781 -464903,crying,0,47537 -9114,antenna_hair,0,47482 -900563,own_hands_together,0,47389 -7455,tank_top,0,47356 -10833,bottle,0,47321 -10229,suit,0,47203 -6364,grass,0,47129 -516477,outstretched_arms,0,47051 -4526,cross,0,46975 -464539,bug,0,46589 -609507,holding_food,0,46523 -4474,fire,0,46465 -419429,frilled_skirt,0,46415 -429999,tiara,0,46411 -1836990,aged_down,0,46406 -464574,polka_dot,0,46378 -14452,feathers,0,46364 -510254,breasts_out,0,46228 -1936,crossover,0,46213 -4188,crown,0,46184 -539837,high_ponytail,0,46117 -375459,looking_up,0,46055 -580738,black_hairband,0,46027 -9714,bent_over,0,46026 -3592,undressing,0,45997 -397327,blue_shirt,0,45944 -701697,white_bow,0,45887 -421662,5girls,0,45886 -462569,straddling,0,45739 -575982,light_smile,0,45730 -464565,knife,0,45555 -634316,pectorals,0,45480 -1337464,x_hair_ornament,0,45361 -464573,plant,0,45164 -14814,couple,0,45140 -219401,denim,0,45131 -432696,on_stomach,0,44802 -487562,wing_collar,0,44774 -16700,>_<,0,44725 -3846,robot,0,44517 -576310,white_flower,0,44392 -452195,hair_bobbles,0,44248 -8709,fellatio,0,44136 -517832,outstretched_arm,0,43838 -404507,sharp_teeth,0,43781 -498000,blue_ribbon,0,43753 -4850,lipstick,0,43621 -4232,tan,0,43535 -381279,girl_on_top,0,43530 -465046,cat_girl,0,43463 -458482,short_twintails,0,43394 -1297467,lifted_by_self,0,43380 -537,bondage,0,43370 -397117,curtains,0,43288 -463397,white_socks,0,43090 -526340,letterboxed,0,43050 -423613,animal_print,0,42743 -1451588,muscular_male,0,42629 -413908,spiked_hair,0,42548 -403577,pointing,0,42540 -463115,pink_bow,0,42424 -611487,juliet_sleeves,0,42359 -395015,monster_girl,0,42318 -645320,sex_from_behind,0,42283 -521420,slit_pupils,0,42116 -2328,polearm,0,41911 -374979,all_fours,0,41887 -619736,blue_jacket,0,41861 -10707,sisters,0,41457 -534982,^^^,0,41381 -507741,frilled_sleeves,0,41351 -656169,hand_on_own_chest,0,41116 -492682,red_necktie,0,40987 -1388799,blue_sailor_collar,0,40975 -410004,crescent,0,40913 -82326,?,0,40842 -4027,staff,0,40813 -569748,black_background,0,40690 -401137,clenched_teeth,0,40516 -7558,panty_pull,0,40452 -405345,cherry_blossoms,0,40306 -464713,head_wings,0,39969 -820510,horse_girl,0,39913 -12464,brooch,0,39793 -2849,goggles,0,39780 -470790,demon_horns,0,39763 -1710,towel,0,39695 -11879,blouse,0,39694 -584911,shaded_face,0,39622 -589376,red_flower,0,39599 -515302,green_skirt,0,39506 -655303,fox_girl,0,39434 -1369969,ground_vehicle,0,39280 -447919,cover_page,0,39211 -471601,black_bra,0,39210 -302,elf,0,39186 -358992,bike_shorts,0,39177 -1019196,otoko_no_ko,0,39156 -4123,wind,0,39127 -2362,casual,0,39098 -8072,black_socks,0,39083 -401601,loafers,0,39011 -379387,t-shirt,0,38864 -489235,motion_lines,0,38824 -561547,shoulder_armor,0,38616 -403060,gauntlets,0,38611 -383830,no_pants,0,38528 -464540,building,0,38491 -93927,pink_panties,0,38441 -401836,messy_hair,0,38068 -415668,single_thighhigh,0,37934 -471498,multiple_tails,0,37915 -3046,kiss,0,37833 -466654,wristband,0,37663 -389882,group_sex,0,37616 -314230,breast_press,0,37538 -389705,between_breasts,0,37481 -465870,surprised,0,37404 -4543,striped_panties,0,37300 -524399,hat_bow,0,37085 -479729,gem,0,37068 -464542,butterfly,0,36971 -683385,red_footwear,0,36919 -390594,red_shirt,0,36911 -395533,sheath,0,36903 -374782,sneakers,0,36836 -469701,rabbit_tail,0,36820 -516211,tassel,0,36640 -464564,instrument,0,36574 -5746,box,0,36505 -521712,ear_piercing,0,36426 -448007,drooling,0,36412 -103483,fishnets,0,36371 -1227044,ribbon_trim,0,36289 -575322,clenched_hand,0,36272 -405311,sex_toy,0,36243 -1281370,red_bowtie,0,36203 -385882,third_eye,0,36102 -628293,skirt_set,0,36091 -12667,child,0,36073 -3540,hakama,0,36071 -446647,pale_skin,0,35749 -3474,portrait,0,35713 -464568,musical_note,0,35511 -427968,revealing_clothes,0,35499 -4241,rope,0,35471 -594766,star_(sky),0,35465 -376491,wet_clothes,0,35421 -4275,steam,0,35400 -2252,candy,0,35362 -166531,pink_dress,0,35227 -376002,genderswap,0,35168 -2119,facial,0,35125 -380831,demon_tail,0,35104 -368,dog_ears,0,35085 -3417,anal,0,35064 -390662,foreshortening,0,35051 -1008243,holding_gun,0,34916 -5648,nature,0,34895 -376043,covering,0,34886 -566918,adapted_costume,0,34783 -6526,side-tie_panties,0,34714 -515769,black_nails,0,34714 -166133,night_sky,0,34326 -404,christmas,0,34266 -10847,breath,0,34088 -4555,ejaculation,0,34061 -15672,veil,0,34028 -395223,scenery,0,34026 -378850,armband,0,34010 -448202,peaked_cap,0,34001 -533054,waist_apron,0,33989 -556011,lace_trim,0,33903 -421107,convenient_censoring,0,33709 -631529,white_apron,0,33648 -5855,couch,0,33563 -468477,arms_behind_head,0,33416 -465152,china_dress,0,33413 -1865,bandaid,0,33315 -704500,holding_cup,0,33262 -1314596,black_leotard,0,33183 -601824,male_pubic_hair,0,32925 -524897,interlocked_fingers,0,32856 -1302826,mole_under_mouth,0,32799 -4000,microphone,0,32717 -417741,bridal_gauntlets,0,32598 -375764,bara,0,32520 -538298,strapless_dress,0,32510 -448225,tokin_hat,0,32508 -1568,yaoi,0,32378 -478557,straight_hair,0,32366 -456255,front-tie_top,0,32272 -426598,bow_panties,0,32233 -2755,lace,0,32198 -561,mecha,0,32195 -531068,hakama_skirt,0,32173 -723773,hand_fan,0,32170 -477288,white_ribbon,0,32158 -389108,glowing_eyes,0,32156 -566461,anger_vein,0,32053 -466984,...,0,32033 -659059,breasts_apart,0,31889 -664258,no_headwear,0,31856 -602295,hair_over_shoulder,0,31780 -670638,clothes_writing,0,31699 -469125,jingle_bell,0,31677 -146061,baseball_cap,0,31672 -593298,yellow_background,0,31665 -1288118,hair_flaps,0,31467 -457883,string_bikini,0,31418 -674623,feathered_wings,0,31394 -428523,hooded_jacket,0,31351 -400041,cum_on_breasts,0,31297 -1411175,bikini_top_only,0,31290 -1416353,red_headwear,0,31191 -383851,twin_drills,0,31075 -665452,facing_viewer,0,31063 -389553,skin_tight,0,31044 -486674,multiple_penises,0,31006 -1441885,semi-rimless_eyewear,0,30943 -401968,red_nails,0,30789 -1275600,bright_pupils,0,30787 -647129,black_necktie,0,30692 -643253,web_address,0,30676 -376528,:<,0,30640 -3508,angry,0,30615 -611670,grey_shirt,0,30549 -320292,cloak,0,30520 -1441877,eyewear_on_head,0,30414 -554980,motor_vehicle,0,30386 -593296,red_background,0,30382 -11410,claws,0,30300 -389814,side_braid,0,30190 -407678,wolf_tail,0,30179 -1316316,pelvic_curtain,0,30158 -635112,light_particles,0,30146 -1593554,light_purple_hair,0,30050 -670636,multicolored_clothes,0,30015 -410734,carrying,0,30007 -392990,micro_bikini,0,29907 -467811,knees_up,0,29889 -645083,smartphone,0,29850 -4172,corset,0,29825 -2329,tentacles,0,29635 -635786,index_finger_raised,0,29578 -648130,clothing_aside,0,29578 -390596,purple_dress,0,29414 -547132,extra_ears,0,29398 -382270,rifle,0,29351 -15764,striped_thighhighs,0,29349 -668761,white_border,0,29331 -374845,mary_janes,0,29321 -15260,beard,0,29165 -581,paizuri,0,29093 -392810,vertical_stripes,0,29091 -488864,red_jacket,0,29047 -15689,:p,0,29013 -1388801,red_neckerchief,0,28937 -717927,short_hair_with_long_locks,0,28919 -566116,scar_on_face,0,28750 -462808,tareme,0,28700 -1452299,neck_bell,0,28677 -9474,licking,0,28656 -15749,furry,0,28624 -549225,single_horn,0,28498 -77257,strap_slip,0,28432 -429369,finger_to_mouth,0,28430 -668635,pom_pom_(clothes),0,28411 -2102,snow,0,28403 -510802,french_braid,0,28301 -10902,close-up,0,28288 -149598,androgynous,0,28230 -1463605,1other,0,28215 -533356,areola_slip,0,28137 -3284,forehead,0,28104 -375723,puffy_nipples,0,28072 -448477,buckle,0,28057 -458223,horse_tail,0,28024 -685432,two-tone_background,0,27949 -422340,full_moon,0,27938 -390257,eye_contact,0,27886 -819964,pink_flower,0,27858 -4536,tsurime,0,27654 -563256,yellow_bow,0,27619 -4530,gift,0,27609 -396969,seiza,0,27454 -389402,upskirt,0,27366 -491144,blue_bikini,0,27350 -470798,pink_nails,0,27118 -455456,santa_hat,0,27080 -1364406,genderswap_(mtf),0,27054 -11813,lens_flare,0,27008 -1501540,skin_fang,0,27006 -376594,spikes,0,26942 -375519,armlet,0,26928 -656165,hand_on_own_face,0,26903 -2907,desk,0,26794 -462583,between_legs,0,26647 -486611,brown_gloves,0,26624 -379489,side_slit,0,26588 -467493,handgun,0,26485 -2447,camisole,0,26462 -384552,wading,0,26457 -486327,faceless,0,26424 -586765,low_ponytail,0,26408 -397411,restrained,0,26372 -10905,pendant,0,26314 -394151,plate,0,26272 -379725,dual_persona,0,26249 -577,masturbation,0,26248 -467585,highleg_leotard,0,26243 -584958,spoken_heart,0,26233 -378743,curvy,0,26139 -615165,green_bow,0,26102 -529213,maid_apron,0,26053 -393879,alcohol,0,26052 -418395,after_sex,0,26042 -616524,grey_skirt,0,26031 -1656,handjob,0,25938 -491758,sleeves_rolled_up,0,25936 -435433,red_gloves,0,25869 -658106,o-ring,0,25822 -435555,heavy_breathing,0,25815 -1585391,abyssal_ship,0,25726 -14946,eyeshadow,0,25687 -665184,ribbed_sweater,0,25673 -459933,drinking_glass,0,25619 -571690,hair_scrunchie,0,25536 -491112,cowgirl_position,0,25531 -535373,cross-laced_footwear,0,25481 -1491014,blue_headwear,0,25429 -2863,broom,0,25426 -5474,ball,0,25393 -684620,puffy_long_sleeves,0,25158 -1455296,sleeves_past_fingers,0,25090 -438458,clenched_hands,0,25038 -673911,hood_up,0,25014 -626528,cropped_legs,0,25012 -406964,floating,0,24989 -376117,wide_hips,0,24969 -4261,forest,0,24911 -689532,low-tied_long_hair,0,24901 -382111,breast_hold,0,24875 -3943,smoke,0,24872 -9311,zipper,0,24870 -375441,dress_lift,0,24870 -392024,tray,0,24870 -396680,personification,0,24869 -662952,headwear_removed,0,24860 -545992,high_heel_boots,0,24765 -643274,partially_submerged,0,24661 -390681,headset,0,24628 -4596,halloween,0,24593 -10279,hair_rings,0,24560 -380540,legs_up,0,24503 -521477,half_updo,0,24493 -469517,doujin_cover,0,24453 -520397,pink_skirt,0,24451 -523327,starry_sky,0,24440 -536573,colored_sclera,0,24438 -470314,pencil_skirt,0,24405 -1295582,strapless_leotard,0,24362 -479374,single_glove,0,24336 -471755,machinery,0,24312 -374915,clothed_sex,0,24306 -497607,blue_nails,0,24306 -497007,backlighting,0,24291 -15261,freckles,0,24267 -671227,tearing_up,0,24176 -11527,reflection,0,24165 -465145,tanlines,0,24162 -609,fish,0,24161 -432529,sweater_vest,0,24147 -658950,holding_book,0,24143 -511594,arm_behind_back,0,24075 -549356,arm_at_side,0,24024 -453340,santa_costume,0,24020 -1629722,large_pectorals,0,23996 -494669,spot_color,0,23925 -8243,flying,0,23894 -463127,white_bra,0,23883 -615735,asymmetrical_legwear,0,23876 -646879,brown_background,0,23852 -592555,panties_under_pantyhose,0,23749 -634781,nontraditional_miko,0,23719 -460324,red_bikini,0,23696 -149799,happy_birthday,0,23664 -491367,cropped_jacket,0,23653 -494241,long_fingernails,0,23613 -402062,!,0,23577 -531403,kemonomimi_mode,0,23538 -479146,sailor_dress,0,23441 -651957,clothed_female_nude_male,0,23322 -14442,walking,0,23236 -1851,fingering,0,23218 -574271,science_fiction,0,23187 -1651,rain,0,23181 -403173,white_pantyhose,0,23165 -7581,garter_belt,0,23110 -483898,frilled_bikini,0,23102 -460502,dual_wielding,0,23083 -572753,6+boys,0,23077 -520991,pink_ribbon,0,23054 -6175,cuffs,0,23036 -1373022,red-framed_eyewear,0,23024 -664922,dragon_horns,0,23024 -427674,epaulettes,0,23020 -376923,black_wings,0,23007 -464538,bubble,0,22982 -388067,demon_wings,0,22937 -4925,thong,0,22871 -617615,legs_apart,0,22854 -4648,teacup,0,22847 -1569,condom,0,22825 -442816,veins,0,22823 -465382,crossdressing,0,22797 -1258089,ribbon-trimmed_sleeves,0,22795 -1251593,holding_phone,0,22789 -7450,gym_uniform,0,22731 -475720,short_ponytail,0,22714 -529447,arm_behind_head,0,22709 -1916,cake,0,22701 -602223,out_of_frame,0,22689 -2169,innertube,0,22668 -583857,oni_horns,0,22662 -669624,contrapposto,0,22656 -10376,naughty_face,0,22568 -593297,green_background,0,22526 -633528,alternate_breast_size,0,22467 -643898,purple_background,0,22460 -1373029,black-framed_eyewear,0,22424 -1810,rape,0,22416 -6441,beads,0,22362 -654772,knee_up,0,22316 -610698,hat_ornament,0,22311 -1636487,one-hour_drawing_challenge,0,22279 -570718,fur_collar,0,22266 -617356,blue_shorts,0,22246 -713987,outside_border,0,22190 -728008,thighband_pantyhose,0,22190 -8198,meme,0,22166 -10402,bowl,0,22146 -2056,toenails,0,22138 -3354,cumdrip,0,22082 -1242758,blue_flower,0,22045 -416676,denim_shorts,0,22042 -394305,curly_hair,0,22035 -457726,track_jacket,0,22026 -1388800,black_sailor_collar,0,21962 -1388933,light_blush,0,21928 -374849,school_bag,0,21924 -508016,pocket,0,21923 -10543,spread_pussy,0,21902 -403286,toned,0,21876 -514515,pink_shirt,0,21867 -5875,doggystyle,0,21840 -688711,white_sleeves,0,21801 -412202,:q,0,21781 -1278062,hand_in_own_hair,0,21700 -1292999,spoken_ellipsis,0,21670 -375986,empty_eyes,0,21646 -610272,purple_skirt,0,21645 -572906,crying_with_eyes_open,0,21630 -583299,goggles_on_head,0,21629 -166757,green_dress,0,21584 -479955,4boys,0,21539 -168390,bulge,0,21519 -466881,sun_hat,0,21508 -377078,cum_in_mouth,0,21505 -452086,lolita_fashion,0,21497 -427050,shiny_clothes,0,21494 -9872,pauldrons,0,21475 -397215,outline,0,21438 -2378,buruma,0,21384 -670088,hand_on_another's_head,0,21384 -389,futanari,0,21376 -1592077,topless_male,0,21362 -1441886,under-rim_eyewear,0,21290 -579793,frilled_apron,0,21156 -560247,white_pupils,0,21124 -464578,skull,0,21119 -492380,jitome,0,21103 -684644,gold_trim,0,21037 -398273,long_legs,0,21023 -2489,sunset,0,21004 -464566,monster,0,20950 -1258262,frilled_shirt_collar,0,20942 -559163,emphasis_lines,0,20888 -426491,hands_on_hips,0,20853 -1119509,high-waist_skirt,0,20812 -7585,new_year,0,20801 -106450,shield,0,20770 -580379,aged_up,0,20754 -1670660,animal_hands,0,20736 -554098,mole_on_breast,0,20679 -4145,spear,0,20661 -538475,asymmetrical_hair,0,20605 -472916,female_masturbation,0,20559 -534168,v_arms,0,20548 -483919,single_earring,0,20521 -6439,running,0,20477 -4039,dog,0,20400 -384087,angel_wings,0,20387 -391713,long_skirt,0,20326 -1874884,breasts_squeezed_together,0,20292 -442474,competition_swimsuit,0,20256 -11882,watch,0,20197 -380572,dog_tail,0,20182 -546229,black_belt,0,20142 -1233478,black_serafuku,0,20119 -10031,faceless_male,0,20106 -652293,legs_together,0,20102 -10538,ice,0,20076 -391297,white_skin,0,20066 -1293269,blue_footwear,0,20063 -434996,o_o,0,20055 -454379,=_=,0,20055 -18013,ass_grab,0,20045 -509884,impossible_clothes,0,19994 -1247162,purple_bow,0,19993 -493843,head_rest,0,19941 -494245,red_scarf,0,19940 -9831,teddy_bear,0,19932 -399655,striped_bikini,0,19911 -537668,poke_ball,0,19839 -613885,brown_skirt,0,19829 -442316,pouch,0,19819 -1559,minigirl,0,19805 -452445,+_+,0,19786 -1396724,white_sailor_collar,0,19749 -1515358,blue_theme,0,19669 -16554,plump,0,19626 -2467,ghost,0,19612 -2336,cigarette,0,19600 -538012,hat_removed,0,19598 -394759,hand_in_pocket,0,19584 -474995,brown_pantyhose,0,19528 -520850,bespectacled,0,19521 -494842,braided_ponytail,0,19474 -417888,age_difference,0,19463 -690177,tress_ribbon,0,19460 -648056,paw_pose,0,19458 -375606,open_coat,0,19416 -465871,rabbit,0,19393 -8565,sarashi,0,19391 -494869,black_coat,0,19379 -658682,knees_together_feet_apart,0,19360 -15571,shawl,0,19349 -1255562,folded_ponytail,0,19273 -553367,turret,0,19264 -1271922,black_vest,0,19257 -1835738,blue_one-piece_swimsuit,0,19186 -2268,popsicle,0,19177 -462546,hand_between_legs,0,19129 -15916,hair_down,0,19087 -483081,high_collar,0,19049 -578153,drinking_straw,0,19046 -502548,yellow_shirt,0,18994 -477354,sheathed,0,18974 -375883,dragon_girl,0,18958 -399,yukata,0,18933 -620577,brown_jacket,0,18918 -1811,twins,0,18785 -382969,bow_(weapon),0,18780 -15200,robe,0,18714 -3661,oni,0,18708 -462209,thought_bubble,0,18690 -451370,upside-down,0,18665 -2967,jeans,0,18614 -417866,serious,0,18609 -401289,yellow_ribbon,0,18572 -466335,object_insertion,0,18543 -417883,striped_shirt,0,18515 -506510,military_hat,0,18514 -464562,injury,0,18443 -405124,smirk,0,18439 -398889,circlet,0,18423 -600222,light_rays,0,18405 -3603,lollipop,0,18324 -16721,blue_panties,0,18317 -11285,@_@,0,18293 -473529,;),0,18288 -452112,tabard,0,18277 -380289,missionary,0,18275 -1303583,blue_necktie,0,18271 -534968,mini_hat,0,18270 -717047,page_number,0,18270 -1386163,patreon_username,0,18260 -394368,bouncing_breasts,0,18250 -446472,red_rose,0,18244 -1814875,eyebrows_hidden_by_hair,0,18221 -467008,hoop_earrings,0,18199 -400,pajamas,0,18122 -572346,wide-eyed,0,18110 -1822,threesome,0,18100 -1611666,dakimakura_(medium),0,18057 -467285,crystal,0,18054 -4033,lantern,0,18052 -1369802,blurry_foreground,0,18022 -1314750,white_hairband,0,17984 -427398,butt_crack,0,17982 -458932,sideburns,0,17937 -1517199,mature_female,0,17906 -712723,striped_bow,0,17905 -1045681,white_shorts,0,17904 -493026,tentacle_hair,0,17900 -392585,contemporary,0,17864 -374921,sports_bra,0,17840 -5705,ofuda,0,17806 -561624,water_drop,0,17796 -1320204,black_bowtie,0,17724 -15770,top_hat,0,17717 -379945,hairpin,0,17711 -475744,breastplate,0,17707 -1256698,partially_fingerless_gloves,0,17688 -502047,blood_on_face,0,17681 -423620,:t,0,17653 -472727,wooden_floor,0,17584 -538768,height_difference,0,17567 -11135,rock,0,17531 -508272,belt_buckle,0,17522 -387213,handbag,0,17511 -448882,|_|,0,17504 -447403,jumping,0,17482 -461117,snowing,0,17469 -544306,colored_eyelashes,0,17455 -3478,mirror,0,17445 -252271,mug,0,17428 -1283885,crossed_bangs,0,17403 -4357,chocolate,0,17384 -513807,hug_from_behind,0,17364 -872616,white_kimono,0,17362 -461492,green_jacket,0,17340 -456193,outstretched_hand,0,17340 -677856,star_hair_ornament,0,17329 -464536,bouquet,0,17310 -4909,chopsticks,0,17307 -381092,paper,0,17304 -527682,object_hug,0,17298 -394992,shoulder_bag,0,17284 -610013,pink_lips,0,17263 -6207,sportswear,0,17239 -7532,stairs,0,17184 -643286,full-face_blush,0,17181 -1349206,cropped_torso,0,17141 -1532466,colored_inner_hair,0,17112 -1648,oekaki,0,17056 -667171,holding_umbrella,0,17024 -662799,animal_hood,0,17005 -460907,one_eye_covered,0,17000 -464567,mountain,0,16918 -507245,glint,0,16875 -409364,covering_breasts,0,16833 -469668,raised_eyebrows,0,16829 -8807,city,0,16812 -1631677,mature_male,0,16767 -1671,underwater,0,16731 -2074,vibrator,0,16722 -2312,valentine,0,16712 -9434,wedding_dress,0,16709 -456688,multicolored_eyes,0,16704 -548722,enmaided,0,16697 -553015,open_book,0,16653 -498828,adjusting_clothes,0,16652 -1405752,meme_attire,0,16650 -1582,miko,0,16636 -594859,backless_outfit,0,16613 -379632,panties_aside,0,16594 -701042,bandaged_arm,0,16573 -472407,turtleneck_sweater,0,16443 -16609,bloomers,0,16435 -486,doll,0,16425 -411759,cum_on_hair,0,16414 -7426,sign,0,16400 -458728,waving,0,16390 -1249693,borrowed_character,0,16369 -7783,pout,0,16369 -5953,snake,0,16363 -478640,hair_bell,0,16356 -7486,fighting_stance,0,16351 -11858,forehead_mark,0,16335 -397690,motion_blur,0,16322 -376102,realistic,0,16156 -1226391,yellow_flower,0,16135 -8705,ice_cream,0,16133 -464582,strawberry,0,16122 -442898,skirt_hold,0,16109 -379820,aircraft,0,16077 -472197,white_pants,0,16042 -1243463,orange_bow,0,16034 -560,card,0,16015 -617355,grey_jacket,0,16004 -2809,spoon,0,15980 -433182,!?,0,15963 -499629,headpiece,0,15949 -397574,panties_around_one_leg,0,15937 -2205,mouse_ears,0,15932 -428330,brother_and_sister,0,15870 -1802,leash,0,15849 -456585,pink_bra,0,15847 -401340,nose,0,15816 -375144,nurse_cap,0,15808 -456370,hands_in_pockets,0,15808 -570942,front-tie_bikini_top,0,15724 -471090,hair_tie,0,15710 -1260354,text_focus,0,15704 -8418,fence,0,15687 -687736,short_eyebrows,0,15675 -1339995,green_headwear,0,15662 -13207,bandana,0,15650 -643257,white_leotard,0,15646 -667463,visor_cap,0,15637 -2319,fantasy,0,15635 -1441883,round_eyewear,0,15633 -594664,green_shirt,0,15616 -16139,mustache,0,15597 -1332796,round_teeth,0,15590 -1335533,holding_staff,0,15576 -421198,center_opening,0,15520 -10549,clitoris,0,15483 -15224,sand,0,15473 -446622,hime_cut,0,15432 -3429,drink,0,15413 -509379,on_floor,0,15395 -1352777,eighth_note,0,15359 -406736,covering_mouth,0,15357 -464544,can,0,15347 -165438,anklet,0,15332 -1081309,mouth_mask,0,15326 -378561,blue_skin,0,15320 -417996,overflow,0,15310 -645753,orange_background,0,15299 -1755,dildo,0,15284 -464569,palm_tree,0,15266 -10440,door,0,15240 -1252945,scar_across_eye,0,15238 -16738,geta,0,15231 -1226390,purple_flower,0,15227 -3313,dragon,0,15216 -660726,rabbit_girl,0,15211 -375266,top-down_bottom-up,0,15186 -645579,fake_tail,0,15181 -513625,asymmetrical_bangs,0,15171 -548703,sitting_on_person,0,15168 -435262,stubble,0,15155 -1681088,furry_female,0,15151 -588674,furrowed_brow,0,15142 -457114,dragon_tail,0,15125 -15126,interracial,0,15118 -13027,fork,0,15080 -465444,antennae,0,15070 -384441,alternate_color,0,15070 -676924,anchor_symbol,0,15035 -383337,sailor_hat,0,15022 -1569657,arrow_(projectile),0,14974 -1262298,off-shoulder_dress,0,14966 -1757,music,0,14950 -501706,card_(medium),0,14946 -477439,white_wings,0,14916 -2367,blindfold,0,14860 -487236,long_dress,0,14814 -444411,licking_lips,0,14807 -1310938,white_one-piece_swimsuit,0,14803 -1569656,arrow_(symbol),0,14797 -553797,sharp_fingernails,0,14786 -407647,adjusting_hair,0,14768 -478262,double_v,0,14763 -527256,green_ribbon,0,14760 -662424,frog_hair_ornament,0,14727 -460642,spread_arms,0,14713 -549355,arms_at_sides,0,14706 -394528,winter_uniform,0,14666 -2562,camera,0,14662 -5228,wand,0,14618 -432198,arched_back,0,14618 -498413,jacket_on_shoulders,0,14614 -1509969,hip_focus,0,14602 -421492,veiny_penis,0,14598 -1516547,brown_headwear,0,14574 -681331,heart_hair_ornament,0,14555 -594129,head_out_of_frame,0,14554 -8891,zoom_layer,0,14541 -7508,straw_hat,0,14516 -461529,apple,0,14510 -524661,folding_fan,0,14476 -5267,labcoat,0,14458 -397045,railing,0,14457 -494337,purple_ribbon,0,14443 -9260,blanket,0,14441 -5160,gag,0,14424 -387050,sun,0,14422 -297980,hanging_breasts,0,14410 -1358345,pink_footwear,0,14406 -1835743,black_one-piece_swimsuit,0,14389 -541716,yokozuwari,0,14316 -450779,emblem,0,14316 -464583,sunflower,0,14308 -448621,arm_warmers,0,14308 -4318,pasties,0,14304 -465048,dog_girl,0,14302 -392031,groping,0,14294 -622688,muscular_female,0,14294 -2614,shota,0,14290 -10801,android,0,14284 -640898,alternate_hair_length,0,14279 -457574,horizon,0,14277 -403785,lowleg,0,14275 -390589,branch,0,14230 -660814,dot_nose,0,14212 -526693,holding_clothes,0,14179 -5621,smoking,0,14176 -414971,purple_shirt,0,14154 -3714,cannon,0,14150 -1304046,black_bodysuit,0,14119 -1363594,red_hairband,0,14114 -472943,black_sclera,0,14107 -1505129,chinese_text,0,14085 -8104,angel,0,14083 -1349592,blue_kimono,0,14078 -9044,leg_lift,0,14074 -526218,bandeau,0,14074 -420598,highleg_panties,0,14066 -9351,gothic_lolita,0,14051 -646549,red_cape,0,14046 -1351963,ass_focus,0,14019 -380423,goatee,0,14013 -460323,pink_bikini,0,13999 -393578,beanie,0,13998 -397380,name_tag,0,13995 -445092,wince,0,13987 -656161,hand_on_own_cheek,0,13981 -453244,wolf_girl,0,13969 -578430,floral_background,0,13951 -1256471,off-shoulder_shirt,0,13946 -451332,bun_cover,0,13942 -407056,unbuttoned,0,13931 -15395,clock,0,13912 -594404,hat_flower,0,13902 -529493,jack-o'-lantern,0,13886 -560473,partially_visible_vulva,0,13886 -578,lactation,0,13869 -1263229,hand_on_headwear,0,13839 -550131,large_areolae,0,13796 -1343866,black_sleeves,0,13790 -1077303,underbust,0,13739 -408040,hitodama,0,13722 -1359441,collared_dress,0,13716 -562882,blue_pants,0,13705 -442577,ahegao,0,13675 -516350,white_coat,0,13658 -547289,drawstring,0,13624 -524779,microskirt,0,13600 -133767,swimsuit_under_clothes,0,13598 -541903,purple_nails,0,13596 -505450,gift_box,0,13585 -552306,criss-cross_halter,0,13571 -451767,food_on_face,0,13549 -409425,bookshelf,0,13542 -4974,gangbang,0,13540 -6032,tabi,0,13538 -484456,back-to-back,0,13531 -8822,eyeball,0,13531 -2898,basket,0,13522 -560167,character_doll,0,13507 -381163,petticoat,0,13506 -15987,logo,0,13506 -376830,untied,0,13497 -390591,nipple_slip,0,13485 -667849,bandaid_on_face,0,13474 -444095,tail_ornament,0,13468 -1256690,suspender_skirt,0,13451 -4816,gakuran,0,13430 -462124,large_penis,0,13430 -609887,blue_gloves,0,13421 -643824,grabbing_from_behind,0,13400 -448279,cabbie_hat,0,13375 -1312862,blue_bowtie,0,13370 -670983,hand_on_another's_shoulder,0,13361 -305065,saliva_trail,0,13305 -453768,fairy_wings,0,13293 -509,pocky,0,13291 -572684,white_scarf,0,13274 -409592,argyle,0,13257 -455932,size_difference,0,13250 -518422,covered_mouth,0,13250 -663804,armored_dress,0,13203 -537093,lace-up_boots,0,13197 -1354790,yellow_ascot,0,13188 -621064,red_vest,0,13166 -519572,toenail_polish,0,13148 -14859,pointless_censoring,0,13141 -639717,taut_clothes,0,13141 -1332478,shrug_(clothing),0,13135 -550405,holding_flower,0,13117 -420,onsen,0,13111 -1764,guitar,0,13111 -11030,silhouette,0,13100 -457877,leaning_back,0,13073 -558436,silent_comic,0,13061 -588702,vambraces,0,13060 -530083,kneepits,0,13036 -460911,tiles,0,13010 -375026,headdress,0,12999 -10713,unzipped,0,12965 -469042,2koma,0,12953 -1329246,center_frills,0,12943 -535691,butterfly_hair_ornament,0,12934 -375285,winter_clothes,0,12896 -232297,gohei,0,12889 -493832,military_vehicle,0,12879 -149791,drinking,0,12869 -583983,black_cape,0,12865 -713203,crotch_seam,0,12849 -522051,on_head,0,12835 -1602539,vision_(genshin_impact),0,12775 -455615,cow_print,0,12766 -481511,red_lips,0,12763 -5252,cow_ears,0,12756 -399930,highleg_swimsuit,0,12754 -474819,brown_thighhighs,0,12740 -392133,heart_censor,0,12731 -2586,witch,0,12722 -1601823,retro_artstyle,0,12713 -454489,no_nose,0,12712 -4308,pen,0,12700 -1799095,female_child,0,12686 -413878,electricity,0,12677 -470562,spaghetti_strap,0,12671 -406034,arm_grab,0,12648 -43263,anchor,0,12642 -23249,everyone,0,12603 -559022,shirt_tucked_in,0,12589 -2276,pool,0,12575 -11173,sundress,0,12575 -16704,glass,0,12539 -1804525,bridal_garter,0,12500 -571873,checkered_clothes,0,12495 -450702,naval_uniform,0,12444 -378454,wind_lift,0,12417 -1241714,korean_text,0,12403 -742715,adjusting_eyewear,0,12401 -818365,selfie,0,12344 -1571375,poke_ball_(basic),0,12343 -416906,bangle,0,12329 -379970,bound_wrists,0,12313 -10280,flag,0,12313 -488169,cleft_of_venus,0,12302 -482679,facing_away,0,12302 -11270,mittens,0,12284 -464560,frog,0,12276 -843399,double-breasted,0,12249 -435550,headpat,0,12235 -423612,wedding_ring,0,12233 -84427,reading,0,12185 -3468,classroom,0,12185 -469224,blue_thighhighs,0,12162 -720637,chromatic_aberration,0,12156 -517935,purple_bikini,0,12141 -280408,salute,0,12131 -542666,flipped_hair,0,12106 -297241,smug,0,12103 -1447826,notice_lines,0,12078 -1372775,pinafore_dress,0,12076 -1328010,fur-trimmed_jacket,0,12052 -2880,scythe,0,12042 -450337,ankle_boots,0,12038 -2181,cheerleader,0,12038 -644684,chestnut_mouth,0,12015 -693118,absurdly_long_hair,0,12009 -1574,magic,0,11985 -246,nun,0,11976 -659072,muneate,0,11975 -1781,car,0,11969 -458819,talking,0,11958 -668671,holding_knife,0,11922 -607626,hair_stick,0,11915 -481383,wristwatch,0,11893 -230,waitress,0,11884 -1374209,food-themed_hair_ornament,0,11861 -3242,airplane,0,11859 -1307840,stud_earrings,0,11851 -624352,strap_gap,0,11840 -643027,light_blue_hair,0,11820 -376451,inverted_nipples,0,11812 -411783,potted_plant,0,11776 -1297465,pulled_by_self,0,11774 -1667541,pom_pom_(cheerleading),0,11740 -2780,beachball,0,11717 -3880,light,0,11690 -1609981,uneven_legwear,0,11671 -680569,foot_focus,0,11656 -665407,hand_to_own_mouth,0,11651 -1053124,sideways_glance,0,11642 -390064,gagged,0,11622 -492202,flat_cap,0,11622 -458,nurse,0,11587 -1315939,brown_belt,0,11579 -416331,animal_costume,0,11554 -495530,bikini_under_clothes,0,11545 -397948,road,0,11538 -2802,earmuffs,0,11535 -684289,spoken_question_mark,0,11533 -661340,holding_poke_ball,0,11521 -408359,bare_back,0,11507 -8318,nipple_tweak,0,11485 -536,bukkake,0,11472 -656170,hands_on_own_chest,0,11451 -1230896,horn_ornament,0,11447 -3992,bucket,0,11441 -1416387,kita_high_school_uniform,0,11437 -1113504,hair_behind_ear,0,11436 -152,ninja,0,11416 -516299,style_parody,0,11403 -391568,assault_rifle,0,11397 -1387418,back_bow,0,11386 -704492,armored_boots,0,11381 -376460,fishnet_pantyhose,0,11378 -1278425,rigging,0,11372 -374936,lamp,0,11370 -414765,hair_over_eyes,0,11368 -471181,eyeliner,0,11367 -12457,tatami,0,11350 -543958,bags_under_eyes,0,11328 -446289,cow_horns,0,11318 -2565,battle,0,11310 -6312,femdom,0,11272 -1301111,white_sweater,0,11258 -4572,candle,0,11252 -393028,controller,0,11245 -4436,bench,0,11240 -476771,bush,0,11232 -42918,scales,0,11213 -407744,happy_sex,0,11210 -440780,sailor_shirt,0,11194 -646445,mask_on_head,0,11186 -5214,overalls,0,11182 -1327458,steaming_body,0,11182 -1685196,hakama_short_skirt,0,11165 -626241,triangular_headpiece,0,11147 -411560,sexually_suggestive,0,11144 -11883,cityscape,0,11138 -688713,snake_hair_ornament,0,11138 -7580,mecha_musume,0,11109 -465707,biting,0,11105 -461439,tube_top,0,11104 -1328421,crown_braid,0,11099 -613947,toeless_legwear,0,11091 -484631,naked_shirt,0,11046 -15131,riding,0,11036 -468449,brown_dress,0,11032 -605892,pov_hands,0,11004 -441419,:>,0,11000 -473301,bow_bra,0,10993 -544390,>:),0,10964 -498201,mini_crown,0,10958 -1516549,pink_headwear,0,10944 -479176,bird_wings,0,10934 -452205,stuffed_bunny,0,10882 -374409,bad_anatomy,0,10880 -331704,bodystocking,0,10879 -15272,bridal_veil,0,10876 -1862786,reaching_towards_viewer,0,10864 -572672,japanese_armor,0,10861 -482857,joints,0,10857 -2231,fairy,0,10857 -568920,+++,0,10851 -699839,halloween_costume,0,10845 -1372733,blue_leotard,0,10838 -404958,pilot_suit,0,10829 -464543,cable,0,10826 -705211,fake_horns,0,10826 -412037,open_fly,0,10811 -843857,red_kimono,0,10769 -393840,purple_panties,0,10765 -526025,pleated_dress,0,10761 -374533,creature,0,10746 -6158,orgasm,0,10743 -506,dark,0,10736 -558230,ice_wings,0,10733 -532943,covering_crotch,0,10708 -5104,shade,0,10696 -211409,wet_shirt,0,10693 -6318,space,0,10690 -682963,claw_pose,0,10690 -7495,sarong,0,10662 -1308012,red_hakama,0,10624 -669033,triangle_mouth,0,10620 -1669227,hugging_own_legs,0,10590 -1257079,print_kimono,0,10568 -535186,breast_pocket,0,10565 -386389,bracer,0,10564 -390180,bathing,0,10559 -185924,key,0,10559 -1389122,black_collar,0,10551 -480899,5boys,0,10529 -394881,school_desk,0,10512 -394136,red_panties,0,10506 -1801550,single_side_bun,0,10504 -463399,randoseru,0,10500 -1303436,red_choker,0,10497 -464570,peach,0,10486 -389456,holster,0,10474 -599873,air_bubble,0,10456 -493887,food_in_mouth,0,10448 -576561,alternate_eye_color,0,10424 -484924,heart_hands,0,10415 -16149,sack,0,10410 -547893,indian_style,0,10398 -525747,lolita_hairband,0,10392 -1611664,oil-paper_umbrella,0,10388 -695937,white_outline,0,10369 -414957,confetti,0,10366 -4965,dagger,0,10358 -648077,heart_of_string,0,10355 -421188,against_wall,0,10350 -603647,frilled_shirt,0,10347 -1685910,painting_(medium),0,10330 -1693074,own_hands_clasped,0,10329 -613597,print_legwear,0,10327 -656166,hands_on_own_face,0,10322 -507378,yellow_bikini,0,10320 -580906,low_wings,0,10316 -466164,laughing,0,10311 -669725,holding_bag,0,10306 -459290,snowflakes,0,10304 -469422,paw_print,0,10283 -670635,cross-laced_clothes,0,10276 -394722,wet_hair,0,10266 -528129,one_breast_out,0,10265 -614988,pink_jacket,0,10262 -466325,autumn_leaves,0,10259 -394150,blue_rose,0,10234 -377998,petite,0,10222 -5626,antlers,0,10214 -610524,star-shaped_pupils,0,10212 -408438,hair_up,0,10209 -1262171,holding_bottle,0,10182 -614271,lace-trimmed_legwear,0,10161 -551848,polka_dot_background,0,10147 -1795966,cone_hair_bun,0,10144 -8180,drunk,0,10135 -461736,alternate_hair_color,0,10128 -15020,hibiscus,0,10120 -1447858,feather_hair_ornament,0,10080 -464545,carrot,0,10075 -502136,whisker_markings,0,10073 -468789,paw_gloves,0,10067 -434704,string,0,10059 -653480,yellow_jacket,0,10056 -2559,incest,0,10052 -1681089,furry_male,0,10041 -411770,cum_in_ass,0,10031 -4358,plugsuit,0,10025 -372,bath,0,10024 -464674,stretching,0,10003 -288161,office_lady,0,9994 -15771,raccoon_ears,0,9993 -1335363,arm_tattoo,0,9987 -4026,pumpkin,0,9981 -602796,star_print,0,9977 -1285325,wrist_scrunchie,0,9952 -1297657,zipper_pull_tab,0,9949 -1320887,anal_object_insertion,0,9943 -474598,tate_eboshi,0,9933 -473213,red_thighhighs,0,9930 -656167,hand_on_another's_face,0,9907 -450266,wine_glass,0,9903 -617956,brown_shirt,0,9902 -1314823,black_sweater,0,9902 -9586,habit,0,9879 -469551,facepaint,0,9873 -496617,marker_(medium),0,9871 -594366,bat_(animal),0,9870 -1250483,holding_fan,0,9859 -409720,scabbard,0,9851 -1222476,crescent_hair_ornament,0,9841 -412048,ribbon_choker,0,9807 -3444,computer,0,9803 -4960,parasol,0,9779 -638006,thighlet,0,9776 -576287,blood_on_clothes,0,9756 -592643,navel_cutout,0,9752 -616593,purple_gloves,0,9741 -13810,torii,0,9738 -1481917,sakuragaoka_high_school_uniform,0,9728 -375110,haori,0,9727 -544230,asymmetrical_wings,0,9708 -9481,teapot,0,9705 -456270,tasuki,0,9704 -720760,holding_tray,0,9683 -485597,grey_dress,0,9677 -251010,tiger_ears,0,9659 -4787,axe,0,9654 -158473,string_panties,0,9651 -1369967,watercraft,0,9647 -1410771,artist_logo,0,9625 -14607,tight,0,9619 -414233,cum_on_clothes,0,9606 -488078,purple_jacket,0,9606 -375461,belly,0,9587 -15202,nipple_piercing,0,9585 -6182,shibari,0,9571 -461639,happy_new_year,0,9568 -613998,mismatched_legwear,0,9561 -477517,chinese_zodiac,0,9552 -9504,magatama,0,9538 -3748,slippers,0,9521 -1799094,male_child,0,9515 -555246,black_border,0,9514 -426594,lace-trimmed_panties,0,9497 -871328,black_kimono,0,9495 -4939,precum,0,9450 -672705,pink_kimono,0,9438 -408248,transparent,0,9427 -125420,bald,0,9406 -428808,wagashi,0,9402 -1316394,hip_vent,0,9399 -614827,tachi-e,0,9376 -1260880,fang_out,0,9362 -2414,vampire,0,9361 -1393212,yellow_neckerchief,0,9349 -547199,bikini_skirt,0,9343 -675233,open_cardigan,0,9334 -472448,highleg_bikini,0,9302 -499324,red_shorts,0,9295 -666816,hand_on_own_head,0,9293 -1516550,purple_headwear,0,9284 -723097,after_vaginal,0,9283 -419116,tied_shirt,0,9268 -448185,garrison_cap,0,9268 -1310698,curled_horns,0,9264 -1749079,sample_watermark,0,9235 -589024,arm_strap,0,9233 -394083,knee_pads,0,9225 -1339640,midriff_peek,0,9216 -483988,condom_wrapper,0,9209 -881062,grabbing_own_breast,0,9198 -377888,torn_pantyhose,0,9190 -1244676,one-piece_tan,0,9186 -400382,mouse_tail,0,9163 -678558,hand_on_own_chin,0,9161 -1276712,layered_sleeves,0,9154 -3473,giant,0,9154 -500472,evil_smile,0,9152 -4964,nosebleed,0,9148 -1355714,crescent_hat_ornament,0,9140 -9983,dancing,0,9125 -456515,tiger_print,0,9101 -474210,leg_ribbon,0,9099 -396079,looking_afar,0,9094 -686321,half_gloves,0,9094 -397156,presenting,0,9077 -390148,green_skin,0,9064 -504750,princess_carry,0,9062 -492982,layered_dress,0,9050 -480027,purple_thighhighs,0,9049 -615659,blue_vest,0,9031 -376270,pantyhose_pull,0,9024 -388908,raglan_sleeves,0,9022 -200140,magic_circle,0,9019 -375526,short_kimono,0,9014 -500740,very_short_hair,0,9011 -578891,shoulder_blades,0,9004 -515909,asymmetrical_clothes,0,8994 -473248,blue_bra,0,8975 -578643,striped_background,0,8966 -562575,green_bikini,0,8960 -785234,shoulder_cutout,0,8944 -11019,scared,0,8937 -461530,balloon,0,8936 -618117,legwear_under_shorts,0,8925 -444507,deep_skin,0,8924 -75228,aura,0,8909 -2246,wall,0,8904 -451190,layered_skirt,0,8899 -1451201,draph,0,8887 -411966,used_condom,0,8885 -460555,hair_censor,0,8876 -1618371,body_fur,0,8864 -493064,over_shoulder,0,8857 -454128,head_wreath,0,8850 -547384,tail_raised,0,8841 -468991,kicking,0,8840 -395583,mother_and_daughter,0,8838 -533391,open_hand,0,8832 -520839,sound_effects,0,8828 -461159,reference_sheet,0,8828 -1635846,tracen_school_uniform,0,8818 -541599,mechanical_arms,0,8817 -470019,one_knee,0,8804 -449932,w,0,8800 -166945,yellow_dress,0,8796 -11870,manly,0,8789 -498546,male_underwear,0,8784 -397155,huge_ass,0,8779 -513423,graphite_(medium),0,8775 -1672,tea,0,8754 -521120,backless_dress,0,8747 -1303251,grey_pants,0,8746 -1318267,public_indecency,0,8718 -538586,hat_feather,0,8714 -1233477,crop_top_overhang,0,8702 -14461,open_kimono,0,8696 -596449,pigeon-toed,0,8687 -8577,paintbrush,0,8685 -1302741,red_ascot,0,8670 -1420938,holding_polearm,0,8660 -5857,leather,0,8653 -473218,lace-trimmed_bra,0,8648 -1462380,disposable_cup,0,8626 -669790,futa_with_female,0,8624 -15258,torpedo,0,8616 -574178,o-ring_top,0,8610 -522720,naked_towel,0,8608 -572821,star_earrings,0,8595 -574501,ringed_eyes,0,8594 -1740,mermaid,0,8590 -567329,limited_palette,0,8586 -547394,o-ring_bikini,0,8586 -1257811,on_couch,0,8586 -1253894,holding_microphone,0,8580 -516029,shimenawa,0,8576 -728807,animification,0,8571 -558829,animal_on_head,0,8562 -1379635,mmf_threesome,0,8547 -1256688,bandaged_leg,0,8535 -462974,squiggle,0,8526 -501583,in_container,0,8526 -416486,photo_(object),0,8523 -1388797,blue_neckerchief,0,8514 -469978,glowing_eye,0,8491 -12724,field,0,8487 -484616,maple_leaf,0,8481 -507586,yellow_skirt,0,8480 -3102,greaves,0,8472 -1575551,gap_(touhou),0,8465 -484880,architecture,0,8439 -10369,bedroom,0,8419 -383117,breast_sucking,0,8415 -388762,sleeveless_turtleneck,0,8392 -513428,watercolor_(medium),0,8390 -1617412,bare_pectorals,0,8389 -646363,company_name,0,8382 -384905,symmetrical_docking,0,8373 -421507,leg_grab,0,8371 -1349338,red_leotard,0,8367 -563862,gameplay_mechanics,0,8356 -380303,bound_arms,0,8353 -593165,out-of-frame_censoring,0,8346 -1409552,ooarai_school_uniform,0,8335 -430765,sunbeam,0,8334 -13126,lineart,0,8325 -1081137,imminent_penetration,0,8323 -617541,brown_pants,0,8310 -10704,bamboo,0,8306 -516432,imminent_kiss,0,8301 -8433,thumbs_up,0,8295 -440369,multiple_persona,0,8287 -726933,clothes_around_waist,0,8264 -447310,green_nails,0,8240 -576693,tile_floor,0,8235 -726825,shoulder_tattoo,0,8188 -811495,undercut,0,8166 -718360,polka_dot_bow,0,8151 -13851,halftone,0,8144 -3356,peeing,0,8144 -396470,arm_cannon,0,8124 -545704,blue_hairband,0,8107 -412080,sleeve_cuffs,0,8091 -443796,under_covers,0,8086 -4065,explosion,0,8083 -459097,cowbell,0,8081 -639869,white_cape,0,8076 -481547,holding_hair,0,8074 -7834,naked_apron,0,8071 -514087,cross_necklace,0,8065 -4633,singing,0,8060 -465393,pee,0,8051 -546667,print_shirt,0,8035 -5199,leggings,0,8021 -7929,shackles,0,8009 -4429,pencil,0,8008 -530616,checkered_floor,0,8005 -412376,stitches,0,7998 -1379926,black_hoodie,0,7998 -637674,slingshot_swimsuit,0,7995 -1301235,pubic_tattoo,0,7995 -12391,double_penetration,0,7977 -1447595,foot_out_of_frame,0,7969 -2570,idol,0,7969 -108777,bra_lift,0,7966 -374955,ruins,0,7962 -2100,summer,0,7947 -6203,vines,0,7946 -9331,falling,0,7937 -443371,raccoon_tail,0,7937 -515552,striped_dress,0,7913 -8301,black_cat,0,7906 -16791,strap,0,7905 -411657,torn_thighhighs,0,7901 -1396655,white_capelet,0,7899 -460204,hair_over_breasts,0,7896 -1441862,purple_footwear,0,7895 -491150,^o^,0,7888 -491645,head_fins,0,7886 -530962,arm_under_breasts,0,7879 -11651,annoyed,0,7846 -2566,mushroom,0,7841 -2215,house,0,7822 -463475,iron_cross,0,7811 -1271756,black_scarf,0,7811 -1488686,tilted_headwear,0,7803 -1429562,two-tone_dress,0,7795 -682686,spoken_exclamation_mark,0,7795 -186201,skirt_pull,0,7793 -581500,plaid_vest,0,7793 -30851,3koma,0,7783 -1441878,eyewear_removed,0,7776 -662950,name_connection,0,7769 -3898,tank,0,7761 -1320888,vaginal_object_insertion,0,7760 -491943,dark_persona,0,7756 -53988,fox_mask,0,7754 -457806,artist_self-insert,0,7751 -399391,spiked_bracelet,0,7746 -1257081,scar_on_cheek,0,7741 -610074,platform_footwear,0,7726 -430066,id_card,0,7720 -1364407,genderswap_(ftm),0,7710 -1393342,erune,0,7710 -1501454,tinted_eyewear,0,7706 -496894,face-to-face,0,7693 -11555,bathroom,0,7684 -5157,sad,0,7681 -403904,french_kiss,0,7681 -16170,television,0,7676 -384906,asymmetrical_docking,0,7672 -400657,one-eyed,0,7665 -388149,ranguage,0,7639 -715545,duel_monster,0,7629 -650433,invisible_chair,0,7628 -421031,huge_weapon,0,7615 -1278539,long_sideburns,0,7615 -268105,pants_pull,0,7606 -532949,trigger_discipline,0,7603 -395294,head_scarf,0,7603 -724764,hand_on_own_thigh,0,7601 -395929,bikini_pull,0,7592 -502731,hachimaki,0,7590 -471436,doughnut,0,7587 -720163,partially_unbuttoned,0,7566 -698860,hand_on_own_knee,0,7563 -1644111,official_alternate_hairstyle,0,7560 -392495,tiptoes,0,7543 -1470809,red_horns,0,7539 -1441860,grey_footwear,0,7531 -238471,babydoll,0,7528 -1370047,white_choker,0,7528 -458210,bikini_armor,0,7519 -408887,shoulder_pads,0,7517 -419695,sakazuki,0,7507 -745997,holding_animal,0,7496 -474306,headphones_around_neck,0,7496 -465836,cutoffs,0,7481 -404056,yukkuri_shiteitte_ne,0,7470 -376034,white_eyes,0,7469 -838605,animal_focus,0,7469 -1392820,black_neckerchief,0,7468 -1328011,fur-trimmed_sleeves,0,7459 -525152,white_fur,0,7451 -1450619,wide_shot,0,7448 -414159,x-ray,0,7447 -665137,sandwiched,0,7438 -485014,white_rose,0,7434 -3138,bread,0,7434 -658791,necktie_between_breasts,0,7425 -1554924,m_legs,0,7415 -2998,cunnilingus,0,7414 -4924,camouflage,0,7408 -560670,narrow_waist,0,7400 -490069,disembodied_limb,0,7396 -462735,old,0,7394 -390530,grey_skin,0,7379 -500,fundoshi,0,7377 -537886,shorts_under_skirt,0,7375 -575497,starry_background,0,7371 -434799,0_0,0,7365 -1383260,purple_kimono,0,7360 -406340,oversized_clothes,0,7355 -474715,crescent_moon,0,7354 -1701063,holding_another's_wrist,0,7353 -584250,summer_uniform,0,7346 -498950,orange_skirt,0,7335 -401680,sweater_dress,0,7335 -665739,holding_gift,0,7327 -612000,constricted_pupils,0,7324 -464580,split,0,7321 -629455,striped_necktie,0,7315 -392034,dripping,0,7314 -538023,on_ground,0,7311 -529429,covered_eyes,0,7294 -403779,navel_piercing,0,7290 -420828,sliding_doors,0,7286 -703196,leaf_hair_ornament,0,7283 -420298,big_hair,0,7279 -385088,earphones,0,7265 -10403,futon,0,7263 -6202,winter,0,7255 -732590,interspecies,0,7250 -1363856,star_hat_ornament,0,7249 -472069,cross-section,0,7243 -279773,body_writing,0,7234 -715714,voice_actor_connection,0,7232 -1379636,ffm_threesome,0,7231 -1267724,symbol_in_eye,0,7230 -473742,two_tails,0,7216 -661337,aqua_nails,0,7214 -510068,splashing,0,7209 -467794,cow_girl,0,7208 -1456682,armpit_crease,0,7206 -534254,brick_wall,0,7205 -415106,neck_ring,0,7199 -142348,wardrobe_malfunction,0,7198 -590917,leaf_on_head,0,7197 -10802,bonnet,0,7196 -478328,rolling_eyes,0,7194 -491802,standing_sex,0,7190 -1468069,multiple_others,0,7172 -5861,bishounen,0,7162 -478321,checkered_background,0,7160 -595503,facial_tattoo,0,7160 -412952,arm_garter,0,7155 -374961,no_pupils,0,7144 -581653,smoking_pipe,0,7135 -3971,handcuffs,0,7116 -684956,frilled_bow,0,7114 -666125,holding_fruit,0,7112 -416892,;o,0,7110 -462594,bobby_socks,0,7106 -558653,casual_one-piece_swimsuit,0,7099 -1515359,pink_theme,0,7096 -710372,orange_shirt,0,7095 -108765,broom_riding,0,7094 -588956,untied_bikini,0,7093 -4940,foreskin,0,7082 -1264677,anchor_hair_ornament,0,7082 -391251,breast_rest,0,7080 -438708,frilled_panties,0,7062 -569780,pink_rose,0,7060 -464551,cookie,0,7055 -1238881,yellow_necktie,0,7052 -606614,shoes_removed,0,7051 -606732,soaking_feet,0,7044 -447060,spiked_collar,0,7038 -1622419,straight-on,0,7034 -1269638,handheld_game_console,0,7006 -390893,water_bottle,0,7005 -551141,arm_ribbon,0,7002 -395658,christmas_tree,0,7002 -388207,yin_yang,0,7000 -402799,tiger_tail,0,6999 -501739,folded,0,6990 -2918,fireworks,0,6979 -490606,afterimage,0,6977 -492645,gyaru,0,6975 -493164,forehead_jewel,0,6972 -596854,blue_scarf,0,6969 -1400566,toned_male,0,6962 -423161,object_on_head,0,6956 -490261,partially_colored,0,6915 -511662,arm_guards,0,6904 -483436,fish_tail,0,6898 -392008,chalkboard,0,6879 -410002,sheet_grab,0,6869 -562151,short_over_long_sleeves,0,6864 -1269062,mitakihara_school_uniform,0,6848 -1441887,rimless_eyewear,0,6847 -439130,anniversary,0,6846 -452549,!!,0,6845 -1508967,purple_theme,0,6844 -3509,syringe,0,6844 -1228172,asymmetrical_gloves,0,6843 -511640,single_shoe,0,6836 -1551197,1990s_(style),0,6832 -2298,watermelon,0,6825 -3531,bridge,0,6818 -487745,sitting_on_lap,0,6811 -2576,fat,0,6804 -148527,stool,0,6804 -5006,rice,0,6803 -12286,badge,0,6793 -526607,print_bikini,0,6792 -54490,monitor,0,6790 -673732,goat_horns,0,6781 -390703,purple_skin,0,6770 -543207,east_asian_architecture,0,6768 -436870,:/,0,6764 -1491182,vehicle_focus,0,6762 -498466,implied_sex,0,6760 -385431,submachine_gun,0,6752 -396065,green_panties,0,6749 -16507,lion_ears,0,6743 -663521,shoe_soles,0,6742 -1447648,sailor_senshi_uniform,0,6742 -1261156,green_vest,0,6736 -559585,playing_instrument,0,6736 -1637638,heart_brooch,0,6717 -1328025,fur-trimmed_coat,0,6714 -381114,red_skin,0,6712 -546385,heart_earrings,0,6708 -1505172,engrish_text,0,6700 -675356,multicolored_background,0,6696 -614744,red_pants,0,6695 -643811,micro_shorts,0,6693 -1898,hammer,0,6666 -1330221,fur-trimmed_gloves,0,6666 -714822,red_theme,0,6657 -1313352,brown_sweater,0,6654 -416507,torn_shirt,0,6653 -418177,ripples,0,6653 -606748,chibi_inset,0,6650 -606296,dappled_sunlight,0,6636 -1248463,brown_coat,0,6636 -1326379,red_capelet,0,6625 -604394,pointing_at_viewer,0,6623 -676529,licking_penis,0,6622 -724584,hooded_cloak,0,6622 -1600,beer,0,6619 -376671,scroll,0,6603 -1661326,content_rating,0,6602 -378581,brothers,0,6595 -1708,sake,0,6594 -3904,rainbow,0,6593 -1733109,jaggy_lines,0,6576 -1490428,fringe_trim,0,6558 -464558,egg,0,6557 -585852,skirt_removed,0,6555 -374606,giantess,0,6555 -706995,erection_under_clothes,0,6541 -1314745,blue_choker,0,6538 -1392012,white_bodysuit,0,6532 -399604,fucked_silly,0,6527 -8988,sniper_rifle,0,6526 -622607,official_style,0,6521 -1397428,white_tank_top,0,6513 -413865,planet,0,6511 -1382120,holding_instrument,0,6509 -483418,mini_top_hat,0,6506 -509903,tying_hair,0,6502 -1354336,grey_shorts,0,6501 -375594,pink_thighhighs,0,6498 -1375840,rabbit_hair_ornament,0,6488 -69696,undershirt,0,6482 -439891,d:,0,6477 -1542129,skin-covered_horns,0,6470 -8696,bathtub,0,6469 -608355,karakasa_obake,0,6453 -473284,frilled_bra,0,6450 -11231,feeding,0,6449 -1422110,ears_through_headwear,0,6435 -933253,on_chair,0,6435 -1251101,off-shoulder_sweater,0,6427 -482927,belt_pouch,0,6405 -501783,miqo'te,0,6396 -1431068,holding_stuffed_toy,0,6394 -4547,lowleg_panties,0,6386 -3577,motorcycle,0,6373 -391915,print_panties,0,6371 -468075,jiangshi,0,6364 -2409,error,0,6362 -394743,cushion,0,6357 -1732562,bikini_bottom_only,0,6351 -466142,fishnet_thighhighs,0,6345 -1260411,holding_plate,0,6341 -464547,cherry,0,6336 -16710,sepia,0,6336 -1304069,yellow_bowtie,0,6334 -694174,torogao,0,6327 -2182,police,0,6319 -474091,downblouse,0,6318 -14297,cyborg,0,6309 -507496,chess_piece,0,6302 -511571,zzz,0,6294 -374967,power_lines,0,6288 -464550,coin,0,6279 -1401801,black_capelet,0,6271 -6230,latex,0,6269 -202427,3:,0,6262 -376018,ribs,0,6257 -482376,game_controller,0,6245 -465523,race_queen,0,6245 -487559,lamppost,0,6233 -462578,merry_christmas,0,6216 -474717,front_ponytail,0,6216 -616616,panties_removed,0,6210 -460159,body_blush,0,6210 -561394,reverse_cowgirl_position,0,6205 -393313,nervous,0,6205 -393361,seductive_smile,0,6198 -1261355,bead_bracelet,0,6191 -1450868,chaldea_uniform,0,6191 -6425,scissors,0,6177 -4803,birthday,0,6176 -1320207,white_bowtie,0,6172 -1169097,frilled_hairband,0,6172 -1262142,holding_bouquet,0,6169 -519374,white_belt,0,6166 -3569,sleepy,0,6162 -642359,faulds,0,6156 -5011,horse,0,6155 -420311,\m/,0,6152 -495147,hair_slicked_back,0,6150 -378042,bear_ears,0,6149 -502301,tail_wagging,0,6145 -13859,perspective,0,6139 -375373,long_coat,0,6137 -476548,pinky_out,0,6133 -1312164,green_necktie,0,6130 -34553,dirty,0,6130 -606828,bead_necklace,0,6129 -1316159,leaning_to_the_side,0,6125 -8354,reclining,0,6121 -651956,clothed_male_nude_female,0,6120 -1302909,brown_shorts,0,6118 -1424093,otonokizaka_school_uniform,0,6112 -109153,saucer,0,6111 -15994,shirt_pull,0,6107 -545740,taut_shirt,0,6107 -458796,sheep_horns,0,6107 -681480,light_frown,0,6101 -461699,blank_eyes,0,6090 -6235,harness,0,6090 -835846,white_collar,0,6090 -546417,girl_sandwich,0,6090 -422720,uwabaki,0,6087 -423348,chest_hair,0,6087 -378899,bride,0,6079 -1684829,heads_together,0,6079 -417892,shell,0,6078 -398297,shouting,0,6077 -238935,track_suit,0,6077 -504234,punching,0,6076 -488261,blue_cape,0,6061 -1328339,multi-strapped_bikini,0,6061 -15959,loose_socks,0,6059 -664517,kariginu,0,6058 -527888,animalization,0,6048 -1313798,blue_sweater,0,6045 -712121,trait_connection,0,6043 -1515356,green_theme,0,6040 -351213,unfinished,0,6040 -383707,pun,0,6039 -381678,broken,0,6035 -1385413,white_hoodie,0,6033 -493465,playing_card,0,6014 -2762,coffee,0,6011 -379375,red_coat,0,5995 -493130,plaid_shirt,0,5995 -593668,huge_ahoge,0,5994 -418912,cum_string,0,5987 -1385535,grey_sweater,0,5986 -377360,take_your_pick,0,5971 -435834,torso_grab,0,5965 -397487,pillow_hug,0,5965 -1329446,green_shorts,0,5958 -1248639,grey_gloves,0,5953 -1364404,male_swimwear,0,5951 -464537,bruise,0,5949 -465180,ball_gag,0,5938 -473775,pointy_hair,0,5932 -1437338,brown_cardigan,0,5931 -391704,pervert,0,5928 -1468296,beamed_eighth_notes,0,5921 -14258,nekomata,0,5908 -375915,animal_hat,0,5879 -579943,hair_pulled_back,0,5875 -1613133,assertive_female,0,5874 -1320534,pink_bowtie,0,5868 -415942,jester_cap,0,5864 -329,bestiality,0,5862 -379427,skeleton,0,5861 -695377,planted,0,5847 -1152618,bandaid_on_leg,0,5846 -710095,striped_bowtie,0,5842 -516937,oversized_object,0,5840 -541644,aqua_background,0,5839 -563425,waist_cape,0,5834 -1367825,green_kimono,0,5834 -487850,tentacle_sex,0,5833 -399265,fat_mons,0,5833 -659487,black_tank_top,0,5828 -466467,burger,0,5826 -390768,old_man,0,5822 -3860,cooking,0,5819 -1322401,black_horns,0,5817 -1396773,fur-trimmed_capelet,0,5814 -1282122,green_footwear,0,5807 -440458,xd,0,5781 -421520,no_eyes,0,5769 -9894,lap_pillow,0,5767 -1375839,holding_chopsticks,0,5765 -526026,multicolored_dress,0,5757 -399455,poolside,0,5755 -16739,clipboard,0,5755 -1326641,purple_bowtie,0,5755 -1251890,suggestive_fluid,0,5752 -471574,over-kneehighs,0,5752 -644510,dark_background,0,5752 -2311,pregnant,0,5750 -626633,spoken_musical_note,0,5741 -375185,doll_joints,0,5739 -15670,beach_umbrella,0,5737 -466986,horn_ribbon,0,5730 -380747,speed_lines,0,5726 -379609,bra_pull,0,5725 -1394264,holding_bow_(weapon),0,5725 -2648,nightgown,0,5717 -145788,fur,0,5713 -1041483,split_mouth,0,5711 -580402,plaid_scarf,0,5706 -462351,animal_nose,0,5706 -1428556,standing_split,0,5701 -1474967,grey_headwear,0,5699 -467264,yawning,0,5693 -1367435,falling_petals,0,5680 -3249,wine,0,5677 -377,mouse,0,5676 -1616,kotatsu,0,5667 -1275190,twisted_torso,0,5662 -414161,cum_on_ass,0,5661 -1246198,mechanical_halo,0,5658 -1750248,onee-shota,0,5654 -408582,expressions,0,5652 -1689923,pectoral_cleavage,0,5650 -623300,bubble_skirt,0,5648 -420744,shelf,0,5647 -473283,purple_bra,0,5644 -2786,loincloth,0,5630 -1318186,braided_bun,0,5618 -464571,pillar,0,5618 -520820,female_orgasm,0,5616 -1484630,see-through_sleeves,0,5615 -378072,huge_penis,0,5614 -1425519,tokiwadai_school_uniform,0,5612 -5086,whip,0,5610 -1316339,sweating_profusely,0,5600 -506311,weapon_over_shoulder,0,5599 -516375,biceps,0,5593 -492465,grey_thighhighs,0,5590 -422021,cow_tail,0,5579 -412879,playing_games,0,5575 -603198,red_sweater,0,5574 -552246,red_collar,0,5571 -422654,gigantic_breasts,0,5569 -421658,cardboard_box,0,5565 -582833,ear_blush,0,5561 -639323,skull_hair_ornament,0,5557 -560578,multicolored_skin,0,5557 -615907,pink_gloves,0,5555 -547756,bare_tree,0,5555 -1496184,tassel_earrings,0,5537 -387233,paper_fan,0,5535 -1316985,shark_tail,0,5523 -410239,superhero,0,5520 -41161,street,0,5515 -460438,damaged,0,5505 -407260,polka_dot_panties,0,5502 -663579,holding_spoon,0,5500 -480577,:|,0,5494 -3516,river,0,5492 -8671,female_ejaculation,0,5488 -432914,flat_color,0,5483 -449907,topknot,0,5483 -1318935,aqua_necktie,0,5482 -660963,diamond_(shape),0,5468 -665765,animal_collar,0,5465 -438648,stand_(jojo),0,5463 -389066,castle,0,5462 -5473,tape,0,5460 -172313,time_paradox,0,5460 -393283,orb,0,5456 -2282,footjob,0,5450 -556987,sparkling_eyes,0,5450 -482590,=3,0,5445 -11458,baseball_bat,0,5437 -12438,grapes,0,5437 -15117,police_uniform,0,5434 -3767,laptop,0,5430 -605308,between_fingers,0,5424 -495048,lily_(flower),0,5422 -490010,extra_arms,0,5422 -1410613,patreon_logo,0,5421 -474502,explosive,0,5420 -302968,wet_panties,0,5417 -473214,red_bra,0,5416 -547348,extra_eyes,0,5410 -511691,sweater_lift,0,5404 -821623,female_pervert,0,5400 -1251292,fur-trimmed_cape,0,5393 -634063,flag_print,0,5382 -1631734,single_mechanical_arm,0,5382 -511642,single_sock,0,5372 -652562,book_stack,0,5372 -6413,uterus,0,5372 -1398817,thighhighs_under_boots,0,5356 -1303018,blue_coat,0,5353 -613923,argyle_legwear,0,5348 -1719049,split-color_hair,0,5347 -564515,vertical-striped_thighhighs,0,5345 -1303914,pink_choker,0,5343 -413872,breast_envy,0,5329 -1416880,yellow_footwear,0,5328 -1408307,black_blindfold,0,5327 -6188,dressing,0,5323 -582261,unmoving_pattern,0,5319 -399834,forehead_protector,0,5312 -614881,open_vest,0,5307 -623331,company_connection,0,5304 -399073,waistcoat,0,5304 -727102,hand_on_own_stomach,0,5303 -1492952,super_crown,0,5298 -1320446,facing_another,0,5296 -491474,gym_shirt,0,5296 -1290625,single_bare_shoulder,0,5293 -501384,long_braid,0,5282 -413907,;p,0,5280 -3288,penguin,0,5278 -626213,diagonal_stripes,0,5277 -665797,hand_on_own_ass,0,5270 -381455,shopping_bag,0,5251 -568318,bokeh,0,5237 -577266,chain-link_fence,0,5236 -660644,heart_cutout,0,5234 -407913,bursting_breasts,0,5231 -403477,electric_guitar,0,5230 -474204,frilled_thighhighs,0,5228 -526806,tengu-geta,0,5227 -416268,v-neck,0,5223 -2806,exhibitionism,0,5222 -456272,dog_tags,0,5216 -710056,fox_shadow_puppet,0,5215 -9127,dango,0,5212 -471020,covering_face,0,5210 -1243442,competition_school_swimsuit,0,5209 -10322,albino,0,5205 -582827,adjusting_headwear,0,5204 -425624,charm_(object),0,5199 -4491,monocle,0,5192 -9449,internal_cumshot,0,5189 -2083,meat,0,5184 -388072,costume_switch,0,5183 -434225,purple_lips,0,5180 -1398298,fur-trimmed_dress,0,5174 -415545,twilight,0,5171 -405409,tail_ribbon,0,5170 -5814,autumn,0,5169 -1418952,colored_tips,0,5163 -55663,danmaku,0,5161 -375456,zombie,0,5161 -374357,yandere,0,5160 -492671,moaning,0,5160 -632123,clothes_removed,0,5159 -1258734,looking_ahead,0,5157 -405981,breast_suppress,0,5155 -656330,hands_on_own_cheeks,0,5141 -1548634,braided_bangs,0,5130 -4440,wolf,0,5123 -379597,shorts_pull,0,5123 -1008745,sanpaku,0,5121 -471598,tail_bow,0,5119 -1441881,holding_eyewear,0,5118 -540619,holding_hat,0,5118 -1406853,serval_print,0,5115 -1618887,infection_monitor_(arknights),0,5114 -432947,no_socks,0,5102 -485638,blood_splatter,0,5101 -1782390,traditional_bowtie,0,5099 -442229,flame,0,5094 -400587,reaching,0,5094 -450547,water_gun,0,5082 -448399,dougi,0,5074 -436889,stomach_bulge,0,5063 -485218,trading_card,0,5058 -406885,thong_bikini,0,5056 -374989,quiver,0,5054 -651810,holding_card,0,5051 -481812,teardrop,0,5044 -587579,floating_object,0,5042 -388210,gold,0,5036 -666921,holding_fork,0,5027 -7818,anal_beads,0,5024 -1356896,armpit_peek,0,5023 -486149,military_jacket,0,5019 -423823,ship,0,5013 -2688,knight,0,5010 -439147,cum_on_tongue,0,4999 -2364,onigiri,0,4999 -424779,thigh_holster,0,4992 -449465,firing,0,4985 -603226,heart_print,0,4974 -10367,prosthesis,0,4974 -456933,microphone_stand,0,4972 -578856,pink_sweater,0,4971 -578948,closed_umbrella,0,4969 -398857,mind_control,0,4963 -655244,cross_earrings,0,4960 -398955,flower_field,0,4958 -431532,fake_screenshot,0,4953 -438177,father_and_daughter,0,4953 -455753,leg_warmers,0,4938 -10495,cowboy_hat,0,4938 -615718,green_gloves,0,4935 -9469,noodles,0,4928 -11067,jumpsuit,0,4928 -646772,solid_circle_eyes,0,4920 -10045,family,0,4917 -11062,fox,0,4913 -494896,hydrangea,0,4913 -383172,train_interior,0,4907 -468509,paper_lantern,0,4903 -409832,robot_joints,0,4893 -1268860,chest_jewel,0,4891 -502421,glaring,0,4887 -1345874,weapon_on_back,0,4887 -715118,ear_covers,0,4883 -784749,leotard_under_clothes,0,4883 -405861,rose_petals,0,4880 -417653,convenient_leg,0,4879 -553870,sleeveless_jacket,0,4875 -533114,turn_pale,0,4870 -410885,skyscraper,0,4869 -449502,dimples_of_venus,0,4869 -547349,heart_ahoge,0,4867 -398219,breast_lift,0,4865 -1269470,chest_tattoo,0,4864 -8475,bicycle,0,4861 -640872,pov_crotch,0,4861 -1304062,yellow_hairband,0,4850 -1347239,holding_wand,0,4848 -508932,side-by-side,0,4841 -398888,vase,0,4840 -1168235,halter_dress,0,4833 -1587249,oripathy_lesion_(arknights),0,4833 -459964,unsheathing,0,4830 -3152,lance,0,4830 -3778,amputee,0,4811 -661260,yellow_nails,0,4811 -1528415,roswaal_mansion_maid_uniform,0,4808 -619558,peeking_out,0,4794 -591983,disembodied_penis,0,4794 -549705,red_bodysuit,0,4786 -821048,pink_hairband,0,4785 -492769,picture_frame,0,4783 -513605,colored_pencil_(medium),0,4777 -1322968,old_school_swimsuit,0,4774 -12858,bone,0,4765 -538432,full_armor,0,4765 -6328,chick,0,4764 -389995,red_wings,0,4763 -561421,striped_ribbon,0,4762 -486934,no_mouth,0,4760 -695469,plaid_bow,0,4757 -511644,single_wing,0,4757 -105306,condom_in_mouth,0,4753 -615970,yellow_sclera,0,4752 -430739,large_bow,0,4751 -429487,double_handjob,0,4750 -1378403,purple_leotard,0,4748 -1298744,frilled_choker,0,4746 -1281052,brown_bow,0,4746 -466015,kitsune,0,4740 -439983,knees,0,4739 -1384761,blue_hoodie,0,4738 -1393856,hooded_coat,0,4730 -515350,knees_to_chest,0,4721 -531754,long_bangs,0,4721 -679252,solid_oval_eyes,0,4715 -418178,waves,0,4712 -473022,side_braids,0,4709 -479932,strap_pull,0,4702 -410928,multiple_4koma,0,4699 -390918,elbow_pads,0,4698 -433344,pussy_peek,0,4694 -459940,beer_mug,0,4688 -1230827,dark_blue_hair,0,4680 -7770,naked_ribbon,0,4672 -1312162,short_necktie,0,4670 -495851,open_hoodie,0,4663 -1286651,heart-shaped_box,0,4659 -1076628,holding_ball,0,4657 -667024,mixed_bathing,0,4652 -481294,detached_wings,0,4652 -1553182,grabbing_another's_hair,0,4650 -1582095,bow_hairband,0,4650 -1258905,holding_can,0,4647 -8594,ladle,0,4645 -494456,utility_pole,0,4640 -469544,navel_hair,0,4640 -449974,fur_hat,0,4637 -498156,panty_peek,0,4635 -11990,spring_onion,0,4633 -7469,revolver,0,4633 -475381,striped_scarf,0,4631 -512126,shushing,0,4626 -1862825,one-piece_swimsuit_pull,0,4620 -386870,trident,0,4616 -1326581,brown_vest,0,4613 -430114,popped_collar,0,4601 -419682,bra_strap,0,4601 -1369553,blunt_ends,0,4599 -11935,whistle,0,4591 -10205,notebook,0,4583 -1639310,arthropod_girl,0,4578 -482236,striped_skirt,0,4574 -406023,projectile_cum,0,4572 -626243,aiguillette,0,4572 -387742,gourd,0,4565 -396968,reverse_trap,0,4564 -647130,white_necktie,0,4561 -585249,faceless_female,0,4558 -539284,heart_pasties,0,4548 -489801,pillow_hat,0,4543 -7529,ringlets,0,4542 -248665,money,0,4538 -415000,impossible_shirt,0,4533 -633774,bandaid_on_nose,0,4531 -482941,flight_deck,0,4529 -524012,pinstripe_pattern,0,4526 -5723,fedora,0,4524 -1309652,holding_strap,0,4517 -684687,grabbing_own_ass,0,4516 -1632773,heart-shaped_chocolate,0,4508 -383468,lowleg_bikini,0,4503 -400837,crazy_eyes,0,4498 -511643,single_elbow_glove,0,4496 -888554,cropped_shirt,0,4493 -4022,maebari,0,4492 -396696,evening,0,4487 -550308,>:(,0,4482 -1319919,hands_on_own_knees,0,4480 -1533927,garreg_mach_monastery_uniform,0,4462 -431528,gears,0,4461 -360746,waking_up,0,4460 -517481,winter_coat,0,4457 -394089,lock,0,4453 -698475,showgirl_skirt,0,4444 -1590430,squatting_cowgirl_position,0,4434 -1518573,cable_knit,0,4433 -616137,reverse_grip,0,4429 -510943,orange_bikini,0,4427 -1631539,slime_(substance),0,4424 -177781,cane,0,4413 -1336152,asymmetrical_sleeves,0,4410 -9857,throne,0,4405 -476779,ice_cream_cone,0,4399 -570005,green_pants,0,4399 -1389146,white_neckerchief,0,4396 -400555,business_suit,0,4395 -569436,blood_on_hands,0,4394 -1409996,flower_knot,0,4394 -15294,lightning,0,4392 -1295644,vertical-striped_shirt,0,4391 -4069,sailor,0,4390 -520554,blue_fire,0,4386 -356574,tower,0,4385 -461563,poster_(object),0,4383 -1411020,white_bloomers,0,4381 -707075,tile_wall,0,4378 -496288,orange_(fruit),0,4377 -4174,tomboy,0,4372 -1263450,print_skirt,0,4370 -392700,machine_gun,0,4369 -394179,crotchless,0,4365 -399003,skinny,0,4360 -379975,bound_legs,0,4355 -505613,thigh_grab,0,4352 -553763,unbuttoned_shirt,0,4350 -12857,wedgie,0,4349 -6280,waterfall,0,4348 -378695,statue,0,4343 -463152,poking,0,4335 -291535,pearl_necklace,0,4324 -1269471,leg_tattoo,0,4318 -392453,butterfly_wings,0,4317 -498646,crack,0,4314 -1574663,two-sided_fabric,0,4313 -1392010,blue_bodysuit,0,4312 -8591,bustier,0,4311 -648630,boy_on_top,0,4310 -1390702,multicolored_jacket,0,4309 -409818,polka_dot_bikini,0,4305 -4898,baby,0,4305 -375076,crowd,0,4303 -1576265,bra_visible_through_clothes,0,4302 -669436,streaming_tears,0,4300 -7444,dark_elf,0,4296 -550765,wrist_ribbon,0,4293 -559442,red_buruma,0,4290 -673216,toeless_footwear,0,4286 -5094,snowman,0,4282 -1411717,medium_skirt,0,4280 -1389116,red_scrunchie,0,4280 -1285261,pink_necktie,0,4279 -500990,torn_dress,0,4279 -396001,pocket_watch,0,4276 -568513,animal_on_shoulder,0,4273 -380477,whiskers,0,4271 -464541,bullet,0,4267 -492359,towel_on_head,0,4265 -547742,open_hands,0,4265 -1302924,yellow_shorts,0,4260 -475366,trench_coat,0,4259 -379182,energy,0,4259 -10049,crotch,0,4257 -4478,bodypaint,0,4254 -437197,surgical_mask,0,4251 -841221,very_dark_skin,0,4246 -9176,boat,0,4244 -1257578,frilled_collar,0,4210 -11620,spread_anus,0,4209 -572,toilet,0,4200 -9172,kitchen,0,4200 -188179,letter,0,4198 -4568,crab,0,4196 -656163,hand_on_another's_cheek,0,4194 -466143,wine_bottle,0,4190 -1970,drawing,0,4189 -405636,locker,0,4189 -1312163,purple_necktie,0,4185 -395984,dress_pull,0,4182 -408969,no_pussy,0,4179 -3093,bear,0,4179 -1515362,yellow_theme,0,4178 -441477,defeat,0,4173 -609001,jacket_removed,0,4173 -1444169,yellow_headwear,0,4168 -640090,red_eyeshadow,0,4164 -427529,fat_man,0,4163 -507242,monster_boy,0,4162 -492418,orange_dress,0,4154 -483830,imagining,0,4153 -13099,hot,0,4152 -596219,sagging_breasts,0,4149 -431758,locked_arms,0,4147 -618610,yellow_gloves,0,4145 -568650,grey_pantyhose,0,4143 -416506,torn_pants,0,4143 -1258092,ribbon-trimmed_legwear,0,4139 -483292,gradient_eyes,0,4134 -723993,bird_tail,0,4133 -1492981,bikini_bottom_aside,0,4129 -579607,towel_around_neck,0,4122 -1313101,green_bowtie,0,4121 -391942,long_tongue,0,4121 -434827,soccer_uniform,0,4119 -1276067,floppy_ears,0,4117 -415277,recording,0,4113 -683424,cat_hair_ornament,0,4111 -539090,imminent_rape,0,4106 -151645,evil_grin,0,4104 -797417,ear_bow,0,4100 -395355,fusion,0,4099 -380931,pirate_hat,0,4097 -3997,landscape,0,4096 -1320211,orange_bowtie,0,4094 -613646,on_desk,0,4091 -4365,tsundere,0,4090 -882518,blue_butterfly,0,4083 -2606,milk,0,4080 -1428577,ryouou_school_uniform,0,4078 -524381,ear_ornament,0,4074 -616376,assisted_exposure,0,4073 -1619425,crescent_pin,0,4071 -589477,argyle_background,0,4066 -10332,crow,0,4066 -400542,road_sign,0,4062 -636788,frilled_pillow,0,4057 -1350141,cat_cutout,0,4054 -596179,anal_tail,0,4052 -6453,death,0,4050 -667200,hand_on_another's_chin,0,4045 -486797,unsheathed,0,4035 -1928,tiger,0,4028 -1389971,nintendo_switch,0,4027 -633106,mask_removed,0,4024 -526090,checkered_skirt,0,4024 -648045,sideways_mouth,0,4023 -686687,hatching_(texture),0,4023 -640153,muted_color,0,4023 -1270233,1koma,0,4022 -1537333,interface_headset,0,4021 -537720,track_pants,0,4021 -485999,coffee_mug,0,4013 -482913,black_suit,0,4012 -657475,back_cutout,0,4011 -426587,yellow_panties,0,4004 -9618,library,0,4003 -477117,raised_eyebrow,0,4003 -468460,torn_skirt,0,4000 -634270,bat_print,0,3999 -1429011,holding_candy,0,3996 -98920,starfish,0,3990 -1505313,romaji_text,0,3990 -3045,alien,0,3987 -1350220,cat_lingerie,0,3983 -1346561,holding_cigarette,0,3981 -609685,two-tone_skin,0,3980 -494236,taking_picture,0,3967 -466061,album_cover,0,3963 -465851,defloration,0,3962 -427758,kiseru,0,3959 -3291,teacher,0,3955 -1403308,virgin_killer_sweater,0,3952 -661261,planted_sword,0,3951 -560881,soap_bubbles,0,3949 -460488,feet_up,0,3949 -509953,holding_paper,0,3947 -677008,school_chair,0,3940 -1235097,blood_on_weapon,0,3938 -586284,heart_background,0,3935 -1405351,mountainous_horizon,0,3929 -16128,you_gonna_get_raped,0,3928 -403588,pink_skin,0,3928 -415839,armchair,0,3927 -4855,school,0,3926 -216327,shy,0,3923 -1245131,bikini_tan,0,3923 -1291919,holding_shield,0,3922 -502180,blue_wings,0,3921 -605808,snout,0,3920 -1303985,blue_buruma,0,3918 -491861,sleeves_pushed_up,0,3916 -376585,stick,0,3912 -516128,backboob,0,3909 -1413412,obijime,0,3907 -725289,multicolored_nails,0,3907 -599652,spoken_blush,0,3906 -1393858,white_camisole,0,3903 -12336,costume,0,3902 -1291748,print_bow,0,3901 -1551196,1980s_(style),0,3900 -4119,suitcase,0,3895 -631144,halftone_background,0,3894 -668478,holding_pen,0,3891 -1289945,orange_jacket,0,3887 -460085,mechanical_wings,0,3885 -584023,shark_girl,0,3880 -473300,mandarin_orange,0,3876 -551333,uchiwa,0,3874 -605145,soul_gem,0,3874 -1415843,white_ascot,0,3872 -521411,husband_and_wife,0,3872 -397397,cum_pool,0,3871 -614707,no_legwear,0,3869 -491550,lanyard,0,3865 -419496,male_masturbation,0,3864 -1390882,blue_sleeves,0,3858 -1307533,carrot_hair_ornament,0,3855 -582680,unaligned_breasts,0,3852 -380538,bubble_blowing,0,3850 -473410,dragon_wings,0,3846 -1298903,half-closed_eye,0,3837 -649373,command_spell,0,3834 -6381,clover,0,3832 -473818,tissue_box,0,3832 -406620,pouring,0,3831 -390579,colorful,0,3830 -390,demon,0,3827 -1574241,dolphin_shorts,0,3827 -382729,striped_pantyhose,0,3822 -1350193,musical_note_hair_ornament,0,3814 -584126,pointing_up,0,3814 -426470,silk,0,3812 -494868,black_cloak,0,3809 -1253174,employee_uniform,0,3807 -673956,falling_leaves,0,3805 -1342157,fur-trimmed_boots,0,3804 -493515,game_console,0,3803 -466779,belt_collar,0,3803 -399131,barcode,0,3799 -589889,v_over_eye,0,3798 -616844,blood_from_mouth,0,3797 -385804,lifebuoy,0,3793 -1256300,multicolored_skirt,0,3787 -375424,the_pose,0,3783 -675901,frilled_hat,0,3782 -394046,power_armor,0,3780 -411038,:>=,0,3776 -639592,heart_necklace,0,3776 -571473,bandaid_on_knee,0,3770 -1399133,grey_cardigan,0,3770 -464548,clone,0,3768 -1497310,button_gap,0,3767 -432388,leather_jacket,0,3762 -410903,black_skin,0,3761 -406397,against_glass,0,3754 -891436,food_focus,0,3750 -1161088,2021,0,3749 -1246561,brown_scarf,0,3748 -383694,jar,0,3747 -429161,paizuri_under_clothes,0,3746 -473292,blue_socks,0,3744 -706041,cross-shaped_pupils,0,3735 -684169,ambiguous_gender,0,3732 -1312340,red_rope,0,3730 -631542,pointing_at_self,0,3729 -7801,lamia,0,3720 -560091,cat_hood,0,3720 -394795,baggy_pants,0,3718 -382106,fisheye,0,3712 -6376,lake,0,3712 -1555383,fur-trimmed_headwear,0,3711 -1471843,waist_bow,0,3710 -677023,underboob_cutout,0,3709 -1338623,purple_hairband,0,3708 -376168,puddle,0,3707 -414773,aiming,0,3706 -506307,thong_leotard,0,3699 -716981,holding_own_arm,0,3697 -638022,see-through_silhouette,0,3695 -504035,film_grain,0,3687 -11028,swimming,0,3684 -423074,photo_background,0,3682 -422775,dark_nipples,0,3681 -525461,smokestack,0,3681 -1516548,orange_headwear,0,3680 -570382,hands_in_hair,0,3675 -11828,flexible,0,3672 -1344144,metal_collar,0,3672 -1622516,earth_(planet),0,3661 -2191,shop,0,3659 -544274,backwards_hat,0,3658 -1454257,2others,0,3657 -400545,red_moon,0,3653 -379878,thorns,0,3647 -375225,flaccid,0,3644 -538953,zouri,0,3640 -411896,no_nipples,0,3638 -512713,aqua_bow,0,3638 -476596,sode,0,3637 -458486,mother_and_son,0,3636 -1280405,sleeveless_kimono,0,3635 -553771,cheek-to-cheek,0,3632 -1397752,two-tone_shirt,0,3626 -1316028,american_flag_legwear,0,3623 -662240,mini_wings,0,3622 -472867,arm_hug,0,3622 -222138,shrine,0,3622 -386432,leaning,0,3620 -565064,framed,0,3619 -1766885,demon_slayer_uniform,0,3619 -508193,novelty_censor,0,3618 -1304117,yellow_sweater,0,3618 -404134,spread_ass,0,3614 -672073,brown_fur,0,3613 -392612,pentagram,0,3612 -1161089,2022,0,3598 -702916,imminent_vaginal,0,3589 -456376,pince-nez,0,3589 -466449,spider_lily,0,3589 -652486,v-fin,0,3586 -460863,spider_web,0,3579 -1262158,holding_broom,0,3577 -390314,nude_cover,0,3577 -46079,robot_ears,0,3572 -553007,strapless_bikini,0,3572 -443901,shide,0,3568 -618153,pink_scarf,0,3568 -567636,painting_(object),0,3567 -476371,showering,0,3565 -500976,netorare,0,3564 -423625,bikini_lift,0,3564 -2476,hose,0,3563 -2288,octopus,0,3561 -1468959,horror_(theme),0,3561 -1409116,red_sailor_collar,0,3559 -538327,black_flower,0,3556 -1417504,nanamori_school_uniform,0,3556 -85824,pole,0,3553 -461531,banana,0,3553 -451769,toe_scrunch,0,3552 -1875949,lower_teeth_only,0,3550 -390569,cat_paws,0,3549 -902927,collared_jacket,0,3549 -9799,kunai,0,3548 -1281555,aran_sweater,0,3547 -1392011,purple_bodysuit,0,3546 -1356361,grey_vest,0,3545 -540428,arm_around_shoulder,0,3543 -605759,skirt_suit,0,3542 -522913,multiple_wings,0,3541 -5980,rooftop,0,3536 -1399176,two-tone_fur,0,3536 -399479,fog,0,3529 -3375,chicken,0,3529 -546453,cat_boy,0,3529 -1498357,single_leg_pantyhose,0,3525 -1312906,rei_no_himo,0,3525 -405756,hypnosis,0,3518 -1282899,improvised_gag,0,3516 -586174,neon_trim,0,3516 -578557,digital_media_player,0,3514 -411148,remote_control,0,3514 -376648,fishing_rod,0,3510 -481454,copyright,0,3508 -1477193,lightning_bolt_symbol,0,3506 -1468130,paradis_military_uniform,0,3506 -1345564,partially_unzipped,0,3505 -1770616,blue_gemstone,0,3502 -1730,what,0,3501 -1335474,sleeves_past_elbows,0,3501 -395305,wizard_hat,0,3495 -1330707,cake_slice,0,3493 -621745,brand_name_imitation,0,3491 -1385010,kissing_cheek,0,3491 -382125,rapier,0,3490 -541609,open_door,0,3489 -623390,glowing_weapon,0,3489 -660422,leaning_on_person,0,3488 -6424,cage,0,3488 -481427,steepled_fingers,0,3485 -589286,purple_rose,0,3482 -638728,print_gloves,0,3476 -667663,elbow_rest,0,3474 -1391985,grey_hoodie,0,3473 -1409115,green_sailor_collar,0,3470 -1328598,holding_bowl,0,3469 -1328649,orange_flower,0,3466 -516646,macaron,0,3460 -375919,demon_boy,0,3458 -717483,flower-shaped_pupils,0,3455 -718139,food_print,0,3452 -581054,keyboard_(computer),0,3449 -566804,single_sleeve,0,3449 -2709,needle,0,3448 -468016,;q,0,3442 -9275,butt_plug,0,3440 -383907,swimsuit_aside,0,3436 -380328,pompadour,0,3434 -7646,slave,0,3432 -643102,loose_necktie,0,3431 -525997,print_dress,0,3426 -485061,hair_tucking,0,3425 -524552,shiny_pokemon,0,3424 -1684874,laevatein_(touhou),0,3423 -576406,folded_fan,0,3420 -400245,opaque_glasses,0,3419 -410131,perky_breasts,0,3418 -11912,wrench,0,3418 -4434,violin,0,3418 -378993,energy_sword,0,3413 -411511,adjusting_swimsuit,0,3412 -1419007,stirrup_legwear,0,3406 -460475,naked_sweater,0,3406 -652354,too_many,0,3405 -664058,orange_ribbon,0,3405 -754200,oppai_loli,0,3403 -378543,egg_vibrator,0,3402 -384248,trefoil,0,3402 -379189,floor,0,3400 -477228,drum,0,3399 -483981,american_flag,0,3396 -12570,armpit_hair,0,3394 -8255,dancer,0,3393 -560040,framed_breasts,0,3390 -382440,pantylines,0,3389 -4768,sheep,0,3387 -441110,office_chair,0,3384 -1315028,lower_body,0,3378 -11366,policewoman,0,3376 -513303,afloat,0,3376 -1312614,blue_hakama,0,3375 -4191,sushi,0,3368 -531372,mouse_girl,0,3367 -9510,cream,0,3364 -575181,o-ring_bottom,0,3363 -207834,mascara,0,3351 -458795,suction_cups,0,3350 -10769,transformation,0,3346 -383173,train,0,3336 -634393,heart_choker,0,3335 -1411341,hooded_capelet,0,3331 -446070,lion_tail,0,3327 -1257056,holding_towel,0,3322 -554588,suit_jacket,0,3321 -482172,contrail,0,3320 -507625,calligraphy_brush,0,3319 -548668,excalibur_(fate/stay_night),0,3316 -1560432,reverse_outfit,0,3315 -1483713,multiple_rings,0,3314 -723098,after_anal,0,3310 -262264,tight_pants,0,3305 -1330167,american_flag_dress,0,3305 -554092,food_on_body,0,3304 -711562,striped_tail,0,3303 -1247747,hair_strand,0,3302 -458711,hand_under_clothes,0,3301 -639641,bra_removed,0,3298 -449248,scope,0,3298 -543339,bandaids_on_nipples,0,3297 -514260,left-handed,0,3297 -422830,paper_bag,0,3297 -611884,uneven_eyes,0,3293 -463490,spacecraft,0,3288 -395198,test_tube,0,3287 -4470,duel,0,3286 -667460,real_life_insert,0,3284 -1219136,hand_on_own_arm,0,3284 -2073,hairpods,0,3283 -675353,frilled_gloves,0,3283 -1421763,blue_capelet,0,3283 -147971,stylus,0,3283 -430704,medical_eyepatch,0,3283 -5171,map,0,3282 -1413751,print_bowtie,0,3281 -450123,staring,0,3275 -479792,circle,0,3273 -1416797,pink_cardigan,0,3272 -408052,gym_shorts,0,3270 -1374290,covered_collarbone,0,3266 -522010,character_profile,0,3264 -1303383,blue_scrunchie,0,3262 -1305030,green_leotard,0,3255 -684190,gradient_sky,0,3255 -1582181,string_of_fate,0,3252 -8295,concept_art,0,3249 -49941,lemon,0,3248 -375251,egyptian,0,3247 -10359,middle_finger,0,3242 -151042,envelope,0,3238 -393891,no_shirt,0,3235 -1636976,footwear_bow,0,3234 -750849,holding_mask,0,3232 -10983,shotgun,0,3231 -1504889,rudder_footwear,0,3230 -386503,binoculars,0,3222 -1233722,maid_bikini,0,3221 -380805,flashing,0,3221 -411223,father_and_son,0,3221 -626303,mismatched_gloves,0,3218 -163224,fins,0,3217 -1475826,holding_pokemon,0,3217 -392360,stage,0,3215 -619121,hair_beads,0,3214 -459009,penis_on_face,0,3213 -641554,tomoe_(symbol),0,3211 -687681,partially_undressed,0,3209 -521852,pussy_juice_trail,0,3206 -758409,taur,0,3206 -403195,squirrel_ears,0,3206 -1335364,stomach_tattoo,0,3205 -687202,pussy_juice_stain,0,3203 -1238711,pink_shorts,0,3202 -16144,rubber_duck,0,3201 -674492,dress_bow,0,3200 -5567,pizza,0,3200 -2553,basketball,0,3198 -455038,capri_pants,0,3198 -724241,holding_camera,0,3197 -1641895,gloved_handjob,0,3196 -1612103,milestone_celebration,0,3195 -394619,furisode,0,3192 -638426,arm_belt,0,3190 -399418,shore,0,3188 -1227744,multiple_crossover,0,3186 -419379,bandage_over_one_eye,0,3185 -1337096,white_vest,0,3185 -508748,horn_bow,0,3183 -548829,chewing_gum,0,3183 -613840,happy_halloween,0,3183 -619633,baozi,0,3180 -1387105,pink_leotard,0,3179 -1512867,multiple_hair_bows,0,3177 -1229697,drop_shadow,0,3174 -447030,candy_apple,0,3174 -396737,striped_bra,0,3170 -409293,open_dress,0,3169 -459215,finger_gun,0,3169 -481814,background_text,0,3169 -1422082,digimon_(creature),0,3167 -234,gothic,0,3165 -471771,pumps,0,3164 -535308,body_markings,0,3164 -540545,rod_of_remorse,0,3162 -562136,lip_biting,0,3161 -379713,bad_feet,0,3158 -413820,deep_penetration,0,3156 -447189,spitroast,0,3155 -467674,sake_bottle,0,3154 -549346,blue_pantyhose,0,3153 -535048,humanization,0,3152 -1035339,red_headband,0,3151 -387248,banner,0,3148 -10469,duck,0,3147 -1454264,heart-shaped_eyewear,0,3141 -1425516,uranohoshi_school_uniform,0,3140 -560677,arm_rest,0,3139 -1311981,meiji_schoolgirl_uniform,0,3136 -3759,parfait,0,3135 -510576,swim_trunks,0,3131 -411566,nightcap,0,3126 -538859,kindergarten_uniform,0,3125 -1559152,reverse_bunnysuit,0,3125 -492468,plaid_dress,0,3117 -822828,reverse_suspended_congress,0,3114 -684686,grabbing_another's_ass,0,3111 -1410709,ejaculating_while_penetrated,0,3110 -375882,cuts,0,3109 -1408536,holding_lollipop,0,3106 -379595,breast_slip,0,3103 -1400488,pink_neckerchief,0,3103 -536524,tablet_pc,0,3103 -1436828,obiage,0,3100 -425142,submerged,0,3097 -1319842,forked_eyebrows,0,3096 -588209,irrumatio,0,3095 -1582503,scar_on_chest,0,3095 -585211,energy_gun,0,3094 -1341593,bandaged_hand,0,3090 -493348,christmas_ornaments,0,3089 -769705,holding_another's_arm,0,3088 -666708,w_arms,0,3085 -551537,lying_on_person,0,3082 -590746,goggles_around_neck,0,3082 -420283,leotard_aside,0,3081 -502536,paint_splatter,0,3079 -10692,sandwich,0,3076 -7641,piggyback,0,3073 -420128,upright_straddle,0,3072 -601423,yellow_scarf,0,3072 -568804,anus_peek,0,3070 -1326150,purple_vest,0,3069 -1415656,grey_sailor_collar,0,3068 -473217,green_bra,0,3066 -481604,penis_awe,0,3059 -545136,coat_on_shoulders,0,3058 -676352,pokephilia,0,3056 -1590671,chest_harness,0,3056 -1394528,single_sidelock,0,3055 -10919,lineup,0,3054 -15667,riding_crop,0,3052 -1217551,black_armor,0,3052 -1358847,polos_crown,0,3051 -7631,harpy,0,3050 -599594,prosthetic_arm,0,3048 -438208,throwing,0,3047 -666377,hair_spread_out,0,3045 -592316,colored_pubic_hair,0,3044 -15004,toy,0,3043 -484752,clothes_grab,0,3043 -398608,hair_twirling,0,3042 -424585,viewfinder,0,3040 -511645,single_kneehigh,0,3040 -403196,squirrel_tail,0,3040 -378782,hiding,0,3039 -1613301,obliques,0,3038 -488003,leg_hair,0,3035 -1299132,holding_box,0,3034 -54471,midair,0,3034 -1312165,orange_necktie,0,3030 -1627141,gae_bolg_(fate),0,3028 -464585,tomato,0,3027 -1670357,furry_with_non-furry,0,3027 -626701,bird_ears,0,3025 -1417279,holding_underwear,0,3024 -891880,lion_girl,0,3023 -669594,bat_hair_ornament,0,3022 -1339523,bone_hair_ornament,0,3013 -486697,frilled_swimsuit,0,3012 -676138,asymmetrical_footwear,0,3012 -1409831,kuromorimine_military_uniform,0,3012 -1839475,chips_(food),0,3011 -682128,hands_on_another's_shoulders,0,3002 -646029,egasumi,0,2995 -1408498,japari_symbol,0,2995 -1328271,layered_bikini,0,2991 -656168,hands_on_another's_face,0,2989 -573688,reindeer_antlers,0,2983 -1373025,blue-framed_eyewear,0,2980 -464577,shooting_star,0,2980 -380157,shovel,0,2977 -990162,heart_in_eye,0,2975 -464576,seagull,0,2972 -583009,arm_around_waist,0,2970 -385637,earbuds,0,2968 -466613,slime_girl,0,2964 -7994,fighting,0,2963 -1481015,hands_in_opposite_sleeves,0,2961 -702200,sailor_bikini,0,2961 -474988,speaker,0,2960 -688378,multi-tied_hair,0,2960 -1332539,pubic_hair_peek,0,2956 -513153,magazine_(weapon),0,2956 -390685,darkness,0,2953 -659834,spoken_squiggle,0,2947 -493576,feather_boa,0,2942 -461372,mobile_suit,0,2942 -720478,lifting_person,0,2941 -539465,tiger_girl,0,2941 -378767,bleeding,0,2938 -567734,shikishi,0,2938 -440347,leopard_print,0,2938 -347508,miniboy,0,2936 -1258923,star_in_eye,0,2934 -378810,grinding,0,2930 -557508,loose_belt,0,2930 -1371098,purple_umbrella,0,2930 -600421,after_fellatio,0,2930 -12721,gas_mask,0,2928 -489904,arms_around_neck,0,2926 -1455730,raccoon_girl,0,2926 -470690,pancake,0,2924 -1291177,orange_bodysuit,0,2921 -378151,megaphone,0,2920 -467500,beer_can,0,2920 -11436,deepthroat,0,2919 -506137,jacket_around_waist,0,2918 -4550,grenade,0,2914 -1327681,red_sleeves,0,2914 -461788,scowl,0,2912 -1336138,red_belt,0,2911 -1382349,goggles_on_headwear,0,2904 -488365,letterman_jacket,0,2903 -1277869,horned_headwear,0,2898 -471357,treble_clef,0,2897 -1308608,bag_charm,0,2897 -612379,bubble_tea,0,2897 -447984,vegetable,0,2896 -375460,ceiling,0,2895 -405671,soda_can,0,2894 -692860,alternate_legwear,0,2892 -526914,licking_finger,0,2891 -559692,clothed_pokemon,0,2891 -707150,finger_on_trigger,0,2889 -5597,newspaper,0,2886 -399829,magazine_cover,0,2883 -446690,gloom_(expression),0,2882 -584478,leaf_print,0,2882 -375231,shirt_tug,0,2881 -1301494,spoken_interrobang,0,2880 -1455114,hair_tie_in_mouth,0,2880 -4262,surreal,0,2880 -1235204,bike_shorts_under_skirt,0,2878 -546810,orange_sky,0,2875 -487143,bamboo_forest,0,2872 -399543,flip-flops,0,2871 -2230,guro,0,2869 -588534,in_box,0,2866 -460940,lily_pad,0,2865 -644588,long_eyelashes,0,2865 -713253,cross_hair_ornament,0,2865 -541137,kanzashi,0,2862 -380265,skates,0,2861 -1385298,animal_ear_headphones,0,2861 -1384365,orange_hairband,0,2855 -481088,constellation,0,2848 -1397450,plantar_flexion,0,2847 -531896,2020,0,2845 -13976,frying_pan,0,2844 -2377,piano,0,2842 -424961,remote_control_vibrator,0,2842 -546133,ghost_tail,0,2841 -1291900,yellow_fur,0,2839 -577161,in_tree,0,2836 -442883,city_lights,0,2835 -483264,yellow_rose,0,2833 -486613,extra,0,2832 -12733,thinking,0,2832 -480578,hagoromo,0,2832 -1273311,vertical-striped_dress,0,2831 -633428,bunny_print,0,2829 -1423707,holding_scythe,0,2829 -847095,sparkle_background,0,2828 -13273,stained_glass,0,2828 -828858,hand_over_own_mouth,0,2825 -1253185,snowflake_hair_ornament,0,2824 -1298076,winged_arms,0,2822 -7526,crotch_rope,0,2818 -629659,food_on_head,0,2818 -9335,5koma,0,2817 -462213,peeing_self,0,2816 -377929,sheep_ears,0,2813 -507697,purple_pantyhose,0,2812 -1327007,holding_axe,0,2811 -1837805,traditional_youkai,0,2811 -2571,mochi,0,2810 -14111,candy_cane,0,2809 -1304169,au_ra,0,2806 -476448,kote,0,2801 -389804,quad_tails,0,2800 -1335455,watson_cross,0,2799 -663513,brown_bag,0,2798 -1853327,bar_(place),0,2796 -722453,thumb_ring,0,2795 -1252645,orange_nails,0,2794 -471821,debris,0,2793 -1794320,bow-shaped_hair,0,2792 -1400482,earclip,0,2790 -549590,uneven_gloves,0,2786 -379306,public_nudity,0,2785 -1552754,breast_curtains,0,2785 -572410,ankle_ribbon,0,2782 -1259682,ribbed_dress,0,2780 -530963,arms_under_breasts,0,2779 -390154,left-to-right_manga,0,2779 -1307725,green_scarf,0,2779 -1298625,open-chest_sweater,0,2778 -585305,ear_ribbon,0,2775 -458232,flats,0,2774 -9921,panda,0,2773 -426621,grey_panties,0,2773 -468765,pith_helmet,0,2773 -16978,writing,0,2772 -513195,bird_on_head,0,2771 -1379954,diffraction_spikes,0,2771 -590943,neck_ruff,0,2770 -662265,object_namesake,0,2769 -1408401,white_scrunchie,0,2769 -1373356,yellow_kimono,0,2767 -511736,heart_in_mouth,0,2767 -475209,button_badge,0,2763 -447780,peeking,0,2761 -4807,spill,0,2758 -1234394,see-through_shirt,0,2755 -662500,caterpillar_tracks,0,2755 -618149,yugake,0,2754 -1315142,pink_scrunchie,0,2754 -4773,puppet,0,2754 -404857,cupcake,0,2753 -501057,breastless_clothes,0,2752 -2641,paint,0,2751 -402497,lotus,0,2750 -634400,light_green_hair,0,2744 -380355,chained,0,2743 -467080,thank_you,0,2742 -633519,american_flag_bikini,0,2740 -1400511,fur-trimmed_hood,0,2739 -1205954,looking_at_penis,0,2738 -413033,gaping,0,2738 -25477,chemise,0,2737 -548543,arm_hair,0,2736 -1874313,covering_own_eyes,0,2735 -484394,four-leaf_clover,0,2735 -649327,wide_ponytail,0,2734 -457141,lace_panties,0,2733 -1344905,holding_dagger,0,2733 -1215711,numbered,0,2733 -610726,shared_clothes,0,2731 -1714873,chest_sarashi,0,2729 -406406,shoe_dangle,0,2727 -652707,domino_mask,0,2727 -4177,lotion,0,2724 -279898,shell_casing,0,2722 -409789,rubber_boots,0,2718 -478568,medal,0,2716 -10624,exercise,0,2713 -2833,collage,0,2711 -1384369,green_hairband,0,2709 -8808,hallway,0,2704 -666648,mitsudomoe_(shape),0,2704 -378,cheese,0,2702 -406895,tunic,0,2702 -743282,layered_clothes,0,2701 -494802,on_shoulder,0,2701 -464876,bento,0,2699 -602690,stuffed_cat,0,2699 -1770615,red_gemstone,0,2695 -1373278,black_ascot,0,2693 -619493,ears_down,0,2691 -395226,shoulder_carry,0,2688 -1441861,orange_footwear,0,2687 -1350604,cat_ear_panties,0,2687 -1435434,two-tone_skirt,0,2685 -1474162,gekkoukan_high_school_uniform,0,2684 -503705,paw_shoes,0,2682 -397148,huge_nipples,0,2680 -433752,yunomi,0,2679 -558702,pinching,0,2676 -1383796,rabbit_hood,0,2675 -15996,moonlight,0,2673 -2490,pirate,0,2673 -656171,hand_on_another's_chest,0,2673 -405984,snot,0,2672 -9002,stethoscope,0,2671 -530091,corruption,0,2670 -535299,red_sclera,0,2668 -1316609,mole_on_thigh,0,2667 -724362,single_detached_sleeve,0,2664 -417408,keyhole,0,2663 -619992,world_war_ii,0,2662 -626084,bangs_pinned_back,0,2662 -478424,striker_unit,0,2662 -1322674,latin_cross,0,2660 -1474402,qing_guanmao,0,2656 -631299,pillarboxed,0,2655 -12650,subtitled,0,2654 -644051,aiming_at_viewer,0,2652 -399594,urethra,0,2652 -2626,volleyball,0,2652 -640241,helmet_removed,0,2652 -709557,torn_bodysuit,0,2652 -1183480,blue_belt,0,2651 -1471518,horseshoe_ornament,0,2650 -5272,dice,0,2649 -429439,fetal_position,0,2649 -587679,vibrator_under_clothes,0,2648 -11981,kyuubi,0,2644 -465450,trash_can,0,2644 -1242915,rose_print,0,2642 -10731,chainsaw,0,2641 -1312757,bra_peek,0,2641 -420964,hip_bones,0,2640 -3237,goldfish,0,2639 -484121,leg_lock,0,2639 -1390670,breast_tattoo,0,2639 -505313,torn_sleeves,0,2635 -470159,jealous,0,2634 -1383010,purple_choker,0,2634 -1291568,pink_apron,0,2634 -473427,green_thighhighs,0,2632 -1330014,year_of_the_tiger,0,2632 -494260,purple_wings,0,2630 -407041,profanity,0,2629 -375792,kogal,0,2629 -2848,wedding,0,2628 -447824,doorway,0,2627 -1449257,gem_uniform_(houseki_no_kuni),0,2625 -350,ramen,0,2624 -1280149,crescent_earrings,0,2624 -528555,flat_ass,0,2623 -397935,ladder,0,2623 -378452,hand_in_panties,0,2622 -650514,wet_swimsuit,0,2618 -8874,pudding,0,2617 -555933,sword_of_hisou,0,2617 -1441888,over-rim_eyewear,0,2615 -519703,alternate_universe,0,2615 -413035,soccer_ball,0,2614 -515648,coattails,0,2613 -1261354,feather_trim,0,2613 -414783,padlock,0,2612 -1229660,multiple_horns,0,2612 -11316,abstract,0,2611 -1262166,seamed_legwear,0,2605 -15201,soldier,0,2605 -1468295,quarter_note,0,2603 -617590,wa_maid,0,2602 -449458,bullpup,0,2602 -474982,white_robe,0,2602 -667185,burn_scar,0,2600 -1467259,diagonal_bangs,0,2598 -10309,fashion,0,2597 -663385,crossed_ankles,0,2597 -1554926,wide_spread_legs,0,2594 -605757,pant_suit,0,2593 -673352,flaming_eye,0,2591 -675804,nervous_smile,0,2591 -8796,electric_fan,0,2586 -10631,paddle,0,2584 -619600,zombie_pose,0,2584 -1297470,lifted_by_another,0,2583 -400527,skirt_tug,0,2582 -449624,bass_guitar,0,2582 -12326,owl,0,2578 -695265,clitoral_stimulation,0,2577 -1355655,grey_coat,0,2576 -1178138,snowflake_print,0,2576 -1901,orgy,0,2575 -682862,hand_on_another's_hip,0,2573 -1434382,spade_(shape),0,2572 -1444529,linea_alba,0,2572 -469445,sleepwear,0,2572 -534387,heart_pillow,0,2567 -1438791,holding_pom_poms,0,2566 -1515727,strap_between_breasts,0,2565 -11243,shower_head,0,2564 -1397369,year_of_the_ox,0,2563 -1392007,pink_bodysuit,0,2562 -547698,sunburst,0,2561 -32298,duffel_bag,0,2558 -540097,turtle_shell,0,2557 -615041,finger_to_cheek,0,2553 -619145,orange_gloves,0,2552 -609122,multiple_belts,0,2552 -595006,green_sweater,0,2550 -1431325,mismatched_bikini,0,2548 -1395493,eyepatch_bikini,0,2548 -375886,sheep_girl,0,2547 -1376523,weibo_username,0,2544 -1161083,2018,0,2544 -670773,happy_valentine,0,2543 -69844,pig,0,2542 -1518440,mouth_drool,0,2542 -14861,chef_hat,0,2541 -649248,red_pupils,0,2541 -1304208,black_cardigan,0,2539 -622606,anime_coloring,0,2537 -1396558,frilled_hair_tubes,0,2537 -10340,shark,0,2537 -13958,locker_room,0,2535 -525182,santa_bikini,0,2535 -4031,negligee,0,2533 -1344732,striped_jacket,0,2533 -821841,2019,0,2532 -476787,talons,0,2531 -380173,seashell,0,2528 -422957,come_hither,0,2527 -1410787,st._gloriana's_school_uniform,0,2527 -9554,g-string,0,2526 -722842,frilled_kimono,0,2525 -1161081,2016,0,2522 -1416804,orange_scrunchie,0,2521 -1283223,shibari_over_clothes,0,2520 -1515354,brown_theme,0,2518 -1201870,prone_bone,0,2517 -428664,embers,0,2517 -1582500,scar_on_arm,0,2515 -578713,giving,0,2514 -656916,animal_penis,0,2514 -1336997,green_coat,0,2514 -527684,doll_hug,0,2510 -1338640,yellow_scrunchie,0,2508 -10168,suspension,0,2506 -475709,bandaid_on_pussy,0,2505 -1314965,horizontal_pupils,0,2504 -381372,cold,0,2502 -602427,wrestling_outfit,0,2502 -499060,ainu_clothes,0,2500 -586749,mismatched_footwear,0,2499 -1530508,scar_on_nose,0,2498 -1515361,white_theme,0,2496 -632927,alternate_headwear,0,2496 -1723482,flame-tipped_tail,0,2496 -550123,sitting_on_face,0,2495 -11433,nipple_rings,0,2494 -228096,spacesuit,0,2492 -677406,multiple_earrings,0,2492 -471929,cum_on_stomach,0,2492 -835764,untied_panties,0,2491 -640801,clothes_in_mouth,0,2490 -4011,blade,0,2489 -390993,sigh,0,2487 -9101,cigar,0,2487 -404436,ribbed_shirt,0,2487 -642455,shirt_removed,0,2487 -14074,raincoat,0,2487 -1437532,two-tone_jacket,0,2486 -551584,updo,0,2485 -398742,pastry,0,2484 -402204,holding_panties,0,2483 -495857,arm_around_neck,0,2483 -725441,black_headband,0,2482 -1393295,orange_choker,0,2481 -515468,head-mounted_display,0,2479 -556999,two-footed_footjob,0,2477 -379432,lights,0,2477 -399308,walk-in,0,2476 -405623,dog_boy,0,2474 -633092,arm_held_back,0,2473 -374959,still_life,0,2472 -607667,checkered_scarf,0,2472 -1393855,holding_flag,0,2471 -685091,hand_on_another's_back,0,2471 -388452,sweets,0,2470 -376473,mallet,0,2470 -393166,bloom,0,2470 -10736,spandex,0,2468 -1319452,hand_on_another's_arm,0,2467 -612542,bow_bikini,0,2462 -1538888,kitauji_high_school_uniform,0,2459 -9511,spotlight,0,2458 -533035,undersized_clothes,0,2458 -1451957,naoetsu_high_school_uniform,0,2457 -663171,sun_symbol,0,2456 -495002,skirt_around_one_leg,0,2455 -527607,magazine_(object),0,2455 -461542,red_sash,0,2454 -480444,shouji,0,2452 -883683,white_feathers,0,2450 -523426,hand_grab,0,2450 -10412,shaved_ice,0,2449 -374334,open_shorts,0,2448 -540150,puckered_lips,0,2446 -446993,open_collar,0,2445 -692418,suspender_shorts,0,2443 -472424,skull_and_crossbones,0,2442 -470441,plastic_bag,0,2441 -410525,typo,0,2441 -473040,tombstone,0,2439 -374379,hairy,0,2438 -542457,2015,0,2435 -11943,zero_suit,0,2433 -433704,super_saiyan,0,2428 -1409556,ooarai_military_uniform,0,2427 -409526,thigh_sex,0,2426 -816551,jackal_ears,0,2425 -1515357,orange_theme,0,2424 -1403936,bodysuit_under_clothes,0,2424 -1827216,cube_hair_ornament,0,2422 -375083,tuxedo,0,2421 -2316,carpet,0,2421 -701781,calendar_(medium),0,2420 -637971,heart_tattoo,0,2420 -468923,screaming,0,2419 -13265,cum_on_boy,0,2417 -11717,mohawk,0,2417 -647581,look-alike,0,2416 -1322421,bandaid_on_cheek,0,2416 -3917,toothbrush,0,2415 -486062,on_lap,0,2414 -570082,swirl_lollipop,0,2414 -572679,rubbing_eyes,0,2414 -462454,small_penis,0,2412 -1141250,black_fur,0,2412 -469020,rice_bowl,0,2410 -523488,flower_pot,0,2410 -6339,dusk,0,2409 -1274212,green_cape,0,2409 -617471,female_pov,0,2408 -375037,striped_socks,0,2408 -1257075,number_tattoo,0,2406 -1434570,hadanugi_dousa,0,2405 -691977,egyptian_clothes,0,2405 -7867,orc,0,2401 -418007,o3o,0,2397 -662701,brown_ribbon,0,2397 -514768,grey_sky,0,2395 -505860,tally,0,2394 -390347,flask,0,2391 -1161082,2017,0,2391 -242,princess,0,2389 -862221,club_(weapon),0,2388 -404541,hexagram,0,2388 -1791866,holding_smoking_pipe,0,2388 -645791,patterned_background,0,2386 -445826,phimosis,0,2386 -601821,nape,0,2386 -423600,bit_gag,0,2385 -512534,squirrel_girl,0,2383 -569544,condom_on_penis,0,2382 -1673151,uneven_sleeves,0,2382 -1835734,red_one-piece_swimsuit,0,2380 -1410099,purple_sleeves,0,2380 -1437301,black_bag,0,2379 -375272,evening_gown,0,2371 -573757,beach_towel,0,2370 -643796,power_symbol,0,2368 -510070,:i,0,2368 -407322,smell,0,2367 -587435,side_cutout,0,2366 -580695,big_belly,0,2366 -13691,bomber_jacket,0,2365 -1304570,cat_ear_headphones,0,2364 -556491,convenient_arm,0,2363 -669792,futa_with_male,0,2362 -453104,cameo,0,2357 -400905,talisman,0,2355 -623327,creator_connection,0,2354 -1513962,tam_o'_shanter,0,2353 -396063,asphyxiation,0,2352 -459289,blue_lips,0,2352 -1268355,carrot_necklace,0,2352 -528325,red_pantyhose,0,2347 -413782,d-pad,0,2340 -297185,drumsticks,0,2339 -493298,police_hat,0,2339 -419192,monkey_tail,0,2339 -456655,broken_glass,0,2339 -440796,triangle,0,2338 -479397,white_headband,0,2336 -3874,sink,0,2335 -474252,path,0,2335 -382047,sunrise,0,2335 -1484339,diagonal-striped_bow,0,2333 -455175,smiley_face,0,2331 -676653,mouse_(computer),0,2331 -1300235,purple_pants,0,2329 -513424,millipen_(medium),0,2329 -613439,roman_numeral,0,2328 -1227710,tail_through_clothes,0,2327 -1695986,tied_up_(nonsexual),0,2326 -622943,cover_image,0,2326 -484578,disembodied_head,0,2324 -517255,plum_blossoms,0,2324 -1373030,pink-framed_eyewear,0,2319 -776463,enpera,0,2318 -395568,cyberpunk,0,2316 -1551114,covered_abs,0,2316 -390096,hill,0,2314 -494832,faux_traditional_media,0,2311 -480812,steam_censor,0,2309 -699975,shoulder_spikes,0,2309 -1441884,rectangular_eyewear,0,2307 -673610,green_choker,0,2307 -526974,coffee_cup,0,2304 -377197,desert,0,2303 -3054,curry,0,2301 -1631337,shimakaze_(kancolle)_(cosplay),0,2301 -12396,ice_cube,0,2299 -425654,beak,0,2297 -1505132,russian_text,0,2297 -398959,trick_or_treat,0,2295 -1407477,black_scrunchie,0,2295 -380573,quill,0,2294 -589610,spider_web_print,0,2294 -16614,diadem,0,2294 -4381,ufo,0,2291 -426146,fur_coat,0,2290 -1787327,shuuchiin_academy_school_uniform,0,2290 -631055,tree_shade,0,2288 -502177,bird_girl,0,2288 -1396985,holding_sheath,0,2287 -578084,black_tail,0,2287 -393321,scratches,0,2287 -466898,strangling,0,2286 -700189,finger_in_another's_mouth,0,2286 -665350,microdress,0,2285 -189096,anal_fingering,0,2284 -634002,matching_outfit,0,2284 -488880,fourth_wall,0,2284 -426384,clitoral_hood,0,2282 -8371,hamster,0,2282 -1343573,holding_arrow,0,2279 -856710,neck_tattoo,0,2279 -2909,cyclops,0,2273 -498627,short_sword,0,2272 -410605,shared_scarf,0,2270 -581705,sitting_on_desk,0,2270 -410379,praying,0,2268 -13606,cervix,0,2268 -506562,tri_tails,0,2264 -222208,eraser,0,2262 -1321704,string_of_flags,0,2262 -160066,driving,0,2261 -11486,jellyfish,0,2261 -419919,diving_mask,0,2261 -1528617,retrofit_(azur_lane),0,2261 -435180,bad_hands,0,2260 -1853,tribadism,0,2257 -666137,aqua_bikini,0,2257 -462978,??,0,2257 -575698,torn_cape,0,2255 -613216,multicolored_legwear,0,2254 -1312065,chinese_knot,0,2254 -1320347,octarian,0,2254 -401614,tennis_uniform,0,2253 -554120,dirty_face,0,2251 -1637933,evolutionary_line,0,2251 -506895,ankle_cuffs,0,2250 -1392360,black_camisole,0,2248 -1533601,sideless_outfit,0,2246 -673694,large_tail,0,2246 -1262143,phone_screen,0,2246 -5871,restaurant,0,2244 -539295,feather_hair,0,2244 -16335,spatula,0,2243 -453895,mechanical_parts,0,2243 -613940,white_cat,0,2242 -1793456,cooperative_fellatio,0,2241 -8721,breast_bondage,0,2241 -1376935,blue_ascot,0,2240 -490993,colored_tongue,0,2240 -1430633,two-tone_bikini,0,2240 -399776,torch,0,2240 -400119,melting,0,2239 -381796,satchel,0,2239 -1524489,looking_at_object,0,2238 -534340,calendar_(object),0,2238 -384086,jet,0,2234 -854287,ribbed_legwear,0,2231 -543351,crossed_bandaids,0,2231 -548910,chain_necklace,0,2230 -109323,cliff,0,2230 -1252969,white_nails,0,2230 -1342770,strappy_heels,0,2227 -844443,red_umbrella,0,2225 -564233,hand_on_hilt,0,2221 -1514281,shark_hair_ornament,0,2221 -539390,insignia,0,2220 -410599,crotchless_panties,0,2217 -423171,prayer_beads,0,2214 -1286664,kabedon,0,2214 -490692,shading_eyes,0,2213 -434965,studded_belt,0,2213 -1321301,purple_shorts,0,2212 -1391834,feather-trimmed_sleeves,0,2212 -1570687,starter_pokemon_trio,0,2212 -640820,spoken_anger_vein,0,2211 -457376,milk_bottle,0,2211 -1276335,fur-trimmed_legwear,0,2210 -550560,oni_mask,0,2210 -703219,multicolored_wings,0,2205 -615392,hair_horns,0,2205 -14927,dessert,0,2204 -1577661,dynamax_band,0,2204 -3139,samurai,0,2203 -493584,striped_pants,0,2203 -379208,smelling,0,2202 -466731,ear_tag,0,2200 -1443349,blue_cardigan,0,2200 -144057,harem_outfit,0,2200 -381887,caught,0,2199 -1513986,creature_and_personification,0,2198 -712510,bare_hips,0,2197 -1452471,hikarizaka_private_high_school_uniform,0,2196 -539585,sleeping_upright,0,2196 -379758,cave,0,2196 -479466,fine_art_parody,0,2195 -444189,arabian_clothes,0,2195 -1402052,white_cloak,0,2195 -1304064,black_apron,0,2195 -455722,curtain_grab,0,2192 -381727,open_skirt,0,2191 -491230,horseback_riding,0,2190 -1422860,two-tone_swimsuit,0,2190 -427930,liquid,0,2189 -1447394,whistle_around_neck,0,2188 -1447450,d-pad_hair_ornament,0,2187 -638777,ritual_baton,0,2186 -87501,wire,0,2185 -480182,keyboard_(instrument),0,2185 -950553,yoga_pants,0,2185 -687728,hands_on_own_head,0,2184 -664440,lace-trimmed_dress,0,2183 -543455,bolt_action,0,2182 -458230,strapless_bra,0,2181 -423438,racket,0,2181 -458132,winged_hat,0,2180 -514239,holding_condom,0,2180 -482447,tailcoat,0,2180 -1098217,drawing_tablet,0,2177 -1399795,no_eyewear,0,2173 -540767,abstract_background,0,2172 -1297466,pulled_by_another,0,2171 -488260,purple_cape,0,2171 -501554,sweater_around_waist,0,2168 -595850,hooded_cape,0,2167 -513765,broken_horn,0,2164 -633435,magical_musket,0,2162 -1243347,mega_pokemon,0,2161 -8279,church,0,2160 -572264,gold_chain,0,2160 -1344680,holding_doll,0,2159 -379555,graffiti,0,2159 -519892,naked_coat,0,2158 -486210,tie_clip,0,2158 -433619,dreadlocks,0,2157 -1076181,flower_(symbol),0,2157 -10861,town,0,2156 -9032,attack,0,2155 -519804,black_lips,0,2153 -839099,green_lips,0,2152 -482936,long_pointy_ears,0,2150 -1609053,twitching_penis,0,2149 -438849,pill,0,2149 -478965,light_bulb,0,2148 -457115,when_you_see_it,0,2147 -453756,;3,0,2147 -405207,arch,0,2145 -644564,butterfly_print,0,2145 -683211,carrying_over_shoulder,0,2141 -467696,black_rose,0,2139 -389161,french_fries,0,2139 -427771,omelet,0,2138 -637281,mechanical_legs,0,2137 -1446770,instant_loss,0,2136 -2281,festival,0,2135 -1280102,single_hair_intake,0,2135 -1411065,anzio_school_uniform,0,2135 -403072,rocket_launcher,0,2131 -1338775,patterned_clothing,0,2126 -425236,pulling,0,2124 -1315557,grey_bow,0,2123 -553947,>_o,0,2122 -644284,holding_sign,0,2121 -530881,spilling,0,2120 -721674,purple_scarf,0,2119 -713394,hand_on_another's_thigh,0,2118 -1448342,two-tone_gloves,0,2118 -7728,tankini,0,2116 -442279,vial,0,2115 -1411023,st._gloriana's_military_uniform,0,2114 -560724,belly_chain,0,2113 -635980,impossible_leotard,0,2112 -430139,single_vertical_stripe,0,2112 -658525,white_cardigan,0,2112 -514196,cat_print,0,2111 -481778,stage_lights,0,2110 -562075,plaid_bikini,0,2108 -489623,glowstick,0,2106 -403183,nail,0,2105 -5058,surfboard,0,2105 -588453,laurel_crown,0,2105 -543193,spread_wings,0,2104 -396962,sweatband,0,2101 -465814,video_camera,0,2100 -9534,trumpet,0,2099 -643426,reverse_upright_straddle,0,2099 -540105,fleeing,0,2098 -682638,flower_earrings,0,2097 -1300390,bandaged_head,0,2097 -421313,product_placement,0,2096 -422126,moss,0,2096 -396859,budget_sarashi,0,2096 -420749,turban,0,2095 -586819,energy_wings,0,2094 -1438722,plunging_neckline,0,2092 -1669073,official_alternate_hair_length,0,2092 -497966,penis_grab,0,2091 -551641,thigh_ribbon,0,2091 -5983,briefs,0,2090 -485269,clothes_hanger,0,2089 -423281,mini-hakkero,0,2089 -1605926,see-through_legwear,0,2088 -475076,cat_hat,0,2087 -472623,hammer_and_sickle,0,2087 -437149,tongue_piercing,0,2087 -421506,head_grab,0,2086 -1353605,standing_on_liquid,0,2085 -1726780,egg_(food),0,2085 -1281566,spiked_armlet,0,2085 -417809,denim_skirt,0,2084 -561087,covering_nipples,0,2083 -1420004,blur_censor,0,2082 -1594627,monocle_hair_ornament,0,2081 -648389,spread_fingers,0,2079 -448292,porkpie_hat,0,2078 -1350232,orange_shorts,0,2074 -667237,oversized_animal,0,2073 -661191,aqua_skirt,0,2072 -669534,clothes_down,0,2070 -435549,veranda,0,2069 -442051,dust,0,2069 -1769934,finger_in_own_mouth,0,2068 -541927,manga_(object),0,2068 -402726,spanked,0,2067 -482791,tusks,0,2067 -1338653,fur_scarf,0,2066 -521817,black_feathers,0,2065 -700045,stray_pubic_hair,0,2065 -1289190,vertical-striped_skirt,0,2063 -1269637,hands_on_headwear,0,2061 -488487,ankle_socks,0,2061 -389909,potato_chips,0,2061 -631042,pool_ladder,0,2058 -1307801,feather_earrings,0,2057 -460050,sleep_molestation,0,2055 -473703,car_interior,0,2050 -405548,tail_bell,0,2050 -519626,on_table,0,2050 -12284,gown,0,2049 -1394292,blue_serafuku,0,2048 -527651,naked_sheet,0,2048 -879036,false_smile,0,2048 -6267,whale,0,2048 -3993,mop,0,2043 -1277599,ribbon-trimmed_skirt,0,2043 -491714,santa_dress,0,2042 -1257581,bowl_hat,0,2042 -699964,pocky_day,0,2042 -448198,shako_cap,0,2041 -589583,kappougi,0,2040 -1370858,mechanical_horns,0,2039 -1453261,low_twin_braids,0,2038 -378768,dreaming,0,2037 -1782786,median_furrow,0,2033 -447322,korean_clothes,0,2031 -381083,sketchbook,0,2031 -1327736,purple_coat,0,2030 -653262,back_tattoo,0,2029 -439517,nose_bubble,0,2026 -2130,tanuki,0,2026 -541092,tegaki,0,2026 -419258,child_on_child,0,2023 -466441,sweet_potato,0,2023 -104991,have_to_pee,0,2022 -1254442,scissor_blade,0,2022 -513425,nib_pen_(medium),0,2022 -287085,boxing_gloves,0,2017 -1389873,orange_kimono,0,2017 -8235,shuriken,0,2016 -1465099,black_sports_bra,0,2016 -477241,birthday_cake,0,2014 -615345,bunny_pose,0,2014 -1349485,clover_hair_ornament,0,2012 -784913,wife_and_wife,0,2012 -581551,covered_face,0,2012 -10884,crotch_rub,0,2010 -385780,high_contrast,0,2005 -1343930,black_hakama,0,2005 -1391600,borrowed_garments,0,2004 -711978,clothed_animal,0,2003 -453979,gusset,0,2002 -1282702,wooden_bucket,0,2002 -460720,wind_chime,0,2002 -555866,pillow_grab,0,2002 -1233843,impossible_bodysuit,0,2002 -686220,pink_sleeves,0,2002 -1279634,mating_press,0,2000 -576093,hands_on_lap,0,1999 -511515,grimace,0,1998 -5114,turtle,0,1997 -495234,inflatable_toy,0,1997 -396726,wreath,0,1997 -6327,afro,0,1996 -551169,transparent_umbrella,0,1993 -1721304,dyed_bangs,0,1992 -585,taiyaki,0,1991 -661899,glowing_sword,0,1991 -521722,nengajou,0,1991 -118742,team_rocket,0,1991 -454425,juice_box,0,1989 -493037,drawer,0,1989 -380358,setsubun,0,1989 -1743,baseball,0,1984 -450205,prehensile_hair,0,1984 -580340,picture_(object),0,1983 -408804,bad_proportions,0,1982 -1618015,slime_(creature),0,1982 -549041,vocaloid_append,0,1982 -1231742,three-dimensional_maneuver_gear,0,1982 -702226,holding_cat,0,1981 -717296,hand_in_another's_hair,0,1981 -416114,symmetry,0,1979 -470701,cube,0,1978 -559145,school_hat,0,1977 -409034,bite_mark,0,1976 -403942,earpiece,0,1974 -4510,crepe,0,1973 -416356,corpse,0,1973 -662965,tokkuri,0,1972 -461237,skewer,0,1972 -379744,counter,0,1972 -1468298,beamed_sixteenth_notes,0,1971 -43623,scepter,0,1971 -10638,boxers,0,1970 -2560,wrestling,0,1970 -1360724,brown_cape,0,1970 -175633,comb,0,1969 -1372686,shark_hood,0,1968 -1427258,holding_sack,0,1967 -1463294,holding_controller,0,1967 -1374594,grey-framed_eyewear,0,1964 -1343802,holding_basket,0,1962 -516012,clothed_masturbation,0,1962 -516930,hanfu,0,1959 -535055,warship,0,1959 -549629,ankle_lace-up,0,1955 -699142,diamond-shaped_pupils,0,1954 -589659,in_bucket,0,1952 -1770614,green_gemstone,0,1951 -1204400,playing_with_own_hair,0,1951 -558703,cheek_pinching,0,1949 -488,flute,0,1949 -408254,tripping,0,1948 -494375,shared_umbrella,0,1948 -416493,red_sky,0,1948 -646637,cocktail_glass,0,1948 -421443,spinning,0,1947 -419280,between_thighs,0,1947 -1240137,swim_briefs,0,1947 -558384,on_grass,0,1944 -1667144,mod3_(girls'_frontline),0,1944 -552818,parted_hair,0,1942 -1637,failure,0,1941 -473206,grey_socks,0,1940 -378083,barrel,0,1940 -666929,light_trail,0,1939 -1392029,multicolored_bodysuit,0,1937 -502382,hyur,0,1937 -422427,sports_bikini,0,1935 -465416,sleeveless_sweater,0,1935 -1456557,hair_through_headwear,0,1931 -608539,column_lineup,0,1930 -574719,multicolored_swimsuit,0,1930 -657424,candlestand,0,1928 -383903,vending_machine,0,1927 -498946,turnaround,0,1926 -1330708,purple_sweater,0,1926 -422821,safety_pin,0,1925 -414746,spider_girl,0,1925 -1334708,holding_paintbrush,0,1925 -499,toast,0,1924 -393832,impregnation,0,1924 -374542,daisy,0,1923 -477184,large_hat,0,1923 -498823,burning,0,1923 -550621,head_back,0,1922 -600284,cheek_poking,0,1921 -605455,volleyball_uniform,0,1920 -1227460,hands_on_another's_head,0,1919 -514943,torn_shorts,0,1919 -5001,squid,0,1915 -1691759,censored_nipples,0,1914 -4864,lion,0,1913 -1435804,bisexual_female,0,1913 -616023,aqua_dress,0,1913 -1442709,fewer_digits,0,1913 -377200,balcony,0,1912 -604468,eye_mask,0,1912 -565089,caustics,0,1911 -1258088,ribbon-trimmed_clothes,0,1911 -1499947,looking_over_eyewear,0,1911 -1314744,yellow_choker,0,1910 -541224,heart_hands_duo,0,1910 -1582499,scar_on_forehead,0,1910 -1401067,face_to_breasts,0,1909 -688904,overskirt,0,1909 -447307,stone,0,1909 -16006,union_jack,0,1907 -478305,striped_sleeves,0,1906 -577309,multiple_condoms,0,1906 -484182,nose_piercing,0,1905 -1399079,holding_drink,0,1905 -381921,energy_ball,0,1905 -7737,soap,0,1904 -452530,ok_sign,0,1904 -1039733,licking_nipple,0,1902 -1606642,white_male_underwear,0,1902 -880368,humanoid_robot,0,1901 -459931,prostitution,0,1900 -1713028,two-tone_bowtie,0,1900 -5707,chaps,0,1899 -379983,under_table,0,1898 -418677,gate,0,1896 -374503,strawberry_shortcake,0,1895 -481420,blood_stain,0,1893 -453886,cosmetics,0,1892 -380490,alarm_clock,0,1889 -1405888,harvin,0,1889 -1296384,multicolored_gloves,0,1888 -530877,lace_bra,0,1887 -490349,head_bump,0,1884 -2834,69,0,1879 -16150,keychain,0,1879 -412179,polka_dot_bra,0,1876 -598410,ceiling_light,0,1875 -468817,flower_wreath,0,1875 -523897,fried_egg,0,1872 -1344665,yellow_vest,0,1871 -1791862,industrial_pipe,0,1870 -1383063,clover_print,0,1870 -536151,snake_tail,0,1870 -486179,naked_cape,0,1869 -419890,rug,0,1869 -4651,dominatrix,0,1867 -492858,lemon_slice,0,1863 -412890,tissue,0,1862 -420546,spear_the_gungnir,0,1860 -380154,squirrel,0,1860 -585851,bound_ankles,0,1859 -484124,deer_ears,0,1859 -1261917,looking_at_phone,0,1853 -1686527,jack-o'_challenge,0,1853 -1739,shrimp,0,1852 -1412053,magatama_necklace,0,1852 -476158,traffic_light,0,1851 -1700602,thick_arms,0,1851 -433424,if_they_mated,0,1850 -657469,rainbow_order,0,1849 -1926,chart,0,1847 -1408089,star_choker,0,1847 -1404865,brown_sailor_collar,0,1846 -378821,watering_can,0,1845 -1306104,orange_scarf,0,1845 -400230,akeome,0,1845 -4313,pointer,0,1844 -1614785,finger_to_own_chin,0,1843 -8806,train_station,0,1842 -1386147,holding_hammer,0,1840 -617893,sleeping_on_person,0,1840 -413859,footprints,0,1837 -1331430,bandaid_on_arm,0,1837 -1506804,pearl_(gemstone),0,1834 -546293,happy_tears,0,1833 -708792,checkered_necktie,0,1833 -473239,yellow_bra,0,1832 -5494,harem,0,1832 -711883,checkered_kimono,0,1832 -1552758,breast_curtain,0,1832 -406727,against_tree,0,1831 -1440529,two-tone_ribbon,0,1831 -1345684,holding_syringe,0,1830 -7827,whisk,0,1829 -664405,plaid_necktie,0,1829 -706581,condom_packet_strip,0,1828 -440956,fluffy,0,1828 -8781,bomb,0,1827 -521350,color_guide,0,1826 -15412,refrigerator,0,1825 -377878,hairdressing,0,1824 -1371311,aqua_bowtie,0,1824 -460146,hitachi_magic_wand,0,1823 -546937,cracked_skin,0,1821 -1307800,skull_earrings,0,1819 -493288,chasing,0,1818 -394047,circle_cut,0,1817 -1289525,cross_scar,0,1817 -408365,tape_gag,0,1816 -155336,poncho,0,1816 -612699,dirty_clothes,0,1815 -1332003,champagne_flute,0,1815 -1342774,rabbit_house_uniform,0,1815 -1551,drill,0,1814 -1403984,brown_capelet,0,1814 -443220,you're_doing_it_wrong,0,1813 -538158,shared_food,0,1811 -1414514,purple_sailor_collar,0,1811 -428250,plectrum,0,1809 -1793464,cheating_(relationship),0,1808 -528616,drone,0,1808 -1805482,non-humanoid_robot,0,1807 -566340,loose_clothes,0,1807 -1806377,homurahara_academy_school_uniform,0,1806 -3946,faucet,0,1806 -388868,m4_carbine,0,1804 -470667,board_game,0,1803 -514885,after_kiss,0,1802 -612635,sidesaddle,0,1801 -3537,sticker,0,1801 -379794,cafe,0,1800 -638838,in_food,0,1799 -15222,alley,0,1797 -585021,spoken_sweatdrop,0,1797 -621654,pale_color,0,1796 -419998,:x,0,1796 -512237,identity_censor,0,1795 -664066,aqua_ribbon,0,1794 -548122,strawberry_print,0,1791 -382271,destruction,0,1791 -690509,purple_sky,0,1790 -400296,gatling_gun,0,1789 -83990,tennis_racket,0,1789 -10415,railroad_tracks,0,1789 -876848,bandage_on_face,0,1786 -1641903,eye_focus,0,1785 -1489840,white_horns,0,1785 -478617,stripper_pole,0,1785 -1336190,drill_locks,0,1785 -396286,cockpit,0,1784 -716395,dixie_cup_hat,0,1784 -188238,crossbow,0,1783 -1793517,legwear_garter,0,1781 -472,monkey,0,1781 -3342,beltbra,0,1779 -674367,starry_sky_print,0,1778 -390436,birdcage,0,1777 -1076157,futanari_masturbation,0,1776 -478170,anti-materiel_rifle,0,1776 -1231015,character_print,0,1775 -14562,holly,0,1775 -911862,mask_pull,0,1775 -590039,animal_feet,0,1774 -719573,doyagao,0,1773 -10911,pond,0,1773 -1286826,cloud_print,0,1771 -471577,red_socks,0,1771 -511657,alternate_form,0,1770 -375862,butler,0,1769 -521377,winged_helmet,0,1769 -961827,pink_hoodie,0,1767 -148824,dove,0,1766 -1356833,frilled_capelet,0,1764 -610944,mixed_media,0,1762 -433470,fanny_pack,0,1762 -403432,hooves,0,1761 -11395,swing,0,1761 -1343849,fellatio_gesture,0,1761 -1287705,song_name,0,1760 -380828,open_bra,0,1757 -653053,strapless_shirt,0,1757 -390242,variations,0,1756 -1333731,hands_on_own_thighs,0,1756 -1329387,deviantart_username,0,1756 -1448570,gold_earrings,0,1756 -1373028,yellow-framed_eyewear,0,1753 -478938,impossible_dress,0,1751 -380329,briefcase,0,1750 -1344462,blue_apron,0,1749 -16992,see-through_dress,0,1749 -2684,fishing,0,1747 -412950,rubble,0,1747 -1365001,black_robe,0,1746 -6389,tickling,0,1746 -13185,spitting,0,1745 -228746,spider,0,1745 -655271,naked_jacket,0,1745 -444545,pocky_kiss,0,1744 -629987,radio_antenna,0,1744 -440406,buck_teeth,0,1744 -501689,body_hair,0,1743 -585543,pussy_juice_puddle,0,1742 -4144,mace,0,1742 -1253396,character_hair_ornament,0,1742 -533490,adjusting_gloves,0,1741 -3532,ink,0,1740 -670532,holding_pencil,0,1739 -1438761,high-waist_pants,0,1739 -2431,missile,0,1738 -8309,straitjacket,0,1738 -473259,artificial_vagina,0,1738 -638540,multicolored_bikini,0,1737 -1597364,chain_leash,0,1736 -461218,selfcest,0,1734 -675346,frilled_ribbon,0,1732 -1328016,o-ring_choker,0,1730 -440374,leg_belt,0,1729 -4948,mimikaki,0,1728 -466439,sparks,0,1726 -1521615,skin_fangs,0,1726 -1510922,other_focus,0,1725 -15614,tube,0,1724 -430228,pole_dancing,0,1724 -1617800,see-through_leotard,0,1724 -593715,bird_on_hand,0,1722 -391066,roller_skates,0,1722 -1416546,red_hoodie,0,1722 -1258390,holding_leash,0,1721 -406767,super_robot,0,1721 -633809,eastern_dragon,0,1720 -1353409,fine_fabric_emphasis,0,1719 -555276,surprise_kiss,0,1717 -819855,puffy_shorts,0,1716 -400313,beam_rifle,0,1716 -557675,no_wings,0,1715 -414749,helm,0,1715 -1308909,barcode_tattoo,0,1714 -477329,brushing_hair,0,1711 -429442,patch,0,1711 -1472233,high-waist_shorts,0,1711 -464556,dolphin,0,1710 -1476489,pokemon_on_head,0,1709 -389904,cabinet,0,1706 -1696268,cowboy_western,0,1706 -570969,red_armor,0,1706 -1675931,kalashnikov_rifle,0,1705 -521422,skull_print,0,1705 -688139,implied_futanari,0,1703 -15124,pain,0,1701 -376636,confused,0,1701 -550124,sitting_in_tree,0,1701 -487161,breasts_on_head,0,1700 -547292,reflective_floor,0,1700 -475729,through_clothes,0,1699 -77315,worried,0,1698 -394155,instrument_case,0,1698 -603830,on_person,0,1698 -507655,freediving,0,1695 -1637843,crescent_facial_mark,0,1695 -443879,gorget,0,1695 -1372792,fox_boy,0,1694 -524875,nail_art,0,1693 -473417,yellow_thighhighs,0,1692 -1415469,torpedo_tubes,0,1692 -641695,aerial_fireworks,0,1691 -1253523,\||/,0,1690 -1113198,latex_bodysuit,0,1690 -909672,star_halo,0,1689 -1416333,cherry_blossom_print,0,1687 -11960,tanabata,0,1686 -1427966,yellow_cardigan,0,1686 -450823,x_x,0,1686 -445622,leopard_ears,0,1686 -1489808,poke_ball_symbol,0,1685 -499937,lip_piercing,0,1685 -1233871,circle_name,0,1684 -423915,wooden_sword,0,1684 -468068,spread_toes,0,1684 -859661,red_cloak,0,1683 -468635,coral,0,1682 -520227,cowlick,0,1682 -481514,white_suit,0,1682 -645771,seigaiha,0,1680 -431012,tangzhuang,0,1679 -1410984,kuromorimine_school_uniform,0,1679 -1559079,light_areolae,0,1678 -11745,breast_smother,0,1677 -396795,menu,0,1676 -1378575,monsterification,0,1676 -1284171,after_paizuri,0,1676 -1319620,wing_hair_ornament,0,1676 -1531697,mismatched_pupils,0,1673 -679014,greatsword,0,1673 -377843,cousins,0,1671 -399148,voyakiloid,0,1671 -1383226,ofuda_on_clothes,0,1671 -614243,plaid_background,0,1670 -695921,white_sash,0,1670 -10429,shinsengumi,0,1670 -1441680,holstered_weapon,0,1670 -723924,very_long_fingernails,0,1670 -1819565,jirai_kei,0,1670 -5873,confession,0,1669 -670645,tactical_clothes,0,1668 -495132,autobot,0,1667 -459174,dress_tug,0,1666 -1345660,leaning_on_object,0,1666 -420651,blinds,0,1665 -396872,ribbon_bondage,0,1665 -516894,tokusatsu,0,1664 -469082,milk_carton,0,1663 -392117,insect_wings,0,1662 -1499389,patchwork_skin,0,1660 -526470,thighhighs_pull,0,1658 -385733,baseball_uniform,0,1658 -622860,spring_(season),0,1658 -494944,flexing,0,1658 -1426293,yasogami_school_uniform,0,1656 -1174935,hand_on_own_leg,0,1654 -1262479,plaid_bowtie,0,1653 -542055,polka_dot_dress,0,1652 -567592,untucked_shirt,0,1649 -610495,bondage_outfit,0,1647 -418420,stuck,0,1647 -1418114,green_hoodie,0,1647 -413866,breasts_on_glass,0,1646 -586859,beckoning,0,1646 -1641153,icho_private_high_school_uniform,0,1646 -476416,biker_clothes,0,1645 -1323958,pink_vest,0,1645 -10293,marker,0,1645 -1346997,holding_whip,0,1644 -1275036,german_clothes,0,1644 -1268348,pawpads,0,1644 -442232,scarlet_devil_mansion,0,1643 -663528,wooden_wall,0,1643 -667138,hikimayu,0,1643 -475212,very_long_sleeves,0,1640 -1307726,magatama_earrings,0,1639 -1684797,grabbing_another's_chin,0,1636 -418987,park_bench,0,1636 -379603,hair_brush,0,1634 -379164,messy,0,1632 -1411720,medium_dress,0,1631 -549281,in_the_face,0,1631 -1242767,star_necklace,0,1631 -427833,palms,0,1631 -1328688,moon_(ornament),0,1630 -437999,full_nelson,0,1629 -444634,torn,0,1629 -403915,wheel,0,1628 -2232,tarot,0,1627 -478821,teasing,0,1627 -539771,incoming_gift,0,1627 -6303,naginata,0,1627 -1623670,diamond_button,0,1626 -1373026,green-framed_eyewear,0,1623 -610198,leotard_pull,0,1622 -660019,color_connection,0,1620 -462556,cuddling,0,1620 -1496652,gold_hairband,0,1619 -599839,horned_helmet,0,1618 -1434344,pencil_dress,0,1618 -1402835,scene_reference,0,1617 -464552,cucumber,0,1616 -1530483,elite_ii_(arknights),0,1616 -8989,viera,0,1612 -540139,different_reflection,0,1612 -1088997,bear_hair_ornament,0,1612 -667586,single_pauldron,0,1612 -815986,fortissimo,0,1612 -1400382,barbell_piercing,0,1611 -544708,fish_girl,0,1611 -454517,unconscious,0,1610 -574422,claw_(weapon),0,1609 -379311,chandelier,0,1608 -377993,petting,0,1608 -450208,chocolate_bar,0,1607 -713479,2014,0,1607 -476495,dowsing_rod,0,1607 -469396,role_reversal,0,1605 -375381,hair_in_mouth,0,1602 -565136,projected_inset,0,1601 -664546,taut_dress,0,1599 -692799,choko_(cup),0,1598 -613128,embellished_costume,0,1596 -1379633,fff_threesome,0,1595 -457418,fighter_jet,0,1595 -442863,heckler_&_koch,0,1594 -393579,mechanical_pencil,0,1593 -514889,polo_shirt,0,1593 -508957,health_bar,0,1593 -684621,puffy_detached_sleeves,0,1593 -700119,cropped_vest,0,1592 -421489,ushanka,0,1591 -403478,suppressor,0,1590 -411198,leg_hold,0,1589 -1396796,green_neckerchief,0,1589 -1260991,pink_pants,0,1588 -669791,futa_with_futa,0,1588 -723472,stiletto_heels,0,1588 -1274842,two-handed,0,1587 -412925,cupless_bra,0,1587 -642312,handsfree_ejaculation,0,1586 -1598810,nontraditional_playboy_bunny,0,1586 -1403286,black_mask,0,1586 -412357,lounge_chair,0,1585 -664263,bikini_top_removed,0,1585 -430449,spine,0,1585 -442852,old_woman,0,1585 -1439570,tall_female,0,1585 -406711,strap-on,0,1584 -1342607,holding_lantern,0,1584 -512488,crotch_plate,0,1583 -679286,faux_figurine,0,1582 -12083,graveyard,0,1582 -668887,shallow_water,0,1580 -1362227,holding_stick,0,1580 -469368,striped_gloves,0,1579 -683983,poke_ball_print,0,1579 -1515352,aqua_theme,0,1578 -388093,hakurei_reimu_(cosplay),0,1578 -600210,perineum,0,1578 -452130,neon_lights,0,1578 -492105,groin_tendon,0,1577 -395436,reindeer_costume,0,1577 -721109,visible_air,0,1577 -592444,mars_symbol,0,1576 -399999,whipped_cream,0,1575 -452157,hagoita,0,1575 -759492,wolf_boy,0,1575 -538746,lipstick_tube,0,1574 -542357,red_cross,0,1573 -405026,large_insertion,0,1573 -410111,bowing,0,1570 -480324,staff_(music),0,1570 -495020,crazy_smile,0,1570 -397693,shikigami,0,1569 -703456,sorcerer's_sutra_scroll,0,1569 -1426454,holding_clipboard,0,1568 -1505130,german_text,0,1567 -391475,fireflies,0,1567 -29555,office,0,1567 -451262,notepad,0,1566 -1440623,jacket_partially_removed,0,1566 -1514129,sunburst_background,0,1565 -545758,wisteria,0,1563 -550778,checkerboard_cookie,0,1563 -1517305,presenting_armpit,0,1563 -582361,head_between_breasts,0,1562 -1374895,spiked_tail,0,1561 -660754,aqua_shirt,0,1560 -537783,bamboo_broom,0,1559 -1781164,gem_(symbol),0,1559 -1296314,single_gauntlet,0,1558 -15578,eagle,0,1557 -1240006,bishamonten's_pagoda,0,1554 -485203,video_game,0,1553 -585862,reach-around,0,1553 -617315,pantyhose_under_shorts,0,1552 -1438860,black_sash,0,1551 -699609,frilled_cuffs,0,1550 -16279,air_conditioner,0,1549 -657500,fish_hair_ornament,0,1548 -892083,green_apron,0,1545 -2812,ramune,0,1545 -1314693,grey_scarf,0,1545 -1505167,simplified_chinese_text,0,1544 -473599,fingers,0,1543 -9781,pacifier,0,1543 -585009,sword_over_shoulder,0,1542 -399875,beach_chair,0,1541 -1296346,stationary_restraints,0,1540 -501344,fallen_down,0,1539 -1274924,hand_on_another's_ass,0,1539 -671484,stuffed_shark,0,1539 -632854,naked_hoodie,0,1539 -1557024,mouth_veil,0,1539 -8775,mahjong,0,1538 -1464685,collared_cape,0,1537 -394989,hexagon,0,1537 -476602,kusazuri,0,1537 -590941,santa_boots,0,1536 -378038,pentacle,0,1535 -693272,tan_background,0,1535 -1373024,white-framed_eyewear,0,1534 -1775923,circled_9,0,1534 -467745,japanese_flag,0,1533 -453530,power_suit,0,1532 -1665195,reference_inset,0,1531 -1781330,nijigasaki_academy_school_uniform,0,1531 -607070,caressing_testicles,0,1529 -1247633,narrowed_eyes,0,1529 -1791857,painting_(action),0,1528 -633053,hooded_sweater,0,1527 -1835746,pink_one-piece_swimsuit,0,1526 -440361,lipstick_mark,0,1526 -650139,clothed_female_nude_female,0,1526 -1258091,ribbon-trimmed_collar,0,1526 -524796,age_progression,0,1525 -1558733,tulip_hat,0,1525 -3489,dinosaur,0,1523 -598269,kissing_forehead,0,1523 -1328687,earth_(ornament),0,1523 -420294,yellow_skin,0,1522 -1333530,grey_fur,0,1521 -714422,sports_car,0,1520 -664350,tail_censor,0,1520 -9587,love_letter,0,1520 -724196,thigh_pouch,0,1520 -1265860,pink_blood,0,1519 -482956,caution_tape,0,1518 -415621,blueberry,0,1518 -712801,pussy_piercing,0,1517 -472861,ovum,0,1517 -478228,title,0,1515 -503126,ribbon_in_mouth,0,1514 -374573,centaur,0,1514 -10562,truck,0,1513 -628220,claw_ring,0,1511 -541729,rotational_symmetry,0,1510 -1333955,side-tie_leotard,0,1510 -1298471,blood_from_eyes,0,1509 -1424925,holding_needle,0,1509 -1320208,grey_necktie,0,1509 -1452545,kibito_high_school_uniform,0,1509 -656250,arm_between_breasts,0,1506 -629486,used_tissue,0,1504 -1346802,spiked_shell,0,1503 -1678267,palette_(object),0,1502 -485953,puffy_pants,0,1502 -1446284,looking_at_animal,0,1502 -615984,bendy_straw,0,1502 -1560,mascot,0,1500 -1424211,sakugawa_school_uniform,0,1500 -16695,magnifying_glass,0,1499 -1482386,tiger_boy,0,1499 -1923,truth,0,1498 -528496,holding_shoes,0,1498 -415310,overgrown,0,1498 -712381,thigh_cutout,0,1498 -1298573,sanshoku_dango,0,1496 -416448,yagasuri,0,1495 -1672391,viewer_holding_leash,0,1495 -1450243,weibo_logo,0,1494 -635465,twitching,0,1493 -452581,vibrator_under_panties,0,1491 -414700,buttjob,0,1491 -607798,arm_wrap,0,1491 -1859633,a_certain_high_school_uniform,0,1490 -362945,garden,0,1488 -399302,drying,0,1487 -593466,flame_print,0,1487 -1179281,bear_girl,0,1487 -1323483,fangs_out,0,1486 -1396969,holding_innertube,0,1485 -453719,plant_girl,0,1484 -1390886,brown_kimono,0,1484 -180889,morning,0,1483 -16135,cotton_candy,0,1483 -376147,hanging,0,1482 -460511,hand_puppet,0,1481 -437614,boned_meat,0,1481 -714136,hand_on_another's_stomach,0,1481 -1234797,foot_up,0,1478 -397906,party_hat,0,1478 -709214,alternate_skin_color,0,1478 -520939,wiping_tears,0,1477 -655903,fake_facial_hair,0,1477 -1373018,striped_kimono,0,1477 -10125,halberd,0,1477 -461720,buzz_cut,0,1477 -1637102,doughnut_hair_bun,0,1476 -465754,spanking,0,1476 -544204,bowl_cut,0,1476 -705551,pixiv_id,0,1476 -475794,column,0,1475 -699449,raimon,0,1474 -8918,inflation,0,1473 -516011,playstation_portable,0,1472 -492764,heart_tail,0,1472 -14637,tight_shirt,0,1471 -394771,utility_belt,0,1471 -544443,penis_out,0,1470 -387935,spirit,0,1470 -421056,spiked_club,0,1468 -466411,invisible_penis,0,1467 -1568979,plaid_headwear,0,1467 -617246,leather_belt,0,1467 -1325039,oral_invitation,0,1467 -434522,gym_storeroom,0,1465 -1747766,lapels,0,1464 -625484,glitch,0,1464 -405444,helicopter,0,1463 -533100,sitting_on_object,0,1462 -1609998,after_ejaculation,0,1462 -1411201,kiyosumi_school_uniform,0,1462 -1305007,chest_belt,0,1461 -590857,okamisty,0,1461 -670994,chocolate_on_body,0,1460 -1240596,mole_on_neck,0,1460 -389933,harem_pants,0,1459 -376486,skyline,0,1459 -1495030,red-tinted_eyewear,0,1459 -628115,open_window,0,1458 -14860,chef,0,1458 -480571,mechanization,0,1458 -662800,fake_antlers,0,1458 -9590,jersey,0,1458 -637922,2013,0,1457 -656303,shirt_in_mouth,0,1456 -1441520,horns_through_headwear,0,1456 -398229,people,0,1455 -381954,untying,0,1454 -483333,pavement,0,1454 -392935,tree_stump,0,1453 -410544,handkerchief,0,1452 -1257314,idol_clothes,0,1452 -622601,window_shade,0,1451 -493565,timestamp,0,1451 -418781,pet_play,0,1450 -399061,camcorder,0,1449 -595751,ass_cutout,0,1449 -1605421,halloween_bucket,0,1449 -580394,dirndl,0,1447 -1227348,back-seamed_legwear,0,1445 -642015,expressive_hair,0,1445 -472201,baguette,0,1444 -439406,shiba_inu,0,1444 -1378645,constellation_print,0,1444 -535,molestation,0,1442 -1373313,excessive_pubic_hair,0,1442 -11754,neck,0,1442 -1317604,panty_straps,0,1442 -1476167,holding_handheld_game_console,0,1442 -556841,sitting_on_stairs,0,1441 -504308,redesign,0,1440 -1549885,crane_(machine),0,1439 -974780,stomach_cutout,0,1439 -1267456,holding_leaf,0,1438 -389048,donation_box,0,1437 -523847,omurice,0,1436 -426749,2012,0,1435 -1378370,black_buruma,0,1433 -470025,open_pants,0,1432 -1279772,yellow_wings,0,1432 -473475,orange_thighhighs,0,1431 -547320,excessive_cum,0,1431 -478325,2010,0,1431 -399246,stadium,0,1430 -658254,holding_helmet,0,1430 -1507608,h&k_hk416,0,1430 -1279653,holding_brush,0,1429 -451782,brushing_teeth,0,1427 -461401,treasure_chest,0,1427 -494781,makizushi,0,1427 -1441880,hand_on_eyewear,0,1427 -565996,goat_ears,0,1427 -414107,gamepad,0,1426 -1602480,index_fingers_together,0,1425 -405498,panda_ears,0,1424 -162717,triforce,0,1424 -431374,curtsey,0,1423 -479141,raised_fist,0,1422 -526532,oversized_shirt,0,1422 -1397563,fur-trimmed_skirt,0,1422 -629378,ruffling_hair,0,1422 -1321158,brown_necktie,0,1422 -1442004,eyewear_on_headwear,0,1421 -380988,goblin,0,1417 -1374287,ribbed_bodysuit,0,1417 -673730,palm_leaf,0,1416 -1518970,pectoral_grab,0,1416 -646260,pointless_condom,0,1414 -421385,kanji,0,1414 -381861,\o/,0,1411 -1414389,pink_sailor_collar,0,1409 -8234,radio,0,1408 -545201,micro_panties,0,1407 -587990,bodice,0,1407 -500820,stone_lantern,0,1406 -1422826,sangvis_ferri,0,1406 -384435,onmyouji,0,1405 -1285391,turtleneck_dress,0,1405 -1667891,pom_pom_hair_ornament,0,1404 -467946,coca-cola,0,1403 -12086,globe,0,1403 -1163924,blue_fur,0,1403 -539536,blue_headband,0,1401 -494162,monkey_ears,0,1399 -1478255,dangle_earrings,0,1397 -665766,carrying_under_arm,0,1396 -501337,39,0,1396 -594236,expressive_clothes,0,1394 -662045,lotion_bottle,0,1394 -534991,pillbox_hat,0,1394 -379633,fertilization,0,1393 -460870,spell_card,0,1392 -536429,cupping_hands,0,1392 -400656,red_hood,0,1392 -431361,baseball_mitt,0,1391 -1598686,male_playboy_bunny,0,1389 -1835740,purple_one-piece_swimsuit,0,1388 -3197,takoyaki,0,1387 -508969,cow_boy,0,1387 -380,priest,0,1386 -1413926,orange_sailor_collar,0,1386 -497917,thrusters,0,1386 -525748,dakimakura_(object),0,1384 -420884,countdown,0,1384 -1613542,electrokinesis,0,1384 -569173,spread_pussy_under_clothes,0,1384 -644441,fiery_hair,0,1383 -480430,bear_print,0,1381 -433011,polka_dot_swimsuit,0,1381 -1436311,u.a._school_uniform,0,1380 -617594,alternate_weapon,0,1379 -396034,propeller,0,1378 -497295,happi,0,1378 -586366,prosthetic_leg,0,1378 -592445,venus_symbol,0,1377 -547081,incoming_attack,0,1377 -610123,forehead-to-forehead,0,1376 -632009,blonde_pubic_hair,0,1376 -683919,ajirogasa,0,1376 -1448374,reflective_water,0,1375 -12254,tribal,0,1374 -450649,shin_guards,0,1374 -663848,naked_kimono,0,1374 -593015,finger_to_face,0,1373 -560134,u_u,0,1373 -11353,twincest,0,1370 -593552,plaid_pants,0,1370 -1415445,nanairogaoka_middle_school_uniform,0,1370 -1230150,leg_between_thighs,0,1369 -549142,yes-no_pillow,0,1369 -401422,screen,0,1369 -1324575,tapir_tail,0,1369 -16095,glomp,0,1368 -389416,impaled,0,1368 -488375,rainbow_gradient,0,1368 -578012,talking_on_phone,0,1367 -638293,novel_cover,0,1367 -1670355,furry_with_furry,0,1367 -646459,striped_shorts,0,1366 -1332978,short_jumpsuit,0,1366 -16601,overcoat,0,1365 -5323,kettle,0,1364 -1624910,sidepec,0,1364 -473249,print_bra,0,1363 -1409636,furrification,0,1363 -723185,stone_floor,0,1362 -389374,cat_teaser,0,1361 -395712,christmas_lights,0,1361 -384969,intravenous_drip,0,1360 -424974,no_testicles,0,1358 -481054,grey_bra,0,1358 -1454017,debt,0,1358 -991822,blue_eyeshadow,0,1356 -14704,nike,0,1355 -419304,crosswalk,0,1355 -659938,poker_chip,0,1355 -494704,2011,0,1355 -572582,masturbation_through_clothes,0,1354 -1344701,grey_border,0,1354 -649700,full-package_futanari,0,1353 -8411,sheet_music,0,1353 -683789,wooden_table,0,1351 -1288040,incoming_food,0,1351 -1249322,hauchiwa,0,1349 -1282898,cloth_gag,0,1349 -394997,sweatpants,0,1349 -1515355,black_theme,0,1348 -1455250,chest_strap,0,1348 -449943,stab,0,1347 -389647,clock_tower,0,1346 -1665347,full-body_tattoo,0,1345 -1249520,drawing_bow,0,1344 -8617,potion,0,1344 -680046,carrying_person,0,1344 -563716,italian_flag,0,1342 -374948,school_briefcase,0,1341 -1373027,brown-framed_eyewear,0,1341 -1268086,pink_bag,0,1341 -593696,leather_gloves,0,1340 -903375,flip_phone,0,1339 -635016,broken_chain,0,1339 -548895,frilled_socks,0,1338 -594785,blowing_kiss,0,1338 -405,soccer,0,1337 -468165,mixing_bowl,0,1337 -395851,log,0,1336 -1454154,black_pubic_hair,0,1336 -375527,kimono_skirt,0,1336 -562826,slapping,0,1334 -4577,snorkel,0,1334 -587202,shoelaces,0,1333 -9355,humiliation,0,1333 -2839,lube,0,1333 -1608327,mixed-language_text,0,1333 -626479,orange_slice,0,1333 -585203,veiny_breasts,0,1333 -1761435,onee-loli,0,1332 -500152,breathing_fire,0,1332 -559601,cheering,0,1331 -505317,lily_of_the_valley,0,1331 -1287296,diving_mask_on_head,0,1330 -473312,camellia,0,1329 -3408,origami,0,1329 -410102,yes,0,1328 -621930,mandarin_collar,0,1328 -1276269,ribbed_sleeves,0,1327 -1406765,jaguar_ears,0,1327 -408186,frottage,0,1326 -565797,tropical_drink,0,1326 -705858,partially_underwater_shot,0,1326 -624870,imminent_fellatio,0,1326 -1584543,pokedex_number,0,1326 -600401,wooden_fence,0,1325 -1317361,multicolored_bow,0,1325 -1396461,brown_hairband,0,1323 -1387512,orange_ascot,0,1323 -413721,latex_gloves,0,1322 -457946,stone_wall,0,1321 -1402473,blue_sash,0,1320 -1578780,diagonal-striped_necktie,0,1320 -496388,._.,0,1317 -1354736,green_flower,0,1316 -9396,april_fools,0,1316 -568512,bird_on_shoulder,0,1315 -1719547,sailor_moon_redraw_challenge_(meme),0,1314 -11756,cup_ramen,0,1313 -573617,food-themed_clothes,0,1313 -564677,playstation_controller,0,1313 -61654,tail_grab,0,1313 -486968,red_bandana,0,1313 -639779,mechanical_tail,0,1312 -393602,severed_head,0,1311 -58241,platform_heels,0,1311 -482510,plaid_panties,0,1309 -722706,jojo_pose,0,1309 -1793460,cooperative_paizuri,0,1308 -525108,hands_on_feet,0,1307 -8803,cleaning,0,1307 -843166,yellow_hoodie,0,1307 -609486,single_strap,0,1307 -539990,tail_between_legs,0,1306 -1365638,bandaid_on_hand,0,1306 -473470,wrist_guards,0,1305 -9628,scooter,0,1304 -1314748,pink_collar,0,1304 -1422416,twitter_logo,0,1304 -1780,cow,0,1303 -1409793,grey_kimono,0,1303 -546044,sleeveless_hoodie,0,1302 -698497,gloves_removed,0,1301 -563461,full-length_zipper,0,1301 -1262922,head_on_another's_shoulder,0,1301 -1383769,dot_mouth,0,1300 -395433,traditional_clothes,0,1300 -668383,lace-trimmed_sleeves,0,1300 -1259138,mole_on_ass,0,1300 -1410489,shower_(place),0,1299 -477993,bad_perspective,0,1298 -391175,stove,0,1298 -424623,unitard,0,1298 -825568,shortstack,0,1298 -392839,torn_panties,0,1297 -661926,ankle_strap,0,1296 -1574672,two-sided_cape,0,1295 -16550,stream,0,1294 -12727,phonograph,0,1293 -10399,x,0,1293 -15305,steampunk,0,1293 -488193,slap_mark,0,1293 -543247,eyebrow_piercing,0,1293 -416904,cat_on_head,0,1292 -612104,respirator,0,1292 -963327,yordle,0,1292 -592457,nippleless_clothes,0,1291 -389021,deer,0,1290 -388798,hatsune_miku_(cosplay),0,1289 -1606641,black_male_underwear,0,1288 -595244,hamaya,0,1286 -444567,tail_wrap,0,1286 -524686,hand_net,0,1285 -511641,single_pantsleg,0,1285 -1476395,pokemon_on_shoulder,0,1284 -380213,sponge,0,1283 -1504221,purple_tail,0,1283 -1318470,yellow_pupils,0,1282 -1601080,animal_ear_legwear,0,1282 -431872,balancing,0,1281 -629555,desk_lamp,0,1280 -1475076,blue_horns,0,1278 -686531,undone_necktie,0,1277 -477355,chainmail,0,1277 -695246,hakama_pants,0,1276 -1414657,purple_capelet,0,1275 -531186,gold_armor,0,1274 -473618,clitoris_piercing,0,1274 -433212,bookmark,0,1274 -15307,werewolf,0,1274 -374909,whispering,0,1272 -518423,black_leggings,0,1271 -637282,pants_rolled_up,0,1269 -690442,boots_removed,0,1269 -992674,emoji,0,1269 -695232,mismatched_pubic_hair,0,1268 -492677,bolo_tie,0,1267 -534114,cocktail_dress,0,1267 -1507443,sidelighting,0,1266 -410474,picnic_basket,0,1265 -1554055,fiery_horns,0,1265 -11623,bad_end,0,1263 -1238376,multicolored_shirt,0,1263 -8500,eggplant,0,1263 -1325030,new_school_swimsuit,0,1263 -399269,tablecloth,0,1262 -1400049,on_bench,0,1262 -685325,shiny_legwear,0,1261 -1586950,sobu_high_school_uniform,0,1261 -628271,turning_head,0,1260 -1392009,green_bodysuit,0,1260 -457562,fake_mustache,0,1259 -1565319,power_suit_(metroid),0,1258 -652288,alphes_(style),0,1258 -1713829,mithra_(ff11),0,1257 -382610,skateboard,0,1257 -1542756,turtleneck_leotard,0,1256 -1411229,orange_neckerchief,0,1256 -392251,fireplace,0,1256 -1394090,see-through_skirt,0,1256 -551591,deerstalker,0,1255 -415735,sideways,0,1254 -414232,cum_on_hands,0,1254 -726190,breast_conscious,0,1254 -613598,polka_dot_legwear,0,1254 -418106,dark_penis,0,1253 -4654,flustered,0,1253 -666658,grey_bikini,0,1252 -711344,hand_on_own_shoulder,0,1252 -1237065,sunflower_hair_ornament,0,1251 -1304010,pink_pupils,0,1250 -702474,ribbed_leotard,0,1250 -3334,kigurumi,0,1249 -798294,club_(shape),0,1249 -1429613,tomoeda_elementary_school_uniform,0,1249 -543408,real_world_location,0,1249 -1492501,shinda_sekai_sensen_uniform,0,1249 -4930,doctor,0,1248 -565279,german_flag,0,1248 -616223,no_gloves,0,1248 -1501189,stitched_face,0,1247 -652468,brown_bikini,0,1246 -674500,large_testicles,0,1246 -1762322,greyscale_with_colored_background,0,1246 -507478,aqua_panties,0,1245 -726943,pink_coat,0,1245 -383146,panties_on_head,0,1245 -1274419,spoken_character,0,1244 -519211,ryona,0,1244 -447287,high_kick,0,1243 -9348,wheelchair,0,1243 -1413210,blue_collar,0,1243 -1824446,lycoris_uniform,0,1243 -1349438,animal_bag,0,1242 -491661,hat_tip,0,1242 -496346,impossible_swimsuit,0,1241 -643516,pyrokinesis,0,1241 -632853,fake_wings,0,1240 -603398,lace-trimmed_skirt,0,1239 -1781886,stroking_own_chin,0,1239 -383835,runes,0,1239 -1492898,green_sleeves,0,1239 -443587,sunscreen,0,1238 -427020,stepped_on,0,1238 -575113,kimono_pull,0,1238 -651163,kourindou_tengu_costume,0,1238 -583212,fingering_through_clothes,0,1237 -492714,curry_rice,0,1237 -495137,tulip,0,1236 -330013,pie,0,1236 -488259,skull_mask,0,1236 -11216,soup,0,1235 -11603,paper_airplane,0,1235 -557999,wiping_face,0,1235 -1771225,lord_camelot_(fate),0,1235 -522405,kanabou,0,1234 -684234,perpendicular_paizuri,0,1234 -548540,puckered_anus,0,1234 -588173,sex_machine,0,1233 -420441,teamwork,0,1232 -439204,friends,0,1231 -629461,duffel_coat,0,1231 -176537,bartender,0,1231 -416557,ammunition_belt,0,1230 -179157,tent,0,1230 -510652,flashback,0,1230 -541435,cellphone_picture,0,1227 -465875,age_regression,0,1227 -600052,butterfly_on_hand,0,1227 -518510,dust_cloud,0,1227 -1372592,bath_yukata,0,1227 -1283900,single_fingerless_glove,0,1226 -491621,cheek_bulge,0,1225 -609657,animal_hug,0,1225 -1501551,sakuramon,0,1225 -330372,sausage,0,1224 -603173,molten_rock,0,1223 -3419,shinai,0,1222 -15057,nearly_naked_apron,0,1221 -468159,sparkler,0,1220 -1403859,3d_background,0,1220 -498369,naked_bandage,0,1220 -549321,cum_on_penis,0,1219 -1271959,short_sidetail,0,1218 -434471,angel_and_devil,0,1217 -475249,large_wings,0,1217 -710257,odd_one_out,0,1217 -688960,holding_pillow,0,1216 -1835593,ornate_ring,0,1216 -509739,burnt_clothes,0,1215 -452607,2009,0,1215 -1377225,bruise_on_face,0,1215 -1856853,asticassia_school_uniform,0,1215 -1369179,orange_fur,0,1214 -1461344,papakha,0,1214 -164246,teruterubouzu,0,1212 -408976,bat_ears,0,1212 -9574,sick,0,1211 -11998,open_robe,0,1211 -1410988,pravda_school_uniform,0,1211 -1585295,athletic_leotard,0,1209 -11273,harp,0,1208 -1330230,black_wristband,0,1208 -13916,tempura,0,1206 -577080,hand_on_lap,0,1206 -1388990,two-tone_legwear,0,1205 -995808,penis_size_difference,0,1205 -476199,striped_sweater,0,1205 -2660,lettuce,0,1204 -570296,giving_up_the_ghost,0,1204 -411779,ankh,0,1204 -451184,holographic_interface,0,1203 -547391,winged_footwear,0,1203 -468977,split_screen,0,1203 -660817,opening_door,0,1203 -537130,arm_blade,0,1202 -513421,acrylic_paint_(medium),0,1202 -822829,suspended_congress,0,1201 -374515,hawaiian_shirt,0,1201 -578544,leg_armor,0,1201 -1419859,fur-trimmed_cloak,0,1201 -1281997,asymmetrical_horns,0,1201 -473050,crate,0,1200 -405415,milking_machine,0,1199 -10246,wig,0,1199 -1361800,bow_earrings,0,1198 -518732,anilingus,0,1197 -735235,eye_of_horus,0,1197 -652086,gathers,0,1196 -271102,ladybug,0,1196 -5632,laser,0,1195 -628425,tiered_tray,0,1195 -10428,wading_pool,0,1194 -494464,uvula,0,1194 -700361,watermelon_bar,0,1194 -656386,hands_on_another's_cheeks,0,1194 -1392006,yellow_bodysuit,0,1193 -685266,sandals_removed,0,1192 -472922,inset,0,1191 -1627136,excalibur_morgan_(fate),0,1191 -389703,ema,0,1190 -1342945,behind_another,0,1190 -8260,ferris_wheel,0,1189 -636872,lizard_tail,0,1189 -251194,gym,0,1188 -15187,machine,0,1186 -5497,fountain,0,1186 -515008,cum_on_self,0,1186 -1292445,torn_scarf,0,1186 -421282,pasta,0,1184 -3493,voyeurism,0,1183 -891632,artificial_eye,0,1183 -671651,hair_ears,0,1183 -1349107,candy_hair_ornament,0,1183 -1090326,bird_mask,0,1182 -1355967,on_vehicle,0,1181 -437001,living_clothes,0,1181 -664061,grey_ribbon,0,1179 -426371,through_wall,0,1179 -1534682,aqua_headwear,0,1179 -542830,chest_of_drawers,0,1178 -658981,open_belt,0,1178 -629694,leopard_tail,0,1178 -1853184,kamiyama_high_school_uniform_(hyouka),0,1178 -6259,park,0,1177 -324075,ballerina,0,1177 -373823,ketchup,0,1175 -1251057,ginkgo_leaf,0,1175 -9706,snail,0,1174 -1360843,neckwear_grab,0,1174 -419773,iphone,0,1174 -12011,potato,0,1173 -456884,brown_panties,0,1172 -511422,newhalf,0,1172 -487203,overcast,0,1172 -1354455,year_of_the_rat,0,1172 -1561175,champion_uniform,0,1172 -456589,leather_boots,0,1171 -374749,heartbeat,0,1171 -541262,disgust,0,1170 -1514953,cropped_shoulders,0,1170 -1504868,eyebrow_cut,0,1170 -504744,load_bearing_vest,0,1169 -1230967,rook_(chess),0,1169 -433522,cheek_squash,0,1168 -648546,belt_boots,0,1168 -1457585,hooded_cardigan,0,1168 -582353,lace-trimmed_gloves,0,1167 -383854,native_american,0,1167 -653049,red_eyeliner,0,1166 -252960,tengu,0,1166 -1494963,orange-tinted_eyewear,0,1166 -379968,breast_expansion,0,1166 -419074,hitting,0,1165 -514538,hands_on_ass,0,1164 -708149,blue_armor,0,1164 -674293,gift_bag,0,1164 -1241321,striped_horns,0,1164 -442124,orange_panties,0,1163 -1394304,honeycomb_(pattern),0,1163 -662440,konohagakure_symbol,0,1163 -667190,plate_armor,0,1163 -1023384,white_serafuku,0,1161 -1506275,riding_pokemon,0,1161 -535323,art_brush,0,1160 -1605653,utensil_in_mouth,0,1160 -494932,hickey,0,1159 -626246,crystal_hair,0,1158 -574252,mismatched_sleeves,0,1157 -1384370,two-tone_hairband,0,1156 -660778,knees_apart_feet_together,0,1154 -412641,steering_wheel,0,1154 -383675,bus_stop,0,1153 -1235654,gradient_clothes,0,1153 -393169,torn_jeans,0,1153 -721796,kesa,0,1153 -16114,chalk,0,1152 -554447,dark_aura,0,1152 -1086828,bow_(music),0,1152 -530749,orange_pantyhose,0,1151 -404788,wrestling_ring,0,1151 -381519,vibrator_in_thighhighs,0,1150 -522500,dark_green_hair,0,1150 -408474,flashlight,0,1150 -456305,pink_pantyhose,0,1150 -494923,futa_on_male,0,1150 -703702,hooded_track_jacket,0,1150 -1399177,brown_cloak,0,1150 -1719544,they_had_lots_of_sex_afterwards_(meme),0,1150 -553041,flower_necklace,0,1149 -211997,battle_axe,0,1149 -1379986,alpaca_ears,0,1149 -501457,lalafell,0,1148 -1405177,purple_belt,0,1146 -1469769,grey_sleeves,0,1146 -3533,laundry,0,1145 -1845182,guiding_hand,0,1145 -483079,shards,0,1145 -1452744,collared_coat,0,1145 -1294981,digitigrade,0,1145 -1349162,holding_balloon,0,1144 -68505,bikesuit,0,1143 -1400652,torpedo_launcher,0,1143 -493245,theft,0,1142 -509961,battle_rifle,0,1142 -724856,low_neckline,0,1142 -11370,island,0,1142 -1465616,eyewear_strap,0,1142 -1682706,phoenix_crown,0,1142 -419288,cum_on_feet,0,1141 -469760,oven_mitts,0,1141 -641957,bishop_(chess),0,1141 -1589331,off-shoulder_bikini,0,1141 -478077,ready_to_draw,0,1140 -374636,unicorn,0,1140 -781851,user_interface,0,1139 -1509564,holding_game_controller,0,1139 -494838,soda_bottle,0,1139 -5525,chimney,0,1138 -1932,ipod,0,1138 -616555,uchikake,0,1138 -1479378,silver_trim,0,1138 -596634,gradient_legwear,0,1138 -659417,mechanical_ears,0,1136 -1440480,holding_water_gun,0,1136 -397626,guitar_case,0,1136 -1473511,petals_on_liquid,0,1136 -68500,ruler,0,1134 -687207,round_window,0,1134 -62962,buruma_pull,0,1133 -1810603,back_focus,0,1133 -2370,cactus,0,1132 -611089,implied_yuri,0,1131 -441185,ballet_slippers,0,1131 -424682,horse_penis,0,1131 -599606,fuuin_no_tsue,0,1129 -10326,archery,0,1129 -615286,pinching_sleeves,0,1129 -1306233,triangle_print,0,1129 -615369,blue_sclera,0,1129 -10023,toilet_use,0,1128 -1259665,bow_choker,0,1128 -601192,mechanical_hands,0,1128 -1476659,french_text,0,1127 -543093,motherly,0,1127 -533771,kitchen_knife,0,1127 -165653,shirt_grab,0,1127 -1314077,dice_hair_ornament,0,1126 -529177,ootachi,0,1126 -482051,drum_set,0,1125 -563204,dumbbell,0,1125 -526083,brown_socks,0,1124 -682286,title_parody,0,1124 -632801,blue_tongue,0,1124 -451182,grimoire,0,1123 -393428,vaulting_horse,0,1123 -1853211,single_hair_ring,0,1122 -623242,light_censor,0,1121 -1350077,mask_around_neck,0,1121 -4861,lighter,0,1120 -406035,legs_over_head,0,1120 -5884,champagne,0,1120 -482391,bad_food,0,1119 -432965,red_oni,0,1119 -484724,pouty_lips,0,1119 -688664,adjusting_legwear,0,1117 -1262324,shared_bathing,0,1117 -1339894,fishnet_top,0,1117 -1345473,ribbon-trimmed_dress,0,1117 -12413,coffin,0,1117 -1467809,3others,0,1116 -1334628,anchor_print,0,1116 -10938,reindeer,0,1115 -1820926,sleeveless_turtleneck_leotard,0,1114 -1277344,soap_censor,0,1113 -644571,flock,0,1113 -375275,climbing,0,1113 -522628,upshorts,0,1113 -396796,luggage,0,1113 -685558,cat_day,0,1113 -16355,sundae,0,1112 -607136,split_ponytail,0,1112 -471850,cum_in_clothes,0,1111 -422468,satin,0,1111 -642029,queen_(chess),0,1111 -516468,fake_cover,0,1110 -877384,hooded_robe,0,1110 -1764814,compass_rose_halo,0,1110 -705059,fish_print,0,1109 -1260944,heart-shaped_lock,0,1109 -398497,mouth_pull,0,1108 -473421,pink_socks,0,1108 -388012,legs_folded,0,1108 -472508,drum_(container),0,1108 -653485,torn_leotard,0,1108 -842878,liquid_hair,0,1108 -5563,comparison,0,1107 -1399082,heart_button,0,1107 -473988,cooler,0,1105 -707712,consensual_tentacles,0,1105 -413758,ammunition,0,1105 -1346569,ass_support,0,1105 -618005,pennant,0,1104 -1425103,body_freckles,0,1104 -652996,salaryman,0,1104 -10157,honey,0,1103 -723350,weight_conscious,0,1102 -657530,spoken_object,0,1101 -634911,photo_inset,0,1101 -1835748,striped_one-piece_swimsuit,0,1100 -724478,pink_wings,0,1100 -550954,drawing_sword,0,1100 -1262645,yellow_apron,0,1100 -557859,puppet_strings,0,1100 -668848,multiple_monochrome,0,1099 -421120,shell_bikini,0,1099 -519382,decepticon,0,1099 -463031,anal_hair,0,1098 -684567,looking_at_mirror,0,1098 -499809,butterfly_net,0,1097 -375377,boar,0,1097 -1290693,looking_at_breasts,0,1096 -416752,strap_lift,0,1096 -536575,cheek_press,0,1095 -1467811,6+others,0,1095 -1607725,stuffed_winged_unicorn,0,1095 -652002,no_lineart,0,1094 -1409106,head_on_pillow,0,1094 -399923,washing,0,1094 -497039,test_plugsuit,0,1094 -374998,abuse,0,1093 -1411111,keizoku_military_uniform,0,1093 -566734,tanzaku,0,1092 -458295,rising_sun_flag,0,1092 -572545,wall_of_text,0,1092 -1349919,brown_bowtie,0,1092 -1402459,blue_cloak,0,1092 -1231611,arrow_through_heart,0,1092 -1438305,holding_baseball_bat,0,1091 -547746,patterned,0,1091 -689483,plaid_jacket,0,1091 -414165,cum_on_pussy,0,1090 -575592,glowing_wings,0,1090 -403486,party_popper,0,1090 -661553,grey_belt,0,1089 -462342,after_rape,0,1089 -1247470,chocolate_on_breasts,0,1089 -665720,candy_wrapper,0,1089 -614276,bow_legwear,0,1088 -27649,phallic_symbol,0,1088 -1475838,blue_overalls,0,1088 -496608,master_sword,0,1088 -541640,button_eyes,0,1088 -643517,purple_fire,0,1088 -533033,covering_ass,0,1087 -482734,bicorne,0,1087 -1257558,round_image,0,1087 -575714,c:,0,1087 -388391,screwdriver,0,1086 -419287,swim_cap,0,1085 -436891,combat_boots,0,1085 -15731,clothes,0,1085 -476893,torn_swimsuit,0,1085 -507338,fishnet_gloves,0,1085 -317,bus,0,1084 -598531,dropping,0,1084 -499376,wrinkled_skin,0,1084 -483095,birthmark,0,1084 -1334561,loose_bowtie,0,1083 -1193565,jimiko,0,1082 -1102042,strawberry_hair_ornament,0,1081 -386413,clog_sandals,0,1081 -1411060,saunders_military_uniform,0,1080 -4051,duster,0,1079 -474653,cutting_board,0,1079 -411563,forked_tongue,0,1079 -1361077,mole_above_mouth,0,1078 -608993,uncommon_stimulation,0,1078 -1336227,red_bag,0,1078 -1499492,k/da_(league_of_legends),0,1078 -411498,tearing_clothes,0,1077 -2795,picnic,0,1077 -7702,hairjob,0,1076 -13242,hanetsuki,0,1076 -512928,white_tail,0,1076 -485392,denim_jacket,0,1076 -716813,sword_behind_back,0,1075 -1353739,borrowed_design,0,1075 -663596,aestus_estus,0,1075 -549266,grocery_bag,0,1074 -1258750,mechanical_eye,0,1074 -11435,spreader_bar,0,1073 -457698,comforting,0,1073 -8722,detective,0,1073 -634879,fume,0,1073 -1271601,bunny-shaped_pupils,0,1073 -701116,weighing_scale,0,1072 -417929,tennis_ball,0,1072 -1326209,yellow_sash,0,1072 -665044,holding_own_tail,0,1072 -1367101,holding_scissors,0,1072 -1708252,licking_another's_face,0,1071 -490582,onbashira,0,1071 -1881200,ashford_academy_school_uniform,0,1070 -1327857,red_apron,0,1070 -597826,santa_gloves,0,1070 -1483316,single_horizontal_stripe,0,1069 -479250,tricorne,0,1069 -699876,imminent_anal,0,1069 -473049,doily,0,1068 -1299138,back-print_panties,0,1068 -1750472,galaxy_expedition_team_survey_corps_uniform,0,1068 -555432,head_down,0,1067 -1335609,cross_print,0,1067 -1379921,camouflage_jacket,0,1067 -1391097,grey_neckerchief,0,1067 -1512007,pill_earrings,0,1067 -705129,holding_jacket,0,1065 -547495,morning_glory,0,1065 -1270497,pearl_bracelet,0,1064 -699336,sharp_toenails,0,1064 -1505137,thai_text,0,1064 -1255353,loungewear,0,1064 -502383,elezen,0,1064 -365028,stealth_sex,0,1063 -1579902,nata_(tool),0,1062 -547034,guided_breast_grab,0,1061 -540293,vampire_costume,0,1061 -602058,shoulder_strap,0,1060 -659959,scarf_over_mouth,0,1058 -489995,bulletproof_vest,0,1058 -1274530,angora_rabbit,0,1058 -374852,wakizashi,0,1057 -637714,holding_legs,0,1055 -1445390,aria_company_uniform,0,1055 -4760,campfire,0,1055 -390867,soda,0,1055 -378755,beans,0,1055 -1346040,pink_hakama,0,1055 -1352539,squidbeak_splatoon,0,1055 -204274,upshirt,0,1053 -1440630,pink_capelet,0,1053 -1283735,grey_nails,0,1052 -10639,yarn,0,1052 -378487,telescope,0,1050 -1248044,tooth_necklace,0,1050 -564526,vertical-striped_pantyhose,0,1050 -463235,training_bra,0,1049 -759865,accidental_exposure,0,1049 -49867,summer_festival,0,1049 -479155,necktie_grab,0,1049 -598441,yin_yang_orb,0,1049 -1421701,smokestack_hair_ornament,0,1049 -462605,snack,0,1048 -481999,motorcycle_helmet,0,1048 -612924,"don't_say_""lazy""",0,1048 -527131,canvas_(object),0,1047 -1510188,dildo_riding,0,1046 -490687,prehensile_tail,0,1046 -610305,hand_to_head,0,1046 -12725,headless,0,1046 -1697967,tassel_hair_ornament,0,1046 -1530487,off-shoulder_jacket,0,1046 -437409,hospital_bed,0,1045 -1265402,heart_balloon,0,1045 -646372,asa_no_ha_(pattern),0,1044 -1381675,holding_stylus,0,1044 -432413,lute_(instrument),0,1044 -682869,extra_mouth,0,1044 -507520,goat_girl,0,1044 -1399019,multicolored_fur,0,1044 -375033,bored,0,1043 -1583922,pointy_footwear,0,1043 -1408058,brown_leotard,0,1043 -1601,clapping,0,1041 -466838,walkie-talkie,0,1040 -550352,hand_on_forehead,0,1039 -989449,paw_print_background,0,1039 -1559228,2000s_(style),0,1038 -439288,basketball_uniform,0,1038 -1326377,black_corset,0,1038 -378166,star_of_david,0,1038 -1468127,survey_corps_(emblem),0,1038 -1557673,pendant_choker,0,1037 -591683,under_kotatsu,0,1037 -5254,thermometer,0,1035 -180296,wetsuit,0,1035 -581056,multiple_braids,0,1035 -375906,hot_dog,0,1035 -573761,trash_bag,0,1035 -1825415,shuujin_academy_school_uniform,0,1035 -10673,vore,0,1034 -374312,pilot,0,1034 -430316,messenger_bag,0,1034 -456535,spit_take,0,1033 -1450741,oohashi_high_school_uniform,0,1032 -658794,poke_ball_theme,0,1032 -515827,frog_print,0,1032 -1344962,egg_hair_ornament,0,1032 -510057,sand_sculpture,0,1031 -433234,erect_clitoris,0,1031 -470625,torn_gloves,0,1031 -558698,sig_sauer,0,1030 -712047,belly_grab,0,1030 -572583,radiation_symbol,0,1029 -542338,snake_hair,0,1029 -643402,shorts_under_dress,0,1028 -760104,hand_on_another's_waist,0,1027 -1768621,heart_o-ring,0,1027 -1401971,backless_leotard,0,1027 -1326818,fur-trimmed_kimono,0,1026 -1610148,poster_(medium),0,1025 -465863,cum_on_legs,0,1025 -428847,ugly_man,0,1024 -398109,ice_skates,0,1023 -578777,outstretched_leg,0,1022 -1575195,crocodilian_tail,0,1022 -1514232,breast_focus,0,1021 -1469130,multiple_straps,0,1021 -618406,yellow_pants,0,1020 -9213,diaper,0,1020 -643912,tail_piercing,0,1020 -1372846,pink_pajamas,0,1018 -269258,chat_log,0,1018 -615253,applying_makeup,0,1017 -9017,kaijuu,0,1017 -1556082,print_headwear,0,1017 -1258484,key_necklace,0,1017 -6160,cocktail,0,1016 -398803,cowboy_boots,0,1016 -1243775,colored_shadow,0,1016 -1330451,multicolored_cape,0,1016 -7877,nintendo_ds,0,1015 -1409572,yellow_leotard,0,1015 -600996,socks_removed,0,1014 -501095,berry,0,1014 -649302,hydrokinesis,0,1014 -572593,noh_mask,0,1014 -1090981,tantou,0,1013 -5231,tonfa,0,1013 -627286,covering_one_eye,0,1013 -671725,purple_eyeshadow,0,1013 -1716159,human_scabbard,0,1013 -407500,easel,0,1012 -1465373,triangle_earrings,0,1012 -1293722,bandaged_neck,0,1011 -394852,hair_flip,0,1010 -1295529,frilled_shorts,0,1010 -669112,broken_weapon,0,1010 -542449,furigana,0,1008 -698204,multiple_piercings,0,1008 -465806,voice_actor,0,1007 -482205,crayon,0,1007 -1386020,st._gloriana's_(emblem),0,1007 -714474,thighhighs_over_pantyhose,0,1006 -385968,player_2,0,1006 -604753,panzerkampfwagen_iv,0,1006 -533783,reins,0,1005 -504063,ninja_mask,0,1005 -1373454,instagram_username,0,1005 -4910,corn,0,1004 -389154,screw,0,1004 -425258,naked_overalls,0,1003 -438516,zabuton,0,1003 -6481,tools,0,1003 -713580,torn_jacket,0,1003 -1604448,duel_academy_uniform_(yu-gi-oh!_gx),0,1002 -1250999,red_apple,0,1002 -1327189,glowing_horns,0,1002 -1734694,musou_isshin_(genshin_impact),0,1002 -1242015,vanishing_point,0,1001 -714848,rectangular_mouth,0,1001 -552812,in_cup,0,1000 -508103,tentacles_under_clothes,0,1000 -1302681,orange_pants,0,1000 -406104,psychic,0,1000 -383197,toilet_paper,0,999 -434844,folding_chair,0,999 -222856,good_end,0,998 -317438,war,0,998 -1311812,green_hakama,0,998 -586561,penises_touching,0,997 -1505168,traditional_chinese_text,0,997 -375718,daruma_doll,0,997 -1502082,brown_sweater_vest,0,997 -539907,calico,0,996 -1324009,lactation_through_clothes,0,995 -5248,snowball,0,995 -458547,wood,0,995 -1881201,eden_academy_school_uniform,0,995 -727101,overall_shorts,0,994 -3114,thread,0,994 -452907,chewing,0,993 -542208,blank_stare,0,993 -1411474,bc_freedom_military_uniform,0,993 -682863,hand_on_another's_leg,0,991 -489621,corded_phone,0,991 -1516826,drinking_straw_in_mouth,0,991 -1341736,hanten_(clothes),0,989 -1423058,facing_to_the_side,0,989 -416845,toast_in_mouth,0,988 -642887,wiping_sweat,0,988 -601148,huge_bow,0,988 -1353525,from_outside,0,987 -665502,saiyan_armor,0,987 -1353702,hands_on_own_ass,0,987 -576788,drying_hair,0,986 -8664,hoop,0,986 -483367,pornography,0,986 -385619,facepalm,0,986 -620608,no_tail,0,986 -469426,tiger_stripes,0,985 -689166,king_(chess),0,984 -412915,pet_bowl,0,983 -1770613,purple_gemstone,0,983 -687072,dark_areolae,0,983 -8787,cd,0,982 -527949,troll_face,0,982 -1538197,square_4koma,0,982 -1238314,transparent_wings,0,981 -1582502,scar_on_stomach,0,981 -614593,white_snake,0,981 -633878,pursed_lips,0,980 -663918,holding_fishing_rod,0,980 -1360081,purple_scrunchie,0,980 -1193485,dudou,0,979 -1304063,yellow_bag,0,979 -1411064,anzio_military_uniform,0,979 -383664,pier,0,978 -668886,animal_on_lap,0,977 -666509,>o<,0,977 -2374,shopping,0,977 -1366557,ink_tank_(splatoon),0,977 -400507,sailor_senshi,0,976 -487760,under_tree,0,975 -1636694,sleeve_garter,0,975 -1415933,fur-trimmed_shorts,0,975 -1498023,adapted_turret,0,975 -1430264,coin_hair_ornament,0,975 -460344,ear_biting,0,974 -1492155,eyewear_hang,0,974 -565669,telstar,0,973 -430138,double_vertical_stripe,0,973 -662488,palms_together,0,973 -417908,white_tiger,0,973 -538324,manga_cover,0,972 -560409,streamers,0,972 -467246,dotted_line,0,972 -1397657,cat_ear_legwear,0,972 -1335718,vibrator_cord,0,971 -10497,rocket,0,971 -593433,rice_on_face,0,971 -543900,hat_over_one_eye,0,971 -43071,blind,0,971 -590886,bird_legs,0,970 -1476481,multicolored_horns,0,969 -1509772,industrial_piercing,0,969 -16929,barbed_wire,0,968 -1663181,alice_(alice_in_wonderland)_(cosplay),0,968 -406420,popcorn,0,968 -11381,frogtie,0,967 -11835,ballet,0,967 -589292,slashing,0,966 -1443767,team_rocket_uniform,0,966 -1339824,cropped_hoodie,0,966 -504393,looking_outside,0,965 -1609648,cum_on_pectorals,0,965 -1527638,bubble_tea_challenge,0,965 -1793017,griffin_&_kryuger_military_uniform,0,965 -608070,boxer_briefs,0,964 -1515353,grey_theme,0,963 -1638312,footwear_ribbon,0,963 -551459,kine,0,963 -463437,pencil_case,0,963 -677487,brown_wings,0,962 -1484368,white_bag,0,961 -475500,kissing_hand,0,961 -583243,telekinesis,0,961 -1237688,open_bodysuit,0,959 -74341,floating_island,0,959 -1595384,blank_censor,0,959 -1303272,print_jacket,0,959 -1295636,shark_costume,0,959 -456565,flying_kick,0,958 -1457953,sparse_pubic_hair,0,958 -1440492,green_capelet,0,958 -1347286,yellow_coat,0,958 -445618,wet_dress,0,958 -643256,tentacle_pit,0,958 -1324856,virgin_killer_outfit,0,958 -583869,character_censor,0,957 -393237,bandolier,0,957 -1396368,frilled_ascot,0,956 -4638,drugs,0,956 -669932,wrist_wrap,0,956 -1582504,scar_on_neck,0,956 -568887,single_boot,0,956 -569329,catholic,0,956 -478362,kepi,0,956 -1720557,swimsuit_cover-up,0,956 -593295,red_border,0,955 -494539,texture,0,955 -471805,pastel_colors,0,954 -548034,keystone,0,954 -514359,naked_scarf,0,953 -8173,bokken,0,952 -1478006,holding_vegetable,0,952 -1282931,raimon_soccer_uniform,0,952 -394999,spooning,0,951 -80452,unzipping,0,951 -665405,white_umbrella,0,951 -1629910,star_brooch,0,951 -500760,flower_ornament,0,951 -1373023,purple-framed_eyewear,0,950 -476104,saber_(weapon),0,950 -567635,portrait_(object),0,950 -565478,skirt_basket,0,949 -1070114,single_stripe,0,949 -447171,lowleg_pants,0,949 -1575185,polka_dot_headwear,0,949 -1342773,fleur_de_lapin_uniform,0,949 -1337534,boobplate,0,948 -464554,dandelion,0,948 -649117,multiple_swords,0,946 -1677790,blood_on_knife,0,946 -1845191,glaive_(polearm),0,946 -4640,hanbok,0,946 -1484444,yellow_butterfly,0,945 -497027,pointy_breasts,0,945 -54102,noose,0,943 -16756,aquarium,0,943 -1426213,multiple_riders,0,943 -381183,brick,0,943 -507308,voile,0,943 -13597,triple_penetration,0,942 -1298917,brown_apron,0,942 -1592986,rabbit_boy,0,942 -477804,rainbow_hair,0,942 -16833,sidewalk,0,941 -1681601,mash_kyrielight_(dangerous_beast)_(cosplay),0,941 -1506800,diamond_(gemstone),0,940 -1382643,flaming_weapon,0,940 -1271930,nanodesu_(phrase),0,940 -1406788,otter_ears,0,940 -3614,stain,0,939 -1350036,crystal_earrings,0,939 -1349615,red_fur,0,939 -1448822,brown_hoodie,0,939 -468645,child_drawing,0,938 -255403,cleaver,0,938 -382573,akanbe,0,937 -1243923,backpack_removed,0,937 -405411,team_9,0,937 -753278,analog_clock,0,936 -603414,space_helmet,0,936 -645622,sleeveless_coat,0,934 -460553,no_eyebrows,0,934 -507379,yellow_belt,0,934 -600871,ar-15,0,934 -468827,pushing,0,933 -519098,yarn_ball,0,933 -660791,fur_cape,0,933 -9535,icing,0,932 -12002,foam,0,932 -605380,vertical-striped_bikini,0,932 -538478,haniwa_(statue),0,932 -474917,peace_symbol,0,931 -396687,hourglass,0,931 -540308,baggy_clothes,0,931 -1201168,undressing_another,0,931 -568529,barefoot_sandals,0,931 -1309935,notched_ear,0,931 -12456,dvd_cover,0,930 -1386653,falchion_(fire_emblem),0,930 -8697,porch,0,929 -453294,houndstooth,0,929 -1407009,japari_bun,0,929 -413107,puffy_cheeks,0,928 -1265662,lace-trimmed_hairband,0,928 -393568,amulet,0,927 -1423578,brown_collar,0,926 -417078,bayonet,0,926 -632074,owl_ears,0,925 -548331,bamboo_steamer,0,924 -394157,papers,0,924 -545481,hand_on_leg,0,924 -584716,camouflage_pants,0,924 -1350589,bandaid_on_forehead,0,924 -1478379,dress_flower,0,924 -540095,bilingual,0,923 -4219,henshin,0,923 -1553320,two-tone_headwear,0,923 -487790,studded_bracelet,0,923 -1430735,black_garter_belt,0,922 -1363208,blue_bag,0,922 -712473,mummy_costume,0,921 -1426299,tokisadame_school_uniform,0,921 -1258824,print_shorts,0,921 -1493305,heel_up,0,920 -471824,searchlight,0,919 -1509089,between_pectorals,0,919 -1427498,holding_pizza,0,918 -673693,kouhaku_nawa,0,918 -1058783,aviator_sunglasses,0,918 -1375732,snap-fit_buckle,0,918 -693639,striped_hoodie,0,918 -1393881,green_bag,0,917 -191357,loose_shirt,0,917 -617955,polka_dot_skirt,0,917 -1312469,purple_hakama,0,916 -409179,smoking_gun,0,915 -657589,crotch_cutout,0,915 -1759071,cetacean_tail,0,915 -1301010,orange_sweater,0,914 -408039,crystal_ball,0,914 -415025,convenience_store,0,914 -390528,seaweed,0,914 -564002,guided_penetration,0,913 -1154025,ankle_wrap,0,913 -517244,anglerfish,0,913 -585400,inverted_cross,0,912 -15147,concert,0,912 -1289607,nursing_handjob,0,912 -1607304,linear_hatching,0,911 -377994,playing,0,911 -448692,saddle,0,911 -643356,dress_removed,0,911 -10014,washing_machine,0,910 -239,valkyrie,0,909 -1518587,striped_headwear,0,909 -710509,antique_firearm,0,908 -1365439,jaguar_print,0,908 -652982,visor_(armor),0,907 -9716,strawberry_panties,0,906 -438209,checkered_flag,0,906 -1378073,ears_visible_through_hair,0,905 -617340,strapless_swimsuit,0,905 -537085,objectification,0,905 -182494,audience,0,904 -1450864,head_chain,0,904 -663896,hand_on_another's_neck,0,903 -465140,breastfeeding,0,903 -1403674,pink_camisole,0,903 -670641,clothes_between_breasts,0,902 -664838,green_wings,0,902 -5119,pinwheel,0,902 -521714,cursive,0,902 -1274515,double_w,0,902 -663895,hand_on_own_neck,0,901 -474428,blowing,0,901 -692139,penguin_hood,0,901 -690466,monster_energy,0,901 -15469,coconut,0,900 -1334692,side_drill,0,900 -589458,_,0,900 -515225,sperm_cell,0,900 -498585,cute_&_girly_(idolmaster),0,899 -5302,elvaan,0,899 -8482,waiter,0,899 -374917,prison_clothes,0,899 -657147,fur_boots,0,899 -478497,sleep_mask,0,899 -1424580,oda_uri,0,899 -462190,public_use,0,898 -399273,adidas,0,898 -696698,gold_bikini,0,897 -593473,coke-bottle_glasses,0,896 -4047,pickaxe,0,894 -491766,painterly,0,894 -599986,cutting_hair,0,893 -457725,traffic_cone,0,893 -585968,heads-up_display,0,893 -609352,themed_object,0,892 -550434,side_slit_shorts,0,892 -1508825,pouring_onto_self,0,892 -504098,m1911,0,891 -562229,food_stand,0,891 -1258067,hands_on_own_stomach,0,891 -1494889,lion_boy,0,891 -2944,airship,0,890 -600288,tail_feathers,0,890 -502629,bullet_hole,0,889 -471358,bass_clef,0,889 -720344,round-bottom_flask,0,888 -10079,double_dildo,0,888 -577453,lace_gloves,0,888 -15251,undead,0,888 -427033,hologram,0,887 -1323466,brown_nails,0,887 -395164,napkin,0,886 -433870,broken_heart,0,886 -539119,ultra_ball,0,886 -2430,recorder,0,885 -564894,united_states,0,885 -1490333,yellow_sleeves,0,885 -401062,x3,0,885 -1456713,cross_choker,0,884 -607245,cropped_arms,0,883 -579303,tail_ring,0,883 -4281,hole,0,882 -1303240,polka_dot_scrunchie,0,882 -495021,rider_belt,0,882 -570043,pine_tree,0,881 -661864,pink_belt,0,880 -652399,araki_hirohiko_(style),0,880 -1393886,multicolored_kimono,0,879 -1414615,mole_on_stomach,0,879 -514585,plaid_bra,0,879 -581487,hishaku,0,879 -9656,crazy,0,878 -559663,unamused,0,878 -1451576,checkered_sash,0,878 -1437142,purple_hoodie,0,878 -699281,oversized_food,0,877 -500653,mahjong_tile,0,877 -1433794,holding_saucer,0,876 -585602,jeweled_branch_of_hourai,0,876 -1326378,black_umbrella,0,876 -406042,exhausted,0,876 -430683,sling,0,876 -15227,screentones,0,875 -1480168,white_sports_bra,0,875 -668837,ghost_costume,0,875 -395011,tube_dress,0,874 -463435,parka,0,874 -416210,dirty_feet,0,874 -497015,wringing_clothes,0,873 -1582498,scar_on_leg,0,873 -378541,gills,0,872 -468583,melon_bread,0,872 -430376,bear_costume,0,872 -381280,lighthouse,0,872 -716956,puff_and_slash_sleeves,0,872 -607934,tentacles_on_male,0,871 -1593160,unusually_open_eyes,0,871 -1328259,multiple_moles,0,870 -401136,kimono_lift,0,869 -1292517,glowing_butterfly,0,869 -388245,cum_in_nose,0,868 -473178,\n/,0,868 -405504,apron_lift,0,867 -672588,cardigan_vest,0,867 -663869,looking_through_legs,0,867 -681979,double_\m/,0,867 -460270,sparrow,0,865 -138127,art_nouveau,0,865 -1404921,pink_ascot,0,864 -10268,net,0,864 -564789,romper,0,864 -545590,easter_egg,0,864 -1881202,st._chronica_academy_school_uniform,0,864 -1826631,tracen_training_uniform,0,864 -607513,arms_around_waist,0,863 -645655,wall_clock,0,863 -376621,wa_lolita,0,863 -1336108,crime_prevention_buzzer,0,863 -635240,star_pasties,0,862 -418811,acoustic_guitar,0,861 -1786594,tokyo-3_middle_school_uniform,0,860 -637908,adapted_uniform,0,860 -389325,grave,0,859 -388208,orange_hoodie,0,859 -399680,arachne,0,859 -549347,green_pantyhose,0,859 -3912,p90,0,858 -1874891,object_through_head,0,858 -423080,hat_with_ears,0,857 -546085,brown_bra,0,856 -1300914,leash_pull,0,856 -1470700,black_undershirt,0,855 -1374880,bralines,0,855 -461078,squinting,0,854 -697415,storefront,0,854 -389926,panty_lift,0,853 -1292892,cracked_wall,0,853 -16792,golf_club,0,852 -799867,futasub,0,852 -1504031,white_butterfly,0,852 -428710,buster_sword,0,852 -1371471,anchor_necklace,0,852 -513996,lyrics,0,851 -531189,foliage,0,851 -405020,wheelbarrow,0,851 -1235655,gradient_dress,0,850 -1822470,wataboushi,0,849 -390026,chalice,0,849 -594313,shoulder_holster,0,849 -1384374,grey_hairband,0,849 -529750,glowing_hair,0,849 -1360271,grey_cape,0,849 -472653,stained_panties,0,849 -10056,grill,0,848 -413290,hand_under_shirt,0,848 -1411208,purple_neckerchief,0,848 -1270535,curtained_hair,0,848 -1613886,animal_ear_headwear,0,848 -164255,nudist,0,846 -1243627,penis_peek,0,846 -438748,breast_poke,0,845 -533029,dragging,0,845 -1715534,baton_(conducting),0,845 -468850,tall,0,844 -582333,ojou-sama_pose,0,844 -664894,aqua_gloves,0,844 -457370,masochism,0,844 -570496,struggling,0,844 -675461,rolling_suitcase,0,844 -561654,animal_skull,0,844 -16918,tutu,0,843 -1448672,tsab_ground_military_uniform,0,843 -499780,holding_breath,0,843 -477179,tire,0,842 -1317436,satin_panties,0,842 -1398131,hooded_bodysuit,0,842 -690260,vibrator_on_nipple,0,841 -482315,breast_padding,0,841 -1298677,armpit_cutout,0,841 -1372787,multi-strapped_panties,0,841 -469235,amplifier,0,840 -400231,kotoyoro,0,840 -1208724,string_bra,0,840 -1337502,heart_lock_(kantai_collection),0,840 -393062,skirt_flip,0,839 -626440,season_connection,0,839 -688469,spiked_choker,0,839 -381750,thermos,0,838 -8409,spaghetti,0,838 -1344738,snowflake_background,0,838 -600460,group_picture,0,837 -496226,multiple_legs,0,837 -8698,windowsill,0,837 -1229971,shoulder_cannon,0,837 -1411084,pravda_military_uniform,0,837 -1411077,chi-hatan_military_uniform,0,837 -439167,urethral_insertion,0,836 -46728,excited,0,836 -386926,polar_bear,0,836 -742744,bean_bag_chair,0,835 -555321,hand_gesture,0,835 -1468128,training_corps_(emblem),0,835 -1575514,yuigaoka_school_uniform,0,835 -4517,gymnastics,0,834 -594978,naked_tabard,0,834 -702958,holding_ribbon,0,834 -469710,energy_drink,0,834 -419383,wallet,0,833 -1835765,evangelion_(mecha),0,833 -609535,witch_(madoka_magica),0,833 -1642271,yurigaoka_girls_academy_school_uniform,0,833 -1396676,dressing_another,0,832 -557780,alternate_wings,0,831 -1376753,crescent_print,0,831 -680577,color_trace,0,831 -1316299,multicolored_scarf,0,831 -720999,aqua_jacket,0,831 -383546,stole,0,831 -1242619,fake_nails,0,830 -509088,penis_in_panties,0,829 -646377,kikumon,0,829 -1375970,hair_flowing_over,0,829 -664951,coat_removed,0,829 -571951,flaming_sword,0,828 -1355541,lattice,0,828 -488521,canopy_bed,0,828 -1328348,group_name,0,828 -614256,bunny_hat,0,827 -411205,pigeon,0,827 -1441859,aqua_footwear,0,826 -505302,bar_stool,0,826 -679205,catchphrase,0,826 -1545323,multicolored_headwear,0,826 -1452498,grey_capelet,0,826 -1518971,pectoral_press,0,826 -550074,in_water,0,825 -1345310,collared_vest,0,825 -1407027,jaguar_tail,0,825 -397136,trigram,0,824 -228097,astronaut,0,824 -1377986,riyo_(lyomsnpmp)_(style),0,824 -1475691,hanasakigawa_school_uniform,0,824 -653176,circle_skirt,0,823 -1392086,grey_bodysuit,0,823 -1247424,brick_floor,0,823 -1529528,yellow_raincoat,0,823 -403070,grenade_launcher,0,823 -409820,cat_costume,0,822 -620885,latex_legwear,0,822 -440354,yo-yo,0,822 -440482,leg_wrap,0,822 -556519,electrical_outlet,0,822 -562990,bath_stool,0,821 -1358423,multicolored_footwear,0,821 -400267,dumpling,0,821 -1281944,anchor_choker,0,821 -511246,blank_speech_bubble,0,820 -1397788,brown_choker,0,820 -472542,beam_saber,0,820 -487949,arm_above_head,0,819 -455483,shorts_around_one_leg,0,819 -394402,wheat,0,818 -15450,onion,0,818 -586471,rounded_corners,0,818 -1605157,colored_nipples,0,818 -476906,spray_can,0,817 -1501670,double_fox_shadow_puppet,0,817 -533099,sitting_on_rock,0,816 -507276,paper_crane,0,816 -628065,eyepatch_removed,0,816 -1324692,pink_fur,0,816 -1232450,sparkle_print,0,816 -1417853,heart_collar,0,816 -1734,karaoke,0,815 -5364,ganguro,0,815 -1409664,floating_scarf,0,815 -1406324,no_blindfold,0,815 -544688,bunching_hair,0,814 -11414,nipple_clamps,0,814 -678345,maneki-neko,0,814 -574527,surcoat,0,814 -473342,imperial_japanese_army,0,814 -1549436,cutout_above_navel,0,814 -1281282,taimanin_suit,0,814 -1327704,nejiri_hachimaki,0,813 -1371202,yellow_cape,0,812 -622973,chicken_(food),0,812 -261984,snow_bunny,0,812 -1092127,condom_belt,0,812 -1281553,german_flag_bikini,0,811 -121795,inline_skates,0,810 -488001,tape_measure,0,810 -10727,bib,0,809 -504316,hands_on_hilt,0,809 -330159,green_tea,0,809 -1318429,pendant_watch,0,809 -15619,sand_castle,0,809 -839892,no_mole,0,809 -14739,hammock,0,808 -393203,handstand,0,808 -1287846,ammunition_pouch,0,808 -1453635,cartoon_bone,0,808 -1161750,boy_sandwich,0,807 -1251054,okobo,0,807 -484561,arm_cuffs,0,806 -488430,seat,0,805 -535613,upturned_eyes,0,805 -1827382,st._theresa's_girls_academy_school_uniform,0,805 -721903,fur_cloak,0,805 -642323,teacher_and_student,0,804 -704182,character_signature,0,804 -713277,no_eyepatch,0,804 -682665,super_soaker,0,804 -1474354,holding_ladle,0,803 -1483518,orange_sleeves,0,803 -413459,inflatable_raft,0,803 -462239,chinese_new_year,0,803 -483045,kinchaku,0,802 -519941,finger_biting,0,802 -399166,cursor,0,802 -684797,hands_on_another's_hips,0,802 -1617036,pokemon_move,0,802 -2477,lightsaber,0,801 -498775,orange_skin,0,801 -9166,windmill,0,801 -1390981,ribbon_braid,0,801 -1296117,sideways_hat,0,801 -1113314,thick_lips,0,800 -553675,ehoumaki,0,800 -1152233,star_tattoo,0,800 -1467949,single_ear_cover,0,800 -1835737,green_one-piece_swimsuit,0,799 -531424,multiple_heads,0,799 -695119,blood_in_hair,0,798 -593299,pink_border,0,798 -1319348,holding_bucket,0,797 -1257023,dog_penis,0,797 -509238,dialogue_box,0,797 -603240,vertical-striped_panties,0,797 -622330,oversized_limbs,0,797 -548294,nib_pen_(object),0,796 -596588,jacket_pull,0,796 -558489,white_armor,0,796 -394916,2008,0,796 -613430,bagged_fish,0,795 -662803,honeycomb_background,0,795 -433742,frozen,0,795 -475494,dissolving,0,795 -1505371,star_guardian_(league_of_legends),0,795 -714122,ball_and_chain_restraint,0,794 -1322883,flag_background,0,794 -659790,eldritch_abomination,0,794 -1648109,hololive_idol_uniform,0,794 -659364,licking_armpit,0,793 -1272545,orange_leotard,0,793 -1320993,print_necktie,0,793 -7947,beltskirt,0,792 -475951,ornament,0,792 -591348,breast_cutout,0,792 -614915,pink_cape,0,792 -1713082,neck_tassel,0,792 -549921,swinging,0,791 -822043,mundane_utility,0,791 -705927,frilled_leotard,0,790 -1569456,pizza_slice,0,790 -1299125,elbows_on_table,0,789 -7700,weightlifting,0,789 -410619,toe_ring,0,788 -701996,nipple_bar,0,788 -1728479,kousaka_kirino's_school_uniform,0,788 -1393397,orange_goggles,0,788 -6352,elephant,0,787 -1293918,bicycle_basket,0,787 -3499,kappa,0,787 -5946,boxcutter,0,787 -592592,personality_switch,0,787 -547300,misunderstanding,0,787 -1544416,clothes_between_thighs,0,787 -721466,pointy_nose,0,787 -1648167,x-shaped_pupils,0,787 -452532,two-handed_handjob,0,786 -392867,melon,0,786 -702627,ass-to-ass,0,786 -548516,pinstripe_shirt,0,786 -741418,card_parody,0,786 -504065,cephalopod_eyes,0,785 -1391806,two-tone_bow,0,785 -1390068,joy-con,0,785 -5466,mummy,0,784 -398573,cartridge,0,783 -619281,blue_border,0,783 -383898,bullying,0,783 -472408,sneezing,0,783 -4899,stats,0,783 -1365868,holding_envelope,0,783 -496190,kabuto_(helmet),0,783 -1396770,animal_on_arm,0,782 -5547,pet,0,782 -1522400,tented_shirt,0,782 -582033,clothes_tug,0,782 -411403,tongs,0,782 -1488405,mole_on_cheek,0,781 -444001,legband,0,781 -379013,note,0,781 -1409157,flower_tattoo,0,781 -553040,flower_bracelet,0,780 -1577478,super_saiyan_1,0,780 -1398925,speaking_tube_headset,0,780 -468311,tail_hug,0,779 -1495160,mismatched_eyebrows,0,779 -1860041,multiple_drawing_challenge,0,779 -1481466,purple_horns,0,779 -1426179,luna_nova_school_uniform,0,779 -573016,hands_on_shoulders,0,778 -1432417,brown_tail,0,778 -419647,stakes_of_purgatory,0,778 -492703,long_neck,0,777 -723519,chin_strap,0,777 -393452,leaf_umbrella,0,777 -715181,post-apocalypse,0,777 -550385,linked_piercing,0,776 -15836,butter,0,776 -379180,zora,0,776 -1376893,pink_eyeshadow,0,776 -499526,green_socks,0,775 -2730,massage,0,775 -1464853,blue-tinted_eyewear,0,775 -658977,wooden_chair,0,774 -397923,group_hug,0,774 -657414,panties_under_buruma,0,774 -382030,beetle,0,774 -529455,tight_dress,0,774 -1347574,mole_on_body,0,774 -284608,tea_set,0,773 -453888,hand_mirror,0,773 -416380,gokkun,0,773 -399607,hair_dryer,0,773 -643401,dragon_boy,0,773 -463449,sugar_cube,0,772 -501887,levitation,0,772 -467444,kerchief,0,772 -1427360,gold_choker,0,772 -646311,polka_dot_shirt,0,771 -446404,cheek_pull,0,771 -1283338,american_flag_print,0,771 -1411059,saunders_school_uniform,0,771 -501282,lipgloss,0,770 -1352247,variable_fighter,0,770 -375406,clown,0,770 -507447,family_crest,0,770 -416825,omikuji,0,769 -524801,hakurei_shrine,0,769 -641133,aqua_bra,0,769 -214260,keep_out,0,769 -1378265,z-ring,0,769 -435855,messy_room,0,768 -1339258,logo_parody,0,768 -1252372,sitting_on_bench,0,768 -1441858,lap_pillow_invitation,0,768 -474442,plume,0,768 -1136370,sextuplets,0,768 -1303976,print_sarong,0,767 -534139,popped_button,0,767 -1433477,floating_cape,0,767 -1245350,implied_fellatio,0,767 -168769,band_uniform,0,766 -712902,pumpkin_hair_ornament,0,765 -7839,beam,0,765 -375496,kagami_mochi,0,765 -716637,argyle_sweater,0,765 -380200,2007,0,765 -1571287,berry_(pokemon),0,765 -7461,lizard,0,764 -587390,hand_on_headphones,0,764 -1680143,pegasus_knight_uniform_(fire_emblem),0,764 -447159,fishing_line,0,764 -605773,head_on_hand,0,763 -317012,zeon,0,763 -646375,sayagata,0,763 -635045,solid_eyes,0,762 -1340897,blue_feathers,0,762 -1373241,meka_(overwatch),0,762 -1594642,holomyth,0,762 -6527,cart,0,761 -449699,grand_piano,0,761 -460701,pagoda,0,761 -15902,jetpack,0,761 -1008938,clothes_theft,0,760 -1315295,holding_another's_hair,0,760 -683907,jingasa,0,760 -2145,juice,0,759 -691041,yellow_sky,0,759 -499998,sitting_backwards,0,758 -1336500,pointing_at_another,0,758 -606330,condom_box,0,758 -1552258,fish_boy,0,758 -960973,cardigan_around_waist,0,758 -623986,green_sclera,0,758 -5099,pegasus,0,757 -746897,pussy_juice_drip_through_clothes,0,757 -1289376,bishamonten's_spear,0,757 -1539213,flower_over_eye,0,756 -511500,head_on_chest,0,756 -1421046,holding_cane,0,756 -509654,forced_orgasm,0,755 -1548224,butterfly_brooch,0,755 -382343,adjusting_panties,0,754 -457036,steak,0,754 -1412249,green_scrunchie,0,754 -5817,sauna,0,753 -443238,wardrobe_error,0,752 -3438,japan,0,751 -5402,crowbar,0,751 -1510994,sweaty_clothes,0,751 -1398336,year_of_the_dog,0,751 -527344,body_armor,0,751 -701994,pov_across_table,0,750 -14011,height_chart,0,749 -460435,ivy,0,749 -421692,game_boy,0,749 -426382,bear_tail,0,749 -778226,greek_clothes,0,749 -1039471,prostration,0,748 -1255173,shoujo_kitou-chuu,0,748 -1386173,pixiv_username,0,748 -1366556,splattershot_(splatoon),0,748 -9745,hungry,0,747 -385480,buruma_aside,0,747 -399404,skull_necklace,0,747 -467744,mount_fuji,0,747 -1611404,food-themed_earrings,0,747 -452085,hospital_gown,0,746 -658126,cream_on_face,0,746 -396015,gunblade,0,746 -646003,curled_fingers,0,746 -484040,winding_key,0,745 -9347,puppy,0,745 -1059619,kissing_penis,0,745 -375353,soviet,0,745 -475528,ankle_grab,0,744 -8921,white_day,0,744 -5102,wizard,0,744 -397561,radish,0,744 -471296,infinity,0,744 -693309,sleeve_grab,0,743 -531095,book_hug,0,742 -1375741,extra_faces,0,742 -3742,ferret,0,741 -436459,acorn,0,741 -583137,ear_protection,0,741 -1239921,pink_sky,0,740 -1353065,falling_feathers,0,740 -1496708,hitodama_print,0,740 -1257082,clock_eyes,0,740 -729551,kiwi_(fruit),0,739 -1193090,military_helmet,0,739 -1343008,orange_vest,0,738 -395496,cloth,0,738 -384700,dock,0,738 -541741,strapless_bottom,0,738 -563180,nintendo_3ds,0,738 -386212,diving,0,737 -630151,bikini_shorts,0,737 -1429582,dress_swimsuit,0,737 -9476,minotaur,0,736 -381360,wrong_feet,0,736 -1469257,single_epaulette,0,736 -563949,french_flag,0,735 -1424344,sling_bikini_top,0,735 -458787,testicle_grab,0,734 -450248,sickle,0,733 -429978,between_toes,0,733 -120759,mat,0,733 -474597,mitre,0,733 -1657712,veiny_arms,0,733 -576346,adjusting_necktie,0,732 -1305509,box_of_chocolates,0,732 -596273,behind_back,0,732 -1489407,martial_arts_belt,0,732 -1595590,pectoral_focus,0,732 -393640,aurora,0,731 -554570,jockstrap,0,731 -478042,track_uniform,0,731 -11347,army,0,730 -404973,galaxy,0,730 -1520977,print_mug,0,730 -487783,leather_pants,0,729 -375625,model_kit,0,729 -1344687,holding_letter,0,729 -1344492,on_motorcycle,0,729 -1001710,shell_necklace,0,729 -1303975,blue_sarong,0,728 -489578,whiskey,0,728 -467700,salad,0,728 -548098,mast,0,728 -485599,silver_dress,0,728 -1377852,hair_on_horn,0,728 -642272,above_clouds,0,727 -1427943,yellow_tank_top,0,727 -12070,battleship,0,727 -611065,lace_choker,0,727 -445428,guard_rail,0,726 -564925,polka_dot_ribbon,0,726 -1286244,rei_no_pool,0,726 -490067,holding_head,0,726 -630542,butterfly_sitting,0,725 -1379634,mmm_threesome,0,725 -1392344,white_sarong,0,724 -524545,box_art,0,724 -630404,pumpkin_hat,0,724 -287045,hanami,0,724 -1262145,hands_on_ground,0,724 -1562798,rhodes_island_logo,0,724 -495149,throwing_knife,0,723 -1404665,aqua_neckerchief,0,723 -411775,clothesline,0,723 -483853,bulletin_board,0,722 -665892,cross-laced_legwear,0,722 -1411110,keizoku_school_uniform,0,722 -441997,track_and_field,0,721 -877388,long_tail,0,721 -621690,no_mask,0,721 -678477,shared_speech_bubble,0,720 -434547,oonusa,0,720 -1601728,gladiator_sandals,0,720 -1325214,seal_(animal),0,719 -1660195,long_earlobes,0,719 -474347,affectionate,0,718 -1495060,pants_tucked_in,0,718 -1386603,orange_cape,0,717 -401696,hook,0,717 -552418,detached_hair,0,717 -1282902,solid_circle_pupils,0,716 -571097,crane_(animal),0,716 -486022,vacuum_cleaner,0,716 -409759,cleave_gag,0,716 -1657724,just_the_tip,0,716 -1597931,pancake_stack,0,716 -1419059,blue_tank_top,0,716 -82088,sewing,0,715 -449709,uneven_twintails,0,715 -1070070,fishnet_bodysuit,0,715 -1481865,brown_corset,0,715 -420279,sock_pull,0,714 -648669,lowleg_skirt,0,714 -12500,pendulum,0,714 -1441951,gold_footwear,0,714 -490118,pool_of_blood,0,713 -468109,tengu_mask,0,713 -523961,hair_between_breasts,0,713 -562139,glove_biting,0,713 -1419480,maid_day,0,713 -1260902,folded_hair,0,712 -1494953,pink-tinted_eyewear,0,712 -4410,dragonfly,0,711 -487992,inkwell,0,711 -1326625,implied_yaoi,0,711 -1273445,miracle_mallet,0,711 -547020,fidgeting,0,710 -707514,stone_stairs,0,710 -1423439,livestream,0,710 -1417085,double_horizontal_stripe,0,709 -109159,nyan,0,708 -119610,triplets,0,708 -561371,qr_code,0,708 -1329132,cherry_hair_ornament,0,708 -500191,rabbit_costume,0,707 -1247324,implied_fingering,0,707 -1466798,holding_money,0,706 -1324059,holding_jewelry,0,706 -663412,holding_own_foot,0,706 -1338731,holding_skull,0,706 -533238,milky_way,0,706 -1450600,very_wide_shot,0,706 -607013,stitched_mouth,0,706 -809507,eye_black,0,706 -675626,in_palm,0,705 -537098,watching_television,0,705 -376977,parrot,0,705 -479840,severed_limb,0,705 -1416325,multicolored_hairband,0,705 -576440,naked_cloak,0,704 -638337,multicolored_stripes,0,704 -572327,splatter,0,704 -467754,foot_hold,0,703 -876691,cum_in_container,0,703 -54531,blood_bag,0,703 -532082,knight_(chess),0,703 -1398335,year_of_the_pig,0,703 -512129,symbolism,0,702 -1386018,ooarai_(emblem),0,702 -1627128,caliburn_(fate),0,700 -1076064,covering_one_breast,0,700 -384589,lyre,0,700 -1247797,bike_shorts_under_shorts,0,700 -1532157,green_eyeshadow,0,700 -1515529,shindan_maker,0,700 -465272,kyuudou,0,699 -378206,joystick,0,699 -615409,bag_of_chips,0,699 -1426900,white_bird,0,699 -1375854,dream_soul,0,699 -393506,shrimp_tempura,0,698 -4374,meta,0,698 -1505135,italian_text,0,698 -971148,underbutt,0,698 -605322,checkered_shirt,0,698 -1353857,blood_on_arm,0,698 -1258093,ribbon-trimmed_headwear,0,697 -694148,candlelight,0,697 -1531641,light_blue_background,0,697 -580277,green_tail,0,696 -470859,purple_socks,0,696 -632045,no_jacket,0,696 -476447,kurokote,0,695 -613159,homu,0,695 -1470859,black_garter_straps,0,694 -502186,broken_window,0,694 -478554,contrast,0,694 -1258486,musical_note_print,0,694 -381761,cola,0,694 -1574670,two-sided_dress,0,694 -649072,grimoire_of_alice,0,693 -394720,afterglow,0,693 -407128,crumbs,0,693 -477060,hair_lift,0,693 -1386162,facebook_username,0,693 -411331,long_toenails,0,692 -525804,self_hug,0,692 -552753,perfume_bottle,0,692 -1401831,purple_ascot,0,691 -643172,shotgun_shell,0,691 -502652,ink_(medium),0,690 -624228,sky_print,0,690 -535487,hand_over_eye,0,690 -1631697,alternate_pectoral_size,0,689 -1263595,soap_bottle,0,688 -505038,duel_disk,0,688 -434881,baby_bottle,0,688 -1238293,grey_wings,0,687 -1749113,arthropod_limbs,0,687 -1470190,frilled_sailor_collar,0,687 -427948,tying,0,686 -397500,electric_plug,0,686 -389771,syrup,0,686 -391741,fingersmile,0,686 -2685,kickboard,0,685 -1252120,roundel,0,685 -1578028,heart_on_chest,0,685 -1370485,crescent_rose,0,685 -10240,hardhat,0,684 -433080,koi,0,684 -664262,bikini_bottom_removed,0,684 -662225,floating_book,0,683 -3513,goat,0,683 -1417605,blue_shawl,0,683 -4854,cast,0,682 -437278,masu,0,682 -168887,age_comparison,0,682 -572094,h&k_ump,0,681 -14528,bathrobe,0,680 -518347,yamakasa,0,680 -1494956,purple-tinted_eyewear,0,680 -1318748,floating_weapon,0,680 -492292,behind-the-head_headphones,0,679 -513429,watercolor_pencil_(medium),0,679 -725442,blue_bandana,0,679 -1345296,skeleton_print,0,679 -1332216,propeller_hair_ornament,0,679 -1370713,pink_umbrella,0,678 -417910,duckling,0,678 -433244,first_aid_kit,0,677 -446984,gun_to_head,0,677 -504867,digital_dissolve,0,677 -1253889,joestar_birthmark,0,677 -719987,ghost_pose,0,677 -1289258,bokura_wa_ima_no_naka_de,0,676 -389367,pineapple,0,675 -1349482,igote,0,675 -618480,sitting_on_shoulder,0,675 -1230297,single_wrist_cuff,0,675 -1513506,patchwork_clothes,0,675 -1353604,walking_on_liquid,0,674 -529805,shamoji,0,674 -547795,breaking,0,674 -410219,scylla,0,674 -720294,weasel_ears,0,674 -974485,hoodie_lift,0,674 -516577,groom,0,673 -1867868,motosu_school_uniform,0,673 -374958,cyrillic,0,672 -622480,food_art,0,671 -451855,studded_collar,0,671 -1556083,camouflage_headwear,0,671 -510646,blue_pupils,0,670 -489491,platform_boots,0,670 -14645,marshmallow,0,670 -403,chikan,0,669 -1344657,cat_bag,0,669 -473987,tooth,0,669 -1253133,spade_hair_ornament,0,669 -403466,medallion,0,668 -1240072,hair_color_connection,0,668 -381685,pig_ears,0,668 -565798,crazy_straw,0,668 -1574664,two-sided_skirt,0,668 -616835,calligraphy_brush_(medium),0,668 -1455458,brown_flower,0,668 -191640,ak-47,0,667 -378288,blob,0,667 -542882,against_railing,0,667 -1268234,alternate_hair_ornament,0,667 -1274150,print_sleeves,0,667 -449449,beretta_92,0,666 -556112,red_tail,0,666 -571640,jacket_over_swimsuit,0,666 -381749,tamagoyaki,0,666 -657138,cat_mask,0,666 -646318,necktie_removed,0,666 -413830,wakamezake,0,665 -537572,teeth_hold,0,665 -496893,checkered_dress,0,665 -1429073,holding_beachball,0,664 -1433301,two-tone_leotard,0,664 -1331283,bridal_legwear,0,664 -1494960,yellow-tinted_eyewear,0,664 -510173,easter,0,664 -690728,missile_pod,0,663 -396000,bowler_hat,0,663 -561682,clownfish,0,663 -412041,biwa_lute,0,663 -4947,groceries,0,662 -1243501,gibson_les_paul,0,662 -1322934,gesugao,0,662 -1578455,cumulonimbus_cloud,0,662 -589932,negative_space,0,661 -423622,pelt,0,661 -1609367,tail_around_leg,0,661 -1391188,hand_tattoo,0,661 -1684976,craft_essence_(fate),0,661 -590202,pinstripe_suit,0,660 -1453787,golden_arms,0,660 -1799877,tracen_swimsuit,0,660 -1401249,grey_leotard,0,659 -727812,loaded_interior,0,659 -3927,gao,0,659 -1252918,sitting_on_table,0,659 -1317359,floating_clothes,0,659 -673705,hand_rest,0,659 -1440820,usekh_collar,0,659 -1328313,shell_hair_ornament,0,658 -1325319,wrist_bow,0,658 -1402775,white_mask,0,658 -1391449,cropped_sweater,0,658 -551086,protecting,0,657 -1333942,exposed_pocket,0,657 -609075,red_mask,0,656 -1231690,slim_legs,0,655 -1425321,hogwarts_school_uniform,0,655 -457678,animal_slippers,0,655 -1249968,little_red_riding_hood_(grimm)_(cosplay),0,655 -1435997,eye_trail,0,655 -528408,soft_serve,0,654 -613600,checkered_legwear,0,654 -1435395,grey_tank_top,0,653 -1583008,side-tie_peek,0,653 -1861772,crisis_management_form_(machimazo),0,653 -647108,flying_teardrops,0,652 -666041,multiple_torii,0,652 -546978,two-finger_salute,0,652 -529223,cellphone_charm,0,652 -1297290,split_theme,0,652 -1460120,fur-trimmed_footwear,0,652 -1327283,cracked_floor,0,651 -563545,braiding_hair,0,650 -791840,blue_umbrella,0,650 -1328442,green_belt,0,649 -658222,stuffed_penguin,0,649 -1497365,pov_doorway,0,649 -728040,flat_chest_grab,0,648 -524807,unfastened,0,647 -172018,nail_bat,0,647 -11665,seatbelt,0,646 -723518,arms_between_legs,0,645 -522469,centauroid,0,642 -562074,plaid_ribbon,0,641 -679788,wet_towel,0,641 -1782264,sticker_on_face,0,641 -1714871,midriff_sarashi,0,640 -1684568,paint_splatter_on_face,0,640 -464635,cattail,0,640 -707905,object_on_breast,0,640 -1329330,bunny_day,0,640 -1881204,starlight_academy_school_uniform,0,639 -655737,pants_under_skirt,0,636 -1442516,paw_print_pattern,0,636 -518157,peony_(flower),0,635 -1427573,brown_sleeves,0,635 -551767,pastry_bag,0,633 -1012946,breasts_on_table,0,633 -449872,walther,0,632 -1535711,cross_tie,0,632 -543243,chrysanthemum,0,631 -1407354,brown_neckerchief,0,629 -1468297,sixteenth_note,0,629 -647474,stuffed_dog,0,628 -1325576,four-leaf_clover_hair_ornament,0,628 -1397372,year_of_the_rooster,0,628 -549834,person_on_head,0,628 -1588824,lifebuoy_ornament,0,628 -492648,yellow_socks,0,626 -651505,animal_on_hand,0,625 -1414486,red_mittens,0,625 -1291060,rabbit_on_head,0,623 -1672268,qingxin_flower,0,618 -385430,hatsune_miku,4,78616 -12239,hakurei_reimu,4,67710 -12242,kirisame_marisa,4,62327 -12248,remilia_scarlet,4,46894 -12249,flandre_scarlet,4,43434 -12314,izayoi_sakuya,4,42465 -1301082,admiral_(kancolle),4,34812 -1478495,artoria_pendragon_(fate),4,33041 -9123,alice_margatroid,4,32516 -388200,kochiya_sanae,4,32504 -12247,patchouli_knowledge,4,32120 -12244,konpaku_youmu,4,31146 -1720,cirno,4,30904 -12246,yakumo_yukari,4,29607 -427142,komeiji_koishi,4,27406 -12308,shameimaru_aya,4,25978 -12307,fujiwara_no_mokou,4,24550 -12304,reisen_udongein_inaba,4,24375 -11374,hong_meiling,4,23457 -592924,akemi_homura,4,23123 -427143,komeiji_satori,4,22757 -592925,kaname_madoka,4,22080 -12245,saigyouji_yuyuko,4,21758 -1631074,kaga_(kancolle),4,20549 -395218,inubashiri_momiji,4,20497 -12250,yakumo_ran,4,18043 -390427,kagamine_rin,4,17416 -602257,konpaku_youmu_(ghost),4,17065 -384842,moriya_suwako,4,17047 -2082,rumia,4,16841 -593109,miki_sayaka,4,16686 -427145,kaenbyou_rin,4,16675 -401582,kazami_yuuka,4,16551 -1275729,shimakaze_(kancolle),4,16285 -427184,reiuji_utsuho,4,16263 -6,saber,4,15967 -1275718,hibiki_(kancolle),4,15954 -474,chen,4,15887 -12302,kamishirasawa_keine,4,15388 -473327,tatara_kogasa,4,15022 -383392,kawashiro_nitori,4,14973 -1414209,mash_kyrielight,4,14919 -415326,hinanawi_tenshi,4,14700 -589430,sakura_kyouko,4,14333 -593108,tomoe_mami,4,14245 -1275728,shigure_(kancolle),4,14238 -12306,houraisan_kaguya,4,13824 -1799,koakuma,4,13641 -1350122,kongou_(kancolle),4,13106 -1602203,ganyu_(genshin_impact),4,12981 -12300,mystia_lorelei,4,12948 -12303,inaba_tewi,4,12571 -12313,ibuki_suika,4,12550 -1275720,inazuma_(kancolle),4,12537 -475833,souryuu_asuka_langley,4,12338 -503349,hijiri_byakuren,4,12211 -1630449,akagi_(kancolle),4,12210 -473267,nazrin,4,11834 -393597,kagamine_len,4,11428 -503343,houjuu_nue,4,11360 -1270870,tenryuu_(kancolle),4,11216 -1473623,tamamo_(fate),4,11128 -1631504,yuudachi_(kancolle),4,10901 -12305,yagokoro_eirin,4,10879 -384841,yasaka_kanako,4,10876 -457810,megurine_luka,4,10737 -1275719,ikazuchi_(kancolle),4,10591 -1479739,jeanne_d'arc_alter_(fate),4,10481 -413783,mizuhashi_parsee,4,10406 -1471064,abigail_williams_(fate),4,10091 -1275715,fubuki_(kancolle),4,10071 -456150,akiyama_mio,4,9944 -1275711,akatsuki_(kancolle),4,9910 -1631523,zuikaku_(kancolle),4,9855 -1391754,fujimaru_ritsuka_(female),4,9711 -1391753,fujimaru_ritsuka_(male),4,9444 -638495,toyosatomimi_no_miko,4,9247 -1631219,nagato_(kancolle),4,9212 -1630699,hamakaze_(kancolle),4,9178 -13814,morichika_rinnosuke,4,9131 -1335350,haruna_(kancolle),4,9124 -9466,suzumiya_haruhi,4,8980 -7441,fate_testarossa,4,8966 -6313,link,4,8924 -465977,hoshiguma_yuugi,4,8846 -3861,pikachu,4,8817 -1686237,raiden_shogun,4,8798 -1433170,nero_claudius_(fate),4,8774 -1351818,kashima_(kancolle),4,8665 -472387,nakano_azusa,4,8571 -1593594,gawr_gura,4,8530 -1533309,houshou_marine,4,8514 -384197,kagiyama_hina,4,8503 -465646,tohsaka_rin,4,8476 -599169,shanghai_doll,4,8466 -9715,nagato_yuki,4,8457 -700405,nishizumi_miho,4,8294 -12299,wriggle_nightbug,4,8246 -1333465,rem_(re:zero),4,8222 -7493,daiyousei,4,8196 -638499,mononobe_no_futo,4,8163 -1728232,avatar_(ff14),4,8144 -1631280,ryuujou_(kancolle),4,8080 -455424,hirasawa_yui,4,8070 -465688,shiki_eiki,4,7982 -600200,kyubey,4,7934 -12311,onozuka_komachi,4,7924 -1380245,suzuya_(kancolle),4,7856 -1452630,scathach_(fate),4,7702 -12342,usami_renko,4,7645 -1581467,lumine_(genshin_impact),4,7630 -395918,misaka_mikoto,4,7624 -391888,tifa_lockhart,4,7606 -1277919,inkling,4,7466 -8552,takamachi_nanoha,4,7465 -1401122,yorha_no._2_type_b,4,7437 -503351,toramaru_shou,4,7431 -12108,illyasviel_von_einzbern,4,7414 -1631004,houshou_(kancolle),4,7348 -506041,maribel_hearn,4,7317 -1233711,imaizumi_kagerou,4,7306 -8327,ayanami_rei,4,7267 -1639113,shigure_kai_ni_(kancolle),4,7221 -1408636,jeanne_d'arc_(fate),4,7191 -378876,joseph_joestar,4,7142 -1639135,yuudachi_kai_ni_(kancolle),4,7052 -1231258,matoi_ryuuko,4,7016 -456151,tainaka_ritsu,4,6997 -1635696,hu_tao_(genshin_impact),4,6878 -452135,producer_(idolmaster),4,6859 -1275723,murakumo_(kancolle),4,6824 -1405000,serval_(kemono_friends),4,6806 -592977,nishikino_maki,4,6768 -1765420,jeanne_d'arc_alter_(avenger)_(fate),4,6725 -593046,sonoda_umi,4,6721 -1277794,amatsukaze_(kancolle),4,6636 -544560,himekaidou_hatate,4,6634 -1585358,northern_ocean_princess,4,6621 -1631456,ushio_(kancolle),4,6609 -662185,shibuya_rin,4,6569 -615562,toujou_nozomi,4,6537 -94496,princess_zelda,4,6535 -1600114,zhongli_(genshin_impact),4,6477 -1438816,okita_souji_(fate),4,6473 -1285206,atago_(kancolle),4,6461 -638538,kaku_seiga,4,6444 -1275734,yukikaze_(kancolle),4,6441 -1631360,shoukaku_(kancolle),4,6390 -503350,murasa_minamitsu,4,6356 -1511608,inkling_girl,4,6321 -592974,yazawa_nico,4,6312 -713730,kafuu_chino,4,6283 -593043,ayase_eli,4,6236 -1682530,tamamo_no_mae_(fate/extra),4,6180 -1631488,yamato_(kancolle),4,6121 -466373,dawn_(pokemon),4,6100 -1479836,shirakami_fubuki,4,6085 -413645,nagae_iku,4,6078 -1523054,manjuu_(azur_lane),4,6061 -1531173,usada_pekora,4,6052 -487910,joseph_joestar_(young),4,6030 -1275712,akebono_(kancolle),4,6011 -1233709,hata_no_kokoro,4,5911 -1631124,kitakami_(kancolle),4,5907 -54494,kujo_jotaro,4,5902 -1649146,gilgamesh_(fate),4,5822 -570051,ibaraki_kasen,4,5806 -1287532,megumin,4,5792 -669326,kaito_(vocaloid),4,5790 -1239690,rensouhou-chan,4,5717 -1369674,lillie_(pokemon),4,5687 -7438,matou_sakura,4,5678 -1596257,mona_(genshin_impact),4,5668 -1733099,yae_miko,4,5664 -1435530,shuten_douji_(fate),4,5656 -473328,kumoi_ichirin,4,5646 -413652,kurodani_yamame,4,5643 -619180,kasodani_kyouko,4,5610 -638583,soga_no_tojiko,4,5592 -619181,miyako_yoshika,4,5551 -1427460,prinz_eugen_(kancolle),4,5516 -101752,hoshii_miki,4,5496 -1631257,ooyodo_(kancolle),4,5453 -456152,kotobuki_tsumugi,4,5431 -1600563,keqing_(genshin_impact),4,5414 -1448304,astolfo_(fate),4,5413 -1630648,female_admiral_(kancolle),4,5408 -13108,chun-li,4,5374 -1372463,darjeeling_(girls_und_panzer),4,5362 -382074,hiiragi_kagami,4,5341 -1361469,mutsu_(kancolle),4,5321 -1631410,tatsuta_(kancolle),4,5315 -1478494,cu_chulainn_(fate),4,5269 -1630515,asashio_(kancolle),4,5250 -466360,may_(pokemon),4,5242 -1532746,byleth_(fire_emblem),4,5192 -1243755,kijin_seija,4,5186 -1424365,pyra_(xenoblade),4,5178 -7439,kinomoto_sakura,4,5176 -1593595,mori_calliope,4,5176 -1328621,clownpiece,4,5157 -713720,nishizumi_maho,4,5153 -1593596,ninomae_ina'nis,4,5129 -593045,minami_kotori,4,5119 -717860,rosa_(pokemon),4,5119 -1405300,kaban_(kemono_friends),4,5109 -1648389,yor_briar,4,5092 -10658,emiya_shirou,4,5021 -1495213,minato_aqua,4,5017 -713721,itsumi_erika,4,4979 -466669,c.c.,4,4976 -710903,meiko_(vocaloid),4,4975 -11941,samus_aran,4,4963 -383424,aki_minoriko,4,4963 -615290,hilda_(pokemon),4,4950 -1630531,bismarck_(kancolle),4,4949 -1646740,archer_(fate),4,4941 -1448306,mordred_(fate),4,4940 -1599785,aether_(genshin_impact),4,4932 -1631313,sendai_(kancolle),4,4923 -1533332,marnie_(pokemon),4,4923 -1464562,minamoto_no_raikou_(fate),4,4918 -1631252,ooi_(kancolle),4,4907 -656409,yuzuki_yukari,4,4892 -382075,izumi_konata,4,4858 -452021,hieda_no_akyuu,4,4837 -434767,caesar_anthonio_zeppeli,4,4796 -1350123,akashi_(kancolle),4,4794 -1233706,sekibanki,4,4768 -9071,amami_haruka,4,4760 -727352,anchovy_(girls_und_panzer),4,4757 -1507496,takao_(kancolle),4,4740 -1293664,musashi_(kancolle),4,4740 -699794,nanami_chiaki,4,4735 -1328650,junko_(touhou),4,4731 -510663,yoko_littner,4,4679 -1590956,mythra_(xenoblade),4,4644 -1682533,nero_claudius_(fate/extra),4,4616 -1734279,okita_souji_(koha-ace),4,4610 -1442931,amiya_(arknights),4,4608 -1275730,shiranui_(kancolle),4,4605 -7866,tsukino_usagi,4,4576 -1339317,d.va_(overwatch),4,4559 -593044,kousaka_honoka,4,4558 -638500,futatsuiwa_mamizou,4,4557 -1248945,wo-class_aircraft_carrier,4,4554 -698982,asuna_(sao),4,4534 -1478256,medusa_(fate),4,4530 -1631305,sazanami_(kancolle),4,4523 -1631308,souryuu_(kancolle),4,4520 -1243757,sukuna_shinmyoumaru,4,4516 -1631484,yamashiro_(kancolle),4,4489 -424565,shijou_takane,4,4488 -383855,aki_shizuha,4,4481 -1275727,samidare_(kancolle),4,4471 -1593598,watson_amelia,4,4470 -700403,akiyama_yukari,4,4468 -1630992,hiei_(kancolle),4,4468 -21,suigintou,4,4430 -1631272,ro-500_(kancolle),4,4425 -1246753,senketsu,4,4424 -1544889,gloria_(pokemon),4,4412 -10365,cloud_strife,4,4410 -1667133,hk416_(girls'_frontline),4,4402 -1593597,takanashi_kiara,4,4377 -9072,kisaragi_chihaya,4,4365 -279302,dio_brando,4,4360 -422767,gumi,4,4359 -1572405,klee_(genshin_impact),4,4357 -1333552,kirishima_(kancolle),4,4342 -1342225,verniy_(kancolle),4,4342 -12295,letty_whiterock,4,4323 -445942,gardevoir,4,4320 -1595272,venti_(genshin_impact),4,4305 -1231257,kiryuuin_satsuki,4,4282 -1081167,mordred_(fate/apocrypha),4,4277 -9078,minase_iori,4,4276 -1518952,nekomata_okayu,4,4269 -9079,kikuchi_makoto,4,4243 -615222,hoshizora_rin,4,4221 -1421198,bb_(fate),4,4202 -1631098,kasumi_(kancolle),4,4202 -1631042,iowa_(kancolle),4,4196 -460796,ex-keine,4,4122 -1532747,byleth_(fire_emblem)_(female),4,4110 -1328656,hecatia_lapislazuli,4,4100 -1769318,jeanne_d'arc_(ruler)_(fate),4,4087 -1442946,texas_(arknights),4,4083 -1440040,atago_(azur_lane),4,4071 -472979,saber_alter,4,4066 -422691,oshino_shinobu,4,4060 -425446,ganaha_hibiki,4,4060 -1492223,taihou_(azur_lane),4,4049 -1631502,yuubari_(kancolle),4,4039 -1631121,kiso_(kancolle),4,4032 -1526564,doctor_(arknights),4,4023 -660315,shimamura_uzuki,4,4003 -1610604,tartaglia_(genshin_impact),4,4003 -52967,princess_peach,4,3999 -1531312,uruha_rushia,4,3998 -466315,ash_ketchum,4,3989 -1316173,watanabe_you,4,3972 -1442306,zero_two_(darling_in_the_franxx),4,3955 -1525565,hoshimachi_suisei,4,3955 -405454,aerith_gainsborough,4,3938 -15550,morrigan_aensland,4,3935 -1516925,makima_(chainsaw_man),4,3935 -9750,asahina_mikuru,4,3932 -445830,red_(pokemon),4,3928 -1622755,asuna_(blue_archive),4,3923 -1533307,shirogane_noel,4,3913 -1526509,skadi_(arknights),4,3894 -1536480,formidable_(azur_lane),4,3879 -665139,shirasaka_koume,4,3864 -1630996,hiryuu_(kancolle),4,3855 -1440089,prinz_eugen_(azur_lane),4,3855 -1569865,karyl_(princess_connect!),4,3855 -665166,takagaki_kaede,4,3850 -1629450,meltryllis_(fate),4,3848 -1341413,djeeta_(granblue_fantasy),4,3814 -1233049,sagisawa_fumika,4,3784 -1630687,graf_zeppelin_(kancolle),4,3779 -646093,ultimate_madoka,4,3776 -1561709,bremerton_(azur_lane),4,3770 -1645004,rice_shower_(umamusume),4,3745 -701140,komaeda_nagito,4,3741 -1233712,wakasagihime,4,3724 -1518950,inugami_korone,4,3716 -1564340,paimon_(genshin_impact),4,3714 -1515171,sakura_miko,4,3713 -11498,kirby,4,3683 -1328609,kishin_sagume,4,3650 -1641843,eula_(genshin_impact),4,3650 -1649150,medusa_(rider)_(fate),4,3649 -592976,koizumi_hanayo,4,3644 -1549065,tokoyami_towa,4,3617 -1646765,mejiro_mcqueen_(umamusume),4,3612 -1511455,yumemi_riamu,4,3603 -9075,takatsuki_yayoi,4,3591 -1627707,miyamoto_musashi_(fate),4,3590 -9681,kyon,4,3589 -1312747,hestia_(danmachi),4,3577 -1631228,naka_(kancolle),4,3575 -496900,black_rock_shooter_(character),4,3567 -1493247,bowsette,4,3536 -1514981,selene_(pokemon),4,3530 -1440003,belfast_(azur_lane),4,3530 -1509133,sirius_(azur_lane),4,3507 -663994,kanzaki_ranko,4,3498 -1549061,amane_kanata,4,3497 -1500247,oozora_subaru,4,3471 -1627592,ishtar_(fate),4,3469 -593780,super_sonico,4,3466 -1646762,daiwa_scarlet_(umamusume),4,3462 -413714,kisume,4,3456 -664384,jougasaki_mika,4,3455 -12257,ikari_shinji,4,3441 -1649152,cu_chulainn_(fate/stay_night),4,3437 -1585359,seaport_princess,4,3432 -620127,narukami_yuu,4,3429 -8882,lily_white,4,3428 -1549082,kiryu_coco,4,3421 -1350743,aqua_(konosuba),4,3417 -11055,furude_rika,4,3411 -448496,cynthia_(pokemon),4,3404 -1630645,fairy_(kancolle),4,3384 -700407,takebe_saori,4,3382 -1378250,i-19_(kancolle),4,3374 -1651926,kamisato_ayaka,4,3363 -1452466,ereshkigal_(fate),4,3357 -1316172,tsushima_yoshiko,4,3355 -8048,sailor_moon,4,3346 -1631521,zuihou_(kancolle),4,3341 -670056,kuroki_tomoko,4,3329 -1502759,ookami_mio,4,3321 -550231,gokou_ruri,4,3312 -634453,barnaby_brooks_jr.,4,3307 -13270,cammy_white,4,3303 -662047,sanya_v._litvyak,4,3290 -687394,nitta_minami,4,3274 -14152,kakyoin_noriaki,4,3265 -1440013,unicorn_(azur_lane),4,3230 -421104,eila_ilmatar_juutilainen,4,3226 -781225,lucina_(fire_emblem),4,3217 -1236324,serena_(pokemon),4,3217 -660302,ahri_(league_of_legends),4,3215 -701382,hinata_hajime,4,3213 -1467839,trainer_(umamusume),4,3201 -1528907,corrin_(fire_emblem),4,3191 -591909,stocking_(psg),4,3188 -1265245,ichinose_shiki,4,3182 -1388968,ouma_kokichi,4,3182 -649985,kaburagi_t._kotetsu,4,3179 -1275725,naganami_(kancolle),4,3171 -11853,haruno_sakura,4,3163 -12309,medicine_melancholy,4,3157 -1631030,i-58_(kancolle),4,3154 -1717604,shenhe_(genshin_impact),4,3154 -1586173,yukihana_lamy,4,3150 -12296,lunasa_prismriver,4,3143 -1500444,commander_(azur_lane),4,3135 -1527899,kitagawa_marin,4,3133 -1685272,ouro_kronii,4,3132 -1561704,higuchi_madoka,4,3130 -1507493,maya_(kancolle),4,3125 -1462685,kokkoro_(princess_connect!),4,3125 -16266,son_goku,4,3124 -8553,yagami_hayate,4,3122 -12107,kotomine_kirei,4,3116 -1631482,yamakaze_(kancolle),4,3099 -1275724,murasame_(kancolle),4,3081 -724152,anastasia_(idolmaster),4,3064 -382076,hiiragi_tsukasa,4,3059 -1646764,gold_ship_(umamusume),4,3051 -1598280,xiao_(genshin_impact),4,3049 -1685271,nanashi_mumei,4,3036 -563892,kirito,4,3035 -1532725,edelgard_von_hresvelg,4,3027 -1317066,doremy_sweet,4,3026 -1292960,midoriya_izuku,4,3021 -1586175,shishiro_botan,4,3007 -466818,misty_(pokemon),4,3006 -1447551,florence_nightingale_(fate),4,3001 -419123,shirogane_naoto,4,2998 -1295748,mercy_(overwatch),4,2997 -413395,kujo_jolyne,4,2994 -649693,jack_the_ripper_(fate/apocrypha),4,2990 -1316171,sakurauchi_riko,4,2988 -1822797,boo_tao_(genshin_impact),4,2987 -722007,katyusha_(girls_und_panzer),4,2970 -413396,giorno_giovanna,4,2969 -713714,kay_(girls_und_panzer),4,2969 -403357,nia_teppelin,4,2963 -1342592,shimada_arisu,4,2960 -1646761,tokai_teio_(umamusume),4,2957 -1667136,ump45_(girls'_frontline),4,2944 -644424,nami_(one_piece),4,2942 -12355,uzumaki_naruto,4,2929 -1631514,z1_leberecht_maass_(kancolle),4,2922 -398775,sheryl_nome,4,2917 -1594094,pecorine_(princess_connect!),4,2909 -1491767,murasaki_shion,4,2907 -1441167,ayanami_(azur_lane),4,2900 -660098,futaba_anzu,4,2897 -1292959,uraraka_ochako,4,2895 -1386438,saihara_shuuichi,4,2891 -1480186,takarada_rikka,4,2888 -1529309,anya_(spy_x_family),4,2877 -9077,miura_azusa,4,2873 -1631389,taihou_(kancolle),4,2873 -1631516,z3_max_schultz_(kancolle),4,2866 -3030,mario,4,2863 -445932,eevee,4,2860 -1478507,iskandar_(fate),4,2845 -1275713,akigumo_(kancolle),4,2844 -1631134,kuma_(kancolle),4,2842 -375279,waver_velvet,4,2840 -13543,hyuuga_hinata,4,2831 -620175,mikasa_ackerman,4,2829 -407911,jonathan_joestar,4,2825 -1533759,barbara_(genshin_impact),4,2822 -9074,hagiwara_yukiho,4,2821 -1631474,warspite_(kancolle),4,2821 -1630673,fusou_(kancolle),4,2818 -1054766,chloe_von_einzbern,4,2812 -1462591,narmaya_(granblue_fantasy),4,2808 -437574,shirai_kuroko,4,2803 -1631023,i-401_(kancolle),4,2794 -711691,motoori_kosuzu,4,2792 -663996,jougasaki_rika,4,2791 -1337035,leon_(pokemon),4,2791 -1631239,non-human_admiral_(kancolle),4,2788 -1262414,izumi_sagiri,4,2785 -411462,aisaka_taiga,4,2782 -11349,ryuuguu_rena,4,2779 -539110,yuki_miku,4,2778 -700406,reizei_mako,4,2774 -1317065,usami_sumireko,4,2771 -1417248,common_raccoon_(kemono_friends),4,2769 -1431828,elizabeth_bathory_(fate),4,2767 -1799500,asuna_(bunny)_(blue_archive),4,2765 -508752,pyonta,4,2764 -1276066,hoto_cocoa,4,2751 -660394,midorikawa_nao,4,2740 -1380244,kumano_(kancolle),4,2730 -1240694,ruby_rose,4,2718 -170637,lelouch_lamperouge,4,2716 -1627605,kama_(fate),4,2713 -406263,satonaka_chie,4,2711 -1524374,lappland_(arknights),4,2710 -476837,holo,4,2701 -1544892,raihan_(pokemon),4,2699 -407910,higashikata_josuke,4,2697 -1705933,monster_hunter_(character),4,2693 -1442947,ch'en_(arknights),4,2693 -660393,kise_yayoi,4,2690 -1246772,mankanshoku_mako,4,2690 -539789,beatrice_(umineko),4,2688 -1599614,jean_(genshin_impact),4,2687 -12514,shiranui_mai,4,2686 -664492,maekawa_miku,4,2679 -1630489,aoba_(kancolle),4,2677 -1631010,hyuuga_(kancolle),4,2676 -1582962,fischl_(genshin_impact),4,2675 -1333466,emilia_(re:zero),4,2672 -1429424,tokitsukaze_(kancolle),4,2667 -9076,akizuki_ritsuko,4,2662 -1627620,kiyohime_(fate),4,2659 -603070,charlotte_(madoka_magica),4,2658 -1500246,nakiri_ayame,4,2653 -1325863,robin_(fire_emblem),4,2652 -8955,luna_child,4,2647 -8956,star_sapphire,4,2628 -1405055,fennec_(kemono_friends),4,2627 -1440018,illustrious_(azur_lane),4,2624 -1275726,oboro_(kancolle),4,2615 -1465315,tomoe_gozen_(fate),4,2604 -1530284,bea_(pokemon),4,2602 -1361608,boko_(girls_und_panzer),4,2601 -1499605,natsuiro_matsuri,4,2595 -1631194,mogami_(kancolle),4,2594 -473279,unzan,4,2591 -1533296,shiranui_flare,4,2591 -1631303,satsuki_(kancolle),4,2588 -1630519,ashigara_(kancolle),4,2586 -471219,kousaka_kirino,4,2581 -1719003,sakamata_chloe,4,2579 -761961,weiss_schnee,4,2575 -1442945,exusiai_(arknights),4,2573 -1629409,artoria_pendragon_(lancer)_(fate),4,2566 -1452972,yorigami_shion,4,2562 -1631066,jintsuu_(kancolle),4,2559 -1275732,uzuki_(kancolle),4,2559 -1631126,kiyoshimo_(kancolle),4,2558 -1631081,kagerou_(kancolle),4,2547 -510605,makise_kurisu,4,2545 -1631452,urakaze_(kancolle),4,2540 -8954,sunny_milk,4,2533 -633863,tachibana_arisu,4,2533 -1385142,isokaze_(kancolle),4,2523 -1316036,takami_chika,4,2519 -1435235,nitocris_(fate),4,2515 -1526515,nessa_(pokemon),4,2515 -1528908,corrin_(fire_emblem)_(female),4,2502 -195216,kallen_stadtfeld,4,2498 -12112,emiya_kiritsugu,4,2496 -414823,erica_hartmann,4,2487 -414822,miyafuji_yoshika,4,2485 -1631447,unryuu_(kancolle),4,2484 -1275717,hatsuyuki_(kancolle),4,2465 -665397,koshimizu_sachiko,4,2462 -1468120,nakano_nino,4,2457 -1275731,shiratsuyu_(kancolle),4,2455 -1623068,karin_(blue_archive),4,2455 -11053,houjou_satoko,4,2444 -1702683,diarmuid_ua_duibhne_(lancer)_(fate),4,2444 -707204,dizzy_(guilty_gear),4,2442 -700933,hayami_kanade,4,2442 -717140,hishikawa_rikka,4,2440 -1337527,mika_(girls_und_panzer),4,2440 -1515819,power_(chainsaw_man),4,2433 -1593304,don-chan_(usada_pekora),4,2426 -1333601,ram_(re:zero),4,2417 -1631385,taigei_(kancolle),4,2414 -1630472,akitsu_maru_(kancolle),4,2411 -10284,asakura_ryouko,4,2404 -1589924,simon_(ttgl),4,2403 -512930,alice_(alice_in_wonderland),4,2399 -1667138,wa2000_(girls'_frontline),4,2389 -1292961,bakugou_katsuki,4,2386 -1443053,nakano_miku,4,2384 -1318502,callie_(splatoon),4,2383 -1435236,oda_nobunaga_(fate),4,2383 -1644978,agnes_tachyon_(umamusume),4,2380 -420872,gertrud_barkhorn,4,2379 -660390,aoki_reika,4,2379 -9081,futami_mami,4,2375 -378867,dark_magician_girl,4,2373 -1403841,yoshida_yuuko_(machikado_mazoku),4,2365 -1762231,kirima_syaro,4,2363 -1757377,yelan_(genshin_impact),4,2355 -1770073,nishikigi_chisato,4,2355 -1630723,hatsuzuki_(kancolle),4,2350 -12405,nagisa_kaworu,4,2340 -1631174,michishio_(kancolle),4,2338 -1631299,saratoga_(kancolle),4,2336 -1595577,surtr_(arknights),4,2336 -394054,louise_francoise_le_blanc_de_la_valliere,4,2335 -1271042,kiana_kaslana,4,2326 -1670936,accelerator_(toaru_majutsu_no_index),4,2324 -1630708,harusame_(kancolle),4,2324 -482064,makinami_mari_illustrious,4,2308 -12094,arcueid_brunestud,4,2303 -438007,kamijou_touma,4,2299 -4587,shana,4,2288 -1627610,katsushika_hokusai_(fate),4,2287 -554006,tachibana_kanade,4,2286 -1584981,shiroko_(blue_archive),4,2283 -12297,merlin_prismriver,4,2282 -1440020,takao_(azur_lane),4,2282 -1387675,kamado_nezuko,4,2273 -1318503,marie_(splatoon),4,2268 -1279297,yura_(kancolle),4,2267 -1267920,re-class_battleship,4,2266 -499269,miyu_edelfelt,4,2250 -395970,ranka_lee,4,2248 -658637,chitanda_eru,4,2248 -385134,ushiromiya_battler,4,2247 -1631440,u-511_(kancolle),4,2246 -12298,lyrica_prismriver,4,2240 -439625,kaenbyou_rin_(cat),4,2236 -591958,kirigiri_kyouko,4,2236 -1287911,hino_akane_(smile_precure!),4,2236 -1452342,amamiya_ren,4,2236 -1398811,kanna_kamui,4,2229 -1631478,yahagi_(kancolle),4,2226 -1821363,nahida_(genshin_impact),4,2225 -1524970,reisalin_stout,4,2221 -670005,yukine_chris,4,2219 -700404,isuzu_hana,4,2219 -549180,kashiwazaki_sena,4,2218 -1378260,lana_(pokemon),4,2210 -1533761,amber_(genshin_impact),4,2210 -1631206,mutsuki_(kancolle),4,2206 -403861,kyonko,4,2204 -1399517,tippy_(gochiusa),4,2203 -557446,ethan_(pokemon),4,2201 -1440130,laffey_(azur_lane),4,2200 -1255756,t-head_admiral,4,2192 -479706,yuuki_makoto,4,2190 -1440202,enterprise_(azur_lane),4,2187 -1481047,akai_haato,4,2180 -1630695,haguro_(kancolle),4,2172 -615600,toshinou_kyouko,4,2165 -601487,enoshima_junko,4,2163 -1602944,mudrock_(arknights),4,2159 -1566117,kal'tsit_(arknights),4,2151 -1447375,tamamo_cat_(fate),4,2150 -1631032,i-8_(kancolle),4,2149 -1630524,atlanta_(kancolle),4,2148 -1630210,abukuma_(kancolle),4,2147 -12564,uchiha_sasuke,4,2142 -1483850,napoleon_bonaparte_(fate),4,2142 -454513,hanekawa_tsubasa,4,2141 -1811190,nilou_(genshin_impact),4,2136 -1515525,mayuzumi_fuyuko,4,2133 -99,shinku,4,2131 -1631433,tone_(kancolle),4,2131 -1630477,akizuki_(kancolle),4,2130 -1602206,qiqi_(genshin_impact),4,2128 -598066,houjou_hibiki,4,2127 -9080,futami_ami,4,2125 -1055516,akari_(pokemon),4,2120 -12106,kousaka_tamaki,4,2116 -1452975,yorigami_jo'on,4,2113 -1440110,akagi_(azur_lane),4,2111 -1283598,bronya_zaychik,4,2108 -626945,shokuhou_misaki,4,2107 -1765430,jeanne_d'arc_alter_(swimsuit_berserker)_(fate),4,2096 -1311294,gran_(granblue_fantasy),4,2093 -1678980,sangonomiya_kokomi,4,2091 -1316167,kurosawa_dia,4,2088 -1605761,hina_(blue_archive),4,2086 -573907,blue_oak,4,2085 -662472,takanashi_rikka,4,2085 -717136,aida_mana,4,2083 -1631116,kisaragi_(kancolle),4,2074 -1250847,junketsu,4,2072 -1236625,eren_yeager,4,2070 -1366306,rowlet,4,2069 -1316169,matsuura_kanan,4,2066 -615289,hilbert_(pokemon),4,2062 -1234829,yang_xiao_long,4,2059 -1402355,kagari_atsuko,4,2058 -1596241,diluc_(genshin_impact),4,2051 -405240,amagi_yukiko,4,2049 -853361,bb_(fate/extra),4,2042 -1719009,la+_darknesss,4,2042 -1432299,matara_okina,4,2040 -657125,ia_(vocaloid),4,2033 -1183449,nonna_(girls_und_panzer),4,2033 -1252196,akuma_homura,4,2030 -1448715,kizuna_akari,4,2029 -1431862,nero_claudius_(swimsuit_caster)_(fate),4,2027 -1585360,battleship_princess,4,2020 -1667140,ump9_(girls'_frontline),4,2019 -426767,ikamusume,4,2018 -691541,perrine_h._clostermann,4,2017 -1631333,shikinami_(kancolle),4,2017 -1685270,hakos_baelz,4,2016 -530171,kurumi_erika,4,2014 -1316166,kunikida_hanamaru,4,2013 -1631090,kamikaze_(kancolle),4,2012 -1515818,denji_(chainsaw_man),4,2010 -527779,han_juri,4,2003 -1587880,gotou_hitori,4,2001 -599208,charlotte_e._yeager,4,2000 -1271044,raiden_mei,4,1994 -1308178,octoling,4,1994 -409162,senjougahara_hitagi,4,1991 -1630675,gambier_bay_(kancolle),4,1990 -1631046,ise_(kancolle),4,1985 -610107,akaza_akari,4,1983 -1387121,tamamo_no_mae_(swimsuit_lancer)_(fate),4,1983 -1464778,nakano_yotsuba,4,1983 -1631071,jun'you_(kancolle),4,1980 -660392,hoshizora_miyuki,4,1977 -1631188,miyuki_(kancolle),4,1976 -16066,raising_heart,4,1975 -416172,kujikawa_rise,4,1967 -1467626,anastasia_(fate),4,1960 -1440070,kaga_(azur_lane),4,1958 -1630677,gangut_(kancolle),4,1953 -1159816,mirko,4,1952 -1646759,silence_suzuka_(umamusume),4,1950 -1627569,fou_(fate),4,1949 -1631265,pola_(kancolle),4,1949 -663681,honda_mio,4,1948 -591906,panty_(psg),4,1945 -772426,ohtsuki_yui,4,1941 -1250855,hex_maniac_(pokemon),4,1941 -1658781,scaramouche_(genshin_impact),4,1941 -502807,shinki_(touhou),4,1940 -386434,piplup,4,1933 -1452668,hassan_of_serenity_(fate),4,1932 -414820,lynette_bishop,4,1929 -476084,saten_ruiko,4,1929 -1488442,bb_(swimsuit_mooncancer)_(fate),4,1926 -16082,ryougi_shiki,4,1923 -41,suiseiseki,4,1919 -1610754,yu_mei-ren_(fate),4,1911 -11050,sonozaki_mion,4,1910 -1509453,fu_hua,4,1909 -1625332,yuuka_(blue_archive),4,1908 -1540881,w_(arknights),4,1905 -1580066,suzuran_(arknights),4,1905 -1817174,inkling_boy,4,1902 -553633,lyra_(pokemon),4,1894 -1645002,nice_nature_(umamusume),4,1890 -721694,tatsumaki,4,1888 -1631016,i-168_(kancolle),4,1887 -1716513,avatar_(ff11),4,1885 -384405,irisviel_von_einzbern,4,1885 -445847,charizard,4,1883 -1459161,tsukino_mito,4,1883 -1675937,kaedehara_kazuha,4,1883 -1472743,ibaraki_douji_(fate),4,1882 -1387748,katsuki_yuuri,4,1881 -1316168,kurosawa_ruby,4,1876 -1631510,yuugumo_(kancolle),4,1875 -1378262,mallow_(pokemon),4,1874 -1406378,shoebill_(kemono_friends),4,1874 -1770074,inoue_takina,4,1871 -1257126,p-head_producer,4,1869 -16122,nico_robin,4,1865 -1449263,nia_(xenoblade),4,1865 -1387712,viktor_nikiforov,4,1855 -1408667,kochou_shinobu,4,1852 -1670077,springfield_(girls'_frontline),4,1850 -1680379,mash_kyrielight_(dangerous_beast),4,1850 -1544632,mostima_(arknights),4,1850 -660389,christa_renz,4,1848 -1239637,jakuzure_nonon,4,1842 -1631211,nachi_(kancolle),4,1842 -1534498,meltryllis_(swimsuit_lancer)_(fate),4,1842 -1275722,makigumo_(kancolle),4,1841 -1506818,neptune_(neptune_series),4,1840 -7579,vita,4,1836 -438339,rotom,4,1834 -664082,miyamoto_frederica,4,1825 -383738,vivio,4,1822 -1542251,orange_pekoe_(girls_und_panzer),4,1822 -1533460,lysithea_von_ordelia,4,1817 -1384409,akamatsu_kaede,4,1815 -7477,noumi_kudryavka,4,1811 -512688,brendan_(pokemon),4,1811 -394317,rosalina,4,1811 -1693513,elizabeth_bathory_(fate/extra_ccc),4,1810 -938279,lyn_(fire_emblem),4,1809 -1268743,ujimatsu_chiya,4,1806 -171918,android_18,4,1802 -666034,akagi_miria,4,1801 -713731,tedeza_rize,4,1800 -543959,sakura_miku,4,1799 -1630542,choukai_(kancolle),4,1799 -1629430,mysterious_heroine_xx_(fate),4,1795 -1525541,gojou_satoru,4,1789 -1222730,sesshouin_kiara,4,1788 -1629420,jeanne_d'arc_alter_santa_lily_(fate),4,1787 -433649,johnny_joestar,4,1783 -1631163,maru-yu_(kancolle),4,1781 -1160566,blake_belladonna,4,1780 -1549045,tsunomaki_watame,4,1780 -14180,lilith_aensland,4,1770 -1631225,nagatsuki_(kancolle),4,1764 -565443,shinjou_akane,4,1763 -628777,yuzuriha_inori,4,1760 -1447957,nero_claudius_(bride)_(fate),4,1760 -1533066,hilda_valentine_goneril,4,1760 -1631102,katsuragi_(kancolle),4,1757 -1664919,yoimiya_(genshin_impact),4,1753 -1406537,shima_rin,4,1752 -1239070,akatsuki_kirika,4,1748 -717139,kenzaki_makoto,4,1746 -1525756,sonia_(pokemon),4,1745 -382079,takara_miyuki,4,1742 -1346647,shinomiya_kaguya,4,1742 -1533350,morpeko,4,1737 -1670933,index_(toaru_majutsu_no_index),4,1734 -596343,mima_(touhou),4,1731 -753977,sinon,4,1731 -8276,bardiche,4,1730 -1341257,toga_himiko,4,1730 -1440145,javelin_(azur_lane),4,1726 -1631425,teruzuki_(kancolle),4,1725 -1631244,noshiro_(kancolle),4,1723 -1251354,phosphophyllite,4,1721 -414816,sakamoto_mio,4,1720 -1442305,hiro_(darling_in_the_franxx),4,1719 -399147,yowane_haku,4,1717 -664359,tachibana_hibiki_(symphogear),4,1717 -7914,mizuno_ami,4,1716 -10146,koizumi_itsuki,4,1715 -1631402,tama_(kancolle),4,1714 -1257062,pepperoni_(girls_und_panzer),4,1714 -1405419,lucky_beast_(kemono_friends),4,1713 -568921,aegis_(persona),4,1709 -713449,morikubo_nono,4,1709 -1852825,iono_(pokemon),4,1704 -4906,lum,4,1703 -1670940,last_order_(toaru_majutsu_no_index),4,1702 -1630685,gotland_(kancolle),4,1698 -1631495,yayoi_(kancolle),4,1693 -1631373,suzukaze_(kancolle),4,1690 -1292966,asui_tsuyu,4,1689 -1644992,manhattan_cafe_(umamusume),4,1688 -1631198,sensei_(blue_archive),4,1686 -1735921,asashio_kai_ni_(kancolle),4,1680 -1602199,ningguang_(genshin_impact),4,1677 -1623528,dodoco_(genshin_impact),4,1672 -1441509,andou_(girls_und_panzer),4,1669 -301250,yae_sakura,4,1668 -1631357,shirayuki_(kancolle),4,1667 -1275721,kuroshio_(kancolle),4,1666 -5036,signum,4,1663 -1685269,ceres_fauna,4,1663 -1667145,ak-12_(girls'_frontline),4,1662 -424944,hanamura_yousuke,4,1661 -1350741,darkness_(konosuba),4,1661 -496829,makoto_nanaya,4,1657 -681874,shiomi_syuko,4,1657 -1403842,chiyoda_momo,4,1657 -7794,aino_minako,4,1656 -606667,kirino_ranmaru,4,1655 -1446811,st._louis_(azur_lane),4,1653 -529058,hanasaki_tsubomi,4,1649 -567872,n_(pokemon),4,1648 -399582,lucario,4,1646 -1432467,morgan_le_fay_(fate),4,1646 -401222,noel_vermillion,4,1644 -1317049,seiran_(touhou),4,1643 -1248475,jinx_(league_of_legends),4,1640 -1646757,special_week_(umamusume),4,1639 -1295749,tracer_(overwatch),4,1635 -1630510,asashimo_(kancolle),4,1634 -1631376,suzutsuki_(kancolle),4,1632 -1303014,producer_(idolmaster_cinderella_girls_anime),4,1629 -1672736,twilight_(spy_x_family),4,1629 -378207,matou_kariya,4,1628 -1734277,oda_nobunaga_(koha-ace),4,1628 -1344591,matsuno_karamatsu,4,1624 -1459170,hachimiya_meguru,4,1624 -488853,kasumi_(doa),4,1623 -1524282,lio_fotia,4,1622 -1243759,horikawa_raiko,4,1621 -423669,saber_lily,4,1619 -1581062,shiomi_kotone,4,1617 -386311,otonashi_kotori,4,1613 -664313,moroboshi_kirari,4,1612 -386242,sakata_gintoki,4,1611 -1300728,oumae_kumiko,4,1604 -1344594,matsuno_jyushimatsu,4,1603 -1407560,kizuna_ai,4,1602 -436994,sakurai_momoka,4,1601 -593802,minamino_kanade,4,1600 -1631112,kinugasa_(kancolle),4,1599 -467096,leaf_(pokemon),4,1595 -1630499,arashio_(kancolle),4,1595 -1344590,matsuno_osomatsu,4,1595 -1678981,kujou_sara,4,1594 -1639112,sendai_kai_ni_(kancolle),4,1593 -1344593,matsuno_ichimatsu,4,1593 -1383241,lusamine_(pokemon),4,1592 -1629361,ushiwakamaru_(fate),4,1591 -1501023,artoria_pendragon_(lancer_alter)_(fate),4,1590 -1799501,karin_(bunny)_(blue_archive),4,1590 -1401124,yorha_no._9_type_s,4,1589 -663432,kamiya_nao,4,1588 -658795,mimura_kanako,4,1585 -716185,nishizumi_shiho,4,1585 -15221,hanyuu,4,1583 -1584593,felicia_(vampire),4,1582 -1529256,robin_(fire_emblem)_(female),4,1581 -527774,monkey_d._luffy,4,1577 -1630529,ayanami_(kancolle),4,1570 -1273262,rensouhou-kun,4,1569 -1525544,itadori_yuuji,4,1569 -1255499,satou_kazuma,4,1567 -13036,misumi_nagisa,4,1560 -1631054,isuzu_(kancolle),4,1560 -42,souseiseki,4,1559 -396068,watatsuki_no_yorihime,4,1557 -1248309,sendai_hakurei_no_miko,4,1557 -1630445,agano_(kancolle),4,1556 -1824247,etna_(disgaea),4,1554 -1386288,harukawa_maki,4,1554 -1467675,symboli_rudolf_(umamusume),4,1553 -1493508,princess_king_boo,4,1552 -1417247,japanese_crested_ibis_(kemono_friends),4,1551 -1245442,i-class_destroyer,4,1550 -1586177,omaru_polka,4,1546 -1338854,mei_(overwatch),4,1543 -1734866,musashi_kai_ni_(kancolle),4,1543 -712088,leafa,4,1540 -601490,monokuma,4,1540 -727253,hojo_karen,4,1540 -1522661,angelina_(arknights),4,1539 -1316170,ohara_mari,4,1537 -1542253,rosehip_(girls_und_panzer),4,1536 -1231206,levi_(shingeki_no_kyojin),4,1535 -1407467,northern_white-faced_owl_(kemono_friends),4,1535 -697698,kirigaya_suguha,4,1531 -445901,gengar,4,1525 -1682833,satono_diamond_(umamusume),4,1525 -1561724,fukumaru_koito,4,1523 -657914,tokisaki_kurumi,4,1522 -1631141,libeccio_(kancolle),4,1522 -1560134,morpeko_(full),4,1522 -1560614,saren_(princess_connect!),4,1521 -1408471,camilla_(fire_emblem),4,1520 -674693,skyla_(pokemon),4,1514 -1814848,takodachi_(ninomae_ina'nis),4,1514 -1423783,eternity_larva,4,1512 -479648,hirasawa_ui,4,1510 -427708,ushiromiya_ange,4,1509 -354943,edward_elric,4,1505 -700409,tsumiki_mikan,4,1504 -1447804,oshida_(girls_und_panzer),4,1504 -547415,funami_yui,4,1503 -1253671,gamagoori_ira,4,1503 -1596245,kaeya_(genshin_impact),4,1501 -1304225,mikazuki_munechika,4,1500 -1561956,bremerton_(scorching-hot_training)_(azur_lane),4,1500 -595668,hatsune_miku_(append),4,1496 -404724,kagura_(gintama),4,1495 -1382909,kawakaze_(kancolle),4,1495 -1789597,asakura_toru,4,1495 -1629414,artoria_pendragon_(alter_swimsuit_rider)_(fate),4,1494 -11427,kasugano_sakura,4,1492 -1446812,honolulu_(azur_lane),4,1491 -1266581,ramlethal_valentine,4,1490 -8586,chibi_usa,4,1489 -1525545,fushiguro_megumi,4,1489 -1409154,tohru_(maidragon),4,1487 -1295790,widowmaker_(overwatch),4,1485 -559717,purple_heart,4,1484 -10546,vegeta,4,1479 -1627626,leonardo_da_vinci_(fate),4,1479 -1317200,endeavor_(boku_no_hero_academia),4,1475 -401594,palutena,4,1474 -1631052,isonami_(kancolle),4,1474 -1654650,skadi_the_corrupting_heart_(arknights),4,1474 -1459802,shirase_sakuya,4,1472 -414819,francesca_lucchini,4,1471 -1524986,specter_(arknights),4,1471 -418600,kamui_gakupo,4,1470 -1317067,ringo_(touhou),4,1470 -1467838,oguri_cap_(umamusume),4,1469 -432194,tina_branford,4,1465 -657793,cure_peace,4,1462 -1593680,ashiya_douman_(fate),4,1462 -1627803,yang_guifei_(fate),4,1462 -432816,kishibe_rohan,4,1459 -1303947,kashuu_kiyomitsu,4,1454 -1344592,matsuno_choromatsu,4,1454 -1551569,nian_(arknights),4,1454 -1613891,albedo_(genshin_impact),4,1451 -1629640,martha_(fate),4,1450 -722867,ymir_(shingeki_no_kyojin),4,1448 -1534779,artoria_pendragon_(swimsuit_ruler)_(fate),4,1448 -1407816,silver_fox_(kemono_friends),4,1443 -1594464,bloop_(gawr_gura),4,1443 -474547,uiharu_kazari,4,1441 -1631100,katori_(kancolle),4,1440 -56878,fujibayashi_kyou,4,1439 -8151,hino_rei,4,1437 -1493611,kemomimi-chan_(naga_u),4,1437 -1631208,myoukou_(kancolle),4,1435 -1630559,enemy_aircraft_(kancolle),4,1432 -1577501,lisa_(genshin_impact),4,1431 -1631408,tashkent_(kancolle),4,1429 -403378,yuffie_kisaragi,4,1428 -1644998,mihono_bourbon_(umamusume),4,1425 -445833,jessie_(pokemon),4,1424 -375109,midna,4,1423 -1695267,noire_(neptune_series),4,1422 -470503,konjiki_no_yami,4,1421 -1639094,murakumo_kai_ni_(kancolle),4,1419 -1528228,le_malin_(azur_lane),4,1418 -1622591,koharu_(blue_archive),4,1417 -11051,sonozaki_shion,4,1414 -436223,nanasaki_ai,4,1413 -1499780,jeanne_d'arc_(swimsuit_archer)_(fate),4,1413 -1631062,jervis_(kancolle),4,1411 -1257906,elsa_(frozen),4,1410 -1627580,helena_blavatsky_(fate),4,1410 -1405975,grey_wolf_(kemono_friends),4,1410 -428744,yuri_lowell,4,1409 -1627695,marie_antoinette_(fate),4,1409 -344358,roronoa_zoro,4,1407 -1410565,fujiwara_chika,4,1407 -1644994,mayano_top_gun_(umamusume),4,1405 -437685,bayonetta,4,1404 -1409820,ezo_red_fox_(kemono_friends),4,1401 -550010,tsukikage_yuri,4,1400 -1627756,scathach_skadi_(fate),4,1400 -1292970,yaoyorozu_momo,4,1399 -439343,ragna_the_bloodedge,4,1397 -1288044,popuko,4,1397 -1757557,jeanne_d'arc_alter_(ver._shinjuku_1999)_(fate),4,1397 -466937,higashi_setsuna,4,1396 -1630671,furutaka_(kancolle),4,1396 -1627727,osakabe-hime_(fate),4,1396 -8545,kamio_misuzu,4,1394 -1768632,mysterious_heroine_x_alter_(fate),4,1393 -1586174,momosuzu_nene,4,1393 -8107,bulma,4,1391 -1186381,arch_bishop_(ragnarok_online),4,1391 -674691,elesa_(pokemon),4,1391 -1421907,komi_shouko,4,1391 -1368824,takamaki_anne,4,1390 -518079,tiki_(fire_emblem),4,1389 -126661,furukawa_nagisa,4,1389 -1862749,aris_(blue_archive),4,1389 -1307612,nishi_kinuyo,4,1388 -1524993,saria_(arknights),4,1388 -401823,sonic_the_hedgehog,4,1387 -1365551,sakura_futaba,4,1387 -1786496,artoria_caster_(fate),4,1387 -1344595,matsuno_todomatsu,4,1385 -1495228,konno_junko,4,1385 -602082,charlotte_dunois,4,1384 -392481,madotsuki,4,1383 -1631161,mamiya_(kancolle),4,1383 -54495,jean_pierre_polnareff,4,1380 -1630726,hayashimo_(kancolle),4,1379 -707037,hoshi_syoko,4,1378 -1258989,failure_penguin,4,1378 -1532748,byleth_(fire_emblem)_(male),4,1371 -1599722,aru_(blue_archive),4,1371 -1304908,yamato-no-kami_yasusada,4,1369 -606875,little_red_riding_hood_(grimm),4,1368 -1572074,lucifer_(helltaker),4,1367 -419122,tatsumi_kanji,4,1364 -384100,natsume_rin,4,1363 -544077,kris_(pokemon),4,1362 -1534338,kicchou_yachie,4,1362 -1589926,kamina_(ttgl),4,1360 -592111,oshawott,4,1357 -695285,sakuma_mayu,4,1356 -682208,bridget_(guilty_gear),4,1354 -1630503,ark_royal_(kancolle),4,1351 -1459804,tsukioka_kogane,4,1351 -610092,yoshikawa_chinatsu,4,1349 -1525577,hoshiguma_(arknights),4,1348 -361258,ranma-chan,4,1347 -1462453,morino_rinze,4,1347 -714995,yuno_(hidamari_sketch),4,1344 -520787,elin,4,1342 -1631092,kamoi_(kancolle),4,1342 -1517401,lize_helesta,4,1342 -970886,roll_(mega_man),4,1338 -382240,nekomusume,4,1337 -1667148,m4a1_(girls'_frontline),4,1337 -935913,alice_margatroid_(pc-98),4,1335 -1588986,abigail_williams_(swimsuit_foreigner)_(fate),4,1334 -1243753,tsukumo_benben,4,1332 -510496,ryu_(street_fighter),4,1330 -446937,reiuji_utsuho_(bird),4,1330 -1533840,kurokoma_saki,4,1330 -8152,kino_makoto,4,1329 -1667154,an-94_(girls'_frontline),4,1329 -1674212,irys_(hololive),4,1327 -1551542,dido_(azur_lane),4,1325 -13037,yukishiro_honoka,4,1323 -424220,silver_(pokemon),4,1322 -1460817,kuwayama_chiyuki,4,1321 -1581646,noelle_(genshin_impact),4,1321 -1386217,umikaze_(kancolle),4,1320 -1419028,komano_aunn,4,1318 -1805355,suletta_mercury,4,1316 -1377502,tamura_yuri,4,1311 -1412756,theresa_apocalypse,4,1309 -1467925,vodka_(umamusume),4,1308 -1526355,wattson_(apex_legends),4,1308 -1539717,reze_(chainsaw_man),4,1308 -547150,myoudouin_itsuki,4,1307 -1433946,marina_(splatoon),4,1307 -1479089,okita_souji_alter_(fate),4,1306 -1631145,little_boy_admiral_(kancolle),4,1305 -1514982,elio_(pokemon),4,1305 -1451890,kaguya_luna,4,1304 -1618002,slime_(genshin_impact),4,1303 -816414,joseph_joestar_(old),4,1302 -1630693,hagikaze_(kancolle),4,1302 -1732422,kasumi_kai_ni_(kancolle),4,1302 -1584986,hoshino_(blue_archive),4,1301 -428824,bruno_bucciarati,4,1299 -1307567,cagliostro_(granblue_fantasy),4,1299 -1627148,koyanskaya_(fate),4,1299 -445414,bianca_(pokemon),4,1297 -663499,totoki_airi,4,1297 -658638,oreki_houtarou,4,1296 -1375862,mimikyu,4,1296 -1513845,scorbunny,4,1296 -387299,prisma_illya,4,1292 -1360561,natsuki_subaru,4,1292 -1438046,android_21,4,1292 -1631358,shouhou_(kancolle),4,1291 -451173,haramura_nodoka,4,1290 -617637,oomuro_sakurako,4,1290 -1695263,blanc_(neptune_series),4,1289 -1667146,g11_(girls'_frontline),4,1287 -1462526,higuchi_kaede,4,1286 -1549066,himemori_luna,4,1285 -1649113,gilles_de_rais_(caster)_(fate),4,1283 -487228,sengoku_nadeko,4,1283 -1304230,tsurumaru_kuninaga,4,1280 -396219,tokiko_(touhou),4,1276 -1597302,beidou_(genshin_impact),4,1275 -405776,riesz,4,1274 -1222667,ike_(fire_emblem),4,1274 -1630643,etorofu_(kancolle),4,1274 -1667152,m4_sopmod_ii_(girls'_frontline),4,1273 -1527621,marianne_von_edmund,4,1273 -1432308,nishida_satono,4,1272 -12091,tohno_akiha,4,1270 -1630653,fletcher_(kancolle),4,1269 -1392841,altera_(fate),4,1268 -1533372,miyamoto_musashi_(swimsuit_berserker)_(fate),4,1268 -416940,su-san,4,1267 -1258306,ninomiya_asuka,4,1267 -1682831,kitasan_black_(umamusume),4,1266 -1470527,natori_sana,4,1265 -489852,akizuki_ryo,4,1264 -1296572,todoroki_shouto,4,1259 -663460,sasaki_chie,4,1257 -1667150,st_ar-15_(girls'_frontline),4,1256 -1535146,schwarz_(arknights),4,1255 -1226975,diana_cavendish,4,1254 -653217,nepgear,4,1253 -1630497,arashi_(kancolle),4,1252 -1407454,atalanta_(fate),4,1249 -710980,kadotani_anzu,4,1247 -1406536,kagamihara_nadeshiko,4,1246 -1654886,kudamaki_tsukasa,4,1246 -622669,alisa_ilinichina_amiella,4,1245 -570743,kirin_(armor),4,1244 -1630636,enemy_lifebuoy_(kancolle),4,1244 -1525687,blue_poison_(arknights),4,1244 -1677020,fairy_knight_tristan_(fate),4,1242 -599168,hourai_doll,4,1241 -475559,araragi_koyomi,4,1240 -7449,daidouji_tomoyo,4,1238 -618147,honma_meiko,4,1238 -1511279,murasaki_shikibu_(fate),4,1237 -1508231,sunazuka_akira,4,1236 -532518,cure_marine,4,1233 -1544952,piers_(pokemon),4,1233 -464857,sailor_mercury,4,1231 -430852,hachikuji_mayoi,4,1231 -437588,kuma_(persona_4),4,1231 -1762182,ranni_the_witch,4,1231 -408655,kasane_teto,4,1230 -1631154,maikaze_(kancolle),4,1230 -1522707,siege_(arknights),4,1230 -1440177,z23_(azur_lane),4,1229 -433648,gyro_zeppeli,4,1228 -1305388,namazuo_toushirou,4,1226 -421102,minna-dietlinde_wilcke,4,1225 -1630544,colorado_(kancolle),4,1224 -1432310,teireida_mai,4,1223 -1627780,tokitarou_(fate),4,1222 -389156,frederica_bernkastel,4,1221 -1631255,ooshio_(kancolle),4,1221 -4908,kero,4,1220 -1513846,sobble,4,1219 -1525770,hop_(pokemon),4,1218 -1719005,hakui_koyori,4,1218 -445954,bulbasaur,4,1215 -618301,ivan_karelin,4,1215 -542683,sonya_(kill_me_baby),4,1214 -593284,naegi_makoto,4,1214 -1529257,robin_(fire_emblem)_(male),4,1214 -1425456,seele_vollerei,4,1213 -1631260,oyashio_(kancolle),4,1211 -1282191,hoshino_fumina,4,1210 -1388692,touhoku_kiritan,4,1210 -181219,kirijou_mitsuru,4,1208 -1631270,richelieu_(kancolle),4,1208 -596093,caren_hortensia,4,1205 -1300741,kousaka_reina,4,1205 -1305386,honebami_toushirou,4,1204 -1625330,hibiki_(blue_archive),4,1204 -597205,silica,4,1201 -11052,maebara_keiichi,4,1199 -734427,sona_(league_of_legends),4,1199 -592340,snivy,4,1197 -1675744,selen_tatsuki,4,1196 -633741,furutani_himawari,4,1194 -375278,tohsaka_tokiomi,4,1193 -1414917,alpaca_suri_(kemono_friends),4,1193 -1512399,wraith_(apex_legends),4,1193 -1299395,amanogawa_kirara,4,1192 -513774,shantae,4,1190 -1624311,nagi_(kannagi),4,1189 -1303946,midare_toushirou,4,1187 -1531714,baltimore_(azur_lane),4,1185 -533537,ciel_(tsukihime),4,1184 -1407495,eurasian_eagle_owl_(kemono_friends),4,1184 -1536889,kanroji_mitsuri,4,1181 -1622307,hasumi_(blue_archive),4,1181 -1472521,medea_(fate),4,1180 -1630505,asagumo_(kancolle),4,1178 -1443455,igarashi_futaba_(shiromanta),4,1178 -1441567,monika_(doki_doki_literature_club),4,1177 -681655,oikawa_shizuku,4,1175 -1242334,ta-class_battleship,4,1174 -1575935,nagatoro_hayase,4,1171 -1181678,boo_(mario),4,1168 -1341419,anila_(granblue_fantasy),4,1168 -1288043,pipimi,4,1166 -1383156,gladion_(pokemon),4,1163 -1571821,modeus_(helltaker),4,1163 -1542249,assam_(girls_und_panzer),4,1162 -1630538,chitose_(kancolle),4,1162 -1242336,ru-class_battleship,4,1160 -1827774,sanji_(one_piece),4,1158 -1533833,haniyasushin_keiki,4,1158 -1641844,yanfei_(genshin_impact),4,1157 -1399519,tamaki_iroha,4,1156 -7459,white_mage,4,1155 -1719006,kazama_iroha,4,1153 -375868,kururugi_suzaku,4,1152 -672515,abe_nana,4,1152 -1277829,sento_isuzu,4,1152 -1318793,zeta_(granblue_fantasy),4,1152 -1667157,m16a1_(girls'_frontline),4,1149 -717606,yukinoshita_yukino,4,1148 -1696728,rydia_(ff4),4,1147 -445832,james_(pokemon),4,1145 -445831,green_(pokemon),4,1145 -1292110,shidare_hotaru,4,1145 -1442807,marie_(girls_und_panzer),4,1145 -1374966,kamado_tanjirou,4,1144 -1544888,victor_(pokemon),4,1143 -1631180,mikuma_(kancolle),4,1142 -1305416,saniwa_(touken_ranbu),4,1142 -8760,kusanagi_motoko,4,1139 -1596439,mutsuki_(blue_archive),4,1139 -12208,shihouin_yoruichi,4,1138 -709319,yuigahama_yui,4,1134 -533539,kohaku_(tsukihime),4,1133 -1536880,zara_(azur_lane),4,1133 -644430,rias_gremory,4,1132 -1631019,i-26_(kancolle),4,1131 -1405299,emperor_penguin_(kemono_friends),4,1130 -1781047,artoria_pendragon_(alter_swimsuit_rider)_(second_ascension)_(fate),4,1129 -1630536,chikuma_(kancolle),4,1128 -1467946,haru_urara_(umamusume),4,1128 -1667163,commander_(girls'_frontline),4,1127 -1406070,jaguar_(kemono_friends),4,1127 -7559,luigi,4,1126 -1630717,hatsushimo_(kancolle),4,1126 -1496142,minamoto_sakura,4,1126 -10145,tsuruya,4,1125 -1630667,fumizuki_(kancolle),4,1125 -558421,high_priest_(ragnarok_online),4,1122 -1630715,hatsukaze_(kancolle),4,1122 -464855,sailor_venus,4,1121 -459048,momozono_love,4,1121 -1627521,boudica_(fate),4,1118 -575975,iris_(pokemon),4,1117 -544078,lucas_(pokemon),4,1116 -425768,umbreon,4,1116 -528716,yui_(angel_beats!),4,1116 -746341,tharja_(fire_emblem),4,1116 -1399291,pod_(nier_automata),4,1116 -1368823,niijima_makoto,4,1115 -374467,princess_daisy,4,1114 -1724523,irida_(pokemon),4,1114 -1452674,frankenstein's_monster_(fate),4,1113 -727697,sylveon,4,1113 -1492381,shiina_yuika,4,1113 -630836,huang_baoling,4,1112 -1525780,rotom_phone,4,1112 -502557,nu-13,4,1111 -1639053,fubuki_kai_ni_(kancolle),4,1111 -1495229,mizuno_ai,4,1111 -1657251,elira_pendora,4,1111 -1492855,hawks_(boku_no_hero_academia),4,1110 -12518,leona_heidern,4,1108 -1401930,nemoto_hina,4,1108 -712140,kawashima_momo,4,1107 -1589903,yin_(darker_than_black),4,1105 -1239071,tsukuyomi_shirabe,4,1105 -1498626,rita_rossweisse,4,1105 -445848,squirtle,4,1104 -1292974,ashido_mina,4,1104 -1645011,tamamo_cross_(umamusume),4,1104 -1496188,yuzuki_choco,4,1104 -1626315,dusk_(arknights),4,1103 -1556681,rex_(xenoblade),4,1102 -1349628,fubuki_(one-punch_man),4,1100 -1125853,enkidu_(fate),4,1098 -1304228,izumi-no-kami_kanesada,4,1097 -464856,sailor_mars,4,1096 -1431995,minamoto_no_raikou_(swimsuit_lancer)_(fate),4,1095 -1594449,kashino_(azur_lane),4,1095 -1542542,higashiyama_kobeni,4,1094 -1631147,littorio_(kancolle),4,1093 -1846970,rebecca_(cyberpunk),4,1093 -1281721,slaine_troyard,4,1092 -1619061,jumpy_dumpty,4,1091 -1232066,armin_arlert,4,1089 -555,haro,4,1088 -1440247,yamashiro_(azur_lane),4,1088 -1534340,joutouguu_mayumi,4,1088 -1589993,chongyun_(genshin_impact),4,1088 -1629448,passionlip_(fate),4,1086 -1631088,kako_(kancolle),4,1086 -1631518,zara_(kancolle),4,1086 -1846070,hibiki_(cheerleader)_(blue_archive),4,1086 -423518,berserker_(fate/zero),4,1085 -420502,guido_mista,4,1085 -1631246,nowaki_(kancolle),4,1085 -1629366,xuangzang_sanzang_(fate),4,1085 -396070,watatsuki_no_toyohime,4,1084 -425771,glaceon,4,1083 -713156,hoshimiya_ichigo,4,1082 -1630728,hayasui_(kancolle),4,1080 -1518710,hisakawa_hayate,4,1079 -1489783,carpaccio_(girls_und_panzer),4,1077 -1298160,kotonoha_akane,4,1077 -1391739,karna_(fate),4,1076 -528478,sabrina_(pokemon),4,1074 -1644983,eishin_flash_(umamusume),4,1073 -550750,cure_sunshine,4,1072 -1447775,katou_asuka,4,1072 -1631068,johnston_(kancolle),4,1072 -421683,angel_(kof),4,1071 -1481030,caenis_(fate),4,1071 -1517396,ange_katrina,4,1070 -1518711,hisakawa_nagi,4,1070 -422389,cyndaquil,4,1069 -902082,tateyama_ayano,4,1069 -1295903,pharah_(overwatch),4,1069 -1560602,kyouka_(princess_connect!),4,1069 -421660,tsunade_(naruto),4,1067 -1533343,bede_(pokemon),4,1067 -542685,oribe_yasuna,4,1065 -1332548,chi-chi_(dragon_ball),4,1064 -472786,america_(hetalia),4,1063 -657796,cure_beauty,4,1062 -1527167,azura_(fire_emblem),4,1060 -7583,fukuzawa_yumi,4,1059 -564326,nakamura_yuri,4,1059 -1517393,inui_toko,4,1059 -1611363,kureiji_ollie,4,1059 -416695,uryuu_ryuunosuke,4,1058 -1589994,xingqiu_(genshin_impact),4,1058 -394620,yuuki_mikan,4,1057 -1814893,magical_mirai_miku,4,1055 -1629357,medb_(fate),4,1055 -1462508,tokino_sora,4,1054 -8305,tomoe_hotaru,4,1052 -1627153,medjed_(fate),4,1051 -1522347,suzuhara_lulu,4,1051 -1515913,reines_el-melloi_archisorte,4,1050 -1440644,inuyama_aoi,4,1049 -12258,katsuragi_misato,4,1046 -503437,eve_(elsword),4,1046 -1177793,katou_megumi,4,1046 -439063,rachel_alucard,4,1043 -12210,kuchiki_rukia,4,1042 -15312,millia_rage,4,1040 -1685273,tsukumo_sana,4,1040 -532519,cure_blossom,4,1039 -587823,tsurumaki_maki,4,1039 -1631192,mochizuki_(kancolle),4,1038 -1541326,hoshikawa_sara,4,1038 -1789592,osaki_amana,4,1036 -6177,moogle,4,1034 -601379,takagi-san,4,1034 -1620953,hifumi_(blue_archive),4,1034 -654355,kazanari_tsubasa,4,1033 -1515526,serizawa_asahi,4,1033 -485033,sora_(kingdom_hearts),4,1032 -1732814,kongou_kai_ni_(kancolle),4,1031 -1607439,arjuna_(fate),4,1031 -1343724,miyamizu_mitsuha,4,1031 -382261,subaru_nakajima,4,1029 -596939,akali,4,1029 -1402193,nanachi_(made_in_abyss),4,1027 -1420942,yuuki_setsuna_(love_live!),4,1027 -445845,charmander,4,1025 -428743,estellise_sidos_heurassein,4,1025 -592339,tepig,4,1024 -1387115,scathach_(swimsuit_assassin)_(fate),4,1024 -1593360,bibi_(tokoyami_towa),4,1023 -1617664,rosaria_(genshin_impact),4,1023 -186196,winry_rockbell,4,1021 -1241333,sanageyama_uzu,4,1020 -101524,bowser,4,1019 -15840,kos-mos,4,1018 -1155353,kars_(jojo),4,1018 -664191,tada_riina,4,1018 -1241962,kishinami_hakuno_(female),4,1017 -1541815,rabbit_yukine,4,1017 -1334378,albedo_(overlord),4,1017 -1366296,popplio,4,1017 -1448421,pearl_(splatoon),4,1016 -1525546,kugisaki_nobara,4,1016 -1554856,hayakawa_aki,4,1016 -1304904,horikawa_kunihiro,4,1014 -1522439,niwatari_kutaka,4,1014 -1280966,kaneki_ken,4,1013 -1722586,abigail_williams_(traveling_outfit)_(fate),4,1013 -1509864,prinz_eugen_(unfading_smile)_(azur_lane),4,1012 -1530489,eyjafjalla_(arknights),4,1012 -1646767,twin_turbo_(umamusume),4,1012 -7566,kamikita_komari,4,1010 -628623,sorceress_(dragon's_crown),4,1009 -12099,komaki_manaka,4,1008 -1462463,arisugawa_natsuha,4,1008 -1503277,makaino_ririmu,4,1008 -1519338,nursery_rhyme_(fate),4,1007 -1631276,roma_(kancolle),4,1007 -1436151,uzaki_hana,4,1006 -87514,cure_black,4,1005 -1318266,clarisse_(granblue_fantasy),4,1004 -425767,espeon,4,1003 -1631106,kazagumo_(kancolle),4,1002 -1334050,frisk_(undertale),4,1002 -1462454,sonoda_chiyoko,4,999 -9090,mizunashi_akari,4,998 -385133,ushiromiya_maria,4,998 -705643,ib_(ib),4,998 -716728,kitashirakawa_tamako,4,998 -1341416,ferry_(granblue_fantasy),4,995 -1412049,mitake_ran,4,994 -1350177,violet_evergarden,4,993 -1805391,miorine_rembran,4,993 -1627618,king_hassan_(fate),4,992 -1243761,tsukumo_yatsuhashi,4,991 -1386434,momota_kaito,4,990 -715313,marth_(fire_emblem),4,989 -1319288,yoroizuka_mizore,4,989 -1459806,tanaka_mamimi,4,989 -1631437,tsushima_(kancolle),4,988 -1285741,suzukaze_aoba,4,986 -1643885,mari_(blue_archive),4,985 -657794,cure_march,4,983 -1639062,haruna_kai_ni_(kancolle),4,983 -286,kooh,4,982 -176593,takeba_yukari,4,982 -1631396,takanami_(kancolle),4,982 -1548047,vikala_(granblue_fantasy),4,982 -1229728,kitazawa_shiho,4,981 -1292136,raphtalia,4,981 -1462457,komiya_kaho,4,981 -677075,reiner_braun,4,979 -1387746,yuri_plisetsky,4,978 -539676,taneshima_popura,4,977 -1631040,intrepid_(kancolle),4,977 -1333583,kozakura_marry,4,974 -1630474,akitsushima_(kancolle),4,974 -657791,cure_happy,4,971 -1660217,lucoa_(maidragon),4,971 -431436,momo_velia_deviluke,4,970 -1806092,shiroko_(swimsuit)_(blue_archive),4,970 -1768637,miyu_(blue_archive),4,970 -1403111,sucy_manbavaran,4,969 -464858,sailor_jupiter,4,968 -1513843,grookey,4,967 -14569,jill_valentine,4,966 -402795,meowth,4,966 -717859,nate_(pokemon),4,965 -717540,yotsuba_alice,4,965 -7570,hina_ichigo,4,964 -12207,inoue_orihime,4,964 -480039,manabe_nodoka,4,963 -605171,kujou_karen,4,963 -1435314,oyama_mahiro,4,962 -401814,saotome_alto,4,960 -594282,cure_melody,4,960 -16268,son_gohan,4,958 -1257905,shirayuki_hime,4,958 -487246,araragi_karen,4,956 -618134,karina_lyle,4,956 -1783170,meltryllis_(swimsuit_lancer)_(first_ascension)_(fate),4,955 -1579977,cheshire_(azur_lane),4,955 -1654887,iizunamaru_megumu,4,955 -1303902,miss_cloud,4,952 -472784,japan_(hetalia),4,951 -1362417,elaina_(majo_no_tabitabi),4,951 -1290263,danua,4,950 -1349627,saitama_(one-punch_man),4,948 -1464773,nakano_itsuki,4,948 -7587,toudou_shimako,4,946 -655527,kayneth_el-melloi_archibald,4,946 -445933,vaporeon,4,946 -1442307,ichigo_(darling_in_the_franxx),4,946 -1584985,nonomi_(blue_archive),4,946 -354942,alphonse_elric,4,945 -13066,okazaki_yumemi,4,945 -1572402,xiangling_(genshin_impact),4,945 -9687,kula_diamond,4,944 -1373495,airfield_princess,4,943 -6000,baiken,4,942 -1230568,isabelle_(animal_crossing),4,939 -1401126,yorha_type_a_no._2,4,938 -1684882,florence_nightingale_(trick_or_treatment)_(fate),4,938 -554323,may_(guilty_gear),4,937 -1583984,kino_(kino_no_tabi),4,937 -445840,jigglypuff,4,937 -597292,fujisaki_chihiro,4,936 -472787,united_kingdom_(hetalia),4,934 -1767936,cu_chulainn_alter_(fate),4,934 -1654888,tenkyuu_chimata,4,934 -664000,ichihara_nina,4,933 -717654,kiriya_aoi,4,931 -615130,anjou_naruko,4,930 -1630481,amagi_(kancolle),4,929 -1436229,uehara_ayumu,4,929 -533538,hisui_(tsukihime),4,928 -701392,mioda_ibuki,4,928 -1644977,agnes_digital_(umamusume),4,928 -508153,okabe_rintarou,4,927 -713607,sawa_azusa,4,927 -1473353,arthur_pendragon_(fate),4,926 -1766156,astolfo_(sailor_paladin)_(fate),4,926 -376498,zidane_tribal,4,925 -1323324,yuna_(ff10),4,922 -456946,assassin_(fate/zero),4,922 -610702,oktavia_von_seckendorff,4,919 -628849,yuuki_(sao),4,919 -1630548,commandant_teste_(kancolle),4,919 -438329,torchic,4,918 -471218,aragaki_ayase,4,918 -745262,celestia_ludenberg,4,918 -1631110,kinu_(kancolle),4,916 -1645007,seiun_sky_(umamusume),4,916 -1677018,fairy_knight_gawain_(fate),4,916 -10082,sephiroth,4,915 -688703,miia_(monster_musume),4,915 -1606513,len_(tsukihime),4,914 -1672711,suomi_(girls'_frontline),4,914 -12093,tohno_shiki,4,913 -606666,shindou_takuto,4,913 -1631480,yamagumo_(kancolle),4,913 -620348,keith_goodman,4,912 -1405056,lion_(kemono_friends),4,912 -1055501,micaiah_(fire_emblem),4,911 -439615,misaka_imouto,4,910 -1478568,merlin_(fate),4,910 -1445023,hikawa_hina,4,908 -567695,cheren_(pokemon),4,907 -1468121,nakano_ichika,4,907 -1677022,fairy_knight_lancelot_(fate),4,907 -16210,lenna_charlotte_tycoon,4,901 -388724,lala_satalin_deviluke,4,900 -1783064,miyamoto_musashi_(swimsuit_berserker)_(second_ascension)_(fate),4,900 -1591636,goh_(pokemon),4,899 -1515002,aisha_landar,4,898 -425936,doujima_nanako,4,898 -1533061,bernadetta_von_varley,4,898 -1627134,euryale_(fate),4,897 -676594,lulu_(league_of_legends),4,897 -474262,slime_(dragon_quest),4,896 -471221,kousaka_kyousuke,4,896 -1630493,aquila_(kancolle),4,896 -1235294,kurokawa_eren,4,895 -1304226,hotarumaru,4,894 -1444059,hammann_(azur_lane),4,894 -1459172,sakuragi_mano,4,894 -1564800,moona_hoshinova,4,894 -1598866,sucrose_(genshin_impact),4,894 -1672682,type_95_(girls'_frontline),4,892 -1631536,hilichurl_(genshin_impact),4,891 -1762549,mordred_(memories_at_trifas)_(fate),4,889 -1319289,kasaki_nozomi,4,889 -16119,star_platinum,4,888 -428825,narancia_ghirga,4,888 -743241,racing_miku,4,888 -1644970,grass_wonder_(umamusume),4,888 -1487055,sasaki_saku,4,888 -378846,tenjouin_asuka,4,887 -252261,godzilla,4,887 -1667166,ro635_(girls'_frontline),4,887 -1439987,cleveland_(azur_lane),4,887 -1311289,lyria_(granblue_fantasy),4,886 -1631984,ako_(blue_archive),4,886 -1314604,sakurajima_mai,4,885 -1534941,claude_von_riegan,4,885 -664381,mukai_takumi,4,884 -1254335,marie_rose,4,884 -1366290,okumura_haru,4,884 -663434,kohinata_miho,4,883 -1688938,vira_(granblue_fantasy),4,883 -1439979,graf_zeppelin_(azur_lane),4,883 -1477331,osaki_tenka,4,883 -596161,steven_stone,4,882 -601489,maizono_sayaka,4,882 -1459180,kazano_hiori,4,882 -547417,sugiura_ayano,4,881 -587354,lux_(league_of_legends),4,881 -1235700,seiren_(suite_precure),4,880 -662499,nibutani_shinka,4,880 -396114,lei_lei,4,878 -1631064,jingei_(kancolle),4,876 -1298161,kotonoha_aoi,4,875 -1420690,hikawa_sayo,4,875 -1500657,hayasaka_ai,4,875 -1525261,platinum_(arknights),4,875 -16208,faris_scherwiz,4,873 -378317,garnet_til_alexandros_xvii,4,873 -621741,nyarlathotep_(nyaruko-san),4,873 -1292965,jirou_kyouka,4,873 -1524996,ifrit_(arknights),4,873 -1524346,pramanix_(arknights),4,872 -1275716,hatsuharu_(kancolle),4,871 -1690906,kamisato_ayato,4,871 -661692,dante_(devil_may_cry),4,870 -660387,annie_leonhardt,4,870 -1631235,nenohi_(kancolle),4,870 -1246021,momoe_nagisa,4,870 -1456824,nekomusume_(gegege_no_kitarou_6),4,870 -12213,matsumoto_rangiku,4,868 -1630540,chiyoda_(kancolle),4,867 -12095,aozaki_aoko,4,866 -1462223,hatoba_tsugu,4,866 -1557434,ceobe_(arknights),4,866 -1606545,diona_(genshin_impact),4,865 -726764,sakura_chiyo,4,864 -1591011,nia_(blade)_(xenoblade),4,864 -1569872,yuuki_(princess_connect!),4,864 -1594283,shinano_(azur_lane),4,864 -1594498,alice_zuberg,4,863 -1257904,aino_megumi,4,863 -1337528,aki_(girls_und_panzer),4,863 -411080,lopunny,4,862 -665521,ogata_chieri,4,861 -893075,suou_momoko,4,861 -1461094,shizuka_rin,4,860 -1480638,nadia_la_arwall,4,859 -526169,trunks_(dragon_ball),4,859 -491993,chibi_miku,4,859 -657795,cure_sunny,4,859 -1258956,anna_(frozen),4,859 -466365,mega_man_(character),4,858 -1552816,blaze_(arknights),4,858 -1719012,takane_lui,4,858 -1455448,nagato_(azur_lane),4,857 -465401,ten'ou_haruka,4,856 -981832,guts_(berserk),4,855 -503373,furudo_erika,4,854 -701163,kisaragi_shintarou,4,854 -1340376,murata_himeko,4,854 -1544890,allister_(pokemon),4,854 -87516,cure_white,4,853 -1829230,octoling_girl,4,853 -1267895,ayane_(doa),4,851 -452145,miyanaga_saki,4,851 -487224,kanbaru_suruga,4,851 -890228,alisa_(girls_und_panzer),4,851 -1478519,cu_chulainn_(caster)_(fate),4,851 -1304346,yagen_toushirou,4,851 -1479891,rimuru_tempest,4,851 -1427681,luoxiaohei,4,851 -1572068,cerberus_(helltaker),4,851 -602083,laura_bodewig,4,849 -606793,alastor_(shakugan_no_shana),4,848 -416104,eva_02,4,848 -461883,chikorita,4,848 -1630999,hiyou_(kancolle),4,848 -557902,priest_(ragnarok_online),4,847 -1243506,magical_ruby,4,847 -411757,roy_(fire_emblem),4,847 -425769,leafeon,4,847 -717114,kasumigaoka_utaha,4,847 -1644982,curren_chan_(umamusume),4,847 -1246632,monomi_(danganronpa),4,846 -1537880,dimitri_alexandre_blaiddyd,4,845 -1627523,bradamante_(fate),4,845 -520564,lucy_heartfilia,4,844 -588022,cecilia_alcott,4,844 -1275714,arare_(kancolle),4,844 -381743,yumehara_nozomi,4,843 -652455,maou_(maoyuu),4,843 -712653,kondou_taeko,4,843 -1631178,mikazuki_(kancolle),4,842 -1682834,matikane_tannhauser_(umamusume),4,842 -437349,garchomp,4,841 -877404,yokoyama_nao,4,840 -1631405,tanikaze_(kancolle),4,840 -1412894,tsurumaki_kokoro,4,840 -1584990,arona_(blue_archive),4,840 -1592675,bianca_(dq5),4,838 -1631297,samuel_b._roberts_(kancolle),4,837 -1578300,taihou_(enraptured_companion)_(azur_lane),4,837 -1733431,murasame_kai_ni_(kancolle),4,836 -1631290,sagiri_(kancolle),4,836 -1792537,zabaniyya_(housamo),4,836 -1533059,dorothea_arnault,4,836 -662826,himejima_akeno,4,835 -1631170,matsuwa_(kancolle),4,834 -1439994,akashi_(azur_lane),4,833 -1525557,nanami_kento,4,832 -1551985,sirius_(azure_horizons)_(azur_lane),4,832 -1222099,nanao_yuriko,4,830 -1551455,silence_(arknights),4,830 -445935,flareon,4,829 -623899,shirabe_ako,4,829 -382135,reinforce_zwei,4,828 -467599,takoluka,4,828 -1270627,jouga_maya,4,828 -1327418,maria_cadenzavna_eve,4,825 -1205702,kirishima_touka,4,825 -1560591,yui_(princess_connect!),4,825 -1345441,asahina_mirai,4,825 -1572071,justice_(helltaker),4,825 -1645715,zero_(mega_man),4,824 -1239636,inumuta_houka,4,824 -1605760,iori_(blue_archive),4,824 -1285682,iroha_(samurai_spirits),4,823 -1644965,air_groove_(umamusume),4,823 -691588,pit_(kid_icarus),4,822 -457596,diego_brando,4,822 -1279056,revy_(black_lagoon),4,821 -1124739,angela_balzac,4,821 -1515527,izumi_mei,4,821 -14172,rainbow_mika,4,820 -398745,lambdadelta,4,820 -420074,izayoi_aki,4,820 -1528909,corrin_(fire_emblem)_(male),4,819 -1631288,sado_(kancolle),4,818 -1536980,zara_(poolside_coincidence)_(azur_lane),4,818 -1644973,narita_brian_(umamusume),4,817 -1631002,hornet_(kancolle),4,817 -1390755,cosmog,4,816 -1263716,kiss-shot_acerola-orion_heart-under-blade,4,815 -1247199,braixen,4,815 -1630508,asakaze_(kancolle),4,815 -1571010,takasaki_yuu,4,815 -507427,anegasaki_nene,4,814 -1572599,rosmontis_(arknights),4,813 -1753908,goldenglow_(arknights),4,812 -439179,mohammed_avdol,4,811 -1291135,elphelt_valentine,4,811 -8711,prinny,4,810 -654784,lord_el-melloi_ii,4,810 -435392,boa_hancock,4,809 -628333,yumi_(senran_kagura),4,809 -1293670,yamada_elf,4,809 -536735,yuuki_juudai,4,807 -666040,takamori_aiko,4,807 -1351075,yunyun_(konosuba),4,807 -176585,yamagishi_fuuka,4,806 -50896,pichu,4,806 -429524,mudkip,4,806 -1408788,brown_bear_(kemono_friends),4,806 -434747,kira_yoshikage,4,805 -1630704,harukaze_(kancolle),4,805 -1439976,kisaragi_(azur_lane),4,805 -1353706,mumei_(kabaneri),4,804 -1367142,litten,4,804 -487247,araragi_tsukihi,4,803 -711467,kamukura_izuru,4,803 -1462595,andira_(granblue_fantasy),4,803 -1631293,sakawa_(kancolle),4,802 -1369698,hau_(pokemon),4,801 -378592,usada_hikaru,4,799 -400139,kaiou_michiru,4,799 -1790620,clumsy_nun_(diva),4,799 -1760945,kuki_shinobu,4,799 -555676,makoto_(street_fighter),4,798 -538729,cure_moonlight,4,798 -1629426,mysterious_heroine_x_(fate),4,798 -1765868,jeanne_d'arc_alter_(avenger)_(third_ascension)_(fate),4,798 -1506004,amagi_(azur_lane),4,798 -1628204,momoi_(blue_archive),4,798 -1768617,scathach_(piercing_bunny)_(fate),4,794 -668055,kohinata_miku,4,793 -1628203,midori_(blue_archive),4,793 -414192,rx-78-2,4,792 -436529,toon_link,4,792 -1304942,female_saniwa_(touken_ranbu),4,792 -1443456,takeda_harumi_(shiromanta),4,792 -616166,caitlyn_(league_of_legends),4,791 -1374971,female_protagonist_(pokemon_go),4,791 -1420943,tennouji_rina,4,791 -684942,garry_(ib),4,790 -713599,koyama_yuzu,4,790 -1302247,sawamura_spencer_eriri,4,790 -1695265,vert_(neptune_series),4,789 -1644990,king_halo_(umamusume),4,789 -1846972,lucy_(cyberpunk),4,789 -1764432,jeanne_d'arc_(third_ascension)_(fate),4,788 -1252365,calem_(pokemon),4,787 -1270628,natsu_megumi,4,787 -1472931,y'shtola_rhul,4,786 -664518,kobayakawa_sae,4,786 -390798,eva_01,4,783 -462517,yamabuki_inori,4,783 -1407120,humboldt_penguin_(kemono_friends),4,783 -1456294,admiral_graf_spee_(azur_lane),4,783 -1233044,yuuki_haru,4,782 -420577,shampoo_(ranma_1/2),4,781 -455510,cure_peach,4,781 -1432652,jack-o'_valentine,4,781 -1578189,atago_(stunning_speedster)_(azur_lane),4,781 -1398095,hinatsuru_ai,4,780 -437875,takei_hisa,4,779 -1452666,brynhildr_(fate),4,779 -664499,hino_akane_(idolmaster),4,778 -1627556,edmond_dantes_(fate),4,778 -701389,sonia_nevermind,4,777 -1579913,yamato_(one_piece),4,777 -1404427,tsuchinoko_(kemono_friends),4,776 -1569874,yuni_(princess_connect!),4,776 -1561721,ichikawa_hinana,4,776 -1211856,kiki_(majo_no_takkyuubin),4,775 -1419237,tanned_cirno,4,775 -1405052,moose_(kemono_friends),4,775 -1600783,ryoumen_sukuna_(jujutsu_kaisen),4,775 -1379601,guzma_(pokemon),4,773 -765367,chrom_(fire_emblem),4,771 -1593833,crewmate_(among_us),4,771 -16164,celes_chere,4,770 -545377,pannacotta_fugo,4,770 -1680386,senji_muramasa_(fate),4,770 -1645001,narita_taishin_(umamusume),4,770 -1489740,aki_rosenthal,4,770 -633080,takakura_himari,4,769 -1306594,ichigo_hitofuri,4,769 -1645009,super_creek_(umamusume),4,769 -1637361,pyra_(pro_swimmer)_(xenoblade),4,769 -1416553,maruyama_aya,4,768 -1634345,izuna_(blue_archive),4,768 -664409,sajo_yukimi,4,767 -1388311,elizabeth_bathory_(brave)_(fate),4,767 -1768610,saber_alter_(ver._shinjuku_1999)_(fate),4,767 -1701951,arataki_itto,4,765 -1766600,abigail_williams_(third_ascension)_(fate),4,764 -1667213,m200_(girls'_frontline),4,764 -9881,meer_campbell,4,763 -702015,matoi_(pso2),4,763 -693236,ibuki_(street_fighter),4,762 -601752,milla_maxwell,4,762 -664406,natalia_(idolmaster),4,762 -1462589,zooey_(granblue_fantasy),4,762 -1522437,feater_(arknights),4,762 -1589614,pochita_(chainsaw_man),4,762 -1675004,elysia_(honkai_impact),4,762 -381201,konpaku_youki,4,761 -14899,yamamura_sadako,4,761 -1245116,ri-class_heavy_cruiser,4,761 -1471118,roon_(azur_lane),4,761 -668312,senkawa_chihiro,4,760 -1394776,acerola_(pokemon),4,760 -1475191,aoba_moca,4,760 -790426,ara_haan,4,759 -1346609,beatrix_(granblue_fantasy),4,759 -1667171,g36_(girls'_frontline),4,759 -1705709,irene_(arknights),4,759 -700633,ene_(kagerou_project),4,757 -1629302,gawain_(fate),4,757 -1259432,oomori_yuuko,4,757 -1505470,galo_thymos,4,757 -1624414,neru_(blue_archive),4,757 -1447950,nearl_(arknights),4,756 -1591026,pneuma_(xenoblade),4,756 -1572332,helltaker_(character),4,756 -1337529,mikko_(girls_und_panzer),4,755 -1782427,bb_(swimsuit_mooncancer)_(second_ascension)_(fate),4,755 -1706706,toutetsu_yuuma,4,755 -1257345,harime_nui,4,754 -1631233,nelson_(kancolle),4,754 -1784572,abigail_williams_(swimsuit_foreigner)_(third_ascension)_(fate),4,754 -506315,yumeko_(touhou),4,753 -428827,trish_una,4,751 -1631216,nagara_(kancolle),4,751 -1435684,merlin_(fate/prototype),4,751 -1398097,sora_ginko,4,750 -1538828,ingrid_brandl_galatea,4,749 -1587911,tomimi_(arknights),4,749 -1790903,lisbeth_(sao),4,748 -1643688,azusa_(blue_archive),4,748 -1657252,pomu_rainpuff,4,748 -1249877,iori_rinko,4,747 -4858,chocobo,4,746 -419659,rita_mordio,4,745 -552918,kaine_(nier),4,743 -1573721,st._louis_(luxurious_wheels)_(azur_lane),4,743 -396395,naoe_riki,4,742 -662005,mifune_miyu,4,742 -1440255,yuudachi_(azur_lane),4,742 -1531303,swire_(arknights),4,742 -597426,eirika_(fire_emblem),4,741 -427882,bazett_fraga_mcremitz,4,740 -423092,dead_master,4,740 -708151,kido_tsubomi,4,740 -1515003,rena_erindel,4,739 -1246940,matoba_risa,4,739 -1420954,nakasu_kasumi,4,739 -1480691,platelet_(hataraku_saibou),4,739 -432714,trafalgar_law,4,738 -1441359,shoukaku_(azur_lane),4,738 -1674016,manya_(dq4),4,737 -464859,sailor_saturn,4,737 -693559,ingo_(pokemon),4,737 -717909,vi_(league_of_legends),4,737 -1586655,eunectes_(arknights),4,737 -1667329,oberon_(fate),4,737 -11594,lina_inverse,4,736 -1304907,gokotai,4,736 -1657250,finana_ryugu,4,736 -1644995,meisho_doto_(umamusume),4,735 -1597904,shishio_chris,4,735 -1526525,jill_stingray,4,734 -1783171,meltryllis_(swimsuit_lancer)_(second_ascension)_(fate),4,734 -672299,oshino_ougi,4,733 -1630639,enemy_naval_mine_(kancolle),4,733 -1310847,hunter_(bloodborne),4,733 -1711621,master_3_(housamo),4,733 -1528128,himeno_(chainsaw_man),4,733 -254440,kirlia,4,732 -432818,hirose_koichi,4,732 -680146,mary_(ib),4,732 -712651,isobe_noriko,4,732 -1305420,shokudaikiri_mitsutada,4,732 -1781830,jeanne_d'arc_(swimsuit_archer)_(first_ascension)_(fate),4,732 -1627248,shun_(blue_archive),4,732 -400328,okita_sougo,4,731 -1228013,regina_(dokidoki!_precure),4,731 -1631231,natori_(kancolle),4,730 -1527683,yamper,4,730 -1538944,sussurro_(arknights),4,730 -1627531,carmilla_(fate),4,727 -1413408,small-clawed_otter_(kemono_friends),4,727 -402521,meta_knight,4,726 -1344498,vane_(granblue_fantasy),4,726 -1663193,white_rabbit_(alice_in_wonderland),4,725 -1237385,akaboshi_koume,4,725 -1522750,projekt_red_(arknights),4,724 -1478614,wakan_tanka,4,723 -1496206,kuzuha_(nijisanji),4,723 -1504965,hagoromo_lala,4,723 -1626978,reisen_(touhou_bougetsushou),4,722 -1305382,kogitsunemaru,4,722 -1627732,paul_bunyan_(fate),4,722 -1431868,nitocris_(swimsuit_assassin)_(fate),4,721 -1627625,lavinia_whateley_(fate),4,720 -716715,cure_heart,4,719 -1299400,haruno_haruka,4,719 -1755026,fujimaru_ritsuka_(male)_(polar_chaldea_uniform),4,719 -1240487,yusa_kozue,4,718 -1400058,satanichia_kurumizawa_mcdowell,4,718 -1631012,i-13_(kancolle),4,718 -1505029,leonardo_da_vinci_(rider)_(fate),4,718 -935914,kazami_yuuka_(pc-98),4,717 -520900,sf-a2_miki,4,716 -1631108,kikuzuki_(kancolle),4,716 -1468152,roboco-san,4,716 -1261730,elesis_(elsword),4,715 -593801,cure_rhythm,4,714 -1386435,yumeno_himiko,4,712 -1708017,sirius_(scorching-hot_seirios)_(azur_lane),4,712 -1281005,naomi_(girls_und_panzer),4,711 -742395,toudou_yurika,4,711 -1479269,tomioka_giyuu,4,711 -1597903,ryugasaki_rene,4,711 -1665751,t-head_trainer,4,711 -1447393,alina_gray,4,710 -462261,nikka_edvardine_katajainen,4,709 -1765330,elizabeth_bathory_(first_ascension)_(fate),4,708 -1496591,nikaidou_saki,4,708 -1693731,mash_kyrielight_(swimsuit_of_perpetual_summer),4,707 -1667168,dinergate_(girls'_frontline),4,707 -422506,erika_(pokemon),4,706 -1631249,okinami_(kancolle),4,706 -1443050,zuikaku_(azur_lane),4,706 -1631262,perth_(kancolle),4,706 -1790618,froggy_nun_(diva),4,706 -1665128,gorou_(genshin_impact),4,706 -566218,platinum_the_trinity,4,705 -1791907,utsumi_erice,4,705 -644034,kariya_masaki,4,704 -1386439,iruma_miu,4,704 -1477969,sister_cleaire,4,704 -1272430,isolated_island_oni,4,703 -1646429,fukuda_haru,4,701 -391387,akita_neru,4,700 -516743,lance_(pokemon),4,700 -523901,shinonome_nano,4,700 -1237658,error_musume,4,699 -1627167,stheno_(fate),4,698 -1399945,tanya_degurechaff,4,698 -1644996,mejiro_dober_(umamusume),4,698 -1758613,ui_(blue_archive),4,698 -1229736,satake_minako,4,697 -1528912,takumi_(fire_emblem),4,697 -1676518,thoma_(genshin_impact),4,697 -1631044,irako_(kancolle),4,695 -1786499,artoria_caster_(second_ascension)_(fate),4,695 -1762593,kirisawa_juuzou_(character),4,694 -1305340,morgana_(persona_5),4,694 -1533069,rhea_(fire_emblem),4,694 -1555021,sei_shounagon_(fate),4,694 -1386133,ogata_hyakunosuke,4,693 -1755030,fujimaru_ritsuka_(female)_(polar_chaldea_uniform),4,691 -1276392,otokura_yuuki,4,689 -1401541,izayoi_liko,4,689 -1459805,yukoku_kiriko,4,689 -559713,black_heart,4,687 -1346345,takimoto_hifumi,4,687 -1441569,yuri_(doki_doki_literature_club),4,686 -1644984,fine_motion_(umamusume),4,686 -1644976,admire_vega_(umamusume),4,686 -1630689,grecale_(kancolle),4,686 -1571004,shibuya_kanon,4,686 -1452677,semiramis_(fate),4,685 -1627797,wu_zetian_(fate),4,685 -1607938,getou_suguru,4,684 -376441,arle_nadja,4,683 -664614,ryuzaki_kaoru,4,683 -1797173,hyakumantenbara_salome,4,683 -1619673,puru-see_(hoshizuki_(seigetsu)),4,682 -1152270,ibuki_tsubasa,4,681 -1227600,mochizuki_anna,4,681 -1275005,ousaka_shizuku,4,681 -1782428,bb_(swimsuit_mooncancer)_(third_ascension)_(fate),4,679 -1693037,le_malin_(listless_lapin)_(azur_lane),4,679 -1768854,mysterious_heroine_x_alter_(first_ascension)_(fate),4,678 -1631348,shinshuu_maru_(kancolle),4,678 -480982,asbel_lhant,4,677 -1316228,nakagawa_natsuki,4,677 -1667164,g41_(girls'_frontline),4,677 -404920,sage_(dq3),4,676 -1331206,kawakami_mai,4,676 -1423942,eris_greyrat,4,676 -1560517,utage_(arknights),4,676 -1405059,sand_cat_(kemono_friends),4,675 -1680295,mika_(blue_archive),4,675 -664407,himekawa_yuki,4,674 -1631118,kishinami_(kancolle),4,674 -1285963,alena_(dq4),4,672 -1645008,smart_falcon_(umamusume),4,672 -497689,cheria_barnes,4,671 -1631097,kasuga_maru_(kancolle),4,671 -1432300,yatadera_narumi,4,669 -1387122,mordred_(swimsuit_rider)_(fate),4,667 -1529378,sakata_kintoki_(fate),4,666 -1408392,golden_snub-nosed_monkey_(kemono_friends),4,666 -1780213,hina_(swimsuit)_(blue_archive),4,666 -1875916,tiki_(adult)_(fire_emblem),4,665 -1386436,amami_rantarou,4,664 -548087,hasegawa_kobato,4,663 -1257848,hoshimiya_kate,4,663 -1335159,sugimoto_saichi,4,663 -596743,fukawa_touko,4,662 -1476820,yozora_mel,4,662 -1789595,saijo_juri,4,661 -1327917,yuel_(granblue_fantasy),4,660 -1460549,nekomiya_hinata,4,660 -688953,igarashi_kyoko,4,658 -1639090,maya_kai_ni_(kancolle),4,658 -1588338,tomoe_gozen_(swimsuit_saber)_(fate),4,658 -1657407,blue_poison_(shoal_beat)_(arknights),4,658 -1856336,hasumi_(gym_uniform)_(blue_archive),4,656 -1598223,kayoko_(blue_archive),4,655 -1434774,uehara_himari,4,654 -1344209,roxy_migurdia,4,653 -1837736,saren_(summer)_(princess_connect!),4,653 -1485459,jean_bart_(azur_lane),4,653 -713347,katagiri_sanae,4,652 -1440285,queen_elizabeth_(azur_lane),4,652 -1667205,9a-91_(girls'_frontline),4,651 -1479271,rengoku_kyoujurou,4,650 -1386290,keebo,4,649 -1599618,whislash_(arknights),4,646 -971934,vampy,4,645 -1639099,naganami_kai_ni_(kancolle),4,644 -1326283,jeanne_d'arc_(granblue_fantasy),4,643 -1644991,matikanefukukitaru_(umamusume),4,643 -1645010,sweep_tosho_(umamusume),4,642 -879608,toyokawa_fuka,4,641 -1387119,kiyohime_(swimsuit_lancer)_(fate),4,641 -1836895,karyl_(summer)_(princess_connect!),4,641 -1596254,razor_(genshin_impact),4,640 -1480768,siro_(dennou_shoujo_youtuber_siro),4,639 -1491126,tsuyuri_kanao,4,637 -1667169,negev_(girls'_frontline),4,636 -1440310,eldridge_(azur_lane),4,636 -1284942,midway_princess,4,635 -1420829,matsubara_kanon,4,633 -1541801,magallan_(arknights),4,633 -1782915,ijichi_nijika,4,632 -1411715,okusawa_misaki,4,628 -1875918,tiki_(young)_(fire_emblem),4,627 -1790615,spicy_nun_(diva),4,625 -1067206,hayasaka_mirei,4,623 -1781831,jeanne_d'arc_(swimsuit_archer)_(second_ascension)_(fate),4,623 -1420746,udagawa_tomoe,4,621 -1445024,shirasagi_chisato,4,621 -1678878,la_pluma_(arknights),4,619 -1265247,sato_shin,4,617 -1491428,takamiya_rion,4,612 -1623487,crypto_(apex_legends),4,612 -1533772,uzuki_sayaka,4,607 +tag_id,name,category,count +9999999,general,9,807858 +9999998,sensitive,9,3771700 +9999997,questionable,9,769899 +9999996,explicit,9,560281 +470575,1girl,0,4225150 +212816,solo,0,3515897 +13197,long_hair,0,2982517 +8601,breasts,0,2323580 +469576,looking_at_viewer,0,2089971 +3389,blush,0,2040471 +1815,smile,0,1903619 +15080,short_hair,0,1568265 +11906,open_mouth,0,1565950 +16751,bangs,0,1516840 +10959,blue_eyes,0,1225129 +566835,multiple_girls,0,1120328 +429,skirt,0,1100620 +87788,blonde_hair,0,1098200 +403247,large_breasts,0,1083979 +412368,simple_background,0,1074818 +16867,brown_hair,0,1072209 +12590,shirt,0,1001030 +13200,black_hair,0,981413 +380350,hair_ornament,0,939495 +8526,red_eyes,0,897316 +1882,thighhighs,0,890813 +5735,gloves,0,886283 +383159,long_sleeves,0,883900 +540830,1boy,0,881194 +2373,hat,0,879697 +515193,white_background,0,874291 +2241,dress,0,838290 +4563,bow,0,795194 +464575,ribbon,0,793922 +9294,navel,0,786293 +375387,holding,0,732899 +1821,2girls,0,729721 +6126,animal_ears,0,722334 +4607,cleavage,0,693321 +658573,hair_between_eyes,0,692014 +376054,bare_shoulders,0,656975 +1709,twintails,0,648384 +16578,brown_eyes,0,645874 +16613,jewelry,0,644654 +667868,medium_breasts,0,642525 +12289,sitting,0,630993 +417660,very_long_hair,0,622920 +572080,closed_mouth,0,618062 +464906,underwear,0,610036 +8889,nipples,0,591774 +16509,school_uniform,0,585679 +10960,green_eyes,0,584783 +10953,blue_hair,0,564360 +15675,standing,0,551783 +15654,purple_eyes,0,536623 +466499,collarbone,0,520875 +391,panties,0,506334 +3843,jacket,0,493731 +15674,tail,0,487490 +1681,monochrome,0,478584 +444,swimsuit,0,467619 +608813,full_body,0,463008 +465619,closed_eyes,0,455512 +464561,hair_ribbon,0,449452 +89189,yellow_eyes,0,447582 +376766,white_shirt,0,435867 +547463,upper_body,0,434670 +2355,ponytail,0,431021 +11449,weapon,0,430315 +11429,pink_hair,0,427100 +16442,purple_hair,0,426385 +8101,ass,0,423113 +4334,braid,0,417832 +464559,flower,0,411874 +63,comic,0,411524 +3522,ahoge,0,408654 +16581,white_hair,0,407226 +472154,short_sleeves,0,389311 +384553,:d,0,387533 +622137,hetero,0,384576 +374844,hair_bow,0,381335 +513837,greyscale,0,377967 +16580,grey_hair,0,375103 +1300281,male_focus,0,371503 +2750,heart,0,361897 +2363,pantyhose,0,356177 +484168,sidelocks,0,354421 +6539,bikini,0,349809 +3870,thighs,0,348316 +2365,nude,0,341086 +5403,red_hair,0,338682 +390728,multicolored_hair,0,336863 +660909,cowboy_shot,0,336374 +4569,sweat,0,334084 +383282,pleated_skirt,0,332323 +2376,hairband,0,329485 +13804,earrings,0,328755 +465265,small_breasts,0,325542 +5827,boots,0,320845 +13879,outdoors,0,320641 +301022,lying,0,312125 +4352,censored,0,310189 +194013,frills,0,305699 +664375,parted_lips,0,304757 +387884,detached_sleeves,0,297463 +461042,one_eye_closed,0,294831 +1575,food,0,294463 +1707,japanese_clothes,0,289163 +8388,green_hair,0,286703 +568656,multiple_boys,0,286561 +375669,open_clothes,0,286373 +2866,wings,0,284183 +384774,necktie,0,281254 +2785,horns,0,279479 +406,sky,0,279456 +4190,penis,0,276603 +8672,shoes,0,273266 +6532,glasses,0,264431 +3985,shorts,0,263445 +11826,barefoot,0,260159 +6054,teeth,0,259880 +4378,pussy,0,254400 +268819,serafuku,0,250901 +400314,sleeveless,0,247486 +931006,solo_focus,0,246572 +431446,alternate_costume,0,245996 +4025,choker,0,245304 +435324,day,0,243849 +10863,tongue,0,243841 +15522,pointy_ears,0,237263 +474820,black_gloves,0,236325 +1731,socks,0,235479 +2646,hairclip,0,224901 +10228,elbow_gloves,0,224390 +1793,fang,0,220644 +9843,midriff,0,217384 +2177,striped,0,215308 +581144,puffy_sleeves,0,214965 +2772,shiny,0,213040 +478849,collared_shirt,0,210998 +9864,belt,0,210075 +410129,looking_back,0,208023 +10926,pants,0,206605 +401228,sword,0,203029 +657955,artist_name,0,200583 +455880,black_thighhighs,0,199445 +464549,cloud,0,197453 +375171,indoors,0,197331 +1407561,virtual_youtuber,0,190790 +72,cat_ears,0,189097 +6010,tears,0,187990 +474821,white_gloves,0,187659 +539367,hand_up,0,184840 +411263,signature,0,183546 +400123,hair_flower,0,183132 +71730,dark_skin,0,182935 +399836,3girls,0,181979 +16252,spread_legs,0,179394 +1842,cum,0,177804 +5948,hood,0,176872 +449194,2boys,0,176291 +2357,sex,0,176106 +502710,tongue_out,0,174092 +9168,miniskirt,0,173815 +394970,wide_sleeves,0,172751 +537684,blunt_bangs,0,172693 +401481,on_back,0,172347 +375020,fingerless_gloves,0,171771 +11628,bowtie,0,171509 +374628,black_skirt,0,171449 +426781,medium_hair,0,170863 +16750,pink_eyes,0,168674 +5576,armpits,0,168191 +389378,sailor_collar,0,166004 +445,kimono,0,163145 +632214,grey_background,0,159811 +1573,water,0,158702 +4068,necklace,0,156154 +375229,off_shoulder,0,153621 +467104,stomach,0,153138 +4333,bag,0,151509 +454933,hair_bun,0,151363 +1747,chibi,0,151305 +473983,clothes_lift,0,150801 +1254363,twitter_username,0,150476 +234192,from_behind,0,150284 +656624,star_(symbol),0,150164 +3198,scarf,0,149539 +6346,cape,0,149374 +102962,nail_polish,0,148880 +659098,black_footwear,0,148127 +670071,holding_weapon,0,147624 +3796,bra,0,147612 +14620,white_dress,0,147542 +87676,orange_hair,0,147142 +261,yuri,0,146254 +125238,sweatdrop,0,145506 +4659,armor,0,143723 +465583,rabbit_ears,0,143630 +4019,mole,0,143178 +374791,white_panties,0,142500 +399541,hair_over_one_eye,0,141370 +384884,grin,0,140525 +6107,blurry,0,140047 +393959,huge_breasts,0,138103 +641577,looking_at_another,0,137202 +14599,:o,0,137129 +4152,uniform,0,136675 +13199,black_eyes,0,136390 +273,apron,0,136126 +510962,character_name,0,135131 +6176,vest,0,133100 +39127,black_dress,0,132376 +682673,mosaic_censoring,0,131028 +475187,arm_up,0,130488 +10484,vaginal,0,130137 +470807,red_bow,0,129853 +9882,high_heels,0,129652 +524070,shiny_hair,0,128887 +52138,twin_braids,0,127920 +399827,arms_up,0,126645 +378032,flat_chest,0,126144 +381629,side_ponytail,0,126049 +4052,collar,0,125695 +11904,bracelet,0,125557 +2060,feet,0,125245 +515329,covered_nipples,0,124425 +511141,from_side,0,122971 +560958,dated,0,122085 +413564,two-tone_hair,0,121190 +89368,aqua_eyes,0,120894 +3477,sweater,0,120879 +440465,speech_bubble,0,120449 +375002,white_thighhighs,0,119709 +590165,english_text,0,118831 +6295,leotard,0,118770 +379615,open_jacket,0,116898 +1515536,official_alternate_costume,0,116756 +390401,red_ribbon,0,116423 +633894,dark-skinned_female,0,115383 +652604,two_side_up,0,114391 +464586,tree,0,113682 +464553,cup,0,113550 +490655,blue_sky,0,113376 +1931,sketch,0,112175 +684639,puffy_short_sleeves,0,111946 +5501,lips,0,111075 +428173,blue_skirt,0,110413 +10644,zettai_ryouiki,0,109096 +719985,streaked_hair,0,108228 +5569,coat,0,108099 +547860,black_jacket,0,107631 +395321,crop_top,0,107314 +754325,groin,0,107206 +427008,fingernails,0,106798 +4867,wet,0,105408 +1445905,v-shaped_eyebrows,0,104747 +389404,cat_tail,0,104720 +438623,neckerchief,0,103697 +95405,orange_eyes,0,103149 +1486996,animal_ear_fluff,0,102828 +431755,head_tilt,0,102674 +451371,see-through,0,102344 +391631,gradient,0,101686 +451155,hand_on_hip,0,100931 +589,gun,0,100672 +4311,legs,0,100492 +494251,one-piece_swimsuit,0,100304 +494744,shiny_skin,0,100275 +479939,sleeves_past_wrists,0,100013 +551772,parted_bangs,0,99655 +579466,looking_to_the_side,0,99629 +464572,pillow,0,99176 +412078,wrist_cuffs,0,98658 +89228,grey_eyes,0,98579 +10923,torn_clothes,0,98539 +464535,book,0,98180 +465277,plaid,0,97928 +457408,black_pantyhose,0,97171 +59,maid,0,97157 +537200,symbol-shaped_pupils,0,96639 +481846,hands_up,0,95746 +379475,sash,0,95553 +539584,fur_trim,0,95386 +3314,kneehighs,0,95270 +463173,maid_headdress,0,95208 +7820,military,0,94582 +16718,black_panties,0,94548 +358,cosplay,0,94464 +475418,bare_arms,0,93864 +13132,petals,0,93775 +12552,pubic_hair,0,93487 +524961,black_shirt,0,93152 +2335,fox_ears,0,92753 +128,loli,0,92684 +531371,gradient_background,0,92533 +394174,short_shorts,0,92401 +449676,ascot,0,90602 +1594634,clothing_cutout,0,90293 +822149,completely_nude,0,90178 +375372,dutch_angle,0,89835 +416202,eyelashes,0,88539 +492223,bar_censor,0,88359 +1277433,mole_under_eye,0,88173 +1128907,pokemon_(creature),0,88046 +542846,no_humans,0,87715 +469714,bare_legs,0,87348 +2813,window,0,87096 +7577,open_shirt,0,86869 +464579,sparkle,0,86798 +8641,dress_shirt,0,86540 +10447,kneeling,0,86034 +407186,sleeveless_shirt,0,85905 +389813,single_braid,0,85125 +2687,v,0,84806 +1390441,black_headwear,0,84355 +382397,strapless,0,84204 +412555,4girls,0,84095 +6536,bell,0,83798 +5126,hug,0,83531 +390035,no_bra,0,83268 +7926,saliva,0,83232 +468554,double_bun,0,83167 +474500,black_ribbon,0,82872 +5032,uncensored,0,82813 +94007,aqua_hair,0,82429 +9344,bodysuit,0,81762 +2508,blood,0,80986 +2585,bed,0,80885 +202817,hoodie,0,80505 +387214,military_uniform,0,80184 +6028,sideboob,0,80142 +1247160,black_bow,0,79946 +1269639,covered_navel,0,79696 +464584,tattoo,0,79445 +391128,gradient_hair,0,79377 +444539,skindentation,0,79260 +467863,neck_ribbon,0,79084 +13853,pussy_juice,0,79048 +1736,profile,0,78791 +9312,makeup,0,78404 +443395,thigh_strap,0,78303 +427348,leaning_forward,0,78279 +513475,multiple_views,0,78169 +3918,4koma,0,77795 +411323,capelet,0,77781 +1797,mask,0,77477 +465719,muscular,0,76977 +2217,anus,0,76396 +1595,no_panties,0,76376 +10422,witch_hat,0,76061 +600177,detached_collar,0,75584 +28200,toes,0,75467 +5565,:3,0,75433 +675314,copyright_name,0,75245 +442167,alternate_hairstyle,0,74848 +626,underboob,0,74757 +3472,night,0,74665 +395400,buttons,0,74509 +565513,floating_hair,0,74507 +5832,fruit,0,74401 +568880,sleeveless_dress,0,74380 +460262,depth_of_field,0,74158 +553142,blurry_background,0,73931 +1393877,feet_out_of_frame,0,73883 +381555,headband,0,73755 +529256,fake_animal_ears,0,73059 +402217,^_^,0,72948 +377140,blue_dress,0,72944 +4075,cameltoe,0,72587 +465950,cum_in_pussy,0,72511 +51528,fox_tail,0,72338 +457597,swept_bangs,0,72173 +13176,shadow,0,71857 +374620,black_bikini,0,71747 +503552,red_skirt,0,71298 +420531,nose_blush,0,71248 +4528,bottomless,0,71247 +4320,glowing,0,71120 +1231230,side-tie_bikini_bottom,0,71041 +460802,rose,0,70153 +478565,bed_sheet,0,69319 +1094664,colored_skin,0,69055 +4009,turtleneck,0,68964 +464808,holding_hands,0,68738 +458933,facial_hair,0,68495 +464546,chain,0,68464 +442865,headgear,0,68404 +464534,bird,0,68263 +4108,pov,0,67888 +377844,siblings,0,67882 +2279,headphones,0,67786 +11325,ocean,0,67516 +567316,6+girls,0,67320 +479563,low_twintails,0,67147 +3449,heterochromia,0,67128 +394222,arm_support,0,66756 +10701,animal,0,66577 +546821,halterneck,0,66448 +374938,frown,0,66197 +4244,leaf,0,65930 +258190,beret,0,65845 +1345229,white_headwear,0,65590 +1915,umbrella,0,65482 +490999,on_bed,0,65478 +653206,one_side_up,0,65367 +144876,embarrassed,0,65057 +395448,thigh_boots,0,64869 +446950,fangs,0,64492 +1875867,upper_teeth_only,0,64490 +8714,watermark,0,64472 +444002,from_above,0,64438 +377124,back,0,64206 +436054,highleg,0,64134 +580545,blue_background,0,63957 +1328533,ass_visible_through_thighs,0,63880 +421663,wavy_hair,0,63724 +469652,garter_straps,0,63656 +1382794,black_choker,0,63389 +4010,halo,0,63200 +546609,blue_bow,0,62796 +3988,scar,0,62791 +426936,white_bikini,0,62532 +447393,on_side,0,62264 +418899,plaid_skirt,0,62245 +2904,chair,0,61608 +484666,transparent_background,0,61514 +541727,wariza,0,61484 +481508,facial_mark,0,61342 +10231,mouth_hold,0,61142 +452032,looking_away,0,61139 +400120,traditional_media,0,61046 +2799,beach,0,61036 +2091,bandages,0,61017 +1723,parody,0,61010 +663669,female_pubic_hair,0,61006 +419938,expressionless,0,60732 +1303252,brown_footwear,0,60667 +499624,blush_stickers,0,60546 +8830,shirt_lift,0,60141 +419309,thick_thighs,0,60024 +463179,no_shoes,0,59911 +698161,holding_sword,0,59858 +600250,hair_tubes,0,59809 +375404,chinese_clothes,0,59795 +8091,drill_hair,0,59557 +572767,grabbing,0,59427 +475775,arms_behind_back,0,59272 +375476,soles,0,59215 +3920,obi,0,58917 +572731,heart-shaped_pupils,0,58894 +4207,eating,0,58688 +467856,clothes_pull,0,58462 +415974,looking_down,0,58352 +2993,phone,0,58200 +612641,black_shorts,0,57955 +403649,thigh_gap,0,57892 +514890,black_pants,0,57867 +436576,short_dress,0,57816 +3593,topless,0,57655 +4831,piercing,0,57372 +2770,pantyshot,0,57314 +534835,hair_intakes,0,57252 +2270,eyepatch,0,57130 +511136,border,0,56981 +8831,skirt_lift,0,56906 +476621,floral_print,0,56816 +460404,stuffed_toy,0,56698 +466226,bound,0,56676 +2689,formal,0,56558 +709734,playboy_bunny,0,56534 +647551,flying_sweatdrops,0,56366 +375176,crossed_arms,0,56301 +574407,wavy_mouth,0,56126 +425206,magical_girl,0,56021 +3234,erection,0,55814 +387991,abs,0,55656 +2726,moon,0,55466 +688777,half-closed_eyes,0,55390 +413672,leg_up,0,55163 +420366,from_below,0,54898 +389777,red_dress,0,54821 +477028,cleavage_cutout,0,54599 +3986,sandals,0,54528 +3209,table,0,54497 +13227,happy,0,54420 +356542,sunlight,0,54218 +1850,oral,0,54046 +1976,cover,0,53985 +465810,squatting,0,53344 +1801537,single_hair_bun,0,53328 +2716,cat,0,53145 +419387,testicles,0,53002 +584749,pink_background,0,52864 +5524,sunglasses,0,52501 +488167,scrunchie,0,52459 +1288957,white_footwear,0,52395 +563478,dark-skinned_male,0,52274 +547073,underwear_only,0,52043 +461293,cum_on_body,0,51426 +413179,trembling,0,51424 +445388,bob_cut,0,51373 +3949,ring,0,51372 +9354,bdsm,0,51131 +221,school_swimsuit,0,51107 +582201,mob_cap,0,50771 +385639,wolf_ears,0,50613 +6059,blazer,0,50589 +468534,light_brown_hair,0,50353 +580232,white_jacket,0,50297 +459291,standing_on_one_leg,0,50267 +3875,sleeping,0,50236 +450107,thick_eyebrows,0,50035 +1556,backpack,0,49896 +520398,white_skirt,0,49388 +8068,demon_girl,0,49382 +492544,frilled_dress,0,49309 +643561,eyes_visible_through_hair,0,49304 +15399,breast_grab,0,49237 +6128,cardigan,0,49158 +431235,knee_boots,0,48944 +7952,suspenders,0,48876 +464588,hat_ribbon,0,48794 +465525,crossed_legs,0,48759 +319,lingerie,0,48692 +379915,stuffed_animal,0,48687 +5831,katana,0,48654 +589398,hood_down,0,48528 +466990,;d,0,48266 +487156,3boys,0,48154 +15737,bat_wings,0,48120 +391680,horse_ears,0,48063 +3649,helmet,0,47863 +487205,cloudy_sky,0,47782 +3239,cellphone,0,47781 +464903,crying,0,47537 +9114,antenna_hair,0,47482 +900563,own_hands_together,0,47389 +7455,tank_top,0,47356 +10833,bottle,0,47321 +10229,suit,0,47203 +6364,grass,0,47129 +516477,outstretched_arms,0,47051 +4526,cross,0,46975 +464539,bug,0,46589 +609507,holding_food,0,46523 +4474,fire,0,46465 +419429,frilled_skirt,0,46415 +429999,tiara,0,46411 +1836990,aged_down,0,46406 +464574,polka_dot,0,46378 +14452,feathers,0,46364 +510254,breasts_out,0,46228 +1936,crossover,0,46213 +4188,crown,0,46184 +539837,high_ponytail,0,46117 +375459,looking_up,0,46055 +580738,black_hairband,0,46027 +9714,bent_over,0,46026 +3592,undressing,0,45997 +397327,blue_shirt,0,45944 +701697,white_bow,0,45887 +421662,5girls,0,45886 +462569,straddling,0,45739 +575982,light_smile,0,45730 +464565,knife,0,45555 +634316,pectorals,0,45480 +1337464,x_hair_ornament,0,45361 +464573,plant,0,45164 +14814,couple,0,45140 +219401,denim,0,45131 +432696,on_stomach,0,44802 +487562,wing_collar,0,44774 +16700,>_<,0,44725 +3846,robot,0,44517 +576310,white_flower,0,44392 +452195,hair_bobbles,0,44248 +8709,fellatio,0,44136 +517832,outstretched_arm,0,43838 +404507,sharp_teeth,0,43781 +498000,blue_ribbon,0,43753 +4850,lipstick,0,43621 +4232,tan,0,43535 +381279,girl_on_top,0,43530 +465046,cat_girl,0,43463 +458482,short_twintails,0,43394 +1297467,lifted_by_self,0,43380 +537,bondage,0,43370 +397117,curtains,0,43288 +463397,white_socks,0,43090 +526340,letterboxed,0,43050 +423613,animal_print,0,42743 +1451588,muscular_male,0,42629 +413908,spiked_hair,0,42548 +403577,pointing,0,42540 +463115,pink_bow,0,42424 +611487,juliet_sleeves,0,42359 +395015,monster_girl,0,42318 +645320,sex_from_behind,0,42283 +521420,slit_pupils,0,42116 +2328,polearm,0,41911 +374979,all_fours,0,41887 +619736,blue_jacket,0,41861 +10707,sisters,0,41457 +534982,^^^,0,41381 +507741,frilled_sleeves,0,41351 +656169,hand_on_own_chest,0,41116 +492682,red_necktie,0,40987 +1388799,blue_sailor_collar,0,40975 +410004,crescent,0,40913 +82326,?,0,40842 +4027,staff,0,40813 +569748,black_background,0,40690 +401137,clenched_teeth,0,40516 +7558,panty_pull,0,40452 +405345,cherry_blossoms,0,40306 +464713,head_wings,0,39969 +820510,horse_girl,0,39913 +12464,brooch,0,39793 +2849,goggles,0,39780 +470790,demon_horns,0,39763 +1710,towel,0,39695 +11879,blouse,0,39694 +584911,shaded_face,0,39622 +589376,red_flower,0,39599 +515302,green_skirt,0,39506 +655303,fox_girl,0,39434 +1369969,ground_vehicle,0,39280 +447919,cover_page,0,39211 +471601,black_bra,0,39210 +302,elf,0,39186 +358992,bike_shorts,0,39177 +1019196,otoko_no_ko,0,39156 +4123,wind,0,39127 +2362,casual,0,39098 +8072,black_socks,0,39083 +401601,loafers,0,39011 +379387,t-shirt,0,38864 +489235,motion_lines,0,38824 +561547,shoulder_armor,0,38616 +403060,gauntlets,0,38611 +383830,no_pants,0,38528 +464540,building,0,38491 +93927,pink_panties,0,38441 +401836,messy_hair,0,38068 +415668,single_thighhigh,0,37934 +471498,multiple_tails,0,37915 +3046,kiss,0,37833 +466654,wristband,0,37663 +389882,group_sex,0,37616 +314230,breast_press,0,37538 +389705,between_breasts,0,37481 +465870,surprised,0,37404 +4543,striped_panties,0,37300 +524399,hat_bow,0,37085 +479729,gem,0,37068 +464542,butterfly,0,36971 +683385,red_footwear,0,36919 +390594,red_shirt,0,36911 +395533,sheath,0,36903 +374782,sneakers,0,36836 +469701,rabbit_tail,0,36820 +516211,tassel,0,36640 +464564,instrument,0,36574 +5746,box,0,36505 +521712,ear_piercing,0,36426 +448007,drooling,0,36412 +103483,fishnets,0,36371 +1227044,ribbon_trim,0,36289 +575322,clenched_hand,0,36272 +405311,sex_toy,0,36243 +1281370,red_bowtie,0,36203 +385882,third_eye,0,36102 +628293,skirt_set,0,36091 +12667,child,0,36073 +3540,hakama,0,36071 +446647,pale_skin,0,35749 +3474,portrait,0,35713 +464568,musical_note,0,35511 +427968,revealing_clothes,0,35499 +4241,rope,0,35471 +594766,star_(sky),0,35465 +376491,wet_clothes,0,35421 +4275,steam,0,35400 +2252,candy,0,35362 +166531,pink_dress,0,35227 +376002,genderswap,0,35168 +2119,facial,0,35125 +380831,demon_tail,0,35104 +368,dog_ears,0,35085 +3417,anal,0,35064 +390662,foreshortening,0,35051 +1008243,holding_gun,0,34916 +5648,nature,0,34895 +376043,covering,0,34886 +566918,adapted_costume,0,34783 +6526,side-tie_panties,0,34714 +515769,black_nails,0,34714 +166133,night_sky,0,34326 +404,christmas,0,34266 +10847,breath,0,34088 +4555,ejaculation,0,34061 +15672,veil,0,34028 +395223,scenery,0,34026 +378850,armband,0,34010 +448202,peaked_cap,0,34001 +533054,waist_apron,0,33989 +556011,lace_trim,0,33903 +421107,convenient_censoring,0,33709 +631529,white_apron,0,33648 +5855,couch,0,33563 +468477,arms_behind_head,0,33416 +465152,china_dress,0,33413 +1865,bandaid,0,33315 +704500,holding_cup,0,33262 +1314596,black_leotard,0,33183 +601824,male_pubic_hair,0,32925 +524897,interlocked_fingers,0,32856 +1302826,mole_under_mouth,0,32799 +4000,microphone,0,32717 +417741,bridal_gauntlets,0,32598 +375764,bara,0,32520 +538298,strapless_dress,0,32510 +448225,tokin_hat,0,32508 +1568,yaoi,0,32378 +478557,straight_hair,0,32366 +456255,front-tie_top,0,32272 +426598,bow_panties,0,32233 +2755,lace,0,32198 +561,mecha,0,32195 +531068,hakama_skirt,0,32173 +723773,hand_fan,0,32170 +477288,white_ribbon,0,32158 +389108,glowing_eyes,0,32156 +566461,anger_vein,0,32053 +466984,...,0,32033 +659059,breasts_apart,0,31889 +664258,no_headwear,0,31856 +602295,hair_over_shoulder,0,31780 +670638,clothes_writing,0,31699 +469125,jingle_bell,0,31677 +146061,baseball_cap,0,31672 +593298,yellow_background,0,31665 +1288118,hair_flaps,0,31467 +457883,string_bikini,0,31418 +674623,feathered_wings,0,31394 +428523,hooded_jacket,0,31351 +400041,cum_on_breasts,0,31297 +1411175,bikini_top_only,0,31290 +1416353,red_headwear,0,31191 +383851,twin_drills,0,31075 +665452,facing_viewer,0,31063 +389553,skin_tight,0,31044 +486674,multiple_penises,0,31006 +1441885,semi-rimless_eyewear,0,30943 +401968,red_nails,0,30789 +1275600,bright_pupils,0,30787 +647129,black_necktie,0,30692 +643253,web_address,0,30676 +376528,:<,0,30640 +3508,angry,0,30615 +611670,grey_shirt,0,30549 +320292,cloak,0,30520 +1441877,eyewear_on_head,0,30414 +554980,motor_vehicle,0,30386 +593296,red_background,0,30382 +11410,claws,0,30300 +389814,side_braid,0,30190 +407678,wolf_tail,0,30179 +1316316,pelvic_curtain,0,30158 +635112,light_particles,0,30146 +1593554,light_purple_hair,0,30050 +670636,multicolored_clothes,0,30015 +410734,carrying,0,30007 +392990,micro_bikini,0,29907 +467811,knees_up,0,29889 +645083,smartphone,0,29850 +4172,corset,0,29825 +2329,tentacles,0,29635 +635786,index_finger_raised,0,29578 +648130,clothing_aside,0,29578 +390596,purple_dress,0,29414 +547132,extra_ears,0,29398 +382270,rifle,0,29351 +15764,striped_thighhighs,0,29349 +668761,white_border,0,29331 +374845,mary_janes,0,29321 +15260,beard,0,29165 +581,paizuri,0,29093 +392810,vertical_stripes,0,29091 +488864,red_jacket,0,29047 +15689,:p,0,29013 +1388801,red_neckerchief,0,28937 +717927,short_hair_with_long_locks,0,28919 +566116,scar_on_face,0,28750 +462808,tareme,0,28700 +1452299,neck_bell,0,28677 +9474,licking,0,28656 +15749,furry,0,28624 +549225,single_horn,0,28498 +77257,strap_slip,0,28432 +429369,finger_to_mouth,0,28430 +668635,pom_pom_(clothes),0,28411 +2102,snow,0,28403 +510802,french_braid,0,28301 +10902,close-up,0,28288 +149598,androgynous,0,28230 +1463605,1other,0,28215 +533356,areola_slip,0,28137 +3284,forehead,0,28104 +375723,puffy_nipples,0,28072 +448477,buckle,0,28057 +458223,horse_tail,0,28024 +685432,two-tone_background,0,27949 +422340,full_moon,0,27938 +390257,eye_contact,0,27886 +819964,pink_flower,0,27858 +4536,tsurime,0,27654 +563256,yellow_bow,0,27619 +4530,gift,0,27609 +396969,seiza,0,27454 +389402,upskirt,0,27366 +491144,blue_bikini,0,27350 +470798,pink_nails,0,27118 +455456,santa_hat,0,27080 +1364406,genderswap_(mtf),0,27054 +11813,lens_flare,0,27008 +1501540,skin_fang,0,27006 +376594,spikes,0,26942 +375519,armlet,0,26928 +656165,hand_on_own_face,0,26903 +2907,desk,0,26794 +462583,between_legs,0,26647 +486611,brown_gloves,0,26624 +379489,side_slit,0,26588 +467493,handgun,0,26485 +2447,camisole,0,26462 +384552,wading,0,26457 +486327,faceless,0,26424 +586765,low_ponytail,0,26408 +397411,restrained,0,26372 +10905,pendant,0,26314 +394151,plate,0,26272 +379725,dual_persona,0,26249 +577,masturbation,0,26248 +467585,highleg_leotard,0,26243 +584958,spoken_heart,0,26233 +378743,curvy,0,26139 +615165,green_bow,0,26102 +529213,maid_apron,0,26053 +393879,alcohol,0,26052 +418395,after_sex,0,26042 +616524,grey_skirt,0,26031 +1656,handjob,0,25938 +491758,sleeves_rolled_up,0,25936 +435433,red_gloves,0,25869 +658106,o-ring,0,25822 +435555,heavy_breathing,0,25815 +1585391,abyssal_ship,0,25726 +14946,eyeshadow,0,25687 +665184,ribbed_sweater,0,25673 +459933,drinking_glass,0,25619 +571690,hair_scrunchie,0,25536 +491112,cowgirl_position,0,25531 +535373,cross-laced_footwear,0,25481 +1491014,blue_headwear,0,25429 +2863,broom,0,25426 +5474,ball,0,25393 +684620,puffy_long_sleeves,0,25158 +1455296,sleeves_past_fingers,0,25090 +438458,clenched_hands,0,25038 +673911,hood_up,0,25014 +626528,cropped_legs,0,25012 +406964,floating,0,24989 +376117,wide_hips,0,24969 +4261,forest,0,24911 +689532,low-tied_long_hair,0,24901 +382111,breast_hold,0,24875 +3943,smoke,0,24872 +9311,zipper,0,24870 +375441,dress_lift,0,24870 +392024,tray,0,24870 +396680,personification,0,24869 +662952,headwear_removed,0,24860 +545992,high_heel_boots,0,24765 +643274,partially_submerged,0,24661 +390681,headset,0,24628 +4596,halloween,0,24593 +10279,hair_rings,0,24560 +380540,legs_up,0,24503 +521477,half_updo,0,24493 +469517,doujin_cover,0,24453 +520397,pink_skirt,0,24451 +523327,starry_sky,0,24440 +536573,colored_sclera,0,24438 +470314,pencil_skirt,0,24405 +1295582,strapless_leotard,0,24362 +479374,single_glove,0,24336 +471755,machinery,0,24312 +374915,clothed_sex,0,24306 +497607,blue_nails,0,24306 +497007,backlighting,0,24291 +15261,freckles,0,24267 +671227,tearing_up,0,24176 +11527,reflection,0,24165 +465145,tanlines,0,24162 +609,fish,0,24161 +432529,sweater_vest,0,24147 +658950,holding_book,0,24143 +511594,arm_behind_back,0,24075 +549356,arm_at_side,0,24024 +453340,santa_costume,0,24020 +1629722,large_pectorals,0,23996 +494669,spot_color,0,23925 +8243,flying,0,23894 +463127,white_bra,0,23883 +615735,asymmetrical_legwear,0,23876 +646879,brown_background,0,23852 +592555,panties_under_pantyhose,0,23749 +634781,nontraditional_miko,0,23719 +460324,red_bikini,0,23696 +149799,happy_birthday,0,23664 +491367,cropped_jacket,0,23653 +494241,long_fingernails,0,23613 +402062,!,0,23577 +531403,kemonomimi_mode,0,23538 +479146,sailor_dress,0,23441 +651957,clothed_female_nude_male,0,23322 +14442,walking,0,23236 +1851,fingering,0,23218 +574271,science_fiction,0,23187 +1651,rain,0,23181 +403173,white_pantyhose,0,23165 +7581,garter_belt,0,23110 +483898,frilled_bikini,0,23102 +460502,dual_wielding,0,23083 +572753,6+boys,0,23077 +520991,pink_ribbon,0,23054 +6175,cuffs,0,23036 +1373022,red-framed_eyewear,0,23024 +664922,dragon_horns,0,23024 +427674,epaulettes,0,23020 +376923,black_wings,0,23007 +464538,bubble,0,22982 +388067,demon_wings,0,22937 +4925,thong,0,22871 +617615,legs_apart,0,22854 +4648,teacup,0,22847 +1569,condom,0,22825 +442816,veins,0,22823 +465382,crossdressing,0,22797 +1258089,ribbon-trimmed_sleeves,0,22795 +1251593,holding_phone,0,22789 +7450,gym_uniform,0,22731 +475720,short_ponytail,0,22714 +529447,arm_behind_head,0,22709 +1916,cake,0,22701 +602223,out_of_frame,0,22689 +2169,innertube,0,22668 +583857,oni_horns,0,22662 +669624,contrapposto,0,22656 +10376,naughty_face,0,22568 +593297,green_background,0,22526 +633528,alternate_breast_size,0,22467 +643898,purple_background,0,22460 +1373029,black-framed_eyewear,0,22424 +1810,rape,0,22416 +6441,beads,0,22362 +654772,knee_up,0,22316 +610698,hat_ornament,0,22311 +1636487,one-hour_drawing_challenge,0,22279 +570718,fur_collar,0,22266 +617356,blue_shorts,0,22246 +713987,outside_border,0,22190 +728008,thighband_pantyhose,0,22190 +8198,meme,0,22166 +10402,bowl,0,22146 +2056,toenails,0,22138 +3354,cumdrip,0,22082 +1242758,blue_flower,0,22045 +416676,denim_shorts,0,22042 +394305,curly_hair,0,22035 +457726,track_jacket,0,22026 +1388800,black_sailor_collar,0,21962 +1388933,light_blush,0,21928 +374849,school_bag,0,21924 +508016,pocket,0,21923 +10543,spread_pussy,0,21902 +403286,toned,0,21876 +514515,pink_shirt,0,21867 +5875,doggystyle,0,21840 +688711,white_sleeves,0,21801 +412202,:q,0,21781 +1278062,hand_in_own_hair,0,21700 +1292999,spoken_ellipsis,0,21670 +375986,empty_eyes,0,21646 +610272,purple_skirt,0,21645 +572906,crying_with_eyes_open,0,21630 +583299,goggles_on_head,0,21629 +166757,green_dress,0,21584 +479955,4boys,0,21539 +168390,bulge,0,21519 +466881,sun_hat,0,21508 +377078,cum_in_mouth,0,21505 +452086,lolita_fashion,0,21497 +427050,shiny_clothes,0,21494 +9872,pauldrons,0,21475 +397215,outline,0,21438 +2378,buruma,0,21384 +670088,hand_on_another's_head,0,21384 +389,futanari,0,21376 +1592077,topless_male,0,21362 +1441886,under-rim_eyewear,0,21290 +579793,frilled_apron,0,21156 +560247,white_pupils,0,21124 +464578,skull,0,21119 +492380,jitome,0,21103 +684644,gold_trim,0,21037 +398273,long_legs,0,21023 +2489,sunset,0,21004 +464566,monster,0,20950 +1258262,frilled_shirt_collar,0,20942 +559163,emphasis_lines,0,20888 +426491,hands_on_hips,0,20853 +1119509,high-waist_skirt,0,20812 +7585,new_year,0,20801 +106450,shield,0,20770 +580379,aged_up,0,20754 +1670660,animal_hands,0,20736 +554098,mole_on_breast,0,20679 +4145,spear,0,20661 +538475,asymmetrical_hair,0,20605 +472916,female_masturbation,0,20559 +534168,v_arms,0,20548 +483919,single_earring,0,20521 +6439,running,0,20477 +4039,dog,0,20400 +384087,angel_wings,0,20387 +391713,long_skirt,0,20326 +1874884,breasts_squeezed_together,0,20292 +442474,competition_swimsuit,0,20256 +11882,watch,0,20197 +380572,dog_tail,0,20182 +546229,black_belt,0,20142 +1233478,black_serafuku,0,20119 +10031,faceless_male,0,20106 +652293,legs_together,0,20102 +10538,ice,0,20076 +391297,white_skin,0,20066 +1293269,blue_footwear,0,20063 +434996,o_o,0,20055 +454379,=_=,0,20055 +18013,ass_grab,0,20045 +509884,impossible_clothes,0,19994 +1247162,purple_bow,0,19993 +493843,head_rest,0,19941 +494245,red_scarf,0,19940 +9831,teddy_bear,0,19932 +399655,striped_bikini,0,19911 +537668,poke_ball,0,19839 +613885,brown_skirt,0,19829 +442316,pouch,0,19819 +1559,minigirl,0,19805 +452445,+_+,0,19786 +1396724,white_sailor_collar,0,19749 +1515358,blue_theme,0,19669 +16554,plump,0,19626 +2467,ghost,0,19612 +2336,cigarette,0,19600 +538012,hat_removed,0,19598 +394759,hand_in_pocket,0,19584 +474995,brown_pantyhose,0,19528 +520850,bespectacled,0,19521 +494842,braided_ponytail,0,19474 +417888,age_difference,0,19463 +690177,tress_ribbon,0,19460 +648056,paw_pose,0,19458 +375606,open_coat,0,19416 +465871,rabbit,0,19393 +8565,sarashi,0,19391 +494869,black_coat,0,19379 +658682,knees_together_feet_apart,0,19360 +15571,shawl,0,19349 +1255562,folded_ponytail,0,19273 +553367,turret,0,19264 +1271922,black_vest,0,19257 +1835738,blue_one-piece_swimsuit,0,19186 +2268,popsicle,0,19177 +462546,hand_between_legs,0,19129 +15916,hair_down,0,19087 +483081,high_collar,0,19049 +578153,drinking_straw,0,19046 +502548,yellow_shirt,0,18994 +477354,sheathed,0,18974 +375883,dragon_girl,0,18958 +399,yukata,0,18933 +620577,brown_jacket,0,18918 +1811,twins,0,18785 +382969,bow_(weapon),0,18780 +15200,robe,0,18714 +3661,oni,0,18708 +462209,thought_bubble,0,18690 +451370,upside-down,0,18665 +2967,jeans,0,18614 +417866,serious,0,18609 +401289,yellow_ribbon,0,18572 +466335,object_insertion,0,18543 +417883,striped_shirt,0,18515 +506510,military_hat,0,18514 +464562,injury,0,18443 +405124,smirk,0,18439 +398889,circlet,0,18423 +600222,light_rays,0,18405 +3603,lollipop,0,18324 +16721,blue_panties,0,18317 +11285,@_@,0,18293 +473529,;),0,18288 +452112,tabard,0,18277 +380289,missionary,0,18275 +1303583,blue_necktie,0,18271 +534968,mini_hat,0,18270 +717047,page_number,0,18270 +1386163,patreon_username,0,18260 +394368,bouncing_breasts,0,18250 +446472,red_rose,0,18244 +1814875,eyebrows_hidden_by_hair,0,18221 +467008,hoop_earrings,0,18199 +400,pajamas,0,18122 +572346,wide-eyed,0,18110 +1822,threesome,0,18100 +1611666,dakimakura_(medium),0,18057 +467285,crystal,0,18054 +4033,lantern,0,18052 +1369802,blurry_foreground,0,18022 +1314750,white_hairband,0,17984 +427398,butt_crack,0,17982 +458932,sideburns,0,17937 +1517199,mature_female,0,17906 +712723,striped_bow,0,17905 +1045681,white_shorts,0,17904 +493026,tentacle_hair,0,17900 +392585,contemporary,0,17864 +374921,sports_bra,0,17840 +5705,ofuda,0,17806 +561624,water_drop,0,17796 +1320204,black_bowtie,0,17724 +15770,top_hat,0,17717 +379945,hairpin,0,17711 +475744,breastplate,0,17707 +1256698,partially_fingerless_gloves,0,17688 +502047,blood_on_face,0,17681 +423620,:t,0,17653 +472727,wooden_floor,0,17584 +538768,height_difference,0,17567 +11135,rock,0,17531 +508272,belt_buckle,0,17522 +387213,handbag,0,17511 +448882,|_|,0,17504 +447403,jumping,0,17482 +461117,snowing,0,17469 +544306,colored_eyelashes,0,17455 +3478,mirror,0,17445 +252271,mug,0,17428 +1283885,crossed_bangs,0,17403 +4357,chocolate,0,17384 +513807,hug_from_behind,0,17364 +872616,white_kimono,0,17362 +461492,green_jacket,0,17340 +456193,outstretched_hand,0,17340 +677856,star_hair_ornament,0,17329 +464536,bouquet,0,17310 +4909,chopsticks,0,17307 +381092,paper,0,17304 +527682,object_hug,0,17298 +394992,shoulder_bag,0,17284 +610013,pink_lips,0,17263 +6207,sportswear,0,17239 +7532,stairs,0,17184 +643286,full-face_blush,0,17181 +1349206,cropped_torso,0,17141 +1532466,colored_inner_hair,0,17112 +1648,oekaki,0,17056 +667171,holding_umbrella,0,17024 +662799,animal_hood,0,17005 +460907,one_eye_covered,0,17000 +464567,mountain,0,16918 +507245,glint,0,16875 +409364,covering_breasts,0,16833 +469668,raised_eyebrows,0,16829 +8807,city,0,16812 +1631677,mature_male,0,16767 +1671,underwater,0,16731 +2074,vibrator,0,16722 +2312,valentine,0,16712 +9434,wedding_dress,0,16709 +456688,multicolored_eyes,0,16704 +548722,enmaided,0,16697 +553015,open_book,0,16653 +498828,adjusting_clothes,0,16652 +1405752,meme_attire,0,16650 +1582,miko,0,16636 +594859,backless_outfit,0,16613 +379632,panties_aside,0,16594 +701042,bandaged_arm,0,16573 +472407,turtleneck_sweater,0,16443 +16609,bloomers,0,16435 +486,doll,0,16425 +411759,cum_on_hair,0,16414 +7426,sign,0,16400 +458728,waving,0,16390 +1249693,borrowed_character,0,16369 +7783,pout,0,16369 +5953,snake,0,16363 +478640,hair_bell,0,16356 +7486,fighting_stance,0,16351 +11858,forehead_mark,0,16335 +397690,motion_blur,0,16322 +376102,realistic,0,16156 +1226391,yellow_flower,0,16135 +8705,ice_cream,0,16133 +464582,strawberry,0,16122 +442898,skirt_hold,0,16109 +379820,aircraft,0,16077 +472197,white_pants,0,16042 +1243463,orange_bow,0,16034 +560,card,0,16015 +617355,grey_jacket,0,16004 +2809,spoon,0,15980 +433182,!?,0,15963 +499629,headpiece,0,15949 +397574,panties_around_one_leg,0,15937 +2205,mouse_ears,0,15932 +428330,brother_and_sister,0,15870 +1802,leash,0,15849 +456585,pink_bra,0,15847 +401340,nose,0,15816 +375144,nurse_cap,0,15808 +456370,hands_in_pockets,0,15808 +570942,front-tie_bikini_top,0,15724 +471090,hair_tie,0,15710 +1260354,text_focus,0,15704 +8418,fence,0,15687 +687736,short_eyebrows,0,15675 +1339995,green_headwear,0,15662 +13207,bandana,0,15650 +643257,white_leotard,0,15646 +667463,visor_cap,0,15637 +2319,fantasy,0,15635 +1441883,round_eyewear,0,15633 +594664,green_shirt,0,15616 +16139,mustache,0,15597 +1332796,round_teeth,0,15590 +1335533,holding_staff,0,15576 +421198,center_opening,0,15520 +10549,clitoris,0,15483 +15224,sand,0,15473 +446622,hime_cut,0,15432 +3429,drink,0,15413 +509379,on_floor,0,15395 +1352777,eighth_note,0,15359 +406736,covering_mouth,0,15357 +464544,can,0,15347 +165438,anklet,0,15332 +1081309,mouth_mask,0,15326 +378561,blue_skin,0,15320 +417996,overflow,0,15310 +645753,orange_background,0,15299 +1755,dildo,0,15284 +464569,palm_tree,0,15266 +10440,door,0,15240 +1252945,scar_across_eye,0,15238 +16738,geta,0,15231 +1226390,purple_flower,0,15227 +3313,dragon,0,15216 +660726,rabbit_girl,0,15211 +375266,top-down_bottom-up,0,15186 +645579,fake_tail,0,15181 +513625,asymmetrical_bangs,0,15171 +548703,sitting_on_person,0,15168 +435262,stubble,0,15155 +1681088,furry_female,0,15151 +588674,furrowed_brow,0,15142 +457114,dragon_tail,0,15125 +15126,interracial,0,15118 +13027,fork,0,15080 +465444,antennae,0,15070 +384441,alternate_color,0,15070 +676924,anchor_symbol,0,15035 +383337,sailor_hat,0,15022 +1569657,arrow_(projectile),0,14974 +1262298,off-shoulder_dress,0,14966 +1757,music,0,14950 +501706,card_(medium),0,14946 +477439,white_wings,0,14916 +2367,blindfold,0,14860 +487236,long_dress,0,14814 +444411,licking_lips,0,14807 +1310938,white_one-piece_swimsuit,0,14803 +1569656,arrow_(symbol),0,14797 +553797,sharp_fingernails,0,14786 +407647,adjusting_hair,0,14768 +478262,double_v,0,14763 +527256,green_ribbon,0,14760 +662424,frog_hair_ornament,0,14727 +460642,spread_arms,0,14713 +549355,arms_at_sides,0,14706 +394528,winter_uniform,0,14666 +2562,camera,0,14662 +5228,wand,0,14618 +432198,arched_back,0,14618 +498413,jacket_on_shoulders,0,14614 +1509969,hip_focus,0,14602 +421492,veiny_penis,0,14598 +1516547,brown_headwear,0,14574 +681331,heart_hair_ornament,0,14555 +594129,head_out_of_frame,0,14554 +8891,zoom_layer,0,14541 +7508,straw_hat,0,14516 +461529,apple,0,14510 +524661,folding_fan,0,14476 +5267,labcoat,0,14458 +397045,railing,0,14457 +494337,purple_ribbon,0,14443 +9260,blanket,0,14441 +5160,gag,0,14424 +387050,sun,0,14422 +297980,hanging_breasts,0,14410 +1358345,pink_footwear,0,14406 +1835743,black_one-piece_swimsuit,0,14389 +541716,yokozuwari,0,14316 +450779,emblem,0,14316 +464583,sunflower,0,14308 +448621,arm_warmers,0,14308 +4318,pasties,0,14304 +465048,dog_girl,0,14302 +392031,groping,0,14294 +622688,muscular_female,0,14294 +2614,shota,0,14290 +10801,android,0,14284 +640898,alternate_hair_length,0,14279 +457574,horizon,0,14277 +403785,lowleg,0,14275 +390589,branch,0,14230 +660814,dot_nose,0,14212 +526693,holding_clothes,0,14179 +5621,smoking,0,14176 +414971,purple_shirt,0,14154 +3714,cannon,0,14150 +1304046,black_bodysuit,0,14119 +1363594,red_hairband,0,14114 +472943,black_sclera,0,14107 +1505129,chinese_text,0,14085 +8104,angel,0,14083 +1349592,blue_kimono,0,14078 +9044,leg_lift,0,14074 +526218,bandeau,0,14074 +420598,highleg_panties,0,14066 +9351,gothic_lolita,0,14051 +646549,red_cape,0,14046 +1351963,ass_focus,0,14019 +380423,goatee,0,14013 +460323,pink_bikini,0,13999 +393578,beanie,0,13998 +397380,name_tag,0,13995 +445092,wince,0,13987 +656161,hand_on_own_cheek,0,13981 +453244,wolf_girl,0,13969 +578430,floral_background,0,13951 +1256471,off-shoulder_shirt,0,13946 +451332,bun_cover,0,13942 +407056,unbuttoned,0,13931 +15395,clock,0,13912 +594404,hat_flower,0,13902 +529493,jack-o'-lantern,0,13886 +560473,partially_visible_vulva,0,13886 +578,lactation,0,13869 +1263229,hand_on_headwear,0,13839 +550131,large_areolae,0,13796 +1343866,black_sleeves,0,13790 +1077303,underbust,0,13739 +408040,hitodama,0,13722 +1359441,collared_dress,0,13716 +562882,blue_pants,0,13705 +442577,ahegao,0,13675 +516350,white_coat,0,13658 +547289,drawstring,0,13624 +524779,microskirt,0,13600 +133767,swimsuit_under_clothes,0,13598 +541903,purple_nails,0,13596 +505450,gift_box,0,13585 +552306,criss-cross_halter,0,13571 +451767,food_on_face,0,13549 +409425,bookshelf,0,13542 +4974,gangbang,0,13540 +6032,tabi,0,13538 +484456,back-to-back,0,13531 +8822,eyeball,0,13531 +2898,basket,0,13522 +560167,character_doll,0,13507 +381163,petticoat,0,13506 +15987,logo,0,13506 +376830,untied,0,13497 +390591,nipple_slip,0,13485 +667849,bandaid_on_face,0,13474 +444095,tail_ornament,0,13468 +1256690,suspender_skirt,0,13451 +4816,gakuran,0,13430 +462124,large_penis,0,13430 +609887,blue_gloves,0,13421 +643824,grabbing_from_behind,0,13400 +448279,cabbie_hat,0,13375 +1312862,blue_bowtie,0,13370 +670983,hand_on_another's_shoulder,0,13361 +305065,saliva_trail,0,13305 +453768,fairy_wings,0,13293 +509,pocky,0,13291 +572684,white_scarf,0,13274 +409592,argyle,0,13257 +455932,size_difference,0,13250 +518422,covered_mouth,0,13250 +663804,armored_dress,0,13203 +537093,lace-up_boots,0,13197 +1354790,yellow_ascot,0,13188 +621064,red_vest,0,13166 +519572,toenail_polish,0,13148 +14859,pointless_censoring,0,13141 +639717,taut_clothes,0,13141 +1332478,shrug_(clothing),0,13135 +550405,holding_flower,0,13117 +420,onsen,0,13111 +1764,guitar,0,13111 +11030,silhouette,0,13100 +457877,leaning_back,0,13073 +558436,silent_comic,0,13061 +588702,vambraces,0,13060 +530083,kneepits,0,13036 +460911,tiles,0,13010 +375026,headdress,0,12999 +10713,unzipped,0,12965 +469042,2koma,0,12953 +1329246,center_frills,0,12943 +535691,butterfly_hair_ornament,0,12934 +375285,winter_clothes,0,12896 +232297,gohei,0,12889 +493832,military_vehicle,0,12879 +149791,drinking,0,12869 +583983,black_cape,0,12865 +713203,crotch_seam,0,12849 +522051,on_head,0,12835 +1602539,vision_(genshin_impact),0,12775 +455615,cow_print,0,12766 +481511,red_lips,0,12763 +5252,cow_ears,0,12756 +399930,highleg_swimsuit,0,12754 +474819,brown_thighhighs,0,12740 +392133,heart_censor,0,12731 +2586,witch,0,12722 +1601823,retro_artstyle,0,12713 +454489,no_nose,0,12712 +4308,pen,0,12700 +1799095,female_child,0,12686 +413878,electricity,0,12677 +470562,spaghetti_strap,0,12671 +406034,arm_grab,0,12648 +43263,anchor,0,12642 +23249,everyone,0,12603 +559022,shirt_tucked_in,0,12589 +2276,pool,0,12575 +11173,sundress,0,12575 +16704,glass,0,12539 +1804525,bridal_garter,0,12500 +571873,checkered_clothes,0,12495 +450702,naval_uniform,0,12444 +378454,wind_lift,0,12417 +1241714,korean_text,0,12403 +742715,adjusting_eyewear,0,12401 +818365,selfie,0,12344 +1571375,poke_ball_(basic),0,12343 +416906,bangle,0,12329 +379970,bound_wrists,0,12313 +10280,flag,0,12313 +488169,cleft_of_venus,0,12302 +482679,facing_away,0,12302 +11270,mittens,0,12284 +464560,frog,0,12276 +843399,double-breasted,0,12249 +435550,headpat,0,12235 +423612,wedding_ring,0,12233 +84427,reading,0,12185 +3468,classroom,0,12185 +469224,blue_thighhighs,0,12162 +720637,chromatic_aberration,0,12156 +517935,purple_bikini,0,12141 +280408,salute,0,12131 +542666,flipped_hair,0,12106 +297241,smug,0,12103 +1447826,notice_lines,0,12078 +1372775,pinafore_dress,0,12076 +1328010,fur-trimmed_jacket,0,12052 +2880,scythe,0,12042 +450337,ankle_boots,0,12038 +2181,cheerleader,0,12038 +644684,chestnut_mouth,0,12015 +693118,absurdly_long_hair,0,12009 +1574,magic,0,11985 +246,nun,0,11976 +659072,muneate,0,11975 +1781,car,0,11969 +458819,talking,0,11958 +668671,holding_knife,0,11922 +607626,hair_stick,0,11915 +481383,wristwatch,0,11893 +230,waitress,0,11884 +1374209,food-themed_hair_ornament,0,11861 +3242,airplane,0,11859 +1307840,stud_earrings,0,11851 +624352,strap_gap,0,11840 +643027,light_blue_hair,0,11820 +376451,inverted_nipples,0,11812 +411783,potted_plant,0,11776 +1297465,pulled_by_self,0,11774 +1667541,pom_pom_(cheerleading),0,11740 +2780,beachball,0,11717 +3880,light,0,11690 +1609981,uneven_legwear,0,11671 +680569,foot_focus,0,11656 +665407,hand_to_own_mouth,0,11651 +1053124,sideways_glance,0,11642 +390064,gagged,0,11622 +492202,flat_cap,0,11622 +458,nurse,0,11587 +1315939,brown_belt,0,11579 +416331,animal_costume,0,11554 +495530,bikini_under_clothes,0,11545 +397948,road,0,11538 +2802,earmuffs,0,11535 +684289,spoken_question_mark,0,11533 +661340,holding_poke_ball,0,11521 +408359,bare_back,0,11507 +8318,nipple_tweak,0,11485 +536,bukkake,0,11472 +656170,hands_on_own_chest,0,11451 +1230896,horn_ornament,0,11447 +3992,bucket,0,11441 +1416387,kita_high_school_uniform,0,11437 +1113504,hair_behind_ear,0,11436 +152,ninja,0,11416 +516299,style_parody,0,11403 +391568,assault_rifle,0,11397 +1387418,back_bow,0,11386 +704492,armored_boots,0,11381 +376460,fishnet_pantyhose,0,11378 +1278425,rigging,0,11372 +374936,lamp,0,11370 +414765,hair_over_eyes,0,11368 +471181,eyeliner,0,11367 +12457,tatami,0,11350 +543958,bags_under_eyes,0,11328 +446289,cow_horns,0,11318 +2565,battle,0,11310 +6312,femdom,0,11272 +1301111,white_sweater,0,11258 +4572,candle,0,11252 +393028,controller,0,11245 +4436,bench,0,11240 +476771,bush,0,11232 +42918,scales,0,11213 +407744,happy_sex,0,11210 +440780,sailor_shirt,0,11194 +646445,mask_on_head,0,11186 +5214,overalls,0,11182 +1327458,steaming_body,0,11182 +1685196,hakama_short_skirt,0,11165 +626241,triangular_headpiece,0,11147 +411560,sexually_suggestive,0,11144 +11883,cityscape,0,11138 +688713,snake_hair_ornament,0,11138 +7580,mecha_musume,0,11109 +465707,biting,0,11105 +461439,tube_top,0,11104 +1328421,crown_braid,0,11099 +613947,toeless_legwear,0,11091 +484631,naked_shirt,0,11046 +15131,riding,0,11036 +468449,brown_dress,0,11032 +605892,pov_hands,0,11004 +441419,:>,0,11000 +473301,bow_bra,0,10993 +544390,>:),0,10964 +498201,mini_crown,0,10958 +1516549,pink_headwear,0,10944 +479176,bird_wings,0,10934 +452205,stuffed_bunny,0,10882 +374409,bad_anatomy,0,10880 +331704,bodystocking,0,10879 +15272,bridal_veil,0,10876 +1862786,reaching_towards_viewer,0,10864 +572672,japanese_armor,0,10861 +482857,joints,0,10857 +2231,fairy,0,10857 +568920,+++,0,10851 +699839,halloween_costume,0,10845 +1372733,blue_leotard,0,10838 +404958,pilot_suit,0,10829 +464543,cable,0,10826 +705211,fake_horns,0,10826 +412037,open_fly,0,10811 +843857,red_kimono,0,10769 +393840,purple_panties,0,10765 +526025,pleated_dress,0,10761 +374533,creature,0,10746 +6158,orgasm,0,10743 +506,dark,0,10736 +558230,ice_wings,0,10733 +532943,covering_crotch,0,10708 +5104,shade,0,10696 +211409,wet_shirt,0,10693 +6318,space,0,10690 +682963,claw_pose,0,10690 +7495,sarong,0,10662 +1308012,red_hakama,0,10624 +669033,triangle_mouth,0,10620 +1669227,hugging_own_legs,0,10590 +1257079,print_kimono,0,10568 +535186,breast_pocket,0,10565 +386389,bracer,0,10564 +390180,bathing,0,10559 +185924,key,0,10559 +1389122,black_collar,0,10551 +480899,5boys,0,10529 +394881,school_desk,0,10512 +394136,red_panties,0,10506 +1801550,single_side_bun,0,10504 +463399,randoseru,0,10500 +1303436,red_choker,0,10497 +464570,peach,0,10486 +389456,holster,0,10474 +599873,air_bubble,0,10456 +493887,food_in_mouth,0,10448 +576561,alternate_eye_color,0,10424 +484924,heart_hands,0,10415 +16149,sack,0,10410 +547893,indian_style,0,10398 +525747,lolita_hairband,0,10392 +1611664,oil-paper_umbrella,0,10388 +695937,white_outline,0,10369 +414957,confetti,0,10366 +4965,dagger,0,10358 +648077,heart_of_string,0,10355 +421188,against_wall,0,10350 +603647,frilled_shirt,0,10347 +1685910,painting_(medium),0,10330 +1693074,own_hands_clasped,0,10329 +613597,print_legwear,0,10327 +656166,hands_on_own_face,0,10322 +507378,yellow_bikini,0,10320 +580906,low_wings,0,10316 +466164,laughing,0,10311 +669725,holding_bag,0,10306 +459290,snowflakes,0,10304 +469422,paw_print,0,10283 +670635,cross-laced_clothes,0,10276 +394722,wet_hair,0,10266 +528129,one_breast_out,0,10265 +614988,pink_jacket,0,10262 +466325,autumn_leaves,0,10259 +394150,blue_rose,0,10234 +377998,petite,0,10222 +5626,antlers,0,10214 +610524,star-shaped_pupils,0,10212 +408438,hair_up,0,10209 +1262171,holding_bottle,0,10182 +614271,lace-trimmed_legwear,0,10161 +551848,polka_dot_background,0,10147 +1795966,cone_hair_bun,0,10144 +8180,drunk,0,10135 +461736,alternate_hair_color,0,10128 +15020,hibiscus,0,10120 +1447858,feather_hair_ornament,0,10080 +464545,carrot,0,10075 +502136,whisker_markings,0,10073 +468789,paw_gloves,0,10067 +434704,string,0,10059 +653480,yellow_jacket,0,10056 +2559,incest,0,10052 +1681089,furry_male,0,10041 +411770,cum_in_ass,0,10031 +4358,plugsuit,0,10025 +372,bath,0,10024 +464674,stretching,0,10003 +288161,office_lady,0,9994 +15771,raccoon_ears,0,9993 +1335363,arm_tattoo,0,9987 +4026,pumpkin,0,9981 +602796,star_print,0,9977 +1285325,wrist_scrunchie,0,9952 +1297657,zipper_pull_tab,0,9949 +1320887,anal_object_insertion,0,9943 +474598,tate_eboshi,0,9933 +473213,red_thighhighs,0,9930 +656167,hand_on_another's_face,0,9907 +450266,wine_glass,0,9903 +617956,brown_shirt,0,9902 +1314823,black_sweater,0,9902 +9586,habit,0,9879 +469551,facepaint,0,9873 +496617,marker_(medium),0,9871 +594366,bat_(animal),0,9870 +1250483,holding_fan,0,9859 +409720,scabbard,0,9851 +1222476,crescent_hair_ornament,0,9841 +412048,ribbon_choker,0,9807 +3444,computer,0,9803 +4960,parasol,0,9779 +638006,thighlet,0,9776 +576287,blood_on_clothes,0,9756 +592643,navel_cutout,0,9752 +616593,purple_gloves,0,9741 +13810,torii,0,9738 +1481917,sakuragaoka_high_school_uniform,0,9728 +375110,haori,0,9727 +544230,asymmetrical_wings,0,9708 +9481,teapot,0,9705 +456270,tasuki,0,9704 +720760,holding_tray,0,9683 +485597,grey_dress,0,9677 +251010,tiger_ears,0,9659 +4787,axe,0,9654 +158473,string_panties,0,9651 +1369967,watercraft,0,9647 +1410771,artist_logo,0,9625 +14607,tight,0,9619 +414233,cum_on_clothes,0,9606 +488078,purple_jacket,0,9606 +375461,belly,0,9587 +15202,nipple_piercing,0,9585 +6182,shibari,0,9571 +461639,happy_new_year,0,9568 +613998,mismatched_legwear,0,9561 +477517,chinese_zodiac,0,9552 +9504,magatama,0,9538 +3748,slippers,0,9521 +1799094,male_child,0,9515 +555246,black_border,0,9514 +426594,lace-trimmed_panties,0,9497 +871328,black_kimono,0,9495 +4939,precum,0,9450 +672705,pink_kimono,0,9438 +408248,transparent,0,9427 +125420,bald,0,9406 +428808,wagashi,0,9402 +1316394,hip_vent,0,9399 +614827,tachi-e,0,9376 +1260880,fang_out,0,9362 +2414,vampire,0,9361 +1393212,yellow_neckerchief,0,9349 +547199,bikini_skirt,0,9343 +675233,open_cardigan,0,9334 +472448,highleg_bikini,0,9302 +499324,red_shorts,0,9295 +666816,hand_on_own_head,0,9293 +1516550,purple_headwear,0,9284 +723097,after_vaginal,0,9283 +419116,tied_shirt,0,9268 +448185,garrison_cap,0,9268 +1310698,curled_horns,0,9264 +1749079,sample_watermark,0,9235 +589024,arm_strap,0,9233 +394083,knee_pads,0,9225 +1339640,midriff_peek,0,9216 +483988,condom_wrapper,0,9209 +881062,grabbing_own_breast,0,9198 +377888,torn_pantyhose,0,9190 +1244676,one-piece_tan,0,9186 +400382,mouse_tail,0,9163 +678558,hand_on_own_chin,0,9161 +1276712,layered_sleeves,0,9154 +3473,giant,0,9154 +500472,evil_smile,0,9152 +4964,nosebleed,0,9148 +1355714,crescent_hat_ornament,0,9140 +9983,dancing,0,9125 +456515,tiger_print,0,9101 +474210,leg_ribbon,0,9099 +396079,looking_afar,0,9094 +686321,half_gloves,0,9094 +397156,presenting,0,9077 +390148,green_skin,0,9064 +504750,princess_carry,0,9062 +492982,layered_dress,0,9050 +480027,purple_thighhighs,0,9049 +615659,blue_vest,0,9031 +376270,pantyhose_pull,0,9024 +388908,raglan_sleeves,0,9022 +200140,magic_circle,0,9019 +375526,short_kimono,0,9014 +500740,very_short_hair,0,9011 +578891,shoulder_blades,0,9004 +515909,asymmetrical_clothes,0,8994 +473248,blue_bra,0,8975 +578643,striped_background,0,8966 +562575,green_bikini,0,8960 +785234,shoulder_cutout,0,8944 +11019,scared,0,8937 +461530,balloon,0,8936 +618117,legwear_under_shorts,0,8925 +444507,deep_skin,0,8924 +75228,aura,0,8909 +2246,wall,0,8904 +451190,layered_skirt,0,8899 +1451201,draph,0,8887 +411966,used_condom,0,8885 +460555,hair_censor,0,8876 +1618371,body_fur,0,8864 +493064,over_shoulder,0,8857 +454128,head_wreath,0,8850 +547384,tail_raised,0,8841 +468991,kicking,0,8840 +395583,mother_and_daughter,0,8838 +533391,open_hand,0,8832 +520839,sound_effects,0,8828 +461159,reference_sheet,0,8828 +1635846,tracen_school_uniform,0,8818 +541599,mechanical_arms,0,8817 +470019,one_knee,0,8804 +449932,w,0,8800 +166945,yellow_dress,0,8796 +11870,manly,0,8789 +498546,male_underwear,0,8784 +397155,huge_ass,0,8779 +513423,graphite_(medium),0,8775 +1672,tea,0,8754 +521120,backless_dress,0,8747 +1303251,grey_pants,0,8746 +1318267,public_indecency,0,8718 +538586,hat_feather,0,8714 +1233477,crop_top_overhang,0,8702 +14461,open_kimono,0,8696 +596449,pigeon-toed,0,8687 +8577,paintbrush,0,8685 +1302741,red_ascot,0,8670 +1420938,holding_polearm,0,8660 +5857,leather,0,8653 +473218,lace-trimmed_bra,0,8648 +1462380,disposable_cup,0,8626 +669790,futa_with_female,0,8624 +15258,torpedo,0,8616 +574178,o-ring_top,0,8610 +522720,naked_towel,0,8608 +572821,star_earrings,0,8595 +574501,ringed_eyes,0,8594 +1740,mermaid,0,8590 +567329,limited_palette,0,8586 +547394,o-ring_bikini,0,8586 +1257811,on_couch,0,8586 +1253894,holding_microphone,0,8580 +516029,shimenawa,0,8576 +728807,animification,0,8571 +558829,animal_on_head,0,8562 +1379635,mmf_threesome,0,8547 +1256688,bandaged_leg,0,8535 +462974,squiggle,0,8526 +501583,in_container,0,8526 +416486,photo_(object),0,8523 +1388797,blue_neckerchief,0,8514 +469978,glowing_eye,0,8491 +12724,field,0,8487 +484616,maple_leaf,0,8481 +507586,yellow_skirt,0,8480 +3102,greaves,0,8472 +1575551,gap_(touhou),0,8465 +484880,architecture,0,8439 +10369,bedroom,0,8419 +383117,breast_sucking,0,8415 +388762,sleeveless_turtleneck,0,8392 +513428,watercolor_(medium),0,8390 +1617412,bare_pectorals,0,8389 +646363,company_name,0,8382 +384905,symmetrical_docking,0,8373 +421507,leg_grab,0,8371 +1349338,red_leotard,0,8367 +563862,gameplay_mechanics,0,8356 +380303,bound_arms,0,8353 +593165,out-of-frame_censoring,0,8346 +1409552,ooarai_school_uniform,0,8335 +430765,sunbeam,0,8334 +13126,lineart,0,8325 +1081137,imminent_penetration,0,8323 +617541,brown_pants,0,8310 +10704,bamboo,0,8306 +516432,imminent_kiss,0,8301 +8433,thumbs_up,0,8295 +440369,multiple_persona,0,8287 +726933,clothes_around_waist,0,8264 +447310,green_nails,0,8240 +576693,tile_floor,0,8235 +726825,shoulder_tattoo,0,8188 +811495,undercut,0,8166 +718360,polka_dot_bow,0,8151 +13851,halftone,0,8144 +3356,peeing,0,8144 +396470,arm_cannon,0,8124 +545704,blue_hairband,0,8107 +412080,sleeve_cuffs,0,8091 +443796,under_covers,0,8086 +4065,explosion,0,8083 +459097,cowbell,0,8081 +639869,white_cape,0,8076 +481547,holding_hair,0,8074 +7834,naked_apron,0,8071 +514087,cross_necklace,0,8065 +4633,singing,0,8060 +465393,pee,0,8051 +546667,print_shirt,0,8035 +5199,leggings,0,8021 +7929,shackles,0,8009 +4429,pencil,0,8008 +530616,checkered_floor,0,8005 +412376,stitches,0,7998 +1379926,black_hoodie,0,7998 +637674,slingshot_swimsuit,0,7995 +1301235,pubic_tattoo,0,7995 +12391,double_penetration,0,7977 +1447595,foot_out_of_frame,0,7969 +2570,idol,0,7969 +108777,bra_lift,0,7966 +374955,ruins,0,7962 +2100,summer,0,7947 +6203,vines,0,7946 +9331,falling,0,7937 +443371,raccoon_tail,0,7937 +515552,striped_dress,0,7913 +8301,black_cat,0,7906 +16791,strap,0,7905 +411657,torn_thighhighs,0,7901 +1396655,white_capelet,0,7899 +460204,hair_over_breasts,0,7896 +1441862,purple_footwear,0,7895 +491150,^o^,0,7888 +491645,head_fins,0,7886 +530962,arm_under_breasts,0,7879 +11651,annoyed,0,7846 +2566,mushroom,0,7841 +2215,house,0,7822 +463475,iron_cross,0,7811 +1271756,black_scarf,0,7811 +1488686,tilted_headwear,0,7803 +1429562,two-tone_dress,0,7795 +682686,spoken_exclamation_mark,0,7795 +186201,skirt_pull,0,7793 +581500,plaid_vest,0,7793 +30851,3koma,0,7783 +1441878,eyewear_removed,0,7776 +662950,name_connection,0,7769 +3898,tank,0,7761 +1320888,vaginal_object_insertion,0,7760 +491943,dark_persona,0,7756 +53988,fox_mask,0,7754 +457806,artist_self-insert,0,7751 +399391,spiked_bracelet,0,7746 +1257081,scar_on_cheek,0,7741 +610074,platform_footwear,0,7726 +430066,id_card,0,7720 +1364407,genderswap_(ftm),0,7710 +1393342,erune,0,7710 +1501454,tinted_eyewear,0,7706 +496894,face-to-face,0,7693 +11555,bathroom,0,7684 +5157,sad,0,7681 +403904,french_kiss,0,7681 +16170,television,0,7676 +384906,asymmetrical_docking,0,7672 +400657,one-eyed,0,7665 +388149,ranguage,0,7639 +715545,duel_monster,0,7629 +650433,invisible_chair,0,7628 +421031,huge_weapon,0,7615 +1278539,long_sideburns,0,7615 +268105,pants_pull,0,7606 +532949,trigger_discipline,0,7603 +395294,head_scarf,0,7603 +724764,hand_on_own_thigh,0,7601 +395929,bikini_pull,0,7592 +502731,hachimaki,0,7590 +471436,doughnut,0,7587 +720163,partially_unbuttoned,0,7566 +698860,hand_on_own_knee,0,7563 +1644111,official_alternate_hairstyle,0,7560 +392495,tiptoes,0,7543 +1470809,red_horns,0,7539 +1441860,grey_footwear,0,7531 +238471,babydoll,0,7528 +1370047,white_choker,0,7528 +458210,bikini_armor,0,7519 +408887,shoulder_pads,0,7517 +419695,sakazuki,0,7507 +745997,holding_animal,0,7496 +474306,headphones_around_neck,0,7496 +465836,cutoffs,0,7481 +404056,yukkuri_shiteitte_ne,0,7470 +376034,white_eyes,0,7469 +838605,animal_focus,0,7469 +1392820,black_neckerchief,0,7468 +1328011,fur-trimmed_sleeves,0,7459 +525152,white_fur,0,7451 +1450619,wide_shot,0,7448 +414159,x-ray,0,7447 +665137,sandwiched,0,7438 +485014,white_rose,0,7434 +3138,bread,0,7434 +658791,necktie_between_breasts,0,7425 +1554924,m_legs,0,7415 +2998,cunnilingus,0,7414 +4924,camouflage,0,7408 +560670,narrow_waist,0,7400 +490069,disembodied_limb,0,7396 +462735,old,0,7394 +390530,grey_skin,0,7379 +500,fundoshi,0,7377 +537886,shorts_under_skirt,0,7375 +575497,starry_background,0,7371 +434799,0_0,0,7365 +1383260,purple_kimono,0,7360 +406340,oversized_clothes,0,7355 +474715,crescent_moon,0,7354 +1701063,holding_another's_wrist,0,7353 +584250,summer_uniform,0,7346 +498950,orange_skirt,0,7335 +401680,sweater_dress,0,7335 +665739,holding_gift,0,7327 +612000,constricted_pupils,0,7324 +464580,split,0,7321 +629455,striped_necktie,0,7315 +392034,dripping,0,7314 +538023,on_ground,0,7311 +529429,covered_eyes,0,7294 +403779,navel_piercing,0,7290 +420828,sliding_doors,0,7286 +703196,leaf_hair_ornament,0,7283 +420298,big_hair,0,7279 +385088,earphones,0,7265 +10403,futon,0,7263 +6202,winter,0,7255 +732590,interspecies,0,7250 +1363856,star_hat_ornament,0,7249 +472069,cross-section,0,7243 +279773,body_writing,0,7234 +715714,voice_actor_connection,0,7232 +1379636,ffm_threesome,0,7231 +1267724,symbol_in_eye,0,7230 +473742,two_tails,0,7216 +661337,aqua_nails,0,7214 +510068,splashing,0,7209 +467794,cow_girl,0,7208 +1456682,armpit_crease,0,7206 +534254,brick_wall,0,7205 +415106,neck_ring,0,7199 +142348,wardrobe_malfunction,0,7198 +590917,leaf_on_head,0,7197 +10802,bonnet,0,7196 +478328,rolling_eyes,0,7194 +491802,standing_sex,0,7190 +1468069,multiple_others,0,7172 +5861,bishounen,0,7162 +478321,checkered_background,0,7160 +595503,facial_tattoo,0,7160 +412952,arm_garter,0,7155 +374961,no_pupils,0,7144 +581653,smoking_pipe,0,7135 +3971,handcuffs,0,7116 +684956,frilled_bow,0,7114 +666125,holding_fruit,0,7112 +416892,;o,0,7110 +462594,bobby_socks,0,7106 +558653,casual_one-piece_swimsuit,0,7099 +1515359,pink_theme,0,7096 +710372,orange_shirt,0,7095 +108765,broom_riding,0,7094 +588956,untied_bikini,0,7093 +4940,foreskin,0,7082 +1264677,anchor_hair_ornament,0,7082 +391251,breast_rest,0,7080 +438708,frilled_panties,0,7062 +569780,pink_rose,0,7060 +464551,cookie,0,7055 +1238881,yellow_necktie,0,7052 +606614,shoes_removed,0,7051 +606732,soaking_feet,0,7044 +447060,spiked_collar,0,7038 +1622419,straight-on,0,7034 +1269638,handheld_game_console,0,7006 +390893,water_bottle,0,7005 +551141,arm_ribbon,0,7002 +395658,christmas_tree,0,7002 +388207,yin_yang,0,7000 +402799,tiger_tail,0,6999 +501739,folded,0,6990 +2918,fireworks,0,6979 +490606,afterimage,0,6977 +492645,gyaru,0,6975 +493164,forehead_jewel,0,6972 +596854,blue_scarf,0,6969 +1400566,toned_male,0,6962 +423161,object_on_head,0,6956 +490261,partially_colored,0,6915 +511662,arm_guards,0,6904 +483436,fish_tail,0,6898 +392008,chalkboard,0,6879 +410002,sheet_grab,0,6869 +562151,short_over_long_sleeves,0,6864 +1269062,mitakihara_school_uniform,0,6848 +1441887,rimless_eyewear,0,6847 +439130,anniversary,0,6846 +452549,!!,0,6845 +1508967,purple_theme,0,6844 +3509,syringe,0,6844 +1228172,asymmetrical_gloves,0,6843 +511640,single_shoe,0,6836 +1551197,1990s_(style),0,6832 +2298,watermelon,0,6825 +3531,bridge,0,6818 +487745,sitting_on_lap,0,6811 +2576,fat,0,6804 +148527,stool,0,6804 +5006,rice,0,6803 +12286,badge,0,6793 +526607,print_bikini,0,6792 +54490,monitor,0,6790 +673732,goat_horns,0,6781 +390703,purple_skin,0,6770 +543207,east_asian_architecture,0,6768 +436870,:/,0,6764 +1491182,vehicle_focus,0,6762 +498466,implied_sex,0,6760 +385431,submachine_gun,0,6752 +396065,green_panties,0,6749 +16507,lion_ears,0,6743 +663521,shoe_soles,0,6742 +1447648,sailor_senshi_uniform,0,6742 +1261156,green_vest,0,6736 +559585,playing_instrument,0,6736 +1637638,heart_brooch,0,6717 +1328025,fur-trimmed_coat,0,6714 +381114,red_skin,0,6712 +546385,heart_earrings,0,6708 +1505172,engrish_text,0,6700 +675356,multicolored_background,0,6696 +614744,red_pants,0,6695 +643811,micro_shorts,0,6693 +1898,hammer,0,6666 +1330221,fur-trimmed_gloves,0,6666 +714822,red_theme,0,6657 +1313352,brown_sweater,0,6654 +416507,torn_shirt,0,6653 +418177,ripples,0,6653 +606748,chibi_inset,0,6650 +606296,dappled_sunlight,0,6636 +1248463,brown_coat,0,6636 +1326379,red_capelet,0,6625 +604394,pointing_at_viewer,0,6623 +676529,licking_penis,0,6622 +724584,hooded_cloak,0,6622 +1600,beer,0,6619 +376671,scroll,0,6603 +1661326,content_rating,0,6602 +378581,brothers,0,6595 +1708,sake,0,6594 +3904,rainbow,0,6593 +1733109,jaggy_lines,0,6576 +1490428,fringe_trim,0,6558 +464558,egg,0,6557 +585852,skirt_removed,0,6555 +374606,giantess,0,6555 +706995,erection_under_clothes,0,6541 +1314745,blue_choker,0,6538 +1392012,white_bodysuit,0,6532 +399604,fucked_silly,0,6527 +8988,sniper_rifle,0,6526 +622607,official_style,0,6521 +1397428,white_tank_top,0,6513 +413865,planet,0,6511 +1382120,holding_instrument,0,6509 +483418,mini_top_hat,0,6506 +509903,tying_hair,0,6502 +1354336,grey_shorts,0,6501 +375594,pink_thighhighs,0,6498 +1375840,rabbit_hair_ornament,0,6488 +69696,undershirt,0,6482 +439891,d:,0,6477 +1542129,skin-covered_horns,0,6470 +8696,bathtub,0,6469 +608355,karakasa_obake,0,6453 +473284,frilled_bra,0,6450 +11231,feeding,0,6449 +1422110,ears_through_headwear,0,6435 +933253,on_chair,0,6435 +1251101,off-shoulder_sweater,0,6427 +482927,belt_pouch,0,6405 +501783,miqo'te,0,6396 +1431068,holding_stuffed_toy,0,6394 +4547,lowleg_panties,0,6386 +3577,motorcycle,0,6373 +391915,print_panties,0,6371 +468075,jiangshi,0,6364 +2409,error,0,6362 +394743,cushion,0,6357 +1732562,bikini_bottom_only,0,6351 +466142,fishnet_thighhighs,0,6345 +1260411,holding_plate,0,6341 +464547,cherry,0,6336 +16710,sepia,0,6336 +1304069,yellow_bowtie,0,6334 +694174,torogao,0,6327 +2182,police,0,6319 +474091,downblouse,0,6318 +14297,cyborg,0,6309 +507496,chess_piece,0,6302 +511571,zzz,0,6294 +374967,power_lines,0,6288 +464550,coin,0,6279 +1401801,black_capelet,0,6271 +6230,latex,0,6269 +202427,3:,0,6262 +376018,ribs,0,6257 +482376,game_controller,0,6245 +465523,race_queen,0,6245 +487559,lamppost,0,6233 +462578,merry_christmas,0,6216 +474717,front_ponytail,0,6216 +616616,panties_removed,0,6210 +460159,body_blush,0,6210 +561394,reverse_cowgirl_position,0,6205 +393313,nervous,0,6205 +393361,seductive_smile,0,6198 +1261355,bead_bracelet,0,6191 +1450868,chaldea_uniform,0,6191 +6425,scissors,0,6177 +4803,birthday,0,6176 +1320207,white_bowtie,0,6172 +1169097,frilled_hairband,0,6172 +1262142,holding_bouquet,0,6169 +519374,white_belt,0,6166 +3569,sleepy,0,6162 +642359,faulds,0,6156 +5011,horse,0,6155 +420311,\m/,0,6152 +495147,hair_slicked_back,0,6150 +378042,bear_ears,0,6149 +502301,tail_wagging,0,6145 +13859,perspective,0,6139 +375373,long_coat,0,6137 +476548,pinky_out,0,6133 +1312164,green_necktie,0,6130 +34553,dirty,0,6130 +606828,bead_necklace,0,6129 +1316159,leaning_to_the_side,0,6125 +8354,reclining,0,6121 +651956,clothed_male_nude_female,0,6120 +1302909,brown_shorts,0,6118 +1424093,otonokizaka_school_uniform,0,6112 +109153,saucer,0,6111 +15994,shirt_pull,0,6107 +545740,taut_shirt,0,6107 +458796,sheep_horns,0,6107 +681480,light_frown,0,6101 +461699,blank_eyes,0,6090 +6235,harness,0,6090 +835846,white_collar,0,6090 +546417,girl_sandwich,0,6090 +422720,uwabaki,0,6087 +423348,chest_hair,0,6087 +378899,bride,0,6079 +1684829,heads_together,0,6079 +417892,shell,0,6078 +398297,shouting,0,6077 +238935,track_suit,0,6077 +504234,punching,0,6076 +488261,blue_cape,0,6061 +1328339,multi-strapped_bikini,0,6061 +15959,loose_socks,0,6059 +664517,kariginu,0,6058 +527888,animalization,0,6048 +1313798,blue_sweater,0,6045 +712121,trait_connection,0,6043 +1515356,green_theme,0,6040 +351213,unfinished,0,6040 +383707,pun,0,6039 +381678,broken,0,6035 +1385413,white_hoodie,0,6033 +493465,playing_card,0,6014 +2762,coffee,0,6011 +379375,red_coat,0,5995 +493130,plaid_shirt,0,5995 +593668,huge_ahoge,0,5994 +418912,cum_string,0,5987 +1385535,grey_sweater,0,5986 +377360,take_your_pick,0,5971 +435834,torso_grab,0,5965 +397487,pillow_hug,0,5965 +1329446,green_shorts,0,5958 +1248639,grey_gloves,0,5953 +1364404,male_swimwear,0,5951 +464537,bruise,0,5949 +465180,ball_gag,0,5938 +473775,pointy_hair,0,5932 +1437338,brown_cardigan,0,5931 +391704,pervert,0,5928 +1468296,beamed_eighth_notes,0,5921 +14258,nekomata,0,5908 +375915,animal_hat,0,5879 +579943,hair_pulled_back,0,5875 +1613133,assertive_female,0,5874 +1320534,pink_bowtie,0,5868 +415942,jester_cap,0,5864 +329,bestiality,0,5862 +379427,skeleton,0,5861 +695377,planted,0,5847 +1152618,bandaid_on_leg,0,5846 +710095,striped_bowtie,0,5842 +516937,oversized_object,0,5840 +541644,aqua_background,0,5839 +563425,waist_cape,0,5834 +1367825,green_kimono,0,5834 +487850,tentacle_sex,0,5833 +399265,fat_mons,0,5833 +659487,black_tank_top,0,5828 +466467,burger,0,5826 +390768,old_man,0,5822 +3860,cooking,0,5819 +1322401,black_horns,0,5817 +1396773,fur-trimmed_capelet,0,5814 +1282122,green_footwear,0,5807 +440458,xd,0,5781 +421520,no_eyes,0,5769 +9894,lap_pillow,0,5767 +1375839,holding_chopsticks,0,5765 +526026,multicolored_dress,0,5757 +399455,poolside,0,5755 +16739,clipboard,0,5755 +1326641,purple_bowtie,0,5755 +1251890,suggestive_fluid,0,5752 +471574,over-kneehighs,0,5752 +644510,dark_background,0,5752 +2311,pregnant,0,5750 +626633,spoken_musical_note,0,5741 +375185,doll_joints,0,5739 +15670,beach_umbrella,0,5737 +466986,horn_ribbon,0,5730 +380747,speed_lines,0,5726 +379609,bra_pull,0,5725 +1394264,holding_bow_(weapon),0,5725 +2648,nightgown,0,5717 +145788,fur,0,5713 +1041483,split_mouth,0,5711 +580402,plaid_scarf,0,5706 +462351,animal_nose,0,5706 +1428556,standing_split,0,5701 +1474967,grey_headwear,0,5699 +467264,yawning,0,5693 +1367435,falling_petals,0,5680 +3249,wine,0,5677 +377,mouse,0,5676 +1616,kotatsu,0,5667 +1275190,twisted_torso,0,5662 +414161,cum_on_ass,0,5661 +1246198,mechanical_halo,0,5658 +1750248,onee-shota,0,5654 +408582,expressions,0,5652 +1689923,pectoral_cleavage,0,5650 +623300,bubble_skirt,0,5648 +420744,shelf,0,5647 +473283,purple_bra,0,5644 +2786,loincloth,0,5630 +1318186,braided_bun,0,5618 +464571,pillar,0,5618 +520820,female_orgasm,0,5616 +1484630,see-through_sleeves,0,5615 +378072,huge_penis,0,5614 +1425519,tokiwadai_school_uniform,0,5612 +5086,whip,0,5610 +1316339,sweating_profusely,0,5600 +506311,weapon_over_shoulder,0,5599 +516375,biceps,0,5593 +492465,grey_thighhighs,0,5590 +422021,cow_tail,0,5579 +412879,playing_games,0,5575 +603198,red_sweater,0,5574 +552246,red_collar,0,5571 +422654,gigantic_breasts,0,5569 +421658,cardboard_box,0,5565 +582833,ear_blush,0,5561 +639323,skull_hair_ornament,0,5557 +560578,multicolored_skin,0,5557 +615907,pink_gloves,0,5555 +547756,bare_tree,0,5555 +1496184,tassel_earrings,0,5537 +387233,paper_fan,0,5535 +1316985,shark_tail,0,5523 +410239,superhero,0,5520 +41161,street,0,5515 +460438,damaged,0,5505 +407260,polka_dot_panties,0,5502 +663579,holding_spoon,0,5500 +480577,:|,0,5494 +3516,river,0,5492 +8671,female_ejaculation,0,5488 +432914,flat_color,0,5483 +449907,topknot,0,5483 +1318935,aqua_necktie,0,5482 +660963,diamond_(shape),0,5468 +665765,animal_collar,0,5465 +438648,stand_(jojo),0,5463 +389066,castle,0,5462 +5473,tape,0,5460 +172313,time_paradox,0,5460 +393283,orb,0,5456 +2282,footjob,0,5450 +556987,sparkling_eyes,0,5450 +482590,=3,0,5445 +11458,baseball_bat,0,5437 +12438,grapes,0,5437 +15117,police_uniform,0,5434 +3767,laptop,0,5430 +605308,between_fingers,0,5424 +495048,lily_(flower),0,5422 +490010,extra_arms,0,5422 +1410613,patreon_logo,0,5421 +474502,explosive,0,5420 +302968,wet_panties,0,5417 +473214,red_bra,0,5416 +547348,extra_eyes,0,5410 +511691,sweater_lift,0,5404 +821623,female_pervert,0,5400 +1251292,fur-trimmed_cape,0,5393 +634063,flag_print,0,5382 +1631734,single_mechanical_arm,0,5382 +511642,single_sock,0,5372 +652562,book_stack,0,5372 +6413,uterus,0,5372 +1398817,thighhighs_under_boots,0,5356 +1303018,blue_coat,0,5353 +613923,argyle_legwear,0,5348 +1719049,split-color_hair,0,5347 +564515,vertical-striped_thighhighs,0,5345 +1303914,pink_choker,0,5343 +413872,breast_envy,0,5329 +1416880,yellow_footwear,0,5328 +1408307,black_blindfold,0,5327 +6188,dressing,0,5323 +582261,unmoving_pattern,0,5319 +399834,forehead_protector,0,5312 +614881,open_vest,0,5307 +623331,company_connection,0,5304 +399073,waistcoat,0,5304 +727102,hand_on_own_stomach,0,5303 +1492952,super_crown,0,5298 +1320446,facing_another,0,5296 +491474,gym_shirt,0,5296 +1290625,single_bare_shoulder,0,5293 +501384,long_braid,0,5282 +413907,;p,0,5280 +3288,penguin,0,5278 +626213,diagonal_stripes,0,5277 +665797,hand_on_own_ass,0,5270 +381455,shopping_bag,0,5251 +568318,bokeh,0,5237 +577266,chain-link_fence,0,5236 +660644,heart_cutout,0,5234 +407913,bursting_breasts,0,5231 +403477,electric_guitar,0,5230 +474204,frilled_thighhighs,0,5228 +526806,tengu-geta,0,5227 +416268,v-neck,0,5223 +2806,exhibitionism,0,5222 +456272,dog_tags,0,5216 +710056,fox_shadow_puppet,0,5215 +9127,dango,0,5212 +471020,covering_face,0,5210 +1243442,competition_school_swimsuit,0,5209 +10322,albino,0,5205 +582827,adjusting_headwear,0,5204 +425624,charm_(object),0,5199 +4491,monocle,0,5192 +9449,internal_cumshot,0,5189 +2083,meat,0,5184 +388072,costume_switch,0,5183 +434225,purple_lips,0,5180 +1398298,fur-trimmed_dress,0,5174 +415545,twilight,0,5171 +405409,tail_ribbon,0,5170 +5814,autumn,0,5169 +1418952,colored_tips,0,5163 +55663,danmaku,0,5161 +375456,zombie,0,5161 +374357,yandere,0,5160 +492671,moaning,0,5160 +632123,clothes_removed,0,5159 +1258734,looking_ahead,0,5157 +405981,breast_suppress,0,5155 +656330,hands_on_own_cheeks,0,5141 +1548634,braided_bangs,0,5130 +4440,wolf,0,5123 +379597,shorts_pull,0,5123 +1008745,sanpaku,0,5121 +471598,tail_bow,0,5119 +1441881,holding_eyewear,0,5118 +540619,holding_hat,0,5118 +1406853,serval_print,0,5115 +1618887,infection_monitor_(arknights),0,5114 +432947,no_socks,0,5102 +485638,blood_splatter,0,5101 +1782390,traditional_bowtie,0,5099 +442229,flame,0,5094 +400587,reaching,0,5094 +450547,water_gun,0,5082 +448399,dougi,0,5074 +436889,stomach_bulge,0,5063 +485218,trading_card,0,5058 +406885,thong_bikini,0,5056 +374989,quiver,0,5054 +651810,holding_card,0,5051 +481812,teardrop,0,5044 +587579,floating_object,0,5042 +388210,gold,0,5036 +666921,holding_fork,0,5027 +7818,anal_beads,0,5024 +1356896,armpit_peek,0,5023 +486149,military_jacket,0,5019 +423823,ship,0,5013 +2688,knight,0,5010 +439147,cum_on_tongue,0,4999 +2364,onigiri,0,4999 +424779,thigh_holster,0,4992 +449465,firing,0,4985 +603226,heart_print,0,4974 +10367,prosthesis,0,4974 +456933,microphone_stand,0,4972 +578856,pink_sweater,0,4971 +578948,closed_umbrella,0,4969 +398857,mind_control,0,4963 +655244,cross_earrings,0,4960 +398955,flower_field,0,4958 +431532,fake_screenshot,0,4953 +438177,father_and_daughter,0,4953 +455753,leg_warmers,0,4938 +10495,cowboy_hat,0,4938 +615718,green_gloves,0,4935 +9469,noodles,0,4928 +11067,jumpsuit,0,4928 +646772,solid_circle_eyes,0,4920 +10045,family,0,4917 +11062,fox,0,4913 +494896,hydrangea,0,4913 +383172,train_interior,0,4907 +468509,paper_lantern,0,4903 +409832,robot_joints,0,4893 +1268860,chest_jewel,0,4891 +502421,glaring,0,4887 +1345874,weapon_on_back,0,4887 +715118,ear_covers,0,4883 +784749,leotard_under_clothes,0,4883 +405861,rose_petals,0,4880 +417653,convenient_leg,0,4879 +553870,sleeveless_jacket,0,4875 +533114,turn_pale,0,4870 +410885,skyscraper,0,4869 +449502,dimples_of_venus,0,4869 +547349,heart_ahoge,0,4867 +398219,breast_lift,0,4865 +1269470,chest_tattoo,0,4864 +8475,bicycle,0,4861 +640872,pov_crotch,0,4861 +1304062,yellow_hairband,0,4850 +1347239,holding_wand,0,4848 +508932,side-by-side,0,4841 +398888,vase,0,4840 +1168235,halter_dress,0,4833 +1587249,oripathy_lesion_(arknights),0,4833 +459964,unsheathing,0,4830 +3152,lance,0,4830 +3778,amputee,0,4811 +661260,yellow_nails,0,4811 +1528415,roswaal_mansion_maid_uniform,0,4808 +619558,peeking_out,0,4794 +591983,disembodied_penis,0,4794 +549705,red_bodysuit,0,4786 +821048,pink_hairband,0,4785 +492769,picture_frame,0,4783 +513605,colored_pencil_(medium),0,4777 +1322968,old_school_swimsuit,0,4774 +12858,bone,0,4765 +538432,full_armor,0,4765 +6328,chick,0,4764 +389995,red_wings,0,4763 +561421,striped_ribbon,0,4762 +486934,no_mouth,0,4760 +695469,plaid_bow,0,4757 +511644,single_wing,0,4757 +105306,condom_in_mouth,0,4753 +615970,yellow_sclera,0,4752 +430739,large_bow,0,4751 +429487,double_handjob,0,4750 +1378403,purple_leotard,0,4748 +1298744,frilled_choker,0,4746 +1281052,brown_bow,0,4746 +466015,kitsune,0,4740 +439983,knees,0,4739 +1384761,blue_hoodie,0,4738 +1393856,hooded_coat,0,4730 +515350,knees_to_chest,0,4721 +531754,long_bangs,0,4721 +679252,solid_oval_eyes,0,4715 +418178,waves,0,4712 +473022,side_braids,0,4709 +479932,strap_pull,0,4702 +410928,multiple_4koma,0,4699 +390918,elbow_pads,0,4698 +433344,pussy_peek,0,4694 +459940,beer_mug,0,4688 +1230827,dark_blue_hair,0,4680 +7770,naked_ribbon,0,4672 +1312162,short_necktie,0,4670 +495851,open_hoodie,0,4663 +1286651,heart-shaped_box,0,4659 +1076628,holding_ball,0,4657 +667024,mixed_bathing,0,4652 +481294,detached_wings,0,4652 +1553182,grabbing_another's_hair,0,4650 +1582095,bow_hairband,0,4650 +1258905,holding_can,0,4647 +8594,ladle,0,4645 +494456,utility_pole,0,4640 +469544,navel_hair,0,4640 +449974,fur_hat,0,4637 +498156,panty_peek,0,4635 +11990,spring_onion,0,4633 +7469,revolver,0,4633 +475381,striped_scarf,0,4631 +512126,shushing,0,4626 +1862825,one-piece_swimsuit_pull,0,4620 +386870,trident,0,4616 +1326581,brown_vest,0,4613 +430114,popped_collar,0,4601 +419682,bra_strap,0,4601 +1369553,blunt_ends,0,4599 +11935,whistle,0,4591 +10205,notebook,0,4583 +1639310,arthropod_girl,0,4578 +482236,striped_skirt,0,4574 +406023,projectile_cum,0,4572 +626243,aiguillette,0,4572 +387742,gourd,0,4565 +396968,reverse_trap,0,4564 +647130,white_necktie,0,4561 +585249,faceless_female,0,4558 +539284,heart_pasties,0,4548 +489801,pillow_hat,0,4543 +7529,ringlets,0,4542 +248665,money,0,4538 +415000,impossible_shirt,0,4533 +633774,bandaid_on_nose,0,4531 +482941,flight_deck,0,4529 +524012,pinstripe_pattern,0,4526 +5723,fedora,0,4524 +1309652,holding_strap,0,4517 +684687,grabbing_own_ass,0,4516 +1632773,heart-shaped_chocolate,0,4508 +383468,lowleg_bikini,0,4503 +400837,crazy_eyes,0,4498 +511643,single_elbow_glove,0,4496 +888554,cropped_shirt,0,4493 +4022,maebari,0,4492 +396696,evening,0,4487 +550308,>:(,0,4482 +1319919,hands_on_own_knees,0,4480 +1533927,garreg_mach_monastery_uniform,0,4462 +431528,gears,0,4461 +360746,waking_up,0,4460 +517481,winter_coat,0,4457 +394089,lock,0,4453 +698475,showgirl_skirt,0,4444 +1590430,squatting_cowgirl_position,0,4434 +1518573,cable_knit,0,4433 +616137,reverse_grip,0,4429 +510943,orange_bikini,0,4427 +1631539,slime_(substance),0,4424 +177781,cane,0,4413 +1336152,asymmetrical_sleeves,0,4410 +9857,throne,0,4405 +476779,ice_cream_cone,0,4399 +570005,green_pants,0,4399 +1389146,white_neckerchief,0,4396 +400555,business_suit,0,4395 +569436,blood_on_hands,0,4394 +1409996,flower_knot,0,4394 +15294,lightning,0,4392 +1295644,vertical-striped_shirt,0,4391 +4069,sailor,0,4390 +520554,blue_fire,0,4386 +356574,tower,0,4385 +461563,poster_(object),0,4383 +1411020,white_bloomers,0,4381 +707075,tile_wall,0,4378 +496288,orange_(fruit),0,4377 +4174,tomboy,0,4372 +1263450,print_skirt,0,4370 +392700,machine_gun,0,4369 +394179,crotchless,0,4365 +399003,skinny,0,4360 +379975,bound_legs,0,4355 +505613,thigh_grab,0,4352 +553763,unbuttoned_shirt,0,4350 +12857,wedgie,0,4349 +6280,waterfall,0,4348 +378695,statue,0,4343 +463152,poking,0,4335 +291535,pearl_necklace,0,4324 +1269471,leg_tattoo,0,4318 +392453,butterfly_wings,0,4317 +498646,crack,0,4314 +1574663,two-sided_fabric,0,4313 +1392010,blue_bodysuit,0,4312 +8591,bustier,0,4311 +648630,boy_on_top,0,4310 +1390702,multicolored_jacket,0,4309 +409818,polka_dot_bikini,0,4305 +4898,baby,0,4305 +375076,crowd,0,4303 +1576265,bra_visible_through_clothes,0,4302 +669436,streaming_tears,0,4300 +7444,dark_elf,0,4296 +550765,wrist_ribbon,0,4293 +559442,red_buruma,0,4290 +673216,toeless_footwear,0,4286 +5094,snowman,0,4282 +1411717,medium_skirt,0,4280 +1389116,red_scrunchie,0,4280 +1285261,pink_necktie,0,4279 +500990,torn_dress,0,4279 +396001,pocket_watch,0,4276 +568513,animal_on_shoulder,0,4273 +380477,whiskers,0,4271 +464541,bullet,0,4267 +492359,towel_on_head,0,4265 +547742,open_hands,0,4265 +1302924,yellow_shorts,0,4260 +475366,trench_coat,0,4259 +379182,energy,0,4259 +10049,crotch,0,4257 +4478,bodypaint,0,4254 +437197,surgical_mask,0,4251 +841221,very_dark_skin,0,4246 +9176,boat,0,4244 +1257578,frilled_collar,0,4210 +11620,spread_anus,0,4209 +572,toilet,0,4200 +9172,kitchen,0,4200 +188179,letter,0,4198 +4568,crab,0,4196 +656163,hand_on_another's_cheek,0,4194 +466143,wine_bottle,0,4190 +1970,drawing,0,4189 +405636,locker,0,4189 +1312163,purple_necktie,0,4185 +395984,dress_pull,0,4182 +408969,no_pussy,0,4179 +3093,bear,0,4179 +1515362,yellow_theme,0,4178 +441477,defeat,0,4173 +609001,jacket_removed,0,4173 +1444169,yellow_headwear,0,4168 +640090,red_eyeshadow,0,4164 +427529,fat_man,0,4163 +507242,monster_boy,0,4162 +492418,orange_dress,0,4154 +483830,imagining,0,4153 +13099,hot,0,4152 +596219,sagging_breasts,0,4149 +431758,locked_arms,0,4147 +618610,yellow_gloves,0,4145 +568650,grey_pantyhose,0,4143 +416506,torn_pants,0,4143 +1258092,ribbon-trimmed_legwear,0,4139 +483292,gradient_eyes,0,4134 +723993,bird_tail,0,4133 +1492981,bikini_bottom_aside,0,4129 +579607,towel_around_neck,0,4122 +1313101,green_bowtie,0,4121 +391942,long_tongue,0,4121 +434827,soccer_uniform,0,4119 +1276067,floppy_ears,0,4117 +415277,recording,0,4113 +683424,cat_hair_ornament,0,4111 +539090,imminent_rape,0,4106 +151645,evil_grin,0,4104 +797417,ear_bow,0,4100 +395355,fusion,0,4099 +380931,pirate_hat,0,4097 +3997,landscape,0,4096 +1320211,orange_bowtie,0,4094 +613646,on_desk,0,4091 +4365,tsundere,0,4090 +882518,blue_butterfly,0,4083 +2606,milk,0,4080 +1428577,ryouou_school_uniform,0,4078 +524381,ear_ornament,0,4074 +616376,assisted_exposure,0,4073 +1619425,crescent_pin,0,4071 +589477,argyle_background,0,4066 +10332,crow,0,4066 +400542,road_sign,0,4062 +636788,frilled_pillow,0,4057 +1350141,cat_cutout,0,4054 +596179,anal_tail,0,4052 +6453,death,0,4050 +667200,hand_on_another's_chin,0,4045 +486797,unsheathed,0,4035 +1928,tiger,0,4028 +1389971,nintendo_switch,0,4027 +633106,mask_removed,0,4024 +526090,checkered_skirt,0,4024 +648045,sideways_mouth,0,4023 +686687,hatching_(texture),0,4023 +640153,muted_color,0,4023 +1270233,1koma,0,4022 +1537333,interface_headset,0,4021 +537720,track_pants,0,4021 +485999,coffee_mug,0,4013 +482913,black_suit,0,4012 +657475,back_cutout,0,4011 +426587,yellow_panties,0,4004 +9618,library,0,4003 +477117,raised_eyebrow,0,4003 +468460,torn_skirt,0,4000 +634270,bat_print,0,3999 +1429011,holding_candy,0,3996 +98920,starfish,0,3990 +1505313,romaji_text,0,3990 +3045,alien,0,3987 +1350220,cat_lingerie,0,3983 +1346561,holding_cigarette,0,3981 +609685,two-tone_skin,0,3980 +494236,taking_picture,0,3967 +466061,album_cover,0,3963 +465851,defloration,0,3962 +427758,kiseru,0,3959 +3291,teacher,0,3955 +1403308,virgin_killer_sweater,0,3952 +661261,planted_sword,0,3951 +560881,soap_bubbles,0,3949 +460488,feet_up,0,3949 +509953,holding_paper,0,3947 +677008,school_chair,0,3940 +1235097,blood_on_weapon,0,3938 +586284,heart_background,0,3935 +1405351,mountainous_horizon,0,3929 +16128,you_gonna_get_raped,0,3928 +403588,pink_skin,0,3928 +415839,armchair,0,3927 +4855,school,0,3926 +216327,shy,0,3923 +1245131,bikini_tan,0,3923 +1291919,holding_shield,0,3922 +502180,blue_wings,0,3921 +605808,snout,0,3920 +1303985,blue_buruma,0,3918 +491861,sleeves_pushed_up,0,3916 +376585,stick,0,3912 +516128,backboob,0,3909 +1413412,obijime,0,3907 +725289,multicolored_nails,0,3907 +599652,spoken_blush,0,3906 +1393858,white_camisole,0,3903 +12336,costume,0,3902 +1291748,print_bow,0,3901 +1551196,1980s_(style),0,3900 +4119,suitcase,0,3895 +631144,halftone_background,0,3894 +668478,holding_pen,0,3891 +1289945,orange_jacket,0,3887 +460085,mechanical_wings,0,3885 +584023,shark_girl,0,3880 +473300,mandarin_orange,0,3876 +551333,uchiwa,0,3874 +605145,soul_gem,0,3874 +1415843,white_ascot,0,3872 +521411,husband_and_wife,0,3872 +397397,cum_pool,0,3871 +614707,no_legwear,0,3869 +491550,lanyard,0,3865 +419496,male_masturbation,0,3864 +1390882,blue_sleeves,0,3858 +1307533,carrot_hair_ornament,0,3855 +582680,unaligned_breasts,0,3852 +380538,bubble_blowing,0,3850 +473410,dragon_wings,0,3846 +1298903,half-closed_eye,0,3837 +649373,command_spell,0,3834 +6381,clover,0,3832 +473818,tissue_box,0,3832 +406620,pouring,0,3831 +390579,colorful,0,3830 +390,demon,0,3827 +1574241,dolphin_shorts,0,3827 +382729,striped_pantyhose,0,3822 +1350193,musical_note_hair_ornament,0,3814 +584126,pointing_up,0,3814 +426470,silk,0,3812 +494868,black_cloak,0,3809 +1253174,employee_uniform,0,3807 +673956,falling_leaves,0,3805 +1342157,fur-trimmed_boots,0,3804 +493515,game_console,0,3803 +466779,belt_collar,0,3803 +399131,barcode,0,3799 +589889,v_over_eye,0,3798 +616844,blood_from_mouth,0,3797 +385804,lifebuoy,0,3793 +1256300,multicolored_skirt,0,3787 +375424,the_pose,0,3783 +675901,frilled_hat,0,3782 +394046,power_armor,0,3780 +411038,:>=,0,3776 +639592,heart_necklace,0,3776 +571473,bandaid_on_knee,0,3770 +1399133,grey_cardigan,0,3770 +464548,clone,0,3768 +1497310,button_gap,0,3767 +432388,leather_jacket,0,3762 +410903,black_skin,0,3761 +406397,against_glass,0,3754 +891436,food_focus,0,3750 +1161088,2021,0,3749 +1246561,brown_scarf,0,3748 +383694,jar,0,3747 +429161,paizuri_under_clothes,0,3746 +473292,blue_socks,0,3744 +706041,cross-shaped_pupils,0,3735 +684169,ambiguous_gender,0,3732 +1312340,red_rope,0,3730 +631542,pointing_at_self,0,3729 +7801,lamia,0,3720 +560091,cat_hood,0,3720 +394795,baggy_pants,0,3718 +382106,fisheye,0,3712 +6376,lake,0,3712 +1555383,fur-trimmed_headwear,0,3711 +1471843,waist_bow,0,3710 +677023,underboob_cutout,0,3709 +1338623,purple_hairband,0,3708 +376168,puddle,0,3707 +414773,aiming,0,3706 +506307,thong_leotard,0,3699 +716981,holding_own_arm,0,3697 +638022,see-through_silhouette,0,3695 +504035,film_grain,0,3687 +11028,swimming,0,3684 +423074,photo_background,0,3682 +422775,dark_nipples,0,3681 +525461,smokestack,0,3681 +1516548,orange_headwear,0,3680 +570382,hands_in_hair,0,3675 +11828,flexible,0,3672 +1344144,metal_collar,0,3672 +1622516,earth_(planet),0,3661 +2191,shop,0,3659 +544274,backwards_hat,0,3658 +1454257,2others,0,3657 +400545,red_moon,0,3653 +379878,thorns,0,3647 +375225,flaccid,0,3644 +538953,zouri,0,3640 +411896,no_nipples,0,3638 +512713,aqua_bow,0,3638 +476596,sode,0,3637 +458486,mother_and_son,0,3636 +1280405,sleeveless_kimono,0,3635 +553771,cheek-to-cheek,0,3632 +1397752,two-tone_shirt,0,3626 +1316028,american_flag_legwear,0,3623 +662240,mini_wings,0,3622 +472867,arm_hug,0,3622 +222138,shrine,0,3622 +386432,leaning,0,3620 +565064,framed,0,3619 +1766885,demon_slayer_uniform,0,3619 +508193,novelty_censor,0,3618 +1304117,yellow_sweater,0,3618 +404134,spread_ass,0,3614 +672073,brown_fur,0,3613 +392612,pentagram,0,3612 +1161089,2022,0,3598 +702916,imminent_vaginal,0,3589 +456376,pince-nez,0,3589 +466449,spider_lily,0,3589 +652486,v-fin,0,3586 +460863,spider_web,0,3579 +1262158,holding_broom,0,3577 +390314,nude_cover,0,3577 +46079,robot_ears,0,3572 +553007,strapless_bikini,0,3572 +443901,shide,0,3568 +618153,pink_scarf,0,3568 +567636,painting_(object),0,3567 +476371,showering,0,3565 +500976,netorare,0,3564 +423625,bikini_lift,0,3564 +2476,hose,0,3563 +2288,octopus,0,3561 +1468959,horror_(theme),0,3561 +1409116,red_sailor_collar,0,3559 +538327,black_flower,0,3556 +1417504,nanamori_school_uniform,0,3556 +85824,pole,0,3553 +461531,banana,0,3553 +451769,toe_scrunch,0,3552 +1875949,lower_teeth_only,0,3550 +390569,cat_paws,0,3549 +902927,collared_jacket,0,3549 +9799,kunai,0,3548 +1281555,aran_sweater,0,3547 +1392011,purple_bodysuit,0,3546 +1356361,grey_vest,0,3545 +540428,arm_around_shoulder,0,3543 +605759,skirt_suit,0,3542 +522913,multiple_wings,0,3541 +5980,rooftop,0,3536 +1399176,two-tone_fur,0,3536 +399479,fog,0,3529 +3375,chicken,0,3529 +546453,cat_boy,0,3529 +1498357,single_leg_pantyhose,0,3525 +1312906,rei_no_himo,0,3525 +405756,hypnosis,0,3518 +1282899,improvised_gag,0,3516 +586174,neon_trim,0,3516 +578557,digital_media_player,0,3514 +411148,remote_control,0,3514 +376648,fishing_rod,0,3510 +481454,copyright,0,3508 +1477193,lightning_bolt_symbol,0,3506 +1468130,paradis_military_uniform,0,3506 +1345564,partially_unzipped,0,3505 +1770616,blue_gemstone,0,3502 +1730,what,0,3501 +1335474,sleeves_past_elbows,0,3501 +395305,wizard_hat,0,3495 +1330707,cake_slice,0,3493 +621745,brand_name_imitation,0,3491 +1385010,kissing_cheek,0,3491 +382125,rapier,0,3490 +541609,open_door,0,3489 +623390,glowing_weapon,0,3489 +660422,leaning_on_person,0,3488 +6424,cage,0,3488 +481427,steepled_fingers,0,3485 +589286,purple_rose,0,3482 +638728,print_gloves,0,3476 +667663,elbow_rest,0,3474 +1391985,grey_hoodie,0,3473 +1409115,green_sailor_collar,0,3470 +1328598,holding_bowl,0,3469 +1328649,orange_flower,0,3466 +516646,macaron,0,3460 +375919,demon_boy,0,3458 +717483,flower-shaped_pupils,0,3455 +718139,food_print,0,3452 +581054,keyboard_(computer),0,3449 +566804,single_sleeve,0,3449 +2709,needle,0,3448 +468016,;q,0,3442 +9275,butt_plug,0,3440 +383907,swimsuit_aside,0,3436 +380328,pompadour,0,3434 +7646,slave,0,3432 +643102,loose_necktie,0,3431 +525997,print_dress,0,3426 +485061,hair_tucking,0,3425 +524552,shiny_pokemon,0,3424 +1684874,laevatein_(touhou),0,3423 +576406,folded_fan,0,3420 +400245,opaque_glasses,0,3419 +410131,perky_breasts,0,3418 +11912,wrench,0,3418 +4434,violin,0,3418 +378993,energy_sword,0,3413 +411511,adjusting_swimsuit,0,3412 +1419007,stirrup_legwear,0,3406 +460475,naked_sweater,0,3406 +652354,too_many,0,3405 +664058,orange_ribbon,0,3405 +754200,oppai_loli,0,3403 +378543,egg_vibrator,0,3402 +384248,trefoil,0,3402 +379189,floor,0,3400 +477228,drum,0,3399 +483981,american_flag,0,3396 +12570,armpit_hair,0,3394 +8255,dancer,0,3393 +560040,framed_breasts,0,3390 +382440,pantylines,0,3389 +4768,sheep,0,3387 +441110,office_chair,0,3384 +1315028,lower_body,0,3378 +11366,policewoman,0,3376 +513303,afloat,0,3376 +1312614,blue_hakama,0,3375 +4191,sushi,0,3368 +531372,mouse_girl,0,3367 +9510,cream,0,3364 +575181,o-ring_bottom,0,3363 +207834,mascara,0,3351 +458795,suction_cups,0,3350 +10769,transformation,0,3346 +383173,train,0,3336 +634393,heart_choker,0,3335 +1411341,hooded_capelet,0,3331 +446070,lion_tail,0,3327 +1257056,holding_towel,0,3322 +554588,suit_jacket,0,3321 +482172,contrail,0,3320 +507625,calligraphy_brush,0,3319 +548668,excalibur_(fate/stay_night),0,3316 +1560432,reverse_outfit,0,3315 +1483713,multiple_rings,0,3314 +723098,after_anal,0,3310 +262264,tight_pants,0,3305 +1330167,american_flag_dress,0,3305 +554092,food_on_body,0,3304 +711562,striped_tail,0,3303 +1247747,hair_strand,0,3302 +458711,hand_under_clothes,0,3301 +639641,bra_removed,0,3298 +449248,scope,0,3298 +543339,bandaids_on_nipples,0,3297 +514260,left-handed,0,3297 +422830,paper_bag,0,3297 +611884,uneven_eyes,0,3293 +463490,spacecraft,0,3288 +395198,test_tube,0,3287 +4470,duel,0,3286 +667460,real_life_insert,0,3284 +1219136,hand_on_own_arm,0,3284 +2073,hairpods,0,3283 +675353,frilled_gloves,0,3283 +1421763,blue_capelet,0,3283 +147971,stylus,0,3283 +430704,medical_eyepatch,0,3283 +5171,map,0,3282 +1413751,print_bowtie,0,3281 +450123,staring,0,3275 +479792,circle,0,3273 +1416797,pink_cardigan,0,3272 +408052,gym_shorts,0,3270 +1374290,covered_collarbone,0,3266 +522010,character_profile,0,3264 +1303383,blue_scrunchie,0,3262 +1305030,green_leotard,0,3255 +684190,gradient_sky,0,3255 +1582181,string_of_fate,0,3252 +8295,concept_art,0,3249 +49941,lemon,0,3248 +375251,egyptian,0,3247 +10359,middle_finger,0,3242 +151042,envelope,0,3238 +393891,no_shirt,0,3235 +1636976,footwear_bow,0,3234 +750849,holding_mask,0,3232 +10983,shotgun,0,3231 +1504889,rudder_footwear,0,3230 +386503,binoculars,0,3222 +1233722,maid_bikini,0,3221 +380805,flashing,0,3221 +411223,father_and_son,0,3221 +626303,mismatched_gloves,0,3218 +163224,fins,0,3217 +1475826,holding_pokemon,0,3217 +392360,stage,0,3215 +619121,hair_beads,0,3214 +459009,penis_on_face,0,3213 +641554,tomoe_(symbol),0,3211 +687681,partially_undressed,0,3209 +521852,pussy_juice_trail,0,3206 +758409,taur,0,3206 +403195,squirrel_ears,0,3206 +1335364,stomach_tattoo,0,3205 +687202,pussy_juice_stain,0,3203 +1238711,pink_shorts,0,3202 +16144,rubber_duck,0,3201 +674492,dress_bow,0,3200 +5567,pizza,0,3200 +2553,basketball,0,3198 +455038,capri_pants,0,3198 +724241,holding_camera,0,3197 +1641895,gloved_handjob,0,3196 +1612103,milestone_celebration,0,3195 +394619,furisode,0,3192 +638426,arm_belt,0,3190 +399418,shore,0,3188 +1227744,multiple_crossover,0,3186 +419379,bandage_over_one_eye,0,3185 +1337096,white_vest,0,3185 +508748,horn_bow,0,3183 +548829,chewing_gum,0,3183 +613840,happy_halloween,0,3183 +619633,baozi,0,3180 +1387105,pink_leotard,0,3179 +1512867,multiple_hair_bows,0,3177 +1229697,drop_shadow,0,3174 +447030,candy_apple,0,3174 +396737,striped_bra,0,3170 +409293,open_dress,0,3169 +459215,finger_gun,0,3169 +481814,background_text,0,3169 +1422082,digimon_(creature),0,3167 +234,gothic,0,3165 +471771,pumps,0,3164 +535308,body_markings,0,3164 +540545,rod_of_remorse,0,3162 +562136,lip_biting,0,3161 +379713,bad_feet,0,3158 +413820,deep_penetration,0,3156 +447189,spitroast,0,3155 +467674,sake_bottle,0,3154 +549346,blue_pantyhose,0,3153 +535048,humanization,0,3152 +1035339,red_headband,0,3151 +387248,banner,0,3148 +10469,duck,0,3147 +1454264,heart-shaped_eyewear,0,3141 +1425516,uranohoshi_school_uniform,0,3140 +560677,arm_rest,0,3139 +1311981,meiji_schoolgirl_uniform,0,3136 +3759,parfait,0,3135 +510576,swim_trunks,0,3131 +411566,nightcap,0,3126 +538859,kindergarten_uniform,0,3125 +1559152,reverse_bunnysuit,0,3125 +492468,plaid_dress,0,3117 +822828,reverse_suspended_congress,0,3114 +684686,grabbing_another's_ass,0,3111 +1410709,ejaculating_while_penetrated,0,3110 +375882,cuts,0,3109 +1408536,holding_lollipop,0,3106 +379595,breast_slip,0,3103 +1400488,pink_neckerchief,0,3103 +536524,tablet_pc,0,3103 +1436828,obiage,0,3100 +425142,submerged,0,3097 +1319842,forked_eyebrows,0,3096 +588209,irrumatio,0,3095 +1582503,scar_on_chest,0,3095 +585211,energy_gun,0,3094 +1341593,bandaged_hand,0,3090 +493348,christmas_ornaments,0,3089 +769705,holding_another's_arm,0,3088 +666708,w_arms,0,3085 +551537,lying_on_person,0,3082 +590746,goggles_around_neck,0,3082 +420283,leotard_aside,0,3081 +502536,paint_splatter,0,3079 +10692,sandwich,0,3076 +7641,piggyback,0,3073 +420128,upright_straddle,0,3072 +601423,yellow_scarf,0,3072 +568804,anus_peek,0,3070 +1326150,purple_vest,0,3069 +1415656,grey_sailor_collar,0,3068 +473217,green_bra,0,3066 +481604,penis_awe,0,3059 +545136,coat_on_shoulders,0,3058 +676352,pokephilia,0,3056 +1590671,chest_harness,0,3056 +1394528,single_sidelock,0,3055 +10919,lineup,0,3054 +15667,riding_crop,0,3052 +1217551,black_armor,0,3052 +1358847,polos_crown,0,3051 +7631,harpy,0,3050 +599594,prosthetic_arm,0,3048 +438208,throwing,0,3047 +666377,hair_spread_out,0,3045 +592316,colored_pubic_hair,0,3044 +15004,toy,0,3043 +484752,clothes_grab,0,3043 +398608,hair_twirling,0,3042 +424585,viewfinder,0,3040 +511645,single_kneehigh,0,3040 +403196,squirrel_tail,0,3040 +378782,hiding,0,3039 +1613301,obliques,0,3038 +488003,leg_hair,0,3035 +1299132,holding_box,0,3034 +54471,midair,0,3034 +1312165,orange_necktie,0,3030 +1627141,gae_bolg_(fate),0,3028 +464585,tomato,0,3027 +1670357,furry_with_non-furry,0,3027 +626701,bird_ears,0,3025 +1417279,holding_underwear,0,3024 +891880,lion_girl,0,3023 +669594,bat_hair_ornament,0,3022 +1339523,bone_hair_ornament,0,3013 +486697,frilled_swimsuit,0,3012 +676138,asymmetrical_footwear,0,3012 +1409831,kuromorimine_military_uniform,0,3012 +1839475,chips_(food),0,3011 +682128,hands_on_another's_shoulders,0,3002 +646029,egasumi,0,2995 +1408498,japari_symbol,0,2995 +1328271,layered_bikini,0,2991 +656168,hands_on_another's_face,0,2989 +573688,reindeer_antlers,0,2983 +1373025,blue-framed_eyewear,0,2980 +464577,shooting_star,0,2980 +380157,shovel,0,2977 +990162,heart_in_eye,0,2975 +464576,seagull,0,2972 +583009,arm_around_waist,0,2970 +385637,earbuds,0,2968 +466613,slime_girl,0,2964 +7994,fighting,0,2963 +1481015,hands_in_opposite_sleeves,0,2961 +702200,sailor_bikini,0,2961 +474988,speaker,0,2960 +688378,multi-tied_hair,0,2960 +1332539,pubic_hair_peek,0,2956 +513153,magazine_(weapon),0,2956 +390685,darkness,0,2953 +659834,spoken_squiggle,0,2947 +493576,feather_boa,0,2942 +461372,mobile_suit,0,2942 +720478,lifting_person,0,2941 +539465,tiger_girl,0,2941 +378767,bleeding,0,2938 +567734,shikishi,0,2938 +440347,leopard_print,0,2938 +347508,miniboy,0,2936 +1258923,star_in_eye,0,2934 +378810,grinding,0,2930 +557508,loose_belt,0,2930 +1371098,purple_umbrella,0,2930 +600421,after_fellatio,0,2930 +12721,gas_mask,0,2928 +489904,arms_around_neck,0,2926 +1455730,raccoon_girl,0,2926 +470690,pancake,0,2924 +1291177,orange_bodysuit,0,2921 +378151,megaphone,0,2920 +467500,beer_can,0,2920 +11436,deepthroat,0,2919 +506137,jacket_around_waist,0,2918 +4550,grenade,0,2914 +1327681,red_sleeves,0,2914 +461788,scowl,0,2912 +1336138,red_belt,0,2911 +1382349,goggles_on_headwear,0,2904 +488365,letterman_jacket,0,2903 +1277869,horned_headwear,0,2898 +471357,treble_clef,0,2897 +1308608,bag_charm,0,2897 +612379,bubble_tea,0,2897 +447984,vegetable,0,2896 +375460,ceiling,0,2895 +405671,soda_can,0,2894 +692860,alternate_legwear,0,2892 +526914,licking_finger,0,2891 +559692,clothed_pokemon,0,2891 +707150,finger_on_trigger,0,2889 +5597,newspaper,0,2886 +399829,magazine_cover,0,2883 +446690,gloom_(expression),0,2882 +584478,leaf_print,0,2882 +375231,shirt_tug,0,2881 +1301494,spoken_interrobang,0,2880 +1455114,hair_tie_in_mouth,0,2880 +4262,surreal,0,2880 +1235204,bike_shorts_under_skirt,0,2878 +546810,orange_sky,0,2875 +487143,bamboo_forest,0,2872 +399543,flip-flops,0,2871 +2230,guro,0,2869 +588534,in_box,0,2866 +460940,lily_pad,0,2865 +644588,long_eyelashes,0,2865 +713253,cross_hair_ornament,0,2865 +541137,kanzashi,0,2862 +380265,skates,0,2861 +1385298,animal_ear_headphones,0,2861 +1384365,orange_hairband,0,2855 +481088,constellation,0,2848 +1397450,plantar_flexion,0,2847 +531896,2020,0,2845 +13976,frying_pan,0,2844 +2377,piano,0,2842 +424961,remote_control_vibrator,0,2842 +546133,ghost_tail,0,2841 +1291900,yellow_fur,0,2839 +577161,in_tree,0,2836 +442883,city_lights,0,2835 +483264,yellow_rose,0,2833 +486613,extra,0,2832 +12733,thinking,0,2832 +480578,hagoromo,0,2832 +1273311,vertical-striped_dress,0,2831 +633428,bunny_print,0,2829 +1423707,holding_scythe,0,2829 +847095,sparkle_background,0,2828 +13273,stained_glass,0,2828 +828858,hand_over_own_mouth,0,2825 +1253185,snowflake_hair_ornament,0,2824 +1298076,winged_arms,0,2822 +7526,crotch_rope,0,2818 +629659,food_on_head,0,2818 +9335,5koma,0,2817 +462213,peeing_self,0,2816 +377929,sheep_ears,0,2813 +507697,purple_pantyhose,0,2812 +1327007,holding_axe,0,2811 +1837805,traditional_youkai,0,2811 +2571,mochi,0,2810 +14111,candy_cane,0,2809 +1304169,au_ra,0,2806 +476448,kote,0,2801 +389804,quad_tails,0,2800 +1335455,watson_cross,0,2799 +663513,brown_bag,0,2798 +1853327,bar_(place),0,2796 +722453,thumb_ring,0,2795 +1252645,orange_nails,0,2794 +471821,debris,0,2793 +1794320,bow-shaped_hair,0,2792 +1400482,earclip,0,2790 +549590,uneven_gloves,0,2786 +379306,public_nudity,0,2785 +1552754,breast_curtains,0,2785 +572410,ankle_ribbon,0,2782 +1259682,ribbed_dress,0,2780 +530963,arms_under_breasts,0,2779 +390154,left-to-right_manga,0,2779 +1307725,green_scarf,0,2779 +1298625,open-chest_sweater,0,2778 +585305,ear_ribbon,0,2775 +458232,flats,0,2774 +9921,panda,0,2773 +426621,grey_panties,0,2773 +468765,pith_helmet,0,2773 +16978,writing,0,2772 +513195,bird_on_head,0,2771 +1379954,diffraction_spikes,0,2771 +590943,neck_ruff,0,2770 +662265,object_namesake,0,2769 +1408401,white_scrunchie,0,2769 +1373356,yellow_kimono,0,2767 +511736,heart_in_mouth,0,2767 +475209,button_badge,0,2763 +447780,peeking,0,2761 +4807,spill,0,2758 +1234394,see-through_shirt,0,2755 +662500,caterpillar_tracks,0,2755 +618149,yugake,0,2754 +1315142,pink_scrunchie,0,2754 +4773,puppet,0,2754 +404857,cupcake,0,2753 +501057,breastless_clothes,0,2752 +2641,paint,0,2751 +402497,lotus,0,2750 +634400,light_green_hair,0,2744 +380355,chained,0,2743 +467080,thank_you,0,2742 +633519,american_flag_bikini,0,2740 +1400511,fur-trimmed_hood,0,2739 +1205954,looking_at_penis,0,2738 +413033,gaping,0,2738 +25477,chemise,0,2737 +548543,arm_hair,0,2736 +1874313,covering_own_eyes,0,2735 +484394,four-leaf_clover,0,2735 +649327,wide_ponytail,0,2734 +457141,lace_panties,0,2733 +1344905,holding_dagger,0,2733 +1215711,numbered,0,2733 +610726,shared_clothes,0,2731 +1714873,chest_sarashi,0,2729 +406406,shoe_dangle,0,2727 +652707,domino_mask,0,2727 +4177,lotion,0,2724 +279898,shell_casing,0,2722 +409789,rubber_boots,0,2718 +478568,medal,0,2716 +10624,exercise,0,2713 +2833,collage,0,2711 +1384369,green_hairband,0,2709 +8808,hallway,0,2704 +666648,mitsudomoe_(shape),0,2704 +378,cheese,0,2702 +406895,tunic,0,2702 +743282,layered_clothes,0,2701 +494802,on_shoulder,0,2701 +464876,bento,0,2699 +602690,stuffed_cat,0,2699 +1770615,red_gemstone,0,2695 +1373278,black_ascot,0,2693 +619493,ears_down,0,2691 +395226,shoulder_carry,0,2688 +1441861,orange_footwear,0,2687 +1350604,cat_ear_panties,0,2687 +1435434,two-tone_skirt,0,2685 +1474162,gekkoukan_high_school_uniform,0,2684 +503705,paw_shoes,0,2682 +397148,huge_nipples,0,2680 +433752,yunomi,0,2679 +558702,pinching,0,2676 +1383796,rabbit_hood,0,2675 +15996,moonlight,0,2673 +2490,pirate,0,2673 +656171,hand_on_another's_chest,0,2673 +405984,snot,0,2672 +9002,stethoscope,0,2671 +530091,corruption,0,2670 +535299,red_sclera,0,2668 +1316609,mole_on_thigh,0,2667 +724362,single_detached_sleeve,0,2664 +417408,keyhole,0,2663 +619992,world_war_ii,0,2662 +626084,bangs_pinned_back,0,2662 +478424,striker_unit,0,2662 +1322674,latin_cross,0,2660 +1474402,qing_guanmao,0,2656 +631299,pillarboxed,0,2655 +12650,subtitled,0,2654 +644051,aiming_at_viewer,0,2652 +399594,urethra,0,2652 +2626,volleyball,0,2652 +640241,helmet_removed,0,2652 +709557,torn_bodysuit,0,2652 +1183480,blue_belt,0,2651 +1471518,horseshoe_ornament,0,2650 +5272,dice,0,2649 +429439,fetal_position,0,2649 +587679,vibrator_under_clothes,0,2648 +11981,kyuubi,0,2644 +465450,trash_can,0,2644 +1242915,rose_print,0,2642 +10731,chainsaw,0,2641 +1312757,bra_peek,0,2641 +420964,hip_bones,0,2640 +3237,goldfish,0,2639 +484121,leg_lock,0,2639 +1390670,breast_tattoo,0,2639 +505313,torn_sleeves,0,2635 +470159,jealous,0,2634 +1383010,purple_choker,0,2634 +1291568,pink_apron,0,2634 +473427,green_thighhighs,0,2632 +1330014,year_of_the_tiger,0,2632 +494260,purple_wings,0,2630 +407041,profanity,0,2629 +375792,kogal,0,2629 +2848,wedding,0,2628 +447824,doorway,0,2627 +1449257,gem_uniform_(houseki_no_kuni),0,2625 +350,ramen,0,2624 +1280149,crescent_earrings,0,2624 +528555,flat_ass,0,2623 +397935,ladder,0,2623 +378452,hand_in_panties,0,2622 +650514,wet_swimsuit,0,2618 +8874,pudding,0,2617 +555933,sword_of_hisou,0,2617 +1441888,over-rim_eyewear,0,2615 +519703,alternate_universe,0,2615 +413035,soccer_ball,0,2614 +515648,coattails,0,2613 +1261354,feather_trim,0,2613 +414783,padlock,0,2612 +1229660,multiple_horns,0,2612 +11316,abstract,0,2611 +1262166,seamed_legwear,0,2605 +15201,soldier,0,2605 +1468295,quarter_note,0,2603 +617590,wa_maid,0,2602 +449458,bullpup,0,2602 +474982,white_robe,0,2602 +667185,burn_scar,0,2600 +1467259,diagonal_bangs,0,2598 +10309,fashion,0,2597 +663385,crossed_ankles,0,2597 +1554926,wide_spread_legs,0,2594 +605757,pant_suit,0,2593 +673352,flaming_eye,0,2591 +675804,nervous_smile,0,2591 +8796,electric_fan,0,2586 +10631,paddle,0,2584 +619600,zombie_pose,0,2584 +1297470,lifted_by_another,0,2583 +400527,skirt_tug,0,2582 +449624,bass_guitar,0,2582 +12326,owl,0,2578 +695265,clitoral_stimulation,0,2577 +1355655,grey_coat,0,2576 +1178138,snowflake_print,0,2576 +1901,orgy,0,2575 +682862,hand_on_another's_hip,0,2573 +1434382,spade_(shape),0,2572 +1444529,linea_alba,0,2572 +469445,sleepwear,0,2572 +534387,heart_pillow,0,2567 +1438791,holding_pom_poms,0,2566 +1515727,strap_between_breasts,0,2565 +11243,shower_head,0,2564 +1397369,year_of_the_ox,0,2563 +1392007,pink_bodysuit,0,2562 +547698,sunburst,0,2561 +32298,duffel_bag,0,2558 +540097,turtle_shell,0,2557 +615041,finger_to_cheek,0,2553 +619145,orange_gloves,0,2552 +609122,multiple_belts,0,2552 +595006,green_sweater,0,2550 +1431325,mismatched_bikini,0,2548 +1395493,eyepatch_bikini,0,2548 +375886,sheep_girl,0,2547 +1376523,weibo_username,0,2544 +1161083,2018,0,2544 +670773,happy_valentine,0,2543 +69844,pig,0,2542 +1518440,mouth_drool,0,2542 +14861,chef_hat,0,2541 +649248,red_pupils,0,2541 +1304208,black_cardigan,0,2539 +622606,anime_coloring,0,2537 +1396558,frilled_hair_tubes,0,2537 +10340,shark,0,2537 +13958,locker_room,0,2535 +525182,santa_bikini,0,2535 +4031,negligee,0,2533 +1344732,striped_jacket,0,2533 +821841,2019,0,2532 +476787,talons,0,2531 +380173,seashell,0,2528 +422957,come_hither,0,2527 +1410787,st._gloriana's_school_uniform,0,2527 +9554,g-string,0,2526 +722842,frilled_kimono,0,2525 +1161081,2016,0,2522 +1416804,orange_scrunchie,0,2521 +1283223,shibari_over_clothes,0,2520 +1515354,brown_theme,0,2518 +1201870,prone_bone,0,2517 +428664,embers,0,2517 +1582500,scar_on_arm,0,2515 +578713,giving,0,2514 +656916,animal_penis,0,2514 +1336997,green_coat,0,2514 +527684,doll_hug,0,2510 +1338640,yellow_scrunchie,0,2508 +10168,suspension,0,2506 +475709,bandaid_on_pussy,0,2505 +1314965,horizontal_pupils,0,2504 +381372,cold,0,2502 +602427,wrestling_outfit,0,2502 +499060,ainu_clothes,0,2500 +586749,mismatched_footwear,0,2499 +1530508,scar_on_nose,0,2498 +1515361,white_theme,0,2496 +632927,alternate_headwear,0,2496 +1723482,flame-tipped_tail,0,2496 +550123,sitting_on_face,0,2495 +11433,nipple_rings,0,2494 +228096,spacesuit,0,2492 +677406,multiple_earrings,0,2492 +471929,cum_on_stomach,0,2492 +835764,untied_panties,0,2491 +640801,clothes_in_mouth,0,2490 +4011,blade,0,2489 +390993,sigh,0,2487 +9101,cigar,0,2487 +404436,ribbed_shirt,0,2487 +642455,shirt_removed,0,2487 +14074,raincoat,0,2487 +1437532,two-tone_jacket,0,2486 +551584,updo,0,2485 +398742,pastry,0,2484 +402204,holding_panties,0,2483 +495857,arm_around_neck,0,2483 +725441,black_headband,0,2482 +1393295,orange_choker,0,2481 +515468,head-mounted_display,0,2479 +556999,two-footed_footjob,0,2477 +379432,lights,0,2477 +399308,walk-in,0,2476 +405623,dog_boy,0,2474 +633092,arm_held_back,0,2473 +374959,still_life,0,2472 +607667,checkered_scarf,0,2472 +1393855,holding_flag,0,2471 +685091,hand_on_another's_back,0,2471 +388452,sweets,0,2470 +376473,mallet,0,2470 +393166,bloom,0,2470 +10736,spandex,0,2468 +1319452,hand_on_another's_arm,0,2467 +612542,bow_bikini,0,2462 +1538888,kitauji_high_school_uniform,0,2459 +9511,spotlight,0,2458 +533035,undersized_clothes,0,2458 +1451957,naoetsu_high_school_uniform,0,2457 +663171,sun_symbol,0,2456 +495002,skirt_around_one_leg,0,2455 +527607,magazine_(object),0,2455 +461542,red_sash,0,2454 +480444,shouji,0,2452 +883683,white_feathers,0,2450 +523426,hand_grab,0,2450 +10412,shaved_ice,0,2449 +374334,open_shorts,0,2448 +540150,puckered_lips,0,2446 +446993,open_collar,0,2445 +692418,suspender_shorts,0,2443 +472424,skull_and_crossbones,0,2442 +470441,plastic_bag,0,2441 +410525,typo,0,2441 +473040,tombstone,0,2439 +374379,hairy,0,2438 +542457,2015,0,2435 +11943,zero_suit,0,2433 +433704,super_saiyan,0,2428 +1409556,ooarai_military_uniform,0,2427 +409526,thigh_sex,0,2426 +816551,jackal_ears,0,2425 +1515357,orange_theme,0,2424 +1403936,bodysuit_under_clothes,0,2424 +1827216,cube_hair_ornament,0,2422 +375083,tuxedo,0,2421 +2316,carpet,0,2421 +701781,calendar_(medium),0,2420 +637971,heart_tattoo,0,2420 +468923,screaming,0,2419 +13265,cum_on_boy,0,2417 +11717,mohawk,0,2417 +647581,look-alike,0,2416 +1322421,bandaid_on_cheek,0,2416 +3917,toothbrush,0,2415 +486062,on_lap,0,2414 +570082,swirl_lollipop,0,2414 +572679,rubbing_eyes,0,2414 +462454,small_penis,0,2412 +1141250,black_fur,0,2412 +469020,rice_bowl,0,2410 +523488,flower_pot,0,2410 +6339,dusk,0,2409 +1274212,green_cape,0,2409 +617471,female_pov,0,2408 +375037,striped_socks,0,2408 +1257075,number_tattoo,0,2406 +1434570,hadanugi_dousa,0,2405 +691977,egyptian_clothes,0,2405 +7867,orc,0,2401 +418007,o3o,0,2397 +662701,brown_ribbon,0,2397 +514768,grey_sky,0,2395 +505860,tally,0,2394 +390347,flask,0,2391 +1161082,2017,0,2391 +242,princess,0,2389 +862221,club_(weapon),0,2388 +404541,hexagram,0,2388 +1791866,holding_smoking_pipe,0,2388 +645791,patterned_background,0,2386 +445826,phimosis,0,2386 +601821,nape,0,2386 +423600,bit_gag,0,2385 +512534,squirrel_girl,0,2383 +569544,condom_on_penis,0,2382 +1673151,uneven_sleeves,0,2382 +1835734,red_one-piece_swimsuit,0,2380 +1410099,purple_sleeves,0,2380 +1437301,black_bag,0,2379 +375272,evening_gown,0,2371 +573757,beach_towel,0,2370 +643796,power_symbol,0,2368 +510070,:i,0,2368 +407322,smell,0,2367 +587435,side_cutout,0,2366 +580695,big_belly,0,2366 +13691,bomber_jacket,0,2365 +1304570,cat_ear_headphones,0,2364 +556491,convenient_arm,0,2363 +669792,futa_with_male,0,2362 +453104,cameo,0,2357 +400905,talisman,0,2355 +623327,creator_connection,0,2354 +1513962,tam_o'_shanter,0,2353 +396063,asphyxiation,0,2352 +459289,blue_lips,0,2352 +1268355,carrot_necklace,0,2352 +528325,red_pantyhose,0,2347 +413782,d-pad,0,2340 +297185,drumsticks,0,2339 +493298,police_hat,0,2339 +419192,monkey_tail,0,2339 +456655,broken_glass,0,2339 +440796,triangle,0,2338 +479397,white_headband,0,2336 +3874,sink,0,2335 +474252,path,0,2335 +382047,sunrise,0,2335 +1484339,diagonal-striped_bow,0,2333 +455175,smiley_face,0,2331 +676653,mouse_(computer),0,2331 +1300235,purple_pants,0,2329 +513424,millipen_(medium),0,2329 +613439,roman_numeral,0,2328 +1227710,tail_through_clothes,0,2327 +1695986,tied_up_(nonsexual),0,2326 +622943,cover_image,0,2326 +484578,disembodied_head,0,2324 +517255,plum_blossoms,0,2324 +1373030,pink-framed_eyewear,0,2319 +776463,enpera,0,2318 +395568,cyberpunk,0,2316 +1551114,covered_abs,0,2316 +390096,hill,0,2314 +494832,faux_traditional_media,0,2311 +480812,steam_censor,0,2309 +699975,shoulder_spikes,0,2309 +1441884,rectangular_eyewear,0,2307 +673610,green_choker,0,2307 +526974,coffee_cup,0,2304 +377197,desert,0,2303 +3054,curry,0,2301 +1631337,shimakaze_(kancolle)_(cosplay),0,2301 +12396,ice_cube,0,2299 +425654,beak,0,2297 +1505132,russian_text,0,2297 +398959,trick_or_treat,0,2295 +1407477,black_scrunchie,0,2295 +380573,quill,0,2294 +589610,spider_web_print,0,2294 +16614,diadem,0,2294 +4381,ufo,0,2291 +426146,fur_coat,0,2290 +1787327,shuuchiin_academy_school_uniform,0,2290 +631055,tree_shade,0,2288 +502177,bird_girl,0,2288 +1396985,holding_sheath,0,2287 +578084,black_tail,0,2287 +393321,scratches,0,2287 +466898,strangling,0,2286 +700189,finger_in_another's_mouth,0,2286 +665350,microdress,0,2285 +189096,anal_fingering,0,2284 +634002,matching_outfit,0,2284 +488880,fourth_wall,0,2284 +426384,clitoral_hood,0,2282 +8371,hamster,0,2282 +1343573,holding_arrow,0,2279 +856710,neck_tattoo,0,2279 +2909,cyclops,0,2273 +498627,short_sword,0,2272 +410605,shared_scarf,0,2270 +581705,sitting_on_desk,0,2270 +410379,praying,0,2268 +13606,cervix,0,2268 +506562,tri_tails,0,2264 +222208,eraser,0,2262 +1321704,string_of_flags,0,2262 +160066,driving,0,2261 +11486,jellyfish,0,2261 +419919,diving_mask,0,2261 +1528617,retrofit_(azur_lane),0,2261 +435180,bad_hands,0,2260 +1853,tribadism,0,2257 +666137,aqua_bikini,0,2257 +462978,??,0,2257 +575698,torn_cape,0,2255 +613216,multicolored_legwear,0,2254 +1312065,chinese_knot,0,2254 +1320347,octarian,0,2254 +401614,tennis_uniform,0,2253 +554120,dirty_face,0,2251 +1637933,evolutionary_line,0,2251 +506895,ankle_cuffs,0,2250 +1392360,black_camisole,0,2248 +1533601,sideless_outfit,0,2246 +673694,large_tail,0,2246 +1262143,phone_screen,0,2246 +5871,restaurant,0,2244 +539295,feather_hair,0,2244 +16335,spatula,0,2243 +453895,mechanical_parts,0,2243 +613940,white_cat,0,2242 +1793456,cooperative_fellatio,0,2241 +8721,breast_bondage,0,2241 +1376935,blue_ascot,0,2240 +490993,colored_tongue,0,2240 +1430633,two-tone_bikini,0,2240 +399776,torch,0,2240 +400119,melting,0,2239 +381796,satchel,0,2239 +1524489,looking_at_object,0,2238 +534340,calendar_(object),0,2238 +384086,jet,0,2234 +854287,ribbed_legwear,0,2231 +543351,crossed_bandaids,0,2231 +548910,chain_necklace,0,2230 +109323,cliff,0,2230 +1252969,white_nails,0,2230 +1342770,strappy_heels,0,2227 +844443,red_umbrella,0,2225 +564233,hand_on_hilt,0,2221 +1514281,shark_hair_ornament,0,2221 +539390,insignia,0,2220 +410599,crotchless_panties,0,2217 +423171,prayer_beads,0,2214 +1286664,kabedon,0,2214 +490692,shading_eyes,0,2213 +434965,studded_belt,0,2213 +1321301,purple_shorts,0,2212 +1391834,feather-trimmed_sleeves,0,2212 +1570687,starter_pokemon_trio,0,2212 +640820,spoken_anger_vein,0,2211 +457376,milk_bottle,0,2211 +1276335,fur-trimmed_legwear,0,2210 +550560,oni_mask,0,2210 +703219,multicolored_wings,0,2205 +615392,hair_horns,0,2205 +14927,dessert,0,2204 +1577661,dynamax_band,0,2204 +3139,samurai,0,2203 +493584,striped_pants,0,2203 +379208,smelling,0,2202 +466731,ear_tag,0,2200 +1443349,blue_cardigan,0,2200 +144057,harem_outfit,0,2200 +381887,caught,0,2199 +1513986,creature_and_personification,0,2198 +712510,bare_hips,0,2197 +1452471,hikarizaka_private_high_school_uniform,0,2196 +539585,sleeping_upright,0,2196 +379758,cave,0,2196 +479466,fine_art_parody,0,2195 +444189,arabian_clothes,0,2195 +1402052,white_cloak,0,2195 +1304064,black_apron,0,2195 +455722,curtain_grab,0,2192 +381727,open_skirt,0,2191 +491230,horseback_riding,0,2190 +1422860,two-tone_swimsuit,0,2190 +427930,liquid,0,2189 +1447394,whistle_around_neck,0,2188 +1447450,d-pad_hair_ornament,0,2187 +638777,ritual_baton,0,2186 +87501,wire,0,2185 +480182,keyboard_(instrument),0,2185 +950553,yoga_pants,0,2185 +687728,hands_on_own_head,0,2184 +664440,lace-trimmed_dress,0,2183 +543455,bolt_action,0,2182 +458230,strapless_bra,0,2181 +423438,racket,0,2181 +458132,winged_hat,0,2180 +514239,holding_condom,0,2180 +482447,tailcoat,0,2180 +1098217,drawing_tablet,0,2177 +1399795,no_eyewear,0,2173 +540767,abstract_background,0,2172 +1297466,pulled_by_another,0,2171 +488260,purple_cape,0,2171 +501554,sweater_around_waist,0,2168 +595850,hooded_cape,0,2167 +513765,broken_horn,0,2164 +633435,magical_musket,0,2162 +1243347,mega_pokemon,0,2161 +8279,church,0,2160 +572264,gold_chain,0,2160 +1344680,holding_doll,0,2159 +379555,graffiti,0,2159 +519892,naked_coat,0,2158 +486210,tie_clip,0,2158 +433619,dreadlocks,0,2157 +1076181,flower_(symbol),0,2157 +10861,town,0,2156 +9032,attack,0,2155 +519804,black_lips,0,2153 +839099,green_lips,0,2152 +482936,long_pointy_ears,0,2150 +1609053,twitching_penis,0,2149 +438849,pill,0,2149 +478965,light_bulb,0,2148 +457115,when_you_see_it,0,2147 +453756,;3,0,2147 +405207,arch,0,2145 +644564,butterfly_print,0,2145 +683211,carrying_over_shoulder,0,2141 +467696,black_rose,0,2139 +389161,french_fries,0,2139 +427771,omelet,0,2138 +637281,mechanical_legs,0,2137 +1446770,instant_loss,0,2136 +2281,festival,0,2135 +1280102,single_hair_intake,0,2135 +1411065,anzio_school_uniform,0,2135 +403072,rocket_launcher,0,2131 +1338775,patterned_clothing,0,2126 +425236,pulling,0,2124 +1315557,grey_bow,0,2123 +553947,>_o,0,2122 +644284,holding_sign,0,2121 +530881,spilling,0,2120 +721674,purple_scarf,0,2119 +713394,hand_on_another's_thigh,0,2118 +1448342,two-tone_gloves,0,2118 +7728,tankini,0,2116 +442279,vial,0,2115 +1411023,st._gloriana's_military_uniform,0,2114 +560724,belly_chain,0,2113 +635980,impossible_leotard,0,2112 +430139,single_vertical_stripe,0,2112 +658525,white_cardigan,0,2112 +514196,cat_print,0,2111 +481778,stage_lights,0,2110 +562075,plaid_bikini,0,2108 +489623,glowstick,0,2106 +403183,nail,0,2105 +5058,surfboard,0,2105 +588453,laurel_crown,0,2105 +543193,spread_wings,0,2104 +396962,sweatband,0,2101 +465814,video_camera,0,2100 +9534,trumpet,0,2099 +643426,reverse_upright_straddle,0,2099 +540105,fleeing,0,2098 +682638,flower_earrings,0,2097 +1300390,bandaged_head,0,2097 +421313,product_placement,0,2096 +422126,moss,0,2096 +396859,budget_sarashi,0,2096 +420749,turban,0,2095 +586819,energy_wings,0,2094 +1438722,plunging_neckline,0,2092 +1669073,official_alternate_hair_length,0,2092 +497966,penis_grab,0,2091 +551641,thigh_ribbon,0,2091 +5983,briefs,0,2090 +485269,clothes_hanger,0,2089 +423281,mini-hakkero,0,2089 +1605926,see-through_legwear,0,2088 +475076,cat_hat,0,2087 +472623,hammer_and_sickle,0,2087 +437149,tongue_piercing,0,2087 +421506,head_grab,0,2086 +1353605,standing_on_liquid,0,2085 +1726780,egg_(food),0,2085 +1281566,spiked_armlet,0,2085 +417809,denim_skirt,0,2084 +561087,covering_nipples,0,2083 +1420004,blur_censor,0,2082 +1594627,monocle_hair_ornament,0,2081 +648389,spread_fingers,0,2079 +448292,porkpie_hat,0,2078 +1350232,orange_shorts,0,2074 +667237,oversized_animal,0,2073 +661191,aqua_skirt,0,2072 +669534,clothes_down,0,2070 +435549,veranda,0,2069 +442051,dust,0,2069 +1769934,finger_in_own_mouth,0,2068 +541927,manga_(object),0,2068 +402726,spanked,0,2067 +482791,tusks,0,2067 +1338653,fur_scarf,0,2066 +521817,black_feathers,0,2065 +700045,stray_pubic_hair,0,2065 +1289190,vertical-striped_skirt,0,2063 +1269637,hands_on_headwear,0,2061 +488487,ankle_socks,0,2061 +389909,potato_chips,0,2061 +631042,pool_ladder,0,2058 +1307801,feather_earrings,0,2057 +460050,sleep_molestation,0,2055 +473703,car_interior,0,2050 +405548,tail_bell,0,2050 +519626,on_table,0,2050 +12284,gown,0,2049 +1394292,blue_serafuku,0,2048 +527651,naked_sheet,0,2048 +879036,false_smile,0,2048 +6267,whale,0,2048 +3993,mop,0,2043 +1277599,ribbon-trimmed_skirt,0,2043 +491714,santa_dress,0,2042 +1257581,bowl_hat,0,2042 +699964,pocky_day,0,2042 +448198,shako_cap,0,2041 +589583,kappougi,0,2040 +1370858,mechanical_horns,0,2039 +1453261,low_twin_braids,0,2038 +378768,dreaming,0,2037 +1782786,median_furrow,0,2033 +447322,korean_clothes,0,2031 +381083,sketchbook,0,2031 +1327736,purple_coat,0,2030 +653262,back_tattoo,0,2029 +439517,nose_bubble,0,2026 +2130,tanuki,0,2026 +541092,tegaki,0,2026 +419258,child_on_child,0,2023 +466441,sweet_potato,0,2023 +104991,have_to_pee,0,2022 +1254442,scissor_blade,0,2022 +513425,nib_pen_(medium),0,2022 +287085,boxing_gloves,0,2017 +1389873,orange_kimono,0,2017 +8235,shuriken,0,2016 +1465099,black_sports_bra,0,2016 +477241,birthday_cake,0,2014 +615345,bunny_pose,0,2014 +1349485,clover_hair_ornament,0,2012 +784913,wife_and_wife,0,2012 +581551,covered_face,0,2012 +10884,crotch_rub,0,2010 +385780,high_contrast,0,2005 +1343930,black_hakama,0,2005 +1391600,borrowed_garments,0,2004 +711978,clothed_animal,0,2003 +453979,gusset,0,2002 +1282702,wooden_bucket,0,2002 +460720,wind_chime,0,2002 +555866,pillow_grab,0,2002 +1233843,impossible_bodysuit,0,2002 +686220,pink_sleeves,0,2002 +1279634,mating_press,0,2000 +576093,hands_on_lap,0,1999 +511515,grimace,0,1998 +5114,turtle,0,1997 +495234,inflatable_toy,0,1997 +396726,wreath,0,1997 +6327,afro,0,1996 +551169,transparent_umbrella,0,1993 +1721304,dyed_bangs,0,1992 +585,taiyaki,0,1991 +661899,glowing_sword,0,1991 +521722,nengajou,0,1991 +118742,team_rocket,0,1991 +454425,juice_box,0,1989 +493037,drawer,0,1989 +380358,setsubun,0,1989 +1743,baseball,0,1984 +450205,prehensile_hair,0,1984 +580340,picture_(object),0,1983 +408804,bad_proportions,0,1982 +1618015,slime_(creature),0,1982 +549041,vocaloid_append,0,1982 +1231742,three-dimensional_maneuver_gear,0,1982 +702226,holding_cat,0,1981 +717296,hand_in_another's_hair,0,1981 +416114,symmetry,0,1979 +470701,cube,0,1978 +559145,school_hat,0,1977 +409034,bite_mark,0,1976 +403942,earpiece,0,1974 +4510,crepe,0,1973 +416356,corpse,0,1973 +662965,tokkuri,0,1972 +461237,skewer,0,1972 +379744,counter,0,1972 +1468298,beamed_sixteenth_notes,0,1971 +43623,scepter,0,1971 +10638,boxers,0,1970 +2560,wrestling,0,1970 +1360724,brown_cape,0,1970 +175633,comb,0,1969 +1372686,shark_hood,0,1968 +1427258,holding_sack,0,1967 +1463294,holding_controller,0,1967 +1374594,grey-framed_eyewear,0,1964 +1343802,holding_basket,0,1962 +516012,clothed_masturbation,0,1962 +516930,hanfu,0,1959 +535055,warship,0,1959 +549629,ankle_lace-up,0,1955 +699142,diamond-shaped_pupils,0,1954 +589659,in_bucket,0,1952 +1770614,green_gemstone,0,1951 +1204400,playing_with_own_hair,0,1951 +558703,cheek_pinching,0,1949 +488,flute,0,1949 +408254,tripping,0,1948 +494375,shared_umbrella,0,1948 +416493,red_sky,0,1948 +646637,cocktail_glass,0,1948 +421443,spinning,0,1947 +419280,between_thighs,0,1947 +1240137,swim_briefs,0,1947 +558384,on_grass,0,1944 +1667144,mod3_(girls'_frontline),0,1944 +552818,parted_hair,0,1942 +1637,failure,0,1941 +473206,grey_socks,0,1940 +378083,barrel,0,1940 +666929,light_trail,0,1939 +1392029,multicolored_bodysuit,0,1937 +502382,hyur,0,1937 +422427,sports_bikini,0,1935 +465416,sleeveless_sweater,0,1935 +1456557,hair_through_headwear,0,1931 +608539,column_lineup,0,1930 +574719,multicolored_swimsuit,0,1930 +657424,candlestand,0,1928 +383903,vending_machine,0,1927 +498946,turnaround,0,1926 +1330708,purple_sweater,0,1926 +422821,safety_pin,0,1925 +414746,spider_girl,0,1925 +1334708,holding_paintbrush,0,1925 +499,toast,0,1924 +393832,impregnation,0,1924 +374542,daisy,0,1923 +477184,large_hat,0,1923 +498823,burning,0,1923 +550621,head_back,0,1922 +600284,cheek_poking,0,1921 +605455,volleyball_uniform,0,1920 +1227460,hands_on_another's_head,0,1919 +514943,torn_shorts,0,1919 +5001,squid,0,1915 +1691759,censored_nipples,0,1914 +4864,lion,0,1913 +1435804,bisexual_female,0,1913 +616023,aqua_dress,0,1913 +1442709,fewer_digits,0,1913 +377200,balcony,0,1912 +604468,eye_mask,0,1912 +565089,caustics,0,1911 +1258088,ribbon-trimmed_clothes,0,1911 +1499947,looking_over_eyewear,0,1911 +1314744,yellow_choker,0,1910 +541224,heart_hands_duo,0,1910 +1582499,scar_on_forehead,0,1910 +1401067,face_to_breasts,0,1909 +688904,overskirt,0,1909 +447307,stone,0,1909 +16006,union_jack,0,1907 +478305,striped_sleeves,0,1906 +577309,multiple_condoms,0,1906 +484182,nose_piercing,0,1905 +1399079,holding_drink,0,1905 +381921,energy_ball,0,1905 +7737,soap,0,1904 +452530,ok_sign,0,1904 +1039733,licking_nipple,0,1902 +1606642,white_male_underwear,0,1902 +880368,humanoid_robot,0,1901 +459931,prostitution,0,1900 +1713028,two-tone_bowtie,0,1900 +5707,chaps,0,1899 +379983,under_table,0,1898 +418677,gate,0,1896 +374503,strawberry_shortcake,0,1895 +481420,blood_stain,0,1893 +453886,cosmetics,0,1892 +380490,alarm_clock,0,1889 +1405888,harvin,0,1889 +1296384,multicolored_gloves,0,1888 +530877,lace_bra,0,1887 +490349,head_bump,0,1884 +2834,69,0,1879 +16150,keychain,0,1879 +412179,polka_dot_bra,0,1876 +598410,ceiling_light,0,1875 +468817,flower_wreath,0,1875 +523897,fried_egg,0,1872 +1344665,yellow_vest,0,1871 +1791862,industrial_pipe,0,1870 +1383063,clover_print,0,1870 +536151,snake_tail,0,1870 +486179,naked_cape,0,1869 +419890,rug,0,1869 +4651,dominatrix,0,1867 +492858,lemon_slice,0,1863 +412890,tissue,0,1862 +420546,spear_the_gungnir,0,1860 +380154,squirrel,0,1860 +585851,bound_ankles,0,1859 +484124,deer_ears,0,1859 +1261917,looking_at_phone,0,1853 +1686527,jack-o'_challenge,0,1853 +1739,shrimp,0,1852 +1412053,magatama_necklace,0,1852 +476158,traffic_light,0,1851 +1700602,thick_arms,0,1851 +433424,if_they_mated,0,1850 +657469,rainbow_order,0,1849 +1926,chart,0,1847 +1408089,star_choker,0,1847 +1404865,brown_sailor_collar,0,1846 +378821,watering_can,0,1845 +1306104,orange_scarf,0,1845 +400230,akeome,0,1845 +4313,pointer,0,1844 +1614785,finger_to_own_chin,0,1843 +8806,train_station,0,1842 +1386147,holding_hammer,0,1840 +617893,sleeping_on_person,0,1840 +413859,footprints,0,1837 +1331430,bandaid_on_arm,0,1837 +1506804,pearl_(gemstone),0,1834 +546293,happy_tears,0,1833 +708792,checkered_necktie,0,1833 +473239,yellow_bra,0,1832 +5494,harem,0,1832 +711883,checkered_kimono,0,1832 +1552758,breast_curtain,0,1832 +406727,against_tree,0,1831 +1440529,two-tone_ribbon,0,1831 +1345684,holding_syringe,0,1830 +7827,whisk,0,1829 +664405,plaid_necktie,0,1829 +706581,condom_packet_strip,0,1828 +440956,fluffy,0,1828 +8781,bomb,0,1827 +521350,color_guide,0,1826 +15412,refrigerator,0,1825 +377878,hairdressing,0,1824 +1371311,aqua_bowtie,0,1824 +460146,hitachi_magic_wand,0,1823 +546937,cracked_skin,0,1821 +1307800,skull_earrings,0,1819 +493288,chasing,0,1818 +394047,circle_cut,0,1817 +1289525,cross_scar,0,1817 +408365,tape_gag,0,1816 +155336,poncho,0,1816 +612699,dirty_clothes,0,1815 +1332003,champagne_flute,0,1815 +1342774,rabbit_house_uniform,0,1815 +1551,drill,0,1814 +1403984,brown_capelet,0,1814 +443220,you're_doing_it_wrong,0,1813 +538158,shared_food,0,1811 +1414514,purple_sailor_collar,0,1811 +428250,plectrum,0,1809 +1793464,cheating_(relationship),0,1808 +528616,drone,0,1808 +1805482,non-humanoid_robot,0,1807 +566340,loose_clothes,0,1807 +1806377,homurahara_academy_school_uniform,0,1806 +3946,faucet,0,1806 +388868,m4_carbine,0,1804 +470667,board_game,0,1803 +514885,after_kiss,0,1802 +612635,sidesaddle,0,1801 +3537,sticker,0,1801 +379794,cafe,0,1800 +638838,in_food,0,1799 +15222,alley,0,1797 +585021,spoken_sweatdrop,0,1797 +621654,pale_color,0,1796 +419998,:x,0,1796 +512237,identity_censor,0,1795 +664066,aqua_ribbon,0,1794 +548122,strawberry_print,0,1791 +382271,destruction,0,1791 +690509,purple_sky,0,1790 +400296,gatling_gun,0,1789 +83990,tennis_racket,0,1789 +10415,railroad_tracks,0,1789 +876848,bandage_on_face,0,1786 +1641903,eye_focus,0,1785 +1489840,white_horns,0,1785 +478617,stripper_pole,0,1785 +1336190,drill_locks,0,1785 +396286,cockpit,0,1784 +716395,dixie_cup_hat,0,1784 +188238,crossbow,0,1783 +1793517,legwear_garter,0,1781 +472,monkey,0,1781 +3342,beltbra,0,1779 +674367,starry_sky_print,0,1778 +390436,birdcage,0,1777 +1076157,futanari_masturbation,0,1776 +478170,anti-materiel_rifle,0,1776 +1231015,character_print,0,1775 +14562,holly,0,1775 +911862,mask_pull,0,1775 +590039,animal_feet,0,1774 +719573,doyagao,0,1773 +10911,pond,0,1773 +1286826,cloud_print,0,1771 +471577,red_socks,0,1771 +511657,alternate_form,0,1770 +375862,butler,0,1769 +521377,winged_helmet,0,1769 +961827,pink_hoodie,0,1767 +148824,dove,0,1766 +1356833,frilled_capelet,0,1764 +610944,mixed_media,0,1762 +433470,fanny_pack,0,1762 +403432,hooves,0,1761 +11395,swing,0,1761 +1343849,fellatio_gesture,0,1761 +1287705,song_name,0,1760 +380828,open_bra,0,1757 +653053,strapless_shirt,0,1757 +390242,variations,0,1756 +1333731,hands_on_own_thighs,0,1756 +1329387,deviantart_username,0,1756 +1448570,gold_earrings,0,1756 +1373028,yellow-framed_eyewear,0,1753 +478938,impossible_dress,0,1751 +380329,briefcase,0,1750 +1344462,blue_apron,0,1749 +16992,see-through_dress,0,1749 +2684,fishing,0,1747 +412950,rubble,0,1747 +1365001,black_robe,0,1746 +6389,tickling,0,1746 +13185,spitting,0,1745 +228746,spider,0,1745 +655271,naked_jacket,0,1745 +444545,pocky_kiss,0,1744 +629987,radio_antenna,0,1744 +440406,buck_teeth,0,1744 +501689,body_hair,0,1743 +585543,pussy_juice_puddle,0,1742 +4144,mace,0,1742 +1253396,character_hair_ornament,0,1742 +533490,adjusting_gloves,0,1741 +3532,ink,0,1740 +670532,holding_pencil,0,1739 +1438761,high-waist_pants,0,1739 +2431,missile,0,1738 +8309,straitjacket,0,1738 +473259,artificial_vagina,0,1738 +638540,multicolored_bikini,0,1737 +1597364,chain_leash,0,1736 +461218,selfcest,0,1734 +675346,frilled_ribbon,0,1732 +1328016,o-ring_choker,0,1730 +440374,leg_belt,0,1729 +4948,mimikaki,0,1728 +466439,sparks,0,1726 +1521615,skin_fangs,0,1726 +1510922,other_focus,0,1725 +15614,tube,0,1724 +430228,pole_dancing,0,1724 +1617800,see-through_leotard,0,1724 +593715,bird_on_hand,0,1722 +391066,roller_skates,0,1722 +1416546,red_hoodie,0,1722 +1258390,holding_leash,0,1721 +406767,super_robot,0,1721 +633809,eastern_dragon,0,1720 +1353409,fine_fabric_emphasis,0,1719 +555276,surprise_kiss,0,1717 +819855,puffy_shorts,0,1716 +400313,beam_rifle,0,1716 +557675,no_wings,0,1715 +414749,helm,0,1715 +1308909,barcode_tattoo,0,1714 +477329,brushing_hair,0,1711 +429442,patch,0,1711 +1472233,high-waist_shorts,0,1711 +464556,dolphin,0,1710 +1476489,pokemon_on_head,0,1709 +389904,cabinet,0,1706 +1696268,cowboy_western,0,1706 +570969,red_armor,0,1706 +1675931,kalashnikov_rifle,0,1705 +521422,skull_print,0,1705 +688139,implied_futanari,0,1703 +15124,pain,0,1701 +376636,confused,0,1701 +550124,sitting_in_tree,0,1701 +487161,breasts_on_head,0,1700 +547292,reflective_floor,0,1700 +475729,through_clothes,0,1699 +77315,worried,0,1698 +394155,instrument_case,0,1698 +603830,on_person,0,1698 +507655,freediving,0,1695 +1637843,crescent_facial_mark,0,1695 +443879,gorget,0,1695 +1372792,fox_boy,0,1694 +524875,nail_art,0,1693 +473417,yellow_thighhighs,0,1692 +1415469,torpedo_tubes,0,1692 +641695,aerial_fireworks,0,1691 +1253523,\||/,0,1690 +1113198,latex_bodysuit,0,1690 +909672,star_halo,0,1689 +1416333,cherry_blossom_print,0,1687 +11960,tanabata,0,1686 +1427966,yellow_cardigan,0,1686 +450823,x_x,0,1686 +445622,leopard_ears,0,1686 +1489808,poke_ball_symbol,0,1685 +499937,lip_piercing,0,1685 +1233871,circle_name,0,1684 +423915,wooden_sword,0,1684 +468068,spread_toes,0,1684 +859661,red_cloak,0,1683 +468635,coral,0,1682 +520227,cowlick,0,1682 +481514,white_suit,0,1682 +645771,seigaiha,0,1680 +431012,tangzhuang,0,1679 +1410984,kuromorimine_school_uniform,0,1679 +1559079,light_areolae,0,1678 +11745,breast_smother,0,1677 +396795,menu,0,1676 +1378575,monsterification,0,1676 +1284171,after_paizuri,0,1676 +1319620,wing_hair_ornament,0,1676 +1531697,mismatched_pupils,0,1673 +679014,greatsword,0,1673 +377843,cousins,0,1671 +399148,voyakiloid,0,1671 +1383226,ofuda_on_clothes,0,1671 +614243,plaid_background,0,1670 +695921,white_sash,0,1670 +10429,shinsengumi,0,1670 +1441680,holstered_weapon,0,1670 +723924,very_long_fingernails,0,1670 +1819565,jirai_kei,0,1670 +5873,confession,0,1669 +670645,tactical_clothes,0,1668 +495132,autobot,0,1667 +459174,dress_tug,0,1666 +1345660,leaning_on_object,0,1666 +420651,blinds,0,1665 +396872,ribbon_bondage,0,1665 +516894,tokusatsu,0,1664 +469082,milk_carton,0,1663 +392117,insect_wings,0,1662 +1499389,patchwork_skin,0,1660 +526470,thighhighs_pull,0,1658 +385733,baseball_uniform,0,1658 +622860,spring_(season),0,1658 +494944,flexing,0,1658 +1426293,yasogami_school_uniform,0,1656 +1174935,hand_on_own_leg,0,1654 +1262479,plaid_bowtie,0,1653 +542055,polka_dot_dress,0,1652 +567592,untucked_shirt,0,1649 +610495,bondage_outfit,0,1647 +418420,stuck,0,1647 +1418114,green_hoodie,0,1647 +413866,breasts_on_glass,0,1646 +586859,beckoning,0,1646 +1641153,icho_private_high_school_uniform,0,1646 +476416,biker_clothes,0,1645 +1323958,pink_vest,0,1645 +10293,marker,0,1645 +1346997,holding_whip,0,1644 +1275036,german_clothes,0,1644 +1268348,pawpads,0,1644 +442232,scarlet_devil_mansion,0,1643 +663528,wooden_wall,0,1643 +667138,hikimayu,0,1643 +475212,very_long_sleeves,0,1640 +1307726,magatama_earrings,0,1639 +1684797,grabbing_another's_chin,0,1636 +418987,park_bench,0,1636 +379603,hair_brush,0,1634 +379164,messy,0,1632 +1411720,medium_dress,0,1631 +549281,in_the_face,0,1631 +1242767,star_necklace,0,1631 +427833,palms,0,1631 +1328688,moon_(ornament),0,1630 +437999,full_nelson,0,1629 +444634,torn,0,1629 +403915,wheel,0,1628 +2232,tarot,0,1627 +478821,teasing,0,1627 +539771,incoming_gift,0,1627 +6303,naginata,0,1627 +1623670,diamond_button,0,1626 +1373026,green-framed_eyewear,0,1623 +610198,leotard_pull,0,1622 +660019,color_connection,0,1620 +462556,cuddling,0,1620 +1496652,gold_hairband,0,1619 +599839,horned_helmet,0,1618 +1434344,pencil_dress,0,1618 +1402835,scene_reference,0,1617 +464552,cucumber,0,1616 +1530483,elite_ii_(arknights),0,1616 +8989,viera,0,1612 +540139,different_reflection,0,1612 +1088997,bear_hair_ornament,0,1612 +667586,single_pauldron,0,1612 +815986,fortissimo,0,1612 +1400382,barbell_piercing,0,1611 +544708,fish_girl,0,1611 +454517,unconscious,0,1610 +574422,claw_(weapon),0,1609 +379311,chandelier,0,1608 +377993,petting,0,1608 +450208,chocolate_bar,0,1607 +713479,2014,0,1607 +476495,dowsing_rod,0,1607 +469396,role_reversal,0,1605 +375381,hair_in_mouth,0,1602 +565136,projected_inset,0,1601 +664546,taut_dress,0,1599 +692799,choko_(cup),0,1598 +613128,embellished_costume,0,1596 +1379633,fff_threesome,0,1595 +457418,fighter_jet,0,1595 +442863,heckler_&_koch,0,1594 +393579,mechanical_pencil,0,1593 +514889,polo_shirt,0,1593 +508957,health_bar,0,1593 +684621,puffy_detached_sleeves,0,1593 +700119,cropped_vest,0,1592 +421489,ushanka,0,1591 +403478,suppressor,0,1590 +411198,leg_hold,0,1589 +1396796,green_neckerchief,0,1589 +1260991,pink_pants,0,1588 +669791,futa_with_futa,0,1588 +723472,stiletto_heels,0,1588 +1274842,two-handed,0,1587 +412925,cupless_bra,0,1587 +642312,handsfree_ejaculation,0,1586 +1598810,nontraditional_playboy_bunny,0,1586 +1403286,black_mask,0,1586 +412357,lounge_chair,0,1585 +664263,bikini_top_removed,0,1585 +430449,spine,0,1585 +442852,old_woman,0,1585 +1439570,tall_female,0,1585 +406711,strap-on,0,1584 +1342607,holding_lantern,0,1584 +512488,crotch_plate,0,1583 +679286,faux_figurine,0,1582 +12083,graveyard,0,1582 +668887,shallow_water,0,1580 +1362227,holding_stick,0,1580 +469368,striped_gloves,0,1579 +683983,poke_ball_print,0,1579 +1515352,aqua_theme,0,1578 +388093,hakurei_reimu_(cosplay),0,1578 +600210,perineum,0,1578 +452130,neon_lights,0,1578 +492105,groin_tendon,0,1577 +395436,reindeer_costume,0,1577 +721109,visible_air,0,1577 +592444,mars_symbol,0,1576 +399999,whipped_cream,0,1575 +452157,hagoita,0,1575 +759492,wolf_boy,0,1575 +538746,lipstick_tube,0,1574 +542357,red_cross,0,1573 +405026,large_insertion,0,1573 +410111,bowing,0,1570 +480324,staff_(music),0,1570 +495020,crazy_smile,0,1570 +397693,shikigami,0,1569 +703456,sorcerer's_sutra_scroll,0,1569 +1426454,holding_clipboard,0,1568 +1505130,german_text,0,1567 +391475,fireflies,0,1567 +29555,office,0,1567 +451262,notepad,0,1566 +1440623,jacket_partially_removed,0,1566 +1514129,sunburst_background,0,1565 +545758,wisteria,0,1563 +550778,checkerboard_cookie,0,1563 +1517305,presenting_armpit,0,1563 +582361,head_between_breasts,0,1562 +1374895,spiked_tail,0,1561 +660754,aqua_shirt,0,1560 +537783,bamboo_broom,0,1559 +1781164,gem_(symbol),0,1559 +1296314,single_gauntlet,0,1558 +15578,eagle,0,1557 +1240006,bishamonten's_pagoda,0,1554 +485203,video_game,0,1553 +585862,reach-around,0,1553 +617315,pantyhose_under_shorts,0,1552 +1438860,black_sash,0,1551 +699609,frilled_cuffs,0,1550 +16279,air_conditioner,0,1549 +657500,fish_hair_ornament,0,1548 +892083,green_apron,0,1545 +2812,ramune,0,1545 +1314693,grey_scarf,0,1545 +1505167,simplified_chinese_text,0,1544 +473599,fingers,0,1543 +9781,pacifier,0,1543 +585009,sword_over_shoulder,0,1542 +399875,beach_chair,0,1541 +1296346,stationary_restraints,0,1540 +501344,fallen_down,0,1539 +1274924,hand_on_another's_ass,0,1539 +671484,stuffed_shark,0,1539 +632854,naked_hoodie,0,1539 +1557024,mouth_veil,0,1539 +8775,mahjong,0,1538 +1464685,collared_cape,0,1537 +394989,hexagon,0,1537 +476602,kusazuri,0,1537 +590941,santa_boots,0,1536 +378038,pentacle,0,1535 +693272,tan_background,0,1535 +1373024,white-framed_eyewear,0,1534 +1775923,circled_9,0,1534 +467745,japanese_flag,0,1533 +453530,power_suit,0,1532 +1665195,reference_inset,0,1531 +1781330,nijigasaki_academy_school_uniform,0,1531 +607070,caressing_testicles,0,1529 +1247633,narrowed_eyes,0,1529 +1791857,painting_(action),0,1528 +633053,hooded_sweater,0,1527 +1835746,pink_one-piece_swimsuit,0,1526 +440361,lipstick_mark,0,1526 +650139,clothed_female_nude_female,0,1526 +1258091,ribbon-trimmed_collar,0,1526 +524796,age_progression,0,1525 +1558733,tulip_hat,0,1525 +3489,dinosaur,0,1523 +598269,kissing_forehead,0,1523 +1328687,earth_(ornament),0,1523 +420294,yellow_skin,0,1522 +1333530,grey_fur,0,1521 +714422,sports_car,0,1520 +664350,tail_censor,0,1520 +9587,love_letter,0,1520 +724196,thigh_pouch,0,1520 +1265860,pink_blood,0,1519 +482956,caution_tape,0,1518 +415621,blueberry,0,1518 +712801,pussy_piercing,0,1517 +472861,ovum,0,1517 +478228,title,0,1515 +503126,ribbon_in_mouth,0,1514 +374573,centaur,0,1514 +10562,truck,0,1513 +628220,claw_ring,0,1511 +541729,rotational_symmetry,0,1510 +1333955,side-tie_leotard,0,1510 +1298471,blood_from_eyes,0,1509 +1424925,holding_needle,0,1509 +1320208,grey_necktie,0,1509 +1452545,kibito_high_school_uniform,0,1509 +656250,arm_between_breasts,0,1506 +629486,used_tissue,0,1504 +1346802,spiked_shell,0,1503 +1678267,palette_(object),0,1502 +485953,puffy_pants,0,1502 +1446284,looking_at_animal,0,1502 +615984,bendy_straw,0,1502 +1560,mascot,0,1500 +1424211,sakugawa_school_uniform,0,1500 +16695,magnifying_glass,0,1499 +1482386,tiger_boy,0,1499 +1923,truth,0,1498 +528496,holding_shoes,0,1498 +415310,overgrown,0,1498 +712381,thigh_cutout,0,1498 +1298573,sanshoku_dango,0,1496 +416448,yagasuri,0,1495 +1672391,viewer_holding_leash,0,1495 +1450243,weibo_logo,0,1494 +635465,twitching,0,1493 +452581,vibrator_under_panties,0,1491 +414700,buttjob,0,1491 +607798,arm_wrap,0,1491 +1859633,a_certain_high_school_uniform,0,1490 +362945,garden,0,1488 +399302,drying,0,1487 +593466,flame_print,0,1487 +1179281,bear_girl,0,1487 +1323483,fangs_out,0,1486 +1396969,holding_innertube,0,1485 +453719,plant_girl,0,1484 +1390886,brown_kimono,0,1484 +180889,morning,0,1483 +16135,cotton_candy,0,1483 +376147,hanging,0,1482 +460511,hand_puppet,0,1481 +437614,boned_meat,0,1481 +714136,hand_on_another's_stomach,0,1481 +1234797,foot_up,0,1478 +397906,party_hat,0,1478 +709214,alternate_skin_color,0,1478 +520939,wiping_tears,0,1477 +655903,fake_facial_hair,0,1477 +1373018,striped_kimono,0,1477 +10125,halberd,0,1477 +461720,buzz_cut,0,1477 +1637102,doughnut_hair_bun,0,1476 +465754,spanking,0,1476 +544204,bowl_cut,0,1476 +705551,pixiv_id,0,1476 +475794,column,0,1475 +699449,raimon,0,1474 +8918,inflation,0,1473 +516011,playstation_portable,0,1472 +492764,heart_tail,0,1472 +14637,tight_shirt,0,1471 +394771,utility_belt,0,1471 +544443,penis_out,0,1470 +387935,spirit,0,1470 +421056,spiked_club,0,1468 +466411,invisible_penis,0,1467 +1568979,plaid_headwear,0,1467 +617246,leather_belt,0,1467 +1325039,oral_invitation,0,1467 +434522,gym_storeroom,0,1465 +1747766,lapels,0,1464 +625484,glitch,0,1464 +405444,helicopter,0,1463 +533100,sitting_on_object,0,1462 +1609998,after_ejaculation,0,1462 +1411201,kiyosumi_school_uniform,0,1462 +1305007,chest_belt,0,1461 +590857,okamisty,0,1461 +670994,chocolate_on_body,0,1460 +1240596,mole_on_neck,0,1460 +389933,harem_pants,0,1459 +376486,skyline,0,1459 +1495030,red-tinted_eyewear,0,1459 +628115,open_window,0,1458 +14860,chef,0,1458 +480571,mechanization,0,1458 +662800,fake_antlers,0,1458 +9590,jersey,0,1458 +637922,2013,0,1457 +656303,shirt_in_mouth,0,1456 +1441520,horns_through_headwear,0,1456 +398229,people,0,1455 +381954,untying,0,1454 +483333,pavement,0,1454 +392935,tree_stump,0,1453 +410544,handkerchief,0,1452 +1257314,idol_clothes,0,1452 +622601,window_shade,0,1451 +493565,timestamp,0,1451 +418781,pet_play,0,1450 +399061,camcorder,0,1449 +595751,ass_cutout,0,1449 +1605421,halloween_bucket,0,1449 +580394,dirndl,0,1447 +1227348,back-seamed_legwear,0,1445 +642015,expressive_hair,0,1445 +472201,baguette,0,1444 +439406,shiba_inu,0,1444 +1378645,constellation_print,0,1444 +535,molestation,0,1442 +1373313,excessive_pubic_hair,0,1442 +11754,neck,0,1442 +1317604,panty_straps,0,1442 +1476167,holding_handheld_game_console,0,1442 +556841,sitting_on_stairs,0,1441 +504308,redesign,0,1440 +1549885,crane_(machine),0,1439 +974780,stomach_cutout,0,1439 +1267456,holding_leaf,0,1438 +389048,donation_box,0,1437 +523847,omurice,0,1436 +426749,2012,0,1435 +1378370,black_buruma,0,1433 +470025,open_pants,0,1432 +1279772,yellow_wings,0,1432 +473475,orange_thighhighs,0,1431 +547320,excessive_cum,0,1431 +478325,2010,0,1431 +399246,stadium,0,1430 +658254,holding_helmet,0,1430 +1507608,h&k_hk416,0,1430 +1279653,holding_brush,0,1429 +451782,brushing_teeth,0,1427 +461401,treasure_chest,0,1427 +494781,makizushi,0,1427 +1441880,hand_on_eyewear,0,1427 +565996,goat_ears,0,1427 +414107,gamepad,0,1426 +1602480,index_fingers_together,0,1425 +405498,panda_ears,0,1424 +162717,triforce,0,1424 +431374,curtsey,0,1423 +479141,raised_fist,0,1422 +526532,oversized_shirt,0,1422 +1397563,fur-trimmed_skirt,0,1422 +629378,ruffling_hair,0,1422 +1321158,brown_necktie,0,1422 +1442004,eyewear_on_headwear,0,1421 +380988,goblin,0,1417 +1374287,ribbed_bodysuit,0,1417 +673730,palm_leaf,0,1416 +1518970,pectoral_grab,0,1416 +646260,pointless_condom,0,1414 +421385,kanji,0,1414 +381861,\o/,0,1411 +1414389,pink_sailor_collar,0,1409 +8234,radio,0,1408 +545201,micro_panties,0,1407 +587990,bodice,0,1407 +500820,stone_lantern,0,1406 +1422826,sangvis_ferri,0,1406 +384435,onmyouji,0,1405 +1285391,turtleneck_dress,0,1405 +1667891,pom_pom_hair_ornament,0,1404 +467946,coca-cola,0,1403 +12086,globe,0,1403 +1163924,blue_fur,0,1403 +539536,blue_headband,0,1401 +494162,monkey_ears,0,1399 +1478255,dangle_earrings,0,1397 +665766,carrying_under_arm,0,1396 +501337,39,0,1396 +594236,expressive_clothes,0,1394 +662045,lotion_bottle,0,1394 +534991,pillbox_hat,0,1394 +379633,fertilization,0,1393 +460870,spell_card,0,1392 +536429,cupping_hands,0,1392 +400656,red_hood,0,1392 +431361,baseball_mitt,0,1391 +1598686,male_playboy_bunny,0,1389 +1835740,purple_one-piece_swimsuit,0,1388 +3197,takoyaki,0,1387 +508969,cow_boy,0,1387 +380,priest,0,1386 +1413926,orange_sailor_collar,0,1386 +497917,thrusters,0,1386 +525748,dakimakura_(object),0,1384 +420884,countdown,0,1384 +1613542,electrokinesis,0,1384 +569173,spread_pussy_under_clothes,0,1384 +644441,fiery_hair,0,1383 +480430,bear_print,0,1381 +433011,polka_dot_swimsuit,0,1381 +1436311,u.a._school_uniform,0,1380 +617594,alternate_weapon,0,1379 +396034,propeller,0,1378 +497295,happi,0,1378 +586366,prosthetic_leg,0,1378 +592445,venus_symbol,0,1377 +547081,incoming_attack,0,1377 +610123,forehead-to-forehead,0,1376 +632009,blonde_pubic_hair,0,1376 +683919,ajirogasa,0,1376 +1448374,reflective_water,0,1375 +12254,tribal,0,1374 +450649,shin_guards,0,1374 +663848,naked_kimono,0,1374 +593015,finger_to_face,0,1373 +560134,u_u,0,1373 +11353,twincest,0,1370 +593552,plaid_pants,0,1370 +1415445,nanairogaoka_middle_school_uniform,0,1370 +1230150,leg_between_thighs,0,1369 +549142,yes-no_pillow,0,1369 +401422,screen,0,1369 +1324575,tapir_tail,0,1369 +16095,glomp,0,1368 +389416,impaled,0,1368 +488375,rainbow_gradient,0,1368 +578012,talking_on_phone,0,1367 +638293,novel_cover,0,1367 +1670355,furry_with_furry,0,1367 +646459,striped_shorts,0,1366 +1332978,short_jumpsuit,0,1366 +16601,overcoat,0,1365 +5323,kettle,0,1364 +1624910,sidepec,0,1364 +473249,print_bra,0,1363 +1409636,furrification,0,1363 +723185,stone_floor,0,1362 +389374,cat_teaser,0,1361 +395712,christmas_lights,0,1361 +384969,intravenous_drip,0,1360 +424974,no_testicles,0,1358 +481054,grey_bra,0,1358 +1454017,debt,0,1358 +991822,blue_eyeshadow,0,1356 +14704,nike,0,1355 +419304,crosswalk,0,1355 +659938,poker_chip,0,1355 +494704,2011,0,1355 +572582,masturbation_through_clothes,0,1354 +1344701,grey_border,0,1354 +649700,full-package_futanari,0,1353 +8411,sheet_music,0,1353 +683789,wooden_table,0,1351 +1288040,incoming_food,0,1351 +1249322,hauchiwa,0,1349 +1282898,cloth_gag,0,1349 +394997,sweatpants,0,1349 +1515355,black_theme,0,1348 +1455250,chest_strap,0,1348 +449943,stab,0,1347 +389647,clock_tower,0,1346 +1665347,full-body_tattoo,0,1345 +1249520,drawing_bow,0,1344 +8617,potion,0,1344 +680046,carrying_person,0,1344 +563716,italian_flag,0,1342 +374948,school_briefcase,0,1341 +1373027,brown-framed_eyewear,0,1341 +1268086,pink_bag,0,1341 +593696,leather_gloves,0,1340 +903375,flip_phone,0,1339 +635016,broken_chain,0,1339 +548895,frilled_socks,0,1338 +594785,blowing_kiss,0,1338 +405,soccer,0,1337 +468165,mixing_bowl,0,1337 +395851,log,0,1336 +1454154,black_pubic_hair,0,1336 +375527,kimono_skirt,0,1336 +562826,slapping,0,1334 +4577,snorkel,0,1334 +587202,shoelaces,0,1333 +9355,humiliation,0,1333 +2839,lube,0,1333 +1608327,mixed-language_text,0,1333 +626479,orange_slice,0,1333 +585203,veiny_breasts,0,1333 +1761435,onee-loli,0,1332 +500152,breathing_fire,0,1332 +559601,cheering,0,1331 +505317,lily_of_the_valley,0,1331 +1287296,diving_mask_on_head,0,1330 +473312,camellia,0,1329 +3408,origami,0,1329 +410102,yes,0,1328 +621930,mandarin_collar,0,1328 +1276269,ribbed_sleeves,0,1327 +1406765,jaguar_ears,0,1327 +408186,frottage,0,1326 +565797,tropical_drink,0,1326 +705858,partially_underwater_shot,0,1326 +624870,imminent_fellatio,0,1326 +1584543,pokedex_number,0,1326 +600401,wooden_fence,0,1325 +1317361,multicolored_bow,0,1325 +1396461,brown_hairband,0,1323 +1387512,orange_ascot,0,1323 +413721,latex_gloves,0,1322 +457946,stone_wall,0,1321 +1402473,blue_sash,0,1320 +1578780,diagonal-striped_necktie,0,1320 +496388,._.,0,1317 +1354736,green_flower,0,1316 +9396,april_fools,0,1316 +568512,bird_on_shoulder,0,1315 +1719547,sailor_moon_redraw_challenge_(meme),0,1314 +11756,cup_ramen,0,1313 +573617,food-themed_clothes,0,1313 +564677,playstation_controller,0,1313 +61654,tail_grab,0,1313 +486968,red_bandana,0,1313 +639779,mechanical_tail,0,1312 +393602,severed_head,0,1311 +58241,platform_heels,0,1311 +482510,plaid_panties,0,1309 +722706,jojo_pose,0,1309 +1793460,cooperative_paizuri,0,1308 +525108,hands_on_feet,0,1307 +8803,cleaning,0,1307 +843166,yellow_hoodie,0,1307 +609486,single_strap,0,1307 +539990,tail_between_legs,0,1306 +1365638,bandaid_on_hand,0,1306 +473470,wrist_guards,0,1305 +9628,scooter,0,1304 +1314748,pink_collar,0,1304 +1422416,twitter_logo,0,1304 +1780,cow,0,1303 +1409793,grey_kimono,0,1303 +546044,sleeveless_hoodie,0,1302 +698497,gloves_removed,0,1301 +563461,full-length_zipper,0,1301 +1262922,head_on_another's_shoulder,0,1301 +1383769,dot_mouth,0,1300 +395433,traditional_clothes,0,1300 +668383,lace-trimmed_sleeves,0,1300 +1259138,mole_on_ass,0,1300 +1410489,shower_(place),0,1299 +477993,bad_perspective,0,1298 +391175,stove,0,1298 +424623,unitard,0,1298 +825568,shortstack,0,1298 +392839,torn_panties,0,1297 +661926,ankle_strap,0,1296 +1574672,two-sided_cape,0,1295 +16550,stream,0,1294 +12727,phonograph,0,1293 +10399,x,0,1293 +15305,steampunk,0,1293 +488193,slap_mark,0,1293 +543247,eyebrow_piercing,0,1293 +416904,cat_on_head,0,1292 +612104,respirator,0,1292 +963327,yordle,0,1292 +592457,nippleless_clothes,0,1291 +389021,deer,0,1290 +388798,hatsune_miku_(cosplay),0,1289 +1606641,black_male_underwear,0,1288 +595244,hamaya,0,1286 +444567,tail_wrap,0,1286 +524686,hand_net,0,1285 +511641,single_pantsleg,0,1285 +1476395,pokemon_on_shoulder,0,1284 +380213,sponge,0,1283 +1504221,purple_tail,0,1283 +1318470,yellow_pupils,0,1282 +1601080,animal_ear_legwear,0,1282 +431872,balancing,0,1281 +629555,desk_lamp,0,1280 +1475076,blue_horns,0,1278 +686531,undone_necktie,0,1277 +477355,chainmail,0,1277 +695246,hakama_pants,0,1276 +1414657,purple_capelet,0,1275 +531186,gold_armor,0,1274 +473618,clitoris_piercing,0,1274 +433212,bookmark,0,1274 +15307,werewolf,0,1274 +374909,whispering,0,1272 +518423,black_leggings,0,1271 +637282,pants_rolled_up,0,1269 +690442,boots_removed,0,1269 +992674,emoji,0,1269 +695232,mismatched_pubic_hair,0,1268 +492677,bolo_tie,0,1267 +534114,cocktail_dress,0,1267 +1507443,sidelighting,0,1266 +410474,picnic_basket,0,1265 +1554055,fiery_horns,0,1265 +11623,bad_end,0,1263 +1238376,multicolored_shirt,0,1263 +8500,eggplant,0,1263 +1325030,new_school_swimsuit,0,1263 +399269,tablecloth,0,1262 +1400049,on_bench,0,1262 +685325,shiny_legwear,0,1261 +1586950,sobu_high_school_uniform,0,1261 +628271,turning_head,0,1260 +1392009,green_bodysuit,0,1260 +457562,fake_mustache,0,1259 +1565319,power_suit_(metroid),0,1258 +652288,alphes_(style),0,1258 +1713829,mithra_(ff11),0,1257 +382610,skateboard,0,1257 +1542756,turtleneck_leotard,0,1256 +1411229,orange_neckerchief,0,1256 +392251,fireplace,0,1256 +1394090,see-through_skirt,0,1256 +551591,deerstalker,0,1255 +415735,sideways,0,1254 +414232,cum_on_hands,0,1254 +726190,breast_conscious,0,1254 +613598,polka_dot_legwear,0,1254 +418106,dark_penis,0,1253 +4654,flustered,0,1253 +666658,grey_bikini,0,1252 +711344,hand_on_own_shoulder,0,1252 +1237065,sunflower_hair_ornament,0,1251 +1304010,pink_pupils,0,1250 +702474,ribbed_leotard,0,1250 +3334,kigurumi,0,1249 +798294,club_(shape),0,1249 +1429613,tomoeda_elementary_school_uniform,0,1249 +543408,real_world_location,0,1249 +1492501,shinda_sekai_sensen_uniform,0,1249 +4930,doctor,0,1248 +565279,german_flag,0,1248 +616223,no_gloves,0,1248 +1501189,stitched_face,0,1247 +652468,brown_bikini,0,1246 +674500,large_testicles,0,1246 +1762322,greyscale_with_colored_background,0,1246 +507478,aqua_panties,0,1245 +726943,pink_coat,0,1245 +383146,panties_on_head,0,1245 +1274419,spoken_character,0,1244 +519211,ryona,0,1244 +447287,high_kick,0,1243 +9348,wheelchair,0,1243 +1413210,blue_collar,0,1243 +1824446,lycoris_uniform,0,1243 +1349438,animal_bag,0,1242 +491661,hat_tip,0,1242 +496346,impossible_swimsuit,0,1241 +643516,pyrokinesis,0,1241 +632853,fake_wings,0,1240 +603398,lace-trimmed_skirt,0,1239 +1781886,stroking_own_chin,0,1239 +383835,runes,0,1239 +1492898,green_sleeves,0,1239 +443587,sunscreen,0,1238 +427020,stepped_on,0,1238 +575113,kimono_pull,0,1238 +651163,kourindou_tengu_costume,0,1238 +583212,fingering_through_clothes,0,1237 +492714,curry_rice,0,1237 +495137,tulip,0,1236 +330013,pie,0,1236 +488259,skull_mask,0,1236 +11216,soup,0,1235 +11603,paper_airplane,0,1235 +557999,wiping_face,0,1235 +1771225,lord_camelot_(fate),0,1235 +522405,kanabou,0,1234 +684234,perpendicular_paizuri,0,1234 +548540,puckered_anus,0,1234 +588173,sex_machine,0,1233 +420441,teamwork,0,1232 +439204,friends,0,1231 +629461,duffel_coat,0,1231 +176537,bartender,0,1231 +416557,ammunition_belt,0,1230 +179157,tent,0,1230 +510652,flashback,0,1230 +541435,cellphone_picture,0,1227 +465875,age_regression,0,1227 +600052,butterfly_on_hand,0,1227 +518510,dust_cloud,0,1227 +1372592,bath_yukata,0,1227 +1283900,single_fingerless_glove,0,1226 +491621,cheek_bulge,0,1225 +609657,animal_hug,0,1225 +1501551,sakuramon,0,1225 +330372,sausage,0,1224 +603173,molten_rock,0,1223 +3419,shinai,0,1222 +15057,nearly_naked_apron,0,1221 +468159,sparkler,0,1220 +1403859,3d_background,0,1220 +498369,naked_bandage,0,1220 +549321,cum_on_penis,0,1219 +1271959,short_sidetail,0,1218 +434471,angel_and_devil,0,1217 +475249,large_wings,0,1217 +710257,odd_one_out,0,1217 +688960,holding_pillow,0,1216 +1835593,ornate_ring,0,1216 +509739,burnt_clothes,0,1215 +452607,2009,0,1215 +1377225,bruise_on_face,0,1215 +1856853,asticassia_school_uniform,0,1215 +1369179,orange_fur,0,1214 +1461344,papakha,0,1214 +164246,teruterubouzu,0,1212 +408976,bat_ears,0,1212 +9574,sick,0,1211 +11998,open_robe,0,1211 +1410988,pravda_school_uniform,0,1211 +1585295,athletic_leotard,0,1209 +11273,harp,0,1208 +1330230,black_wristband,0,1208 +13916,tempura,0,1206 +577080,hand_on_lap,0,1206 +1388990,two-tone_legwear,0,1205 +995808,penis_size_difference,0,1205 +476199,striped_sweater,0,1205 +2660,lettuce,0,1204 +570296,giving_up_the_ghost,0,1204 +411779,ankh,0,1204 +451184,holographic_interface,0,1203 +547391,winged_footwear,0,1203 +468977,split_screen,0,1203 +660817,opening_door,0,1203 +537130,arm_blade,0,1202 +513421,acrylic_paint_(medium),0,1202 +822829,suspended_congress,0,1201 +374515,hawaiian_shirt,0,1201 +578544,leg_armor,0,1201 +1419859,fur-trimmed_cloak,0,1201 +1281997,asymmetrical_horns,0,1201 +473050,crate,0,1200 +405415,milking_machine,0,1199 +10246,wig,0,1199 +1361800,bow_earrings,0,1198 +518732,anilingus,0,1197 +735235,eye_of_horus,0,1197 +652086,gathers,0,1196 +271102,ladybug,0,1196 +5632,laser,0,1195 +628425,tiered_tray,0,1195 +10428,wading_pool,0,1194 +494464,uvula,0,1194 +700361,watermelon_bar,0,1194 +656386,hands_on_another's_cheeks,0,1194 +1392006,yellow_bodysuit,0,1193 +685266,sandals_removed,0,1192 +472922,inset,0,1191 +1627136,excalibur_morgan_(fate),0,1191 +389703,ema,0,1190 +1342945,behind_another,0,1190 +8260,ferris_wheel,0,1189 +636872,lizard_tail,0,1189 +251194,gym,0,1188 +15187,machine,0,1186 +5497,fountain,0,1186 +515008,cum_on_self,0,1186 +1292445,torn_scarf,0,1186 +421282,pasta,0,1184 +3493,voyeurism,0,1183 +891632,artificial_eye,0,1183 +671651,hair_ears,0,1183 +1349107,candy_hair_ornament,0,1183 +1090326,bird_mask,0,1182 +1355967,on_vehicle,0,1181 +437001,living_clothes,0,1181 +664061,grey_ribbon,0,1179 +426371,through_wall,0,1179 +1534682,aqua_headwear,0,1179 +542830,chest_of_drawers,0,1178 +658981,open_belt,0,1178 +629694,leopard_tail,0,1178 +1853184,kamiyama_high_school_uniform_(hyouka),0,1178 +6259,park,0,1177 +324075,ballerina,0,1177 +373823,ketchup,0,1175 +1251057,ginkgo_leaf,0,1175 +9706,snail,0,1174 +1360843,neckwear_grab,0,1174 +419773,iphone,0,1174 +12011,potato,0,1173 +456884,brown_panties,0,1172 +511422,newhalf,0,1172 +487203,overcast,0,1172 +1354455,year_of_the_rat,0,1172 +1561175,champion_uniform,0,1172 +456589,leather_boots,0,1171 +374749,heartbeat,0,1171 +541262,disgust,0,1170 +1514953,cropped_shoulders,0,1170 +1504868,eyebrow_cut,0,1170 +504744,load_bearing_vest,0,1169 +1230967,rook_(chess),0,1169 +433522,cheek_squash,0,1168 +648546,belt_boots,0,1168 +1457585,hooded_cardigan,0,1168 +582353,lace-trimmed_gloves,0,1167 +383854,native_american,0,1167 +653049,red_eyeliner,0,1166 +252960,tengu,0,1166 +1494963,orange-tinted_eyewear,0,1166 +379968,breast_expansion,0,1166 +419074,hitting,0,1165 +514538,hands_on_ass,0,1164 +708149,blue_armor,0,1164 +674293,gift_bag,0,1164 +1241321,striped_horns,0,1164 +442124,orange_panties,0,1163 +1394304,honeycomb_(pattern),0,1163 +662440,konohagakure_symbol,0,1163 +667190,plate_armor,0,1163 +1023384,white_serafuku,0,1161 +1506275,riding_pokemon,0,1161 +535323,art_brush,0,1160 +1605653,utensil_in_mouth,0,1160 +494932,hickey,0,1159 +626246,crystal_hair,0,1158 +574252,mismatched_sleeves,0,1157 +1384370,two-tone_hairband,0,1156 +660778,knees_apart_feet_together,0,1154 +412641,steering_wheel,0,1154 +383675,bus_stop,0,1153 +1235654,gradient_clothes,0,1153 +393169,torn_jeans,0,1153 +721796,kesa,0,1153 +16114,chalk,0,1152 +554447,dark_aura,0,1152 +1086828,bow_(music),0,1152 +530749,orange_pantyhose,0,1151 +404788,wrestling_ring,0,1151 +381519,vibrator_in_thighhighs,0,1150 +522500,dark_green_hair,0,1150 +408474,flashlight,0,1150 +456305,pink_pantyhose,0,1150 +494923,futa_on_male,0,1150 +703702,hooded_track_jacket,0,1150 +1399177,brown_cloak,0,1150 +1719544,they_had_lots_of_sex_afterwards_(meme),0,1150 +553041,flower_necklace,0,1149 +211997,battle_axe,0,1149 +1379986,alpaca_ears,0,1149 +501457,lalafell,0,1148 +1405177,purple_belt,0,1146 +1469769,grey_sleeves,0,1146 +3533,laundry,0,1145 +1845182,guiding_hand,0,1145 +483079,shards,0,1145 +1452744,collared_coat,0,1145 +1294981,digitigrade,0,1145 +1349162,holding_balloon,0,1144 +68505,bikesuit,0,1143 +1400652,torpedo_launcher,0,1143 +493245,theft,0,1142 +509961,battle_rifle,0,1142 +724856,low_neckline,0,1142 +11370,island,0,1142 +1465616,eyewear_strap,0,1142 +1682706,phoenix_crown,0,1142 +419288,cum_on_feet,0,1141 +469760,oven_mitts,0,1141 +641957,bishop_(chess),0,1141 +1589331,off-shoulder_bikini,0,1141 +478077,ready_to_draw,0,1140 +374636,unicorn,0,1140 +781851,user_interface,0,1139 +1509564,holding_game_controller,0,1139 +494838,soda_bottle,0,1139 +5525,chimney,0,1138 +1932,ipod,0,1138 +616555,uchikake,0,1138 +1479378,silver_trim,0,1138 +596634,gradient_legwear,0,1138 +659417,mechanical_ears,0,1136 +1440480,holding_water_gun,0,1136 +397626,guitar_case,0,1136 +1473511,petals_on_liquid,0,1136 +68500,ruler,0,1134 +687207,round_window,0,1134 +62962,buruma_pull,0,1133 +1810603,back_focus,0,1133 +2370,cactus,0,1132 +611089,implied_yuri,0,1131 +441185,ballet_slippers,0,1131 +424682,horse_penis,0,1131 +599606,fuuin_no_tsue,0,1129 +10326,archery,0,1129 +615286,pinching_sleeves,0,1129 +1306233,triangle_print,0,1129 +615369,blue_sclera,0,1129 +10023,toilet_use,0,1128 +1259665,bow_choker,0,1128 +601192,mechanical_hands,0,1128 +1476659,french_text,0,1127 +543093,motherly,0,1127 +533771,kitchen_knife,0,1127 +165653,shirt_grab,0,1127 +1314077,dice_hair_ornament,0,1126 +529177,ootachi,0,1126 +482051,drum_set,0,1125 +563204,dumbbell,0,1125 +526083,brown_socks,0,1124 +682286,title_parody,0,1124 +632801,blue_tongue,0,1124 +451182,grimoire,0,1123 +393428,vaulting_horse,0,1123 +1853211,single_hair_ring,0,1122 +623242,light_censor,0,1121 +1350077,mask_around_neck,0,1121 +4861,lighter,0,1120 +406035,legs_over_head,0,1120 +5884,champagne,0,1120 +482391,bad_food,0,1119 +432965,red_oni,0,1119 +484724,pouty_lips,0,1119 +688664,adjusting_legwear,0,1117 +1262324,shared_bathing,0,1117 +1339894,fishnet_top,0,1117 +1345473,ribbon-trimmed_dress,0,1117 +12413,coffin,0,1117 +1467809,3others,0,1116 +1334628,anchor_print,0,1116 +10938,reindeer,0,1115 +1820926,sleeveless_turtleneck_leotard,0,1114 +1277344,soap_censor,0,1113 +644571,flock,0,1113 +375275,climbing,0,1113 +522628,upshorts,0,1113 +396796,luggage,0,1113 +685558,cat_day,0,1113 +16355,sundae,0,1112 +607136,split_ponytail,0,1112 +471850,cum_in_clothes,0,1111 +422468,satin,0,1111 +642029,queen_(chess),0,1111 +516468,fake_cover,0,1110 +877384,hooded_robe,0,1110 +1764814,compass_rose_halo,0,1110 +705059,fish_print,0,1109 +1260944,heart-shaped_lock,0,1109 +398497,mouth_pull,0,1108 +473421,pink_socks,0,1108 +388012,legs_folded,0,1108 +472508,drum_(container),0,1108 +653485,torn_leotard,0,1108 +842878,liquid_hair,0,1108 +5563,comparison,0,1107 +1399082,heart_button,0,1107 +473988,cooler,0,1105 +707712,consensual_tentacles,0,1105 +413758,ammunition,0,1105 +1346569,ass_support,0,1105 +618005,pennant,0,1104 +1425103,body_freckles,0,1104 +652996,salaryman,0,1104 +10157,honey,0,1103 +723350,weight_conscious,0,1102 +657530,spoken_object,0,1101 +634911,photo_inset,0,1101 +1835748,striped_one-piece_swimsuit,0,1100 +724478,pink_wings,0,1100 +550954,drawing_sword,0,1100 +1262645,yellow_apron,0,1100 +557859,puppet_strings,0,1100 +668848,multiple_monochrome,0,1099 +421120,shell_bikini,0,1099 +519382,decepticon,0,1099 +463031,anal_hair,0,1098 +684567,looking_at_mirror,0,1098 +499809,butterfly_net,0,1097 +375377,boar,0,1097 +1290693,looking_at_breasts,0,1096 +416752,strap_lift,0,1096 +536575,cheek_press,0,1095 +1467811,6+others,0,1095 +1607725,stuffed_winged_unicorn,0,1095 +652002,no_lineart,0,1094 +1409106,head_on_pillow,0,1094 +399923,washing,0,1094 +497039,test_plugsuit,0,1094 +374998,abuse,0,1093 +1411111,keizoku_military_uniform,0,1093 +566734,tanzaku,0,1092 +458295,rising_sun_flag,0,1092 +572545,wall_of_text,0,1092 +1349919,brown_bowtie,0,1092 +1402459,blue_cloak,0,1092 +1231611,arrow_through_heart,0,1092 +1438305,holding_baseball_bat,0,1091 +547746,patterned,0,1091 +689483,plaid_jacket,0,1091 +414165,cum_on_pussy,0,1090 +575592,glowing_wings,0,1090 +403486,party_popper,0,1090 +661553,grey_belt,0,1089 +462342,after_rape,0,1089 +1247470,chocolate_on_breasts,0,1089 +665720,candy_wrapper,0,1089 +614276,bow_legwear,0,1088 +27649,phallic_symbol,0,1088 +1475838,blue_overalls,0,1088 +496608,master_sword,0,1088 +541640,button_eyes,0,1088 +643517,purple_fire,0,1088 +533033,covering_ass,0,1087 +482734,bicorne,0,1087 +1257558,round_image,0,1087 +575714,c:,0,1087 +388391,screwdriver,0,1086 +419287,swim_cap,0,1085 +436891,combat_boots,0,1085 +15731,clothes,0,1085 +476893,torn_swimsuit,0,1085 +507338,fishnet_gloves,0,1085 +317,bus,0,1084 +598531,dropping,0,1084 +499376,wrinkled_skin,0,1084 +483095,birthmark,0,1084 +1334561,loose_bowtie,0,1083 +1193565,jimiko,0,1082 +1102042,strawberry_hair_ornament,0,1081 +386413,clog_sandals,0,1081 +1411060,saunders_military_uniform,0,1080 +4051,duster,0,1079 +474653,cutting_board,0,1079 +411563,forked_tongue,0,1079 +1361077,mole_above_mouth,0,1078 +608993,uncommon_stimulation,0,1078 +1336227,red_bag,0,1078 +1499492,k/da_(league_of_legends),0,1078 +411498,tearing_clothes,0,1077 +2795,picnic,0,1077 +7702,hairjob,0,1076 +13242,hanetsuki,0,1076 +512928,white_tail,0,1076 +485392,denim_jacket,0,1076 +716813,sword_behind_back,0,1075 +1353739,borrowed_design,0,1075 +663596,aestus_estus,0,1075 +549266,grocery_bag,0,1074 +1258750,mechanical_eye,0,1074 +11435,spreader_bar,0,1073 +457698,comforting,0,1073 +8722,detective,0,1073 +634879,fume,0,1073 +1271601,bunny-shaped_pupils,0,1073 +701116,weighing_scale,0,1072 +417929,tennis_ball,0,1072 +1326209,yellow_sash,0,1072 +665044,holding_own_tail,0,1072 +1367101,holding_scissors,0,1072 +1708252,licking_another's_face,0,1071 +490582,onbashira,0,1071 +1881200,ashford_academy_school_uniform,0,1070 +1327857,red_apron,0,1070 +597826,santa_gloves,0,1070 +1483316,single_horizontal_stripe,0,1069 +479250,tricorne,0,1069 +699876,imminent_anal,0,1069 +473049,doily,0,1068 +1299138,back-print_panties,0,1068 +1750472,galaxy_expedition_team_survey_corps_uniform,0,1068 +555432,head_down,0,1067 +1335609,cross_print,0,1067 +1379921,camouflage_jacket,0,1067 +1391097,grey_neckerchief,0,1067 +1512007,pill_earrings,0,1067 +705129,holding_jacket,0,1065 +547495,morning_glory,0,1065 +1270497,pearl_bracelet,0,1064 +699336,sharp_toenails,0,1064 +1505137,thai_text,0,1064 +1255353,loungewear,0,1064 +502383,elezen,0,1064 +365028,stealth_sex,0,1063 +1579902,nata_(tool),0,1062 +547034,guided_breast_grab,0,1061 +540293,vampire_costume,0,1061 +602058,shoulder_strap,0,1060 +659959,scarf_over_mouth,0,1058 +489995,bulletproof_vest,0,1058 +1274530,angora_rabbit,0,1058 +374852,wakizashi,0,1057 +637714,holding_legs,0,1055 +1445390,aria_company_uniform,0,1055 +4760,campfire,0,1055 +390867,soda,0,1055 +378755,beans,0,1055 +1346040,pink_hakama,0,1055 +1352539,squidbeak_splatoon,0,1055 +204274,upshirt,0,1053 +1440630,pink_capelet,0,1053 +1283735,grey_nails,0,1052 +10639,yarn,0,1052 +378487,telescope,0,1050 +1248044,tooth_necklace,0,1050 +564526,vertical-striped_pantyhose,0,1050 +463235,training_bra,0,1049 +759865,accidental_exposure,0,1049 +49867,summer_festival,0,1049 +479155,necktie_grab,0,1049 +598441,yin_yang_orb,0,1049 +1421701,smokestack_hair_ornament,0,1049 +462605,snack,0,1048 +481999,motorcycle_helmet,0,1048 +612924,"don't_say_""lazy""",0,1048 +527131,canvas_(object),0,1047 +1510188,dildo_riding,0,1046 +490687,prehensile_tail,0,1046 +610305,hand_to_head,0,1046 +12725,headless,0,1046 +1697967,tassel_hair_ornament,0,1046 +1530487,off-shoulder_jacket,0,1046 +437409,hospital_bed,0,1045 +1265402,heart_balloon,0,1045 +646372,asa_no_ha_(pattern),0,1044 +1381675,holding_stylus,0,1044 +432413,lute_(instrument),0,1044 +682869,extra_mouth,0,1044 +507520,goat_girl,0,1044 +1399019,multicolored_fur,0,1044 +375033,bored,0,1043 +1583922,pointy_footwear,0,1043 +1408058,brown_leotard,0,1043 +1601,clapping,0,1041 +466838,walkie-talkie,0,1040 +550352,hand_on_forehead,0,1039 +989449,paw_print_background,0,1039 +1559228,2000s_(style),0,1038 +439288,basketball_uniform,0,1038 +1326377,black_corset,0,1038 +378166,star_of_david,0,1038 +1468127,survey_corps_(emblem),0,1038 +1557673,pendant_choker,0,1037 +591683,under_kotatsu,0,1037 +5254,thermometer,0,1035 +180296,wetsuit,0,1035 +581056,multiple_braids,0,1035 +375906,hot_dog,0,1035 +573761,trash_bag,0,1035 +1825415,shuujin_academy_school_uniform,0,1035 +10673,vore,0,1034 +374312,pilot,0,1034 +430316,messenger_bag,0,1034 +456535,spit_take,0,1033 +1450741,oohashi_high_school_uniform,0,1032 +658794,poke_ball_theme,0,1032 +515827,frog_print,0,1032 +1344962,egg_hair_ornament,0,1032 +510057,sand_sculpture,0,1031 +433234,erect_clitoris,0,1031 +470625,torn_gloves,0,1031 +558698,sig_sauer,0,1030 +712047,belly_grab,0,1030 +572583,radiation_symbol,0,1029 +542338,snake_hair,0,1029 +643402,shorts_under_dress,0,1028 +760104,hand_on_another's_waist,0,1027 +1768621,heart_o-ring,0,1027 +1401971,backless_leotard,0,1027 +1326818,fur-trimmed_kimono,0,1026 +1610148,poster_(medium),0,1025 +465863,cum_on_legs,0,1025 +428847,ugly_man,0,1024 +398109,ice_skates,0,1023 +578777,outstretched_leg,0,1022 +1575195,crocodilian_tail,0,1022 +1514232,breast_focus,0,1021 +1469130,multiple_straps,0,1021 +618406,yellow_pants,0,1020 +9213,diaper,0,1020 +643912,tail_piercing,0,1020 +1372846,pink_pajamas,0,1018 +269258,chat_log,0,1018 +615253,applying_makeup,0,1017 +9017,kaijuu,0,1017 +1556082,print_headwear,0,1017 +1258484,key_necklace,0,1017 +6160,cocktail,0,1016 +398803,cowboy_boots,0,1016 +1243775,colored_shadow,0,1016 +1330451,multicolored_cape,0,1016 +7877,nintendo_ds,0,1015 +1409572,yellow_leotard,0,1015 +600996,socks_removed,0,1014 +501095,berry,0,1014 +649302,hydrokinesis,0,1014 +572593,noh_mask,0,1014 +1090981,tantou,0,1013 +5231,tonfa,0,1013 +627286,covering_one_eye,0,1013 +671725,purple_eyeshadow,0,1013 +1716159,human_scabbard,0,1013 +407500,easel,0,1012 +1465373,triangle_earrings,0,1012 +1293722,bandaged_neck,0,1011 +394852,hair_flip,0,1010 +1295529,frilled_shorts,0,1010 +669112,broken_weapon,0,1010 +542449,furigana,0,1008 +698204,multiple_piercings,0,1008 +465806,voice_actor,0,1007 +482205,crayon,0,1007 +1386020,st._gloriana's_(emblem),0,1007 +714474,thighhighs_over_pantyhose,0,1006 +385968,player_2,0,1006 +604753,panzerkampfwagen_iv,0,1006 +533783,reins,0,1005 +504063,ninja_mask,0,1005 +1373454,instagram_username,0,1005 +4910,corn,0,1004 +389154,screw,0,1004 +425258,naked_overalls,0,1003 +438516,zabuton,0,1003 +6481,tools,0,1003 +713580,torn_jacket,0,1003 +1604448,duel_academy_uniform_(yu-gi-oh!_gx),0,1002 +1250999,red_apple,0,1002 +1327189,glowing_horns,0,1002 +1734694,musou_isshin_(genshin_impact),0,1002 +1242015,vanishing_point,0,1001 +714848,rectangular_mouth,0,1001 +552812,in_cup,0,1000 +508103,tentacles_under_clothes,0,1000 +1302681,orange_pants,0,1000 +406104,psychic,0,1000 +383197,toilet_paper,0,999 +434844,folding_chair,0,999 +222856,good_end,0,998 +317438,war,0,998 +1311812,green_hakama,0,998 +586561,penises_touching,0,997 +1505168,traditional_chinese_text,0,997 +375718,daruma_doll,0,997 +1502082,brown_sweater_vest,0,997 +539907,calico,0,996 +1324009,lactation_through_clothes,0,995 +5248,snowball,0,995 +458547,wood,0,995 +1881201,eden_academy_school_uniform,0,995 +727101,overall_shorts,0,994 +3114,thread,0,994 +452907,chewing,0,993 +542208,blank_stare,0,993 +1411474,bc_freedom_military_uniform,0,993 +682863,hand_on_another's_leg,0,991 +489621,corded_phone,0,991 +1516826,drinking_straw_in_mouth,0,991 +1341736,hanten_(clothes),0,989 +1423058,facing_to_the_side,0,989 +416845,toast_in_mouth,0,988 +642887,wiping_sweat,0,988 +601148,huge_bow,0,988 +1353525,from_outside,0,987 +665502,saiyan_armor,0,987 +1353702,hands_on_own_ass,0,987 +576788,drying_hair,0,986 +8664,hoop,0,986 +483367,pornography,0,986 +385619,facepalm,0,986 +620608,no_tail,0,986 +469426,tiger_stripes,0,985 +689166,king_(chess),0,984 +412915,pet_bowl,0,983 +1770613,purple_gemstone,0,983 +687072,dark_areolae,0,983 +8787,cd,0,982 +527949,troll_face,0,982 +1538197,square_4koma,0,982 +1238314,transparent_wings,0,981 +1582502,scar_on_stomach,0,981 +614593,white_snake,0,981 +633878,pursed_lips,0,980 +663918,holding_fishing_rod,0,980 +1360081,purple_scrunchie,0,980 +1193485,dudou,0,979 +1304063,yellow_bag,0,979 +1411064,anzio_military_uniform,0,979 +383664,pier,0,978 +668886,animal_on_lap,0,977 +666509,>o<,0,977 +2374,shopping,0,977 +1366557,ink_tank_(splatoon),0,977 +400507,sailor_senshi,0,976 +487760,under_tree,0,975 +1636694,sleeve_garter,0,975 +1415933,fur-trimmed_shorts,0,975 +1498023,adapted_turret,0,975 +1430264,coin_hair_ornament,0,975 +460344,ear_biting,0,974 +1492155,eyewear_hang,0,974 +565669,telstar,0,973 +430138,double_vertical_stripe,0,973 +662488,palms_together,0,973 +417908,white_tiger,0,973 +538324,manga_cover,0,972 +560409,streamers,0,972 +467246,dotted_line,0,972 +1397657,cat_ear_legwear,0,972 +1335718,vibrator_cord,0,971 +10497,rocket,0,971 +593433,rice_on_face,0,971 +543900,hat_over_one_eye,0,971 +43071,blind,0,971 +590886,bird_legs,0,970 +1476481,multicolored_horns,0,969 +1509772,industrial_piercing,0,969 +16929,barbed_wire,0,968 +1663181,alice_(alice_in_wonderland)_(cosplay),0,968 +406420,popcorn,0,968 +11381,frogtie,0,967 +11835,ballet,0,967 +589292,slashing,0,966 +1443767,team_rocket_uniform,0,966 +1339824,cropped_hoodie,0,966 +504393,looking_outside,0,965 +1609648,cum_on_pectorals,0,965 +1527638,bubble_tea_challenge,0,965 +1793017,griffin_&_kryuger_military_uniform,0,965 +608070,boxer_briefs,0,964 +1515353,grey_theme,0,963 +1638312,footwear_ribbon,0,963 +551459,kine,0,963 +463437,pencil_case,0,963 +677487,brown_wings,0,962 +1484368,white_bag,0,961 +475500,kissing_hand,0,961 +583243,telekinesis,0,961 +1237688,open_bodysuit,0,959 +74341,floating_island,0,959 +1595384,blank_censor,0,959 +1303272,print_jacket,0,959 +1295636,shark_costume,0,959 +456565,flying_kick,0,958 +1457953,sparse_pubic_hair,0,958 +1440492,green_capelet,0,958 +1347286,yellow_coat,0,958 +445618,wet_dress,0,958 +643256,tentacle_pit,0,958 +1324856,virgin_killer_outfit,0,958 +583869,character_censor,0,957 +393237,bandolier,0,957 +1396368,frilled_ascot,0,956 +4638,drugs,0,956 +669932,wrist_wrap,0,956 +1582504,scar_on_neck,0,956 +568887,single_boot,0,956 +569329,catholic,0,956 +478362,kepi,0,956 +1720557,swimsuit_cover-up,0,956 +593295,red_border,0,955 +494539,texture,0,955 +471805,pastel_colors,0,954 +548034,keystone,0,954 +514359,naked_scarf,0,953 +8173,bokken,0,952 +1478006,holding_vegetable,0,952 +1282931,raimon_soccer_uniform,0,952 +394999,spooning,0,951 +80452,unzipping,0,951 +665405,white_umbrella,0,951 +1629910,star_brooch,0,951 +500760,flower_ornament,0,951 +1373023,purple-framed_eyewear,0,950 +476104,saber_(weapon),0,950 +567635,portrait_(object),0,950 +565478,skirt_basket,0,949 +1070114,single_stripe,0,949 +447171,lowleg_pants,0,949 +1575185,polka_dot_headwear,0,949 +1342773,fleur_de_lapin_uniform,0,949 +1337534,boobplate,0,948 +464554,dandelion,0,948 +649117,multiple_swords,0,946 +1677790,blood_on_knife,0,946 +1845191,glaive_(polearm),0,946 +4640,hanbok,0,946 +1484444,yellow_butterfly,0,945 +497027,pointy_breasts,0,945 +54102,noose,0,943 +16756,aquarium,0,943 +1426213,multiple_riders,0,943 +381183,brick,0,943 +507308,voile,0,943 +13597,triple_penetration,0,942 +1298917,brown_apron,0,942 +1592986,rabbit_boy,0,942 +477804,rainbow_hair,0,942 +16833,sidewalk,0,941 +1681601,mash_kyrielight_(dangerous_beast)_(cosplay),0,941 +1506800,diamond_(gemstone),0,940 +1382643,flaming_weapon,0,940 +1271930,nanodesu_(phrase),0,940 +1406788,otter_ears,0,940 +3614,stain,0,939 +1350036,crystal_earrings,0,939 +1349615,red_fur,0,939 +1448822,brown_hoodie,0,939 +468645,child_drawing,0,938 +255403,cleaver,0,938 +382573,akanbe,0,937 +1243923,backpack_removed,0,937 +405411,team_9,0,937 +753278,analog_clock,0,936 +603414,space_helmet,0,936 +645622,sleeveless_coat,0,934 +460553,no_eyebrows,0,934 +507379,yellow_belt,0,934 +600871,ar-15,0,934 +468827,pushing,0,933 +519098,yarn_ball,0,933 +660791,fur_cape,0,933 +9535,icing,0,932 +12002,foam,0,932 +605380,vertical-striped_bikini,0,932 +538478,haniwa_(statue),0,932 +474917,peace_symbol,0,931 +396687,hourglass,0,931 +540308,baggy_clothes,0,931 +1201168,undressing_another,0,931 +568529,barefoot_sandals,0,931 +1309935,notched_ear,0,931 +12456,dvd_cover,0,930 +1386653,falchion_(fire_emblem),0,930 +8697,porch,0,929 +453294,houndstooth,0,929 +1407009,japari_bun,0,929 +413107,puffy_cheeks,0,928 +1265662,lace-trimmed_hairband,0,928 +393568,amulet,0,927 +1423578,brown_collar,0,926 +417078,bayonet,0,926 +632074,owl_ears,0,925 +548331,bamboo_steamer,0,924 +394157,papers,0,924 +545481,hand_on_leg,0,924 +584716,camouflage_pants,0,924 +1350589,bandaid_on_forehead,0,924 +1478379,dress_flower,0,924 +540095,bilingual,0,923 +4219,henshin,0,923 +1553320,two-tone_headwear,0,923 +487790,studded_bracelet,0,923 +1430735,black_garter_belt,0,922 +1363208,blue_bag,0,922 +712473,mummy_costume,0,921 +1426299,tokisadame_school_uniform,0,921 +1258824,print_shorts,0,921 +1493305,heel_up,0,920 +471824,searchlight,0,919 +1509089,between_pectorals,0,919 +1427498,holding_pizza,0,918 +673693,kouhaku_nawa,0,918 +1058783,aviator_sunglasses,0,918 +1375732,snap-fit_buckle,0,918 +693639,striped_hoodie,0,918 +1393881,green_bag,0,917 +191357,loose_shirt,0,917 +617955,polka_dot_skirt,0,917 +1312469,purple_hakama,0,916 +409179,smoking_gun,0,915 +657589,crotch_cutout,0,915 +1759071,cetacean_tail,0,915 +1301010,orange_sweater,0,914 +408039,crystal_ball,0,914 +415025,convenience_store,0,914 +390528,seaweed,0,914 +564002,guided_penetration,0,913 +1154025,ankle_wrap,0,913 +517244,anglerfish,0,913 +585400,inverted_cross,0,912 +15147,concert,0,912 +1289607,nursing_handjob,0,912 +1607304,linear_hatching,0,911 +377994,playing,0,911 +448692,saddle,0,911 +643356,dress_removed,0,911 +10014,washing_machine,0,910 +239,valkyrie,0,909 +1518587,striped_headwear,0,909 +710509,antique_firearm,0,908 +1365439,jaguar_print,0,908 +652982,visor_(armor),0,907 +9716,strawberry_panties,0,906 +438209,checkered_flag,0,906 +1378073,ears_visible_through_hair,0,905 +617340,strapless_swimsuit,0,905 +537085,objectification,0,905 +182494,audience,0,904 +1450864,head_chain,0,904 +663896,hand_on_another's_neck,0,903 +465140,breastfeeding,0,903 +1403674,pink_camisole,0,903 +670641,clothes_between_breasts,0,902 +664838,green_wings,0,902 +5119,pinwheel,0,902 +521714,cursive,0,902 +1274515,double_w,0,902 +663895,hand_on_own_neck,0,901 +474428,blowing,0,901 +692139,penguin_hood,0,901 +690466,monster_energy,0,901 +15469,coconut,0,900 +1334692,side_drill,0,900 +589458,_,0,900 +515225,sperm_cell,0,900 +498585,cute_&_girly_(idolmaster),0,899 +5302,elvaan,0,899 +8482,waiter,0,899 +374917,prison_clothes,0,899 +657147,fur_boots,0,899 +478497,sleep_mask,0,899 +1424580,oda_uri,0,899 +462190,public_use,0,898 +399273,adidas,0,898 +696698,gold_bikini,0,897 +593473,coke-bottle_glasses,0,896 +4047,pickaxe,0,894 +491766,painterly,0,894 +599986,cutting_hair,0,893 +457725,traffic_cone,0,893 +585968,heads-up_display,0,893 +609352,themed_object,0,892 +550434,side_slit_shorts,0,892 +1508825,pouring_onto_self,0,892 +504098,m1911,0,891 +562229,food_stand,0,891 +1258067,hands_on_own_stomach,0,891 +1494889,lion_boy,0,891 +2944,airship,0,890 +600288,tail_feathers,0,890 +502629,bullet_hole,0,889 +471358,bass_clef,0,889 +720344,round-bottom_flask,0,888 +10079,double_dildo,0,888 +577453,lace_gloves,0,888 +15251,undead,0,888 +427033,hologram,0,887 +1323466,brown_nails,0,887 +395164,napkin,0,886 +433870,broken_heart,0,886 +539119,ultra_ball,0,886 +2430,recorder,0,885 +564894,united_states,0,885 +1490333,yellow_sleeves,0,885 +401062,x3,0,885 +1456713,cross_choker,0,884 +607245,cropped_arms,0,883 +579303,tail_ring,0,883 +4281,hole,0,882 +1303240,polka_dot_scrunchie,0,882 +495021,rider_belt,0,882 +570043,pine_tree,0,881 +661864,pink_belt,0,880 +652399,araki_hirohiko_(style),0,880 +1393886,multicolored_kimono,0,879 +1414615,mole_on_stomach,0,879 +514585,plaid_bra,0,879 +581487,hishaku,0,879 +9656,crazy,0,878 +559663,unamused,0,878 +1451576,checkered_sash,0,878 +1437142,purple_hoodie,0,878 +699281,oversized_food,0,877 +500653,mahjong_tile,0,877 +1433794,holding_saucer,0,876 +585602,jeweled_branch_of_hourai,0,876 +1326378,black_umbrella,0,876 +406042,exhausted,0,876 +430683,sling,0,876 +15227,screentones,0,875 +1480168,white_sports_bra,0,875 +668837,ghost_costume,0,875 +395011,tube_dress,0,874 +463435,parka,0,874 +416210,dirty_feet,0,874 +497015,wringing_clothes,0,873 +1582498,scar_on_leg,0,873 +378541,gills,0,872 +468583,melon_bread,0,872 +430376,bear_costume,0,872 +381280,lighthouse,0,872 +716956,puff_and_slash_sleeves,0,872 +607934,tentacles_on_male,0,871 +1593160,unusually_open_eyes,0,871 +1328259,multiple_moles,0,870 +401136,kimono_lift,0,869 +1292517,glowing_butterfly,0,869 +388245,cum_in_nose,0,868 +473178,\n/,0,868 +405504,apron_lift,0,867 +672588,cardigan_vest,0,867 +663869,looking_through_legs,0,867 +681979,double_\m/,0,867 +460270,sparrow,0,865 +138127,art_nouveau,0,865 +1404921,pink_ascot,0,864 +10268,net,0,864 +564789,romper,0,864 +545590,easter_egg,0,864 +1881202,st._chronica_academy_school_uniform,0,864 +1826631,tracen_training_uniform,0,864 +607513,arms_around_waist,0,863 +645655,wall_clock,0,863 +376621,wa_lolita,0,863 +1336108,crime_prevention_buzzer,0,863 +635240,star_pasties,0,862 +418811,acoustic_guitar,0,861 +1786594,tokyo-3_middle_school_uniform,0,860 +637908,adapted_uniform,0,860 +389325,grave,0,859 +388208,orange_hoodie,0,859 +399680,arachne,0,859 +549347,green_pantyhose,0,859 +3912,p90,0,858 +1874891,object_through_head,0,858 +423080,hat_with_ears,0,857 +546085,brown_bra,0,856 +1300914,leash_pull,0,856 +1470700,black_undershirt,0,855 +1374880,bralines,0,855 +461078,squinting,0,854 +697415,storefront,0,854 +389926,panty_lift,0,853 +1292892,cracked_wall,0,853 +16792,golf_club,0,852 +799867,futasub,0,852 +1504031,white_butterfly,0,852 +428710,buster_sword,0,852 +1371471,anchor_necklace,0,852 +513996,lyrics,0,851 +531189,foliage,0,851 +405020,wheelbarrow,0,851 +1235655,gradient_dress,0,850 +1822470,wataboushi,0,849 +390026,chalice,0,849 +594313,shoulder_holster,0,849 +1384374,grey_hairband,0,849 +529750,glowing_hair,0,849 +1360271,grey_cape,0,849 +472653,stained_panties,0,849 +10056,grill,0,848 +413290,hand_under_shirt,0,848 +1411208,purple_neckerchief,0,848 +1270535,curtained_hair,0,848 +1613886,animal_ear_headwear,0,848 +164255,nudist,0,846 +1243627,penis_peek,0,846 +438748,breast_poke,0,845 +533029,dragging,0,845 +1715534,baton_(conducting),0,845 +468850,tall,0,844 +582333,ojou-sama_pose,0,844 +664894,aqua_gloves,0,844 +457370,masochism,0,844 +570496,struggling,0,844 +675461,rolling_suitcase,0,844 +561654,animal_skull,0,844 +16918,tutu,0,843 +1448672,tsab_ground_military_uniform,0,843 +499780,holding_breath,0,843 +477179,tire,0,842 +1317436,satin_panties,0,842 +1398131,hooded_bodysuit,0,842 +690260,vibrator_on_nipple,0,841 +482315,breast_padding,0,841 +1298677,armpit_cutout,0,841 +1372787,multi-strapped_panties,0,841 +469235,amplifier,0,840 +400231,kotoyoro,0,840 +1208724,string_bra,0,840 +1337502,heart_lock_(kantai_collection),0,840 +393062,skirt_flip,0,839 +626440,season_connection,0,839 +688469,spiked_choker,0,839 +381750,thermos,0,838 +8409,spaghetti,0,838 +1344738,snowflake_background,0,838 +600460,group_picture,0,837 +496226,multiple_legs,0,837 +8698,windowsill,0,837 +1229971,shoulder_cannon,0,837 +1411084,pravda_military_uniform,0,837 +1411077,chi-hatan_military_uniform,0,837 +439167,urethral_insertion,0,836 +46728,excited,0,836 +386926,polar_bear,0,836 +742744,bean_bag_chair,0,835 +555321,hand_gesture,0,835 +1468128,training_corps_(emblem),0,835 +1575514,yuigaoka_school_uniform,0,835 +4517,gymnastics,0,834 +594978,naked_tabard,0,834 +702958,holding_ribbon,0,834 +469710,energy_drink,0,834 +419383,wallet,0,833 +1835765,evangelion_(mecha),0,833 +609535,witch_(madoka_magica),0,833 +1642271,yurigaoka_girls_academy_school_uniform,0,833 +1396676,dressing_another,0,832 +557780,alternate_wings,0,831 +1376753,crescent_print,0,831 +680577,color_trace,0,831 +1316299,multicolored_scarf,0,831 +720999,aqua_jacket,0,831 +383546,stole,0,831 +1242619,fake_nails,0,830 +509088,penis_in_panties,0,829 +646377,kikumon,0,829 +1375970,hair_flowing_over,0,829 +664951,coat_removed,0,829 +571951,flaming_sword,0,828 +1355541,lattice,0,828 +488521,canopy_bed,0,828 +1328348,group_name,0,828 +614256,bunny_hat,0,827 +411205,pigeon,0,827 +1441859,aqua_footwear,0,826 +505302,bar_stool,0,826 +679205,catchphrase,0,826 +1545323,multicolored_headwear,0,826 +1452498,grey_capelet,0,826 +1518971,pectoral_press,0,826 +550074,in_water,0,825 +1345310,collared_vest,0,825 +1407027,jaguar_tail,0,825 +397136,trigram,0,824 +228097,astronaut,0,824 +1377986,riyo_(lyomsnpmp)_(style),0,824 +1475691,hanasakigawa_school_uniform,0,824 +653176,circle_skirt,0,823 +1392086,grey_bodysuit,0,823 +1247424,brick_floor,0,823 +1529528,yellow_raincoat,0,823 +403070,grenade_launcher,0,823 +409820,cat_costume,0,822 +620885,latex_legwear,0,822 +440354,yo-yo,0,822 +440482,leg_wrap,0,822 +556519,electrical_outlet,0,822 +562990,bath_stool,0,821 +1358423,multicolored_footwear,0,821 +400267,dumpling,0,821 +1281944,anchor_choker,0,821 +511246,blank_speech_bubble,0,820 +1397788,brown_choker,0,820 +472542,beam_saber,0,820 +487949,arm_above_head,0,819 +455483,shorts_around_one_leg,0,819 +394402,wheat,0,818 +15450,onion,0,818 +586471,rounded_corners,0,818 +1605157,colored_nipples,0,818 +476906,spray_can,0,817 +1501670,double_fox_shadow_puppet,0,817 +533099,sitting_on_rock,0,816 +507276,paper_crane,0,816 +628065,eyepatch_removed,0,816 +1324692,pink_fur,0,816 +1232450,sparkle_print,0,816 +1417853,heart_collar,0,816 +1734,karaoke,0,815 +5364,ganguro,0,815 +1409664,floating_scarf,0,815 +1406324,no_blindfold,0,815 +544688,bunching_hair,0,814 +11414,nipple_clamps,0,814 +678345,maneki-neko,0,814 +574527,surcoat,0,814 +473342,imperial_japanese_army,0,814 +1549436,cutout_above_navel,0,814 +1281282,taimanin_suit,0,814 +1327704,nejiri_hachimaki,0,813 +1371202,yellow_cape,0,812 +622973,chicken_(food),0,812 +261984,snow_bunny,0,812 +1092127,condom_belt,0,812 +1281553,german_flag_bikini,0,811 +121795,inline_skates,0,810 +488001,tape_measure,0,810 +10727,bib,0,809 +504316,hands_on_hilt,0,809 +330159,green_tea,0,809 +1318429,pendant_watch,0,809 +15619,sand_castle,0,809 +839892,no_mole,0,809 +14739,hammock,0,808 +393203,handstand,0,808 +1287846,ammunition_pouch,0,808 +1453635,cartoon_bone,0,808 +1161750,boy_sandwich,0,807 +1251054,okobo,0,807 +484561,arm_cuffs,0,806 +488430,seat,0,805 +535613,upturned_eyes,0,805 +1827382,st._theresa's_girls_academy_school_uniform,0,805 +721903,fur_cloak,0,805 +642323,teacher_and_student,0,804 +704182,character_signature,0,804 +713277,no_eyepatch,0,804 +682665,super_soaker,0,804 +1474354,holding_ladle,0,803 +1483518,orange_sleeves,0,803 +413459,inflatable_raft,0,803 +462239,chinese_new_year,0,803 +483045,kinchaku,0,802 +519941,finger_biting,0,802 +399166,cursor,0,802 +684797,hands_on_another's_hips,0,802 +1617036,pokemon_move,0,802 +2477,lightsaber,0,801 +498775,orange_skin,0,801 +9166,windmill,0,801 +1390981,ribbon_braid,0,801 +1296117,sideways_hat,0,801 +1113314,thick_lips,0,800 +553675,ehoumaki,0,800 +1152233,star_tattoo,0,800 +1467949,single_ear_cover,0,800 +1835737,green_one-piece_swimsuit,0,799 +531424,multiple_heads,0,799 +695119,blood_in_hair,0,798 +593299,pink_border,0,798 +1319348,holding_bucket,0,797 +1257023,dog_penis,0,797 +509238,dialogue_box,0,797 +603240,vertical-striped_panties,0,797 +622330,oversized_limbs,0,797 +548294,nib_pen_(object),0,796 +596588,jacket_pull,0,796 +558489,white_armor,0,796 +394916,2008,0,796 +613430,bagged_fish,0,795 +662803,honeycomb_background,0,795 +433742,frozen,0,795 +475494,dissolving,0,795 +1505371,star_guardian_(league_of_legends),0,795 +714122,ball_and_chain_restraint,0,794 +1322883,flag_background,0,794 +659790,eldritch_abomination,0,794 +1648109,hololive_idol_uniform,0,794 +659364,licking_armpit,0,793 +1272545,orange_leotard,0,793 +1320993,print_necktie,0,793 +7947,beltskirt,0,792 +475951,ornament,0,792 +591348,breast_cutout,0,792 +614915,pink_cape,0,792 +1713082,neck_tassel,0,792 +549921,swinging,0,791 +822043,mundane_utility,0,791 +705927,frilled_leotard,0,790 +1569456,pizza_slice,0,790 +1299125,elbows_on_table,0,789 +7700,weightlifting,0,789 +410619,toe_ring,0,788 +701996,nipple_bar,0,788 +1728479,kousaka_kirino's_school_uniform,0,788 +1393397,orange_goggles,0,788 +6352,elephant,0,787 +1293918,bicycle_basket,0,787 +3499,kappa,0,787 +5946,boxcutter,0,787 +592592,personality_switch,0,787 +547300,misunderstanding,0,787 +1544416,clothes_between_thighs,0,787 +721466,pointy_nose,0,787 +1648167,x-shaped_pupils,0,787 +452532,two-handed_handjob,0,786 +392867,melon,0,786 +702627,ass-to-ass,0,786 +548516,pinstripe_shirt,0,786 +741418,card_parody,0,786 +504065,cephalopod_eyes,0,785 +1391806,two-tone_bow,0,785 +1390068,joy-con,0,785 +5466,mummy,0,784 +398573,cartridge,0,783 +619281,blue_border,0,783 +383898,bullying,0,783 +472408,sneezing,0,783 +4899,stats,0,783 +1365868,holding_envelope,0,783 +496190,kabuto_(helmet),0,783 +1396770,animal_on_arm,0,782 +5547,pet,0,782 +1522400,tented_shirt,0,782 +582033,clothes_tug,0,782 +411403,tongs,0,782 +1488405,mole_on_cheek,0,781 +444001,legband,0,781 +379013,note,0,781 +1409157,flower_tattoo,0,781 +553040,flower_bracelet,0,780 +1577478,super_saiyan_1,0,780 +1398925,speaking_tube_headset,0,780 +468311,tail_hug,0,779 +1495160,mismatched_eyebrows,0,779 +1860041,multiple_drawing_challenge,0,779 +1481466,purple_horns,0,779 +1426179,luna_nova_school_uniform,0,779 +573016,hands_on_shoulders,0,778 +1432417,brown_tail,0,778 +419647,stakes_of_purgatory,0,778 +492703,long_neck,0,777 +723519,chin_strap,0,777 +393452,leaf_umbrella,0,777 +715181,post-apocalypse,0,777 +550385,linked_piercing,0,776 +15836,butter,0,776 +379180,zora,0,776 +1376893,pink_eyeshadow,0,776 +499526,green_socks,0,775 +2730,massage,0,775 +1464853,blue-tinted_eyewear,0,775 +658977,wooden_chair,0,774 +397923,group_hug,0,774 +657414,panties_under_buruma,0,774 +382030,beetle,0,774 +529455,tight_dress,0,774 +1347574,mole_on_body,0,774 +284608,tea_set,0,773 +453888,hand_mirror,0,773 +416380,gokkun,0,773 +399607,hair_dryer,0,773 +643401,dragon_boy,0,773 +463449,sugar_cube,0,772 +501887,levitation,0,772 +467444,kerchief,0,772 +1427360,gold_choker,0,772 +646311,polka_dot_shirt,0,771 +446404,cheek_pull,0,771 +1283338,american_flag_print,0,771 +1411059,saunders_school_uniform,0,771 +501282,lipgloss,0,770 +1352247,variable_fighter,0,770 +375406,clown,0,770 +507447,family_crest,0,770 +416825,omikuji,0,769 +524801,hakurei_shrine,0,769 +641133,aqua_bra,0,769 +214260,keep_out,0,769 +1378265,z-ring,0,769 +435855,messy_room,0,768 +1339258,logo_parody,0,768 +1252372,sitting_on_bench,0,768 +1441858,lap_pillow_invitation,0,768 +474442,plume,0,768 +1136370,sextuplets,0,768 +1303976,print_sarong,0,767 +534139,popped_button,0,767 +1433477,floating_cape,0,767 +1245350,implied_fellatio,0,767 +168769,band_uniform,0,766 +712902,pumpkin_hair_ornament,0,765 +7839,beam,0,765 +375496,kagami_mochi,0,765 +716637,argyle_sweater,0,765 +380200,2007,0,765 +1571287,berry_(pokemon),0,765 +7461,lizard,0,764 +587390,hand_on_headphones,0,764 +1680143,pegasus_knight_uniform_(fire_emblem),0,764 +447159,fishing_line,0,764 +605773,head_on_hand,0,763 +317012,zeon,0,763 +646375,sayagata,0,763 +635045,solid_eyes,0,762 +1340897,blue_feathers,0,762 +1373241,meka_(overwatch),0,762 +1594642,holomyth,0,762 +6527,cart,0,761 +449699,grand_piano,0,761 +460701,pagoda,0,761 +15902,jetpack,0,761 +1008938,clothes_theft,0,760 +1315295,holding_another's_hair,0,760 +683907,jingasa,0,760 +2145,juice,0,759 +691041,yellow_sky,0,759 +499998,sitting_backwards,0,758 +1336500,pointing_at_another,0,758 +606330,condom_box,0,758 +1552258,fish_boy,0,758 +960973,cardigan_around_waist,0,758 +623986,green_sclera,0,758 +5099,pegasus,0,757 +746897,pussy_juice_drip_through_clothes,0,757 +1289376,bishamonten's_spear,0,757 +1539213,flower_over_eye,0,756 +511500,head_on_chest,0,756 +1421046,holding_cane,0,756 +509654,forced_orgasm,0,755 +1548224,butterfly_brooch,0,755 +382343,adjusting_panties,0,754 +457036,steak,0,754 +1412249,green_scrunchie,0,754 +5817,sauna,0,753 +443238,wardrobe_error,0,752 +3438,japan,0,751 +5402,crowbar,0,751 +1510994,sweaty_clothes,0,751 +1398336,year_of_the_dog,0,751 +527344,body_armor,0,751 +701994,pov_across_table,0,750 +14011,height_chart,0,749 +460435,ivy,0,749 +421692,game_boy,0,749 +426382,bear_tail,0,749 +778226,greek_clothes,0,749 +1039471,prostration,0,748 +1255173,shoujo_kitou-chuu,0,748 +1386173,pixiv_username,0,748 +1366556,splattershot_(splatoon),0,748 +9745,hungry,0,747 +385480,buruma_aside,0,747 +399404,skull_necklace,0,747 +467744,mount_fuji,0,747 +1611404,food-themed_earrings,0,747 +452085,hospital_gown,0,746 +658126,cream_on_face,0,746 +396015,gunblade,0,746 +646003,curled_fingers,0,746 +484040,winding_key,0,745 +9347,puppy,0,745 +1059619,kissing_penis,0,745 +375353,soviet,0,745 +475528,ankle_grab,0,744 +8921,white_day,0,744 +5102,wizard,0,744 +397561,radish,0,744 +471296,infinity,0,744 +693309,sleeve_grab,0,743 +531095,book_hug,0,742 +1375741,extra_faces,0,742 +3742,ferret,0,741 +436459,acorn,0,741 +583137,ear_protection,0,741 +1239921,pink_sky,0,740 +1353065,falling_feathers,0,740 +1496708,hitodama_print,0,740 +1257082,clock_eyes,0,740 +729551,kiwi_(fruit),0,739 +1193090,military_helmet,0,739 +1343008,orange_vest,0,738 +395496,cloth,0,738 +384700,dock,0,738 +541741,strapless_bottom,0,738 +563180,nintendo_3ds,0,738 +386212,diving,0,737 +630151,bikini_shorts,0,737 +1429582,dress_swimsuit,0,737 +9476,minotaur,0,736 +381360,wrong_feet,0,736 +1469257,single_epaulette,0,736 +563949,french_flag,0,735 +1424344,sling_bikini_top,0,735 +458787,testicle_grab,0,734 +450248,sickle,0,733 +429978,between_toes,0,733 +120759,mat,0,733 +474597,mitre,0,733 +1657712,veiny_arms,0,733 +576346,adjusting_necktie,0,732 +1305509,box_of_chocolates,0,732 +596273,behind_back,0,732 +1489407,martial_arts_belt,0,732 +1595590,pectoral_focus,0,732 +393640,aurora,0,731 +554570,jockstrap,0,731 +478042,track_uniform,0,731 +11347,army,0,730 +404973,galaxy,0,730 +1520977,print_mug,0,730 +487783,leather_pants,0,729 +375625,model_kit,0,729 +1344687,holding_letter,0,729 +1344492,on_motorcycle,0,729 +1001710,shell_necklace,0,729 +1303975,blue_sarong,0,728 +489578,whiskey,0,728 +467700,salad,0,728 +548098,mast,0,728 +485599,silver_dress,0,728 +1377852,hair_on_horn,0,728 +642272,above_clouds,0,727 +1427943,yellow_tank_top,0,727 +12070,battleship,0,727 +611065,lace_choker,0,727 +445428,guard_rail,0,726 +564925,polka_dot_ribbon,0,726 +1286244,rei_no_pool,0,726 +490067,holding_head,0,726 +630542,butterfly_sitting,0,725 +1379634,mmm_threesome,0,725 +1392344,white_sarong,0,724 +524545,box_art,0,724 +630404,pumpkin_hat,0,724 +287045,hanami,0,724 +1262145,hands_on_ground,0,724 +1562798,rhodes_island_logo,0,724 +495149,throwing_knife,0,723 +1404665,aqua_neckerchief,0,723 +411775,clothesline,0,723 +483853,bulletin_board,0,722 +665892,cross-laced_legwear,0,722 +1411110,keizoku_school_uniform,0,722 +441997,track_and_field,0,721 +877388,long_tail,0,721 +621690,no_mask,0,721 +678477,shared_speech_bubble,0,720 +434547,oonusa,0,720 +1601728,gladiator_sandals,0,720 +1325214,seal_(animal),0,719 +1660195,long_earlobes,0,719 +474347,affectionate,0,718 +1495060,pants_tucked_in,0,718 +1386603,orange_cape,0,717 +401696,hook,0,717 +552418,detached_hair,0,717 +1282902,solid_circle_pupils,0,716 +571097,crane_(animal),0,716 +486022,vacuum_cleaner,0,716 +409759,cleave_gag,0,716 +1657724,just_the_tip,0,716 +1597931,pancake_stack,0,716 +1419059,blue_tank_top,0,716 +82088,sewing,0,715 +449709,uneven_twintails,0,715 +1070070,fishnet_bodysuit,0,715 +1481865,brown_corset,0,715 +420279,sock_pull,0,714 +648669,lowleg_skirt,0,714 +12500,pendulum,0,714 +1441951,gold_footwear,0,714 +490118,pool_of_blood,0,713 +468109,tengu_mask,0,713 +523961,hair_between_breasts,0,713 +562139,glove_biting,0,713 +1419480,maid_day,0,713 +1260902,folded_hair,0,712 +1494953,pink-tinted_eyewear,0,712 +4410,dragonfly,0,711 +487992,inkwell,0,711 +1326625,implied_yaoi,0,711 +1273445,miracle_mallet,0,711 +547020,fidgeting,0,710 +707514,stone_stairs,0,710 +1423439,livestream,0,710 +1417085,double_horizontal_stripe,0,709 +109159,nyan,0,708 +119610,triplets,0,708 +561371,qr_code,0,708 +1329132,cherry_hair_ornament,0,708 +500191,rabbit_costume,0,707 +1247324,implied_fingering,0,707 +1466798,holding_money,0,706 +1324059,holding_jewelry,0,706 +663412,holding_own_foot,0,706 +1338731,holding_skull,0,706 +533238,milky_way,0,706 +1450600,very_wide_shot,0,706 +607013,stitched_mouth,0,706 +809507,eye_black,0,706 +675626,in_palm,0,705 +537098,watching_television,0,705 +376977,parrot,0,705 +479840,severed_limb,0,705 +1416325,multicolored_hairband,0,705 +576440,naked_cloak,0,704 +638337,multicolored_stripes,0,704 +572327,splatter,0,704 +467754,foot_hold,0,703 +876691,cum_in_container,0,703 +54531,blood_bag,0,703 +532082,knight_(chess),0,703 +1398335,year_of_the_pig,0,703 +512129,symbolism,0,702 +1386018,ooarai_(emblem),0,702 +1627128,caliburn_(fate),0,700 +1076064,covering_one_breast,0,700 +384589,lyre,0,700 +1247797,bike_shorts_under_shorts,0,700 +1532157,green_eyeshadow,0,700 +1515529,shindan_maker,0,700 +465272,kyuudou,0,699 +378206,joystick,0,699 +615409,bag_of_chips,0,699 +1426900,white_bird,0,699 +1375854,dream_soul,0,699 +393506,shrimp_tempura,0,698 +4374,meta,0,698 +1505135,italian_text,0,698 +971148,underbutt,0,698 +605322,checkered_shirt,0,698 +1353857,blood_on_arm,0,698 +1258093,ribbon-trimmed_headwear,0,697 +694148,candlelight,0,697 +1531641,light_blue_background,0,697 +580277,green_tail,0,696 +470859,purple_socks,0,696 +632045,no_jacket,0,696 +476447,kurokote,0,695 +613159,homu,0,695 +1470859,black_garter_straps,0,694 +502186,broken_window,0,694 +478554,contrast,0,694 +1258486,musical_note_print,0,694 +381761,cola,0,694 +1574670,two-sided_dress,0,694 +649072,grimoire_of_alice,0,693 +394720,afterglow,0,693 +407128,crumbs,0,693 +477060,hair_lift,0,693 +1386162,facebook_username,0,693 +411331,long_toenails,0,692 +525804,self_hug,0,692 +552753,perfume_bottle,0,692 +1401831,purple_ascot,0,691 +643172,shotgun_shell,0,691 +502652,ink_(medium),0,690 +624228,sky_print,0,690 +535487,hand_over_eye,0,690 +1631697,alternate_pectoral_size,0,689 +1263595,soap_bottle,0,688 +505038,duel_disk,0,688 +434881,baby_bottle,0,688 +1238293,grey_wings,0,687 +1749113,arthropod_limbs,0,687 +1470190,frilled_sailor_collar,0,687 +427948,tying,0,686 +397500,electric_plug,0,686 +389771,syrup,0,686 +391741,fingersmile,0,686 +2685,kickboard,0,685 +1252120,roundel,0,685 +1578028,heart_on_chest,0,685 +1370485,crescent_rose,0,685 +10240,hardhat,0,684 +433080,koi,0,684 +664262,bikini_bottom_removed,0,684 +662225,floating_book,0,683 +3513,goat,0,683 +1417605,blue_shawl,0,683 +4854,cast,0,682 +437278,masu,0,682 +168887,age_comparison,0,682 +572094,h&k_ump,0,681 +14528,bathrobe,0,680 +518347,yamakasa,0,680 +1494956,purple-tinted_eyewear,0,680 +1318748,floating_weapon,0,680 +492292,behind-the-head_headphones,0,679 +513429,watercolor_pencil_(medium),0,679 +725442,blue_bandana,0,679 +1345296,skeleton_print,0,679 +1332216,propeller_hair_ornament,0,679 +1370713,pink_umbrella,0,678 +417910,duckling,0,678 +433244,first_aid_kit,0,677 +446984,gun_to_head,0,677 +504867,digital_dissolve,0,677 +1253889,joestar_birthmark,0,677 +719987,ghost_pose,0,677 +1289258,bokura_wa_ima_no_naka_de,0,676 +389367,pineapple,0,675 +1349482,igote,0,675 +618480,sitting_on_shoulder,0,675 +1230297,single_wrist_cuff,0,675 +1513506,patchwork_clothes,0,675 +1353604,walking_on_liquid,0,674 +529805,shamoji,0,674 +547795,breaking,0,674 +410219,scylla,0,674 +720294,weasel_ears,0,674 +974485,hoodie_lift,0,674 +516577,groom,0,673 +1867868,motosu_school_uniform,0,673 +374958,cyrillic,0,672 +622480,food_art,0,671 +451855,studded_collar,0,671 +1556083,camouflage_headwear,0,671 +510646,blue_pupils,0,670 +489491,platform_boots,0,670 +14645,marshmallow,0,670 +403,chikan,0,669 +1344657,cat_bag,0,669 +473987,tooth,0,669 +1253133,spade_hair_ornament,0,669 +403466,medallion,0,668 +1240072,hair_color_connection,0,668 +381685,pig_ears,0,668 +565798,crazy_straw,0,668 +1574664,two-sided_skirt,0,668 +616835,calligraphy_brush_(medium),0,668 +1455458,brown_flower,0,668 +191640,ak-47,0,667 +378288,blob,0,667 +542882,against_railing,0,667 +1268234,alternate_hair_ornament,0,667 +1274150,print_sleeves,0,667 +449449,beretta_92,0,666 +556112,red_tail,0,666 +571640,jacket_over_swimsuit,0,666 +381749,tamagoyaki,0,666 +657138,cat_mask,0,666 +646318,necktie_removed,0,666 +413830,wakamezake,0,665 +537572,teeth_hold,0,665 +496893,checkered_dress,0,665 +1429073,holding_beachball,0,664 +1433301,two-tone_leotard,0,664 +1331283,bridal_legwear,0,664 +1494960,yellow-tinted_eyewear,0,664 +510173,easter,0,664 +690728,missile_pod,0,663 +396000,bowler_hat,0,663 +561682,clownfish,0,663 +412041,biwa_lute,0,663 +4947,groceries,0,662 +1243501,gibson_les_paul,0,662 +1322934,gesugao,0,662 +1578455,cumulonimbus_cloud,0,662 +589932,negative_space,0,661 +423622,pelt,0,661 +1609367,tail_around_leg,0,661 +1391188,hand_tattoo,0,661 +1684976,craft_essence_(fate),0,661 +590202,pinstripe_suit,0,660 +1453787,golden_arms,0,660 +1799877,tracen_swimsuit,0,660 +1401249,grey_leotard,0,659 +727812,loaded_interior,0,659 +3927,gao,0,659 +1252918,sitting_on_table,0,659 +1317359,floating_clothes,0,659 +673705,hand_rest,0,659 +1440820,usekh_collar,0,659 +1328313,shell_hair_ornament,0,658 +1325319,wrist_bow,0,658 +1402775,white_mask,0,658 +1391449,cropped_sweater,0,658 +551086,protecting,0,657 +1333942,exposed_pocket,0,657 +609075,red_mask,0,656 +1231690,slim_legs,0,655 +1425321,hogwarts_school_uniform,0,655 +457678,animal_slippers,0,655 +1249968,little_red_riding_hood_(grimm)_(cosplay),0,655 +1435997,eye_trail,0,655 +528408,soft_serve,0,654 +613600,checkered_legwear,0,654 +1435395,grey_tank_top,0,653 +1583008,side-tie_peek,0,653 +1861772,crisis_management_form_(machimazo),0,653 +647108,flying_teardrops,0,652 +666041,multiple_torii,0,652 +546978,two-finger_salute,0,652 +529223,cellphone_charm,0,652 +1297290,split_theme,0,652 +1460120,fur-trimmed_footwear,0,652 +1327283,cracked_floor,0,651 +563545,braiding_hair,0,650 +791840,blue_umbrella,0,650 +1328442,green_belt,0,649 +658222,stuffed_penguin,0,649 +1497365,pov_doorway,0,649 +728040,flat_chest_grab,0,648 +524807,unfastened,0,647 +172018,nail_bat,0,647 +11665,seatbelt,0,646 +723518,arms_between_legs,0,645 +522469,centauroid,0,642 +562074,plaid_ribbon,0,641 +679788,wet_towel,0,641 +1782264,sticker_on_face,0,641 +1714871,midriff_sarashi,0,640 +1684568,paint_splatter_on_face,0,640 +464635,cattail,0,640 +707905,object_on_breast,0,640 +1329330,bunny_day,0,640 +1881204,starlight_academy_school_uniform,0,639 +655737,pants_under_skirt,0,636 +1442516,paw_print_pattern,0,636 +518157,peony_(flower),0,635 +1427573,brown_sleeves,0,635 +551767,pastry_bag,0,633 +1012946,breasts_on_table,0,633 +449872,walther,0,632 +1535711,cross_tie,0,632 +543243,chrysanthemum,0,631 +1407354,brown_neckerchief,0,629 +1468297,sixteenth_note,0,629 +647474,stuffed_dog,0,628 +1325576,four-leaf_clover_hair_ornament,0,628 +1397372,year_of_the_rooster,0,628 +549834,person_on_head,0,628 +1588824,lifebuoy_ornament,0,628 +492648,yellow_socks,0,626 +651505,animal_on_hand,0,625 +1414486,red_mittens,0,625 +1291060,rabbit_on_head,0,623 +1672268,qingxin_flower,0,618 +385430,hatsune_miku,4,78616 +12239,hakurei_reimu,4,67710 +12242,kirisame_marisa,4,62327 +12248,remilia_scarlet,4,46894 +12249,flandre_scarlet,4,43434 +12314,izayoi_sakuya,4,42465 +1301082,admiral_(kancolle),4,34812 +1478495,artoria_pendragon_(fate),4,33041 +9123,alice_margatroid,4,32516 +388200,kochiya_sanae,4,32504 +12247,patchouli_knowledge,4,32120 +12244,konpaku_youmu,4,31146 +1720,cirno,4,30904 +12246,yakumo_yukari,4,29607 +427142,komeiji_koishi,4,27406 +12308,shameimaru_aya,4,25978 +12307,fujiwara_no_mokou,4,24550 +12304,reisen_udongein_inaba,4,24375 +11374,hong_meiling,4,23457 +592924,akemi_homura,4,23123 +427143,komeiji_satori,4,22757 +592925,kaname_madoka,4,22080 +12245,saigyouji_yuyuko,4,21758 +1631074,kaga_(kancolle),4,20549 +395218,inubashiri_momiji,4,20497 +12250,yakumo_ran,4,18043 +390427,kagamine_rin,4,17416 +602257,konpaku_youmu_(ghost),4,17065 +384842,moriya_suwako,4,17047 +2082,rumia,4,16841 +593109,miki_sayaka,4,16686 +427145,kaenbyou_rin,4,16675 +401582,kazami_yuuka,4,16551 +1275729,shimakaze_(kancolle),4,16285 +427184,reiuji_utsuho,4,16263 +6,saber,4,15967 +1275718,hibiki_(kancolle),4,15954 +474,chen,4,15887 +12302,kamishirasawa_keine,4,15388 +473327,tatara_kogasa,4,15022 +383392,kawashiro_nitori,4,14973 +1414209,mash_kyrielight,4,14919 +415326,hinanawi_tenshi,4,14700 +589430,sakura_kyouko,4,14333 +593108,tomoe_mami,4,14245 +1275728,shigure_(kancolle),4,14238 +12306,houraisan_kaguya,4,13824 +1799,koakuma,4,13641 +1350122,kongou_(kancolle),4,13106 +1602203,ganyu_(genshin_impact),4,12981 +12300,mystia_lorelei,4,12948 +12303,inaba_tewi,4,12571 +12313,ibuki_suika,4,12550 +1275720,inazuma_(kancolle),4,12537 +475833,souryuu_asuka_langley,4,12338 +503349,hijiri_byakuren,4,12211 +1630449,akagi_(kancolle),4,12210 +473267,nazrin,4,11834 +393597,kagamine_len,4,11428 +503343,houjuu_nue,4,11360 +1270870,tenryuu_(kancolle),4,11216 +1473623,tamamo_(fate),4,11128 +1631504,yuudachi_(kancolle),4,10901 +12305,yagokoro_eirin,4,10879 +384841,yasaka_kanako,4,10876 +457810,megurine_luka,4,10737 +1275719,ikazuchi_(kancolle),4,10591 +1479739,jeanne_d'arc_alter_(fate),4,10481 +413783,mizuhashi_parsee,4,10406 +1471064,abigail_williams_(fate),4,10091 +1275715,fubuki_(kancolle),4,10071 +456150,akiyama_mio,4,9944 +1275711,akatsuki_(kancolle),4,9910 +1631523,zuikaku_(kancolle),4,9855 +1391754,fujimaru_ritsuka_(female),4,9711 +1391753,fujimaru_ritsuka_(male),4,9444 +638495,toyosatomimi_no_miko,4,9247 +1631219,nagato_(kancolle),4,9212 +1630699,hamakaze_(kancolle),4,9178 +13814,morichika_rinnosuke,4,9131 +1335350,haruna_(kancolle),4,9124 +9466,suzumiya_haruhi,4,8980 +7441,fate_testarossa,4,8966 +6313,link,4,8924 +465977,hoshiguma_yuugi,4,8846 +3861,pikachu,4,8817 +1686237,raiden_shogun,4,8798 +1433170,nero_claudius_(fate),4,8774 +1351818,kashima_(kancolle),4,8665 +472387,nakano_azusa,4,8571 +1593594,gawr_gura,4,8530 +1533309,houshou_marine,4,8514 +384197,kagiyama_hina,4,8503 +465646,tohsaka_rin,4,8476 +599169,shanghai_doll,4,8466 +9715,nagato_yuki,4,8457 +700405,nishizumi_miho,4,8294 +12299,wriggle_nightbug,4,8246 +1333465,rem_(re:zero),4,8222 +7493,daiyousei,4,8196 +638499,mononobe_no_futo,4,8163 +1728232,avatar_(ff14),4,8144 +1631280,ryuujou_(kancolle),4,8080 +455424,hirasawa_yui,4,8070 +465688,shiki_eiki,4,7982 +600200,kyubey,4,7934 +12311,onozuka_komachi,4,7924 +1380245,suzuya_(kancolle),4,7856 +1452630,scathach_(fate),4,7702 +12342,usami_renko,4,7645 +1581467,lumine_(genshin_impact),4,7630 +395918,misaka_mikoto,4,7624 +391888,tifa_lockhart,4,7606 +1277919,inkling,4,7466 +8552,takamachi_nanoha,4,7465 +1401122,yorha_no._2_type_b,4,7437 +503351,toramaru_shou,4,7431 +12108,illyasviel_von_einzbern,4,7414 +1631004,houshou_(kancolle),4,7348 +506041,maribel_hearn,4,7317 +1233711,imaizumi_kagerou,4,7306 +8327,ayanami_rei,4,7267 +1639113,shigure_kai_ni_(kancolle),4,7221 +1408636,jeanne_d'arc_(fate),4,7191 +378876,joseph_joestar,4,7142 +1639135,yuudachi_kai_ni_(kancolle),4,7052 +1231258,matoi_ryuuko,4,7016 +456151,tainaka_ritsu,4,6997 +1635696,hu_tao_(genshin_impact),4,6878 +452135,producer_(idolmaster),4,6859 +1275723,murakumo_(kancolle),4,6824 +1405000,serval_(kemono_friends),4,6806 +592977,nishikino_maki,4,6768 +1765420,jeanne_d'arc_alter_(avenger)_(fate),4,6725 +593046,sonoda_umi,4,6721 +1277794,amatsukaze_(kancolle),4,6636 +544560,himekaidou_hatate,4,6634 +1585358,northern_ocean_princess,4,6621 +1631456,ushio_(kancolle),4,6609 +662185,shibuya_rin,4,6569 +615562,toujou_nozomi,4,6537 +94496,princess_zelda,4,6535 +1600114,zhongli_(genshin_impact),4,6477 +1438816,okita_souji_(fate),4,6473 +1285206,atago_(kancolle),4,6461 +638538,kaku_seiga,4,6444 +1275734,yukikaze_(kancolle),4,6441 +1631360,shoukaku_(kancolle),4,6390 +503350,murasa_minamitsu,4,6356 +1511608,inkling_girl,4,6321 +592974,yazawa_nico,4,6312 +713730,kafuu_chino,4,6283 +593043,ayase_eli,4,6236 +1682530,tamamo_no_mae_(fate/extra),4,6180 +1631488,yamato_(kancolle),4,6121 +466373,dawn_(pokemon),4,6100 +1479836,shirakami_fubuki,4,6085 +413645,nagae_iku,4,6078 +1523054,manjuu_(azur_lane),4,6061 +1531173,usada_pekora,4,6052 +487910,joseph_joestar_(young),4,6030 +1275712,akebono_(kancolle),4,6011 +1233709,hata_no_kokoro,4,5911 +1631124,kitakami_(kancolle),4,5907 +54494,kujo_jotaro,4,5902 +1649146,gilgamesh_(fate),4,5822 +570051,ibaraki_kasen,4,5806 +1287532,megumin,4,5792 +669326,kaito_(vocaloid),4,5790 +1239690,rensouhou-chan,4,5717 +1369674,lillie_(pokemon),4,5687 +7438,matou_sakura,4,5678 +1596257,mona_(genshin_impact),4,5668 +1733099,yae_miko,4,5664 +1435530,shuten_douji_(fate),4,5656 +473328,kumoi_ichirin,4,5646 +413652,kurodani_yamame,4,5643 +619180,kasodani_kyouko,4,5610 +638583,soga_no_tojiko,4,5592 +619181,miyako_yoshika,4,5551 +1427460,prinz_eugen_(kancolle),4,5516 +101752,hoshii_miki,4,5496 +1631257,ooyodo_(kancolle),4,5453 +456152,kotobuki_tsumugi,4,5431 +1600563,keqing_(genshin_impact),4,5414 +1448304,astolfo_(fate),4,5413 +1630648,female_admiral_(kancolle),4,5408 +13108,chun-li,4,5374 +1372463,darjeeling_(girls_und_panzer),4,5362 +382074,hiiragi_kagami,4,5341 +1361469,mutsu_(kancolle),4,5321 +1631410,tatsuta_(kancolle),4,5315 +1478494,cu_chulainn_(fate),4,5269 +1630515,asashio_(kancolle),4,5250 +466360,may_(pokemon),4,5242 +1532746,byleth_(fire_emblem),4,5192 +1243755,kijin_seija,4,5186 +1424365,pyra_(xenoblade),4,5178 +7439,kinomoto_sakura,4,5176 +1593595,mori_calliope,4,5176 +1328621,clownpiece,4,5157 +713720,nishizumi_maho,4,5153 +1593596,ninomae_ina'nis,4,5129 +593045,minami_kotori,4,5119 +717860,rosa_(pokemon),4,5119 +1405300,kaban_(kemono_friends),4,5109 +1648389,yor_briar,4,5092 +10658,emiya_shirou,4,5021 +1495213,minato_aqua,4,5017 +713721,itsumi_erika,4,4979 +466669,c.c.,4,4976 +710903,meiko_(vocaloid),4,4975 +11941,samus_aran,4,4963 +383424,aki_minoriko,4,4963 +615290,hilda_(pokemon),4,4950 +1630531,bismarck_(kancolle),4,4949 +1646740,archer_(fate),4,4941 +1448306,mordred_(fate),4,4940 +1599785,aether_(genshin_impact),4,4932 +1631313,sendai_(kancolle),4,4923 +1533332,marnie_(pokemon),4,4923 +1464562,minamoto_no_raikou_(fate),4,4918 +1631252,ooi_(kancolle),4,4907 +656409,yuzuki_yukari,4,4892 +382075,izumi_konata,4,4858 +452021,hieda_no_akyuu,4,4837 +434767,caesar_anthonio_zeppeli,4,4796 +1350123,akashi_(kancolle),4,4794 +1233706,sekibanki,4,4768 +9071,amami_haruka,4,4760 +727352,anchovy_(girls_und_panzer),4,4757 +1507496,takao_(kancolle),4,4740 +1293664,musashi_(kancolle),4,4740 +699794,nanami_chiaki,4,4735 +1328650,junko_(touhou),4,4731 +510663,yoko_littner,4,4679 +1590956,mythra_(xenoblade),4,4644 +1682533,nero_claudius_(fate/extra),4,4616 +1734279,okita_souji_(koha-ace),4,4610 +1442931,amiya_(arknights),4,4608 +1275730,shiranui_(kancolle),4,4605 +7866,tsukino_usagi,4,4576 +1339317,d.va_(overwatch),4,4559 +593044,kousaka_honoka,4,4558 +638500,futatsuiwa_mamizou,4,4557 +1248945,wo-class_aircraft_carrier,4,4554 +698982,asuna_(sao),4,4534 +1478256,medusa_(fate),4,4530 +1631305,sazanami_(kancolle),4,4523 +1631308,souryuu_(kancolle),4,4520 +1243757,sukuna_shinmyoumaru,4,4516 +1631484,yamashiro_(kancolle),4,4489 +424565,shijou_takane,4,4488 +383855,aki_shizuha,4,4481 +1275727,samidare_(kancolle),4,4471 +1593598,watson_amelia,4,4470 +700403,akiyama_yukari,4,4468 +1630992,hiei_(kancolle),4,4468 +21,suigintou,4,4430 +1631272,ro-500_(kancolle),4,4425 +1246753,senketsu,4,4424 +1544889,gloria_(pokemon),4,4412 +10365,cloud_strife,4,4410 +1667133,hk416_(girls'_frontline),4,4402 +1593597,takanashi_kiara,4,4377 +9072,kisaragi_chihaya,4,4365 +279302,dio_brando,4,4360 +422767,gumi,4,4359 +1572405,klee_(genshin_impact),4,4357 +1333552,kirishima_(kancolle),4,4342 +1342225,verniy_(kancolle),4,4342 +12295,letty_whiterock,4,4323 +445942,gardevoir,4,4320 +1595272,venti_(genshin_impact),4,4305 +1231257,kiryuuin_satsuki,4,4282 +1081167,mordred_(fate/apocrypha),4,4277 +9078,minase_iori,4,4276 +1518952,nekomata_okayu,4,4269 +9079,kikuchi_makoto,4,4243 +615222,hoshizora_rin,4,4221 +1421198,bb_(fate),4,4202 +1631098,kasumi_(kancolle),4,4202 +1631042,iowa_(kancolle),4,4196 +460796,ex-keine,4,4122 +1532747,byleth_(fire_emblem)_(female),4,4110 +1328656,hecatia_lapislazuli,4,4100 +1769318,jeanne_d'arc_(ruler)_(fate),4,4087 +1442946,texas_(arknights),4,4083 +1440040,atago_(azur_lane),4,4071 +472979,saber_alter,4,4066 +422691,oshino_shinobu,4,4060 +425446,ganaha_hibiki,4,4060 +1492223,taihou_(azur_lane),4,4049 +1631502,yuubari_(kancolle),4,4039 +1631121,kiso_(kancolle),4,4032 +1526564,doctor_(arknights),4,4023 +660315,shimamura_uzuki,4,4003 +1610604,tartaglia_(genshin_impact),4,4003 +52967,princess_peach,4,3999 +1531312,uruha_rushia,4,3998 +466315,ash_ketchum,4,3989 +1316173,watanabe_you,4,3972 +1442306,zero_two_(darling_in_the_franxx),4,3955 +1525565,hoshimachi_suisei,4,3955 +405454,aerith_gainsborough,4,3938 +15550,morrigan_aensland,4,3935 +1516925,makima_(chainsaw_man),4,3935 +9750,asahina_mikuru,4,3932 +445830,red_(pokemon),4,3928 +1622755,asuna_(blue_archive),4,3923 +1533307,shirogane_noel,4,3913 +1526509,skadi_(arknights),4,3894 +1536480,formidable_(azur_lane),4,3879 +665139,shirasaka_koume,4,3864 +1630996,hiryuu_(kancolle),4,3855 +1440089,prinz_eugen_(azur_lane),4,3855 +1569865,karyl_(princess_connect!),4,3855 +665166,takagaki_kaede,4,3850 +1629450,meltryllis_(fate),4,3848 +1341413,djeeta_(granblue_fantasy),4,3814 +1233049,sagisawa_fumika,4,3784 +1630687,graf_zeppelin_(kancolle),4,3779 +646093,ultimate_madoka,4,3776 +1561709,bremerton_(azur_lane),4,3770 +1645004,rice_shower_(umamusume),4,3745 +701140,komaeda_nagito,4,3741 +1233712,wakasagihime,4,3724 +1518950,inugami_korone,4,3716 +1564340,paimon_(genshin_impact),4,3714 +1515171,sakura_miko,4,3713 +11498,kirby,4,3683 +1328609,kishin_sagume,4,3650 +1641843,eula_(genshin_impact),4,3650 +1649150,medusa_(rider)_(fate),4,3649 +592976,koizumi_hanayo,4,3644 +1549065,tokoyami_towa,4,3617 +1646765,mejiro_mcqueen_(umamusume),4,3612 +1511455,yumemi_riamu,4,3603 +9075,takatsuki_yayoi,4,3591 +1627707,miyamoto_musashi_(fate),4,3590 +9681,kyon,4,3589 +1312747,hestia_(danmachi),4,3577 +1631228,naka_(kancolle),4,3575 +496900,black_rock_shooter_(character),4,3567 +1493247,bowsette,4,3536 +1514981,selene_(pokemon),4,3530 +1440003,belfast_(azur_lane),4,3530 +1509133,sirius_(azur_lane),4,3507 +663994,kanzaki_ranko,4,3498 +1549061,amane_kanata,4,3497 +1500247,oozora_subaru,4,3471 +1627592,ishtar_(fate),4,3469 +593780,super_sonico,4,3466 +1646762,daiwa_scarlet_(umamusume),4,3462 +413714,kisume,4,3456 +664384,jougasaki_mika,4,3455 +12257,ikari_shinji,4,3441 +1649152,cu_chulainn_(fate/stay_night),4,3437 +1585359,seaport_princess,4,3432 +620127,narukami_yuu,4,3429 +8882,lily_white,4,3428 +1549082,kiryu_coco,4,3421 +1350743,aqua_(konosuba),4,3417 +11055,furude_rika,4,3411 +448496,cynthia_(pokemon),4,3404 +1630645,fairy_(kancolle),4,3384 +700407,takebe_saori,4,3382 +1378250,i-19_(kancolle),4,3374 +1651926,kamisato_ayaka,4,3363 +1452466,ereshkigal_(fate),4,3357 +1316172,tsushima_yoshiko,4,3355 +8048,sailor_moon,4,3346 +1631521,zuihou_(kancolle),4,3341 +670056,kuroki_tomoko,4,3329 +1502759,ookami_mio,4,3321 +550231,gokou_ruri,4,3312 +634453,barnaby_brooks_jr.,4,3307 +13270,cammy_white,4,3303 +662047,sanya_v._litvyak,4,3290 +687394,nitta_minami,4,3274 +14152,kakyoin_noriaki,4,3265 +1440013,unicorn_(azur_lane),4,3230 +421104,eila_ilmatar_juutilainen,4,3226 +781225,lucina_(fire_emblem),4,3217 +1236324,serena_(pokemon),4,3217 +660302,ahri_(league_of_legends),4,3215 +701382,hinata_hajime,4,3213 +1467839,trainer_(umamusume),4,3201 +1528907,corrin_(fire_emblem),4,3191 +591909,stocking_(psg),4,3188 +1265245,ichinose_shiki,4,3182 +1388968,ouma_kokichi,4,3182 +649985,kaburagi_t._kotetsu,4,3179 +1275725,naganami_(kancolle),4,3171 +11853,haruno_sakura,4,3163 +12309,medicine_melancholy,4,3157 +1631030,i-58_(kancolle),4,3154 +1717604,shenhe_(genshin_impact),4,3154 +1586173,yukihana_lamy,4,3150 +12296,lunasa_prismriver,4,3143 +1500444,commander_(azur_lane),4,3135 +1527899,kitagawa_marin,4,3133 +1685272,ouro_kronii,4,3132 +1561704,higuchi_madoka,4,3130 +1507493,maya_(kancolle),4,3125 +1462685,kokkoro_(princess_connect!),4,3125 +16266,son_goku,4,3124 +8553,yagami_hayate,4,3122 +12107,kotomine_kirei,4,3116 +1631482,yamakaze_(kancolle),4,3099 +1275724,murasame_(kancolle),4,3081 +724152,anastasia_(idolmaster),4,3064 +382076,hiiragi_tsukasa,4,3059 +1646764,gold_ship_(umamusume),4,3051 +1598280,xiao_(genshin_impact),4,3049 +1685271,nanashi_mumei,4,3036 +563892,kirito,4,3035 +1532725,edelgard_von_hresvelg,4,3027 +1317066,doremy_sweet,4,3026 +1292960,midoriya_izuku,4,3021 +1586175,shishiro_botan,4,3007 +466818,misty_(pokemon),4,3006 +1447551,florence_nightingale_(fate),4,3001 +419123,shirogane_naoto,4,2998 +1295748,mercy_(overwatch),4,2997 +413395,kujo_jolyne,4,2994 +649693,jack_the_ripper_(fate/apocrypha),4,2990 +1316171,sakurauchi_riko,4,2988 +1822797,boo_tao_(genshin_impact),4,2987 +722007,katyusha_(girls_und_panzer),4,2970 +413396,giorno_giovanna,4,2969 +713714,kay_(girls_und_panzer),4,2969 +403357,nia_teppelin,4,2963 +1342592,shimada_arisu,4,2960 +1646761,tokai_teio_(umamusume),4,2957 +1667136,ump45_(girls'_frontline),4,2944 +644424,nami_(one_piece),4,2942 +12355,uzumaki_naruto,4,2929 +1631514,z1_leberecht_maass_(kancolle),4,2922 +398775,sheryl_nome,4,2917 +1594094,pecorine_(princess_connect!),4,2909 +1491767,murasaki_shion,4,2907 +1441167,ayanami_(azur_lane),4,2900 +660098,futaba_anzu,4,2897 +1292959,uraraka_ochako,4,2895 +1386438,saihara_shuuichi,4,2891 +1480186,takarada_rikka,4,2888 +1529309,anya_(spy_x_family),4,2877 +9077,miura_azusa,4,2873 +1631389,taihou_(kancolle),4,2873 +1631516,z3_max_schultz_(kancolle),4,2866 +3030,mario,4,2863 +445932,eevee,4,2860 +1478507,iskandar_(fate),4,2845 +1275713,akigumo_(kancolle),4,2844 +1631134,kuma_(kancolle),4,2842 +375279,waver_velvet,4,2840 +13543,hyuuga_hinata,4,2831 +620175,mikasa_ackerman,4,2829 +407911,jonathan_joestar,4,2825 +1533759,barbara_(genshin_impact),4,2822 +9074,hagiwara_yukiho,4,2821 +1631474,warspite_(kancolle),4,2821 +1630673,fusou_(kancolle),4,2818 +1054766,chloe_von_einzbern,4,2812 +1462591,narmaya_(granblue_fantasy),4,2808 +437574,shirai_kuroko,4,2803 +1631023,i-401_(kancolle),4,2794 +711691,motoori_kosuzu,4,2792 +663996,jougasaki_rika,4,2791 +1337035,leon_(pokemon),4,2791 +1631239,non-human_admiral_(kancolle),4,2788 +1262414,izumi_sagiri,4,2785 +411462,aisaka_taiga,4,2782 +11349,ryuuguu_rena,4,2779 +539110,yuki_miku,4,2778 +700406,reizei_mako,4,2774 +1317065,usami_sumireko,4,2771 +1417248,common_raccoon_(kemono_friends),4,2769 +1431828,elizabeth_bathory_(fate),4,2767 +1799500,asuna_(bunny)_(blue_archive),4,2765 +508752,pyonta,4,2764 +1276066,hoto_cocoa,4,2751 +660394,midorikawa_nao,4,2740 +1380244,kumano_(kancolle),4,2730 +1240694,ruby_rose,4,2718 +170637,lelouch_lamperouge,4,2716 +1627605,kama_(fate),4,2713 +406263,satonaka_chie,4,2711 +1524374,lappland_(arknights),4,2710 +476837,holo,4,2701 +1544892,raihan_(pokemon),4,2699 +407910,higashikata_josuke,4,2697 +1705933,monster_hunter_(character),4,2693 +1442947,ch'en_(arknights),4,2693 +660393,kise_yayoi,4,2690 +1246772,mankanshoku_mako,4,2690 +539789,beatrice_(umineko),4,2688 +1599614,jean_(genshin_impact),4,2687 +12514,shiranui_mai,4,2686 +664492,maekawa_miku,4,2679 +1630489,aoba_(kancolle),4,2677 +1631010,hyuuga_(kancolle),4,2676 +1582962,fischl_(genshin_impact),4,2675 +1333466,emilia_(re:zero),4,2672 +1429424,tokitsukaze_(kancolle),4,2667 +9076,akizuki_ritsuko,4,2662 +1627620,kiyohime_(fate),4,2659 +603070,charlotte_(madoka_magica),4,2658 +1500246,nakiri_ayame,4,2653 +1325863,robin_(fire_emblem),4,2652 +8955,luna_child,4,2647 +8956,star_sapphire,4,2628 +1405055,fennec_(kemono_friends),4,2627 +1440018,illustrious_(azur_lane),4,2624 +1275726,oboro_(kancolle),4,2615 +1465315,tomoe_gozen_(fate),4,2604 +1530284,bea_(pokemon),4,2602 +1361608,boko_(girls_und_panzer),4,2601 +1499605,natsuiro_matsuri,4,2595 +1631194,mogami_(kancolle),4,2594 +473279,unzan,4,2591 +1533296,shiranui_flare,4,2591 +1631303,satsuki_(kancolle),4,2588 +1630519,ashigara_(kancolle),4,2586 +471219,kousaka_kirino,4,2581 +1719003,sakamata_chloe,4,2579 +761961,weiss_schnee,4,2575 +1442945,exusiai_(arknights),4,2573 +1629409,artoria_pendragon_(lancer)_(fate),4,2566 +1452972,yorigami_shion,4,2562 +1631066,jintsuu_(kancolle),4,2559 +1275732,uzuki_(kancolle),4,2559 +1631126,kiyoshimo_(kancolle),4,2558 +1631081,kagerou_(kancolle),4,2547 +510605,makise_kurisu,4,2545 +1631452,urakaze_(kancolle),4,2540 +8954,sunny_milk,4,2533 +633863,tachibana_arisu,4,2533 +1385142,isokaze_(kancolle),4,2523 +1316036,takami_chika,4,2519 +1435235,nitocris_(fate),4,2515 +1526515,nessa_(pokemon),4,2515 +1528908,corrin_(fire_emblem)_(female),4,2502 +195216,kallen_stadtfeld,4,2498 +12112,emiya_kiritsugu,4,2496 +414823,erica_hartmann,4,2487 +414822,miyafuji_yoshika,4,2485 +1631447,unryuu_(kancolle),4,2484 +1275717,hatsuyuki_(kancolle),4,2465 +665397,koshimizu_sachiko,4,2462 +1468120,nakano_nino,4,2457 +1275731,shiratsuyu_(kancolle),4,2455 +1623068,karin_(blue_archive),4,2455 +11053,houjou_satoko,4,2444 +1702683,diarmuid_ua_duibhne_(lancer)_(fate),4,2444 +707204,dizzy_(guilty_gear),4,2442 +700933,hayami_kanade,4,2442 +717140,hishikawa_rikka,4,2440 +1337527,mika_(girls_und_panzer),4,2440 +1515819,power_(chainsaw_man),4,2433 +1593304,don-chan_(usada_pekora),4,2426 +1333601,ram_(re:zero),4,2417 +1631385,taigei_(kancolle),4,2414 +1630472,akitsu_maru_(kancolle),4,2411 +10284,asakura_ryouko,4,2404 +1589924,simon_(ttgl),4,2403 +512930,alice_(alice_in_wonderland),4,2399 +1667138,wa2000_(girls'_frontline),4,2389 +1292961,bakugou_katsuki,4,2386 +1443053,nakano_miku,4,2384 +1318502,callie_(splatoon),4,2383 +1435236,oda_nobunaga_(fate),4,2383 +1644978,agnes_tachyon_(umamusume),4,2380 +420872,gertrud_barkhorn,4,2379 +660390,aoki_reika,4,2379 +9081,futami_mami,4,2375 +378867,dark_magician_girl,4,2373 +1403841,yoshida_yuuko_(machikado_mazoku),4,2365 +1762231,kirima_syaro,4,2363 +1757377,yelan_(genshin_impact),4,2355 +1770073,nishikigi_chisato,4,2355 +1630723,hatsuzuki_(kancolle),4,2350 +12405,nagisa_kaworu,4,2340 +1631174,michishio_(kancolle),4,2338 +1631299,saratoga_(kancolle),4,2336 +1595577,surtr_(arknights),4,2336 +394054,louise_francoise_le_blanc_de_la_valliere,4,2335 +1271042,kiana_kaslana,4,2326 +1670936,accelerator_(toaru_majutsu_no_index),4,2324 +1630708,harusame_(kancolle),4,2324 +482064,makinami_mari_illustrious,4,2308 +12094,arcueid_brunestud,4,2303 +438007,kamijou_touma,4,2299 +4587,shana,4,2288 +1627610,katsushika_hokusai_(fate),4,2287 +554006,tachibana_kanade,4,2286 +1584981,shiroko_(blue_archive),4,2283 +12297,merlin_prismriver,4,2282 +1440020,takao_(azur_lane),4,2282 +1387675,kamado_nezuko,4,2273 +1318503,marie_(splatoon),4,2268 +1279297,yura_(kancolle),4,2267 +1267920,re-class_battleship,4,2266 +499269,miyu_edelfelt,4,2250 +395970,ranka_lee,4,2248 +658637,chitanda_eru,4,2248 +385134,ushiromiya_battler,4,2247 +1631440,u-511_(kancolle),4,2246 +12298,lyrica_prismriver,4,2240 +439625,kaenbyou_rin_(cat),4,2236 +591958,kirigiri_kyouko,4,2236 +1287911,hino_akane_(smile_precure!),4,2236 +1452342,amamiya_ren,4,2236 +1398811,kanna_kamui,4,2229 +1631478,yahagi_(kancolle),4,2226 +1821363,nahida_(genshin_impact),4,2225 +1524970,reisalin_stout,4,2221 +670005,yukine_chris,4,2219 +700404,isuzu_hana,4,2219 +549180,kashiwazaki_sena,4,2218 +1378260,lana_(pokemon),4,2210 +1533761,amber_(genshin_impact),4,2210 +1631206,mutsuki_(kancolle),4,2206 +403861,kyonko,4,2204 +1399517,tippy_(gochiusa),4,2203 +557446,ethan_(pokemon),4,2201 +1440130,laffey_(azur_lane),4,2200 +1255756,t-head_admiral,4,2192 +479706,yuuki_makoto,4,2190 +1440202,enterprise_(azur_lane),4,2187 +1481047,akai_haato,4,2180 +1630695,haguro_(kancolle),4,2172 +615600,toshinou_kyouko,4,2165 +601487,enoshima_junko,4,2163 +1602944,mudrock_(arknights),4,2159 +1566117,kal'tsit_(arknights),4,2151 +1447375,tamamo_cat_(fate),4,2150 +1631032,i-8_(kancolle),4,2149 +1630524,atlanta_(kancolle),4,2148 +1630210,abukuma_(kancolle),4,2147 +12564,uchiha_sasuke,4,2142 +1483850,napoleon_bonaparte_(fate),4,2142 +454513,hanekawa_tsubasa,4,2141 +1811190,nilou_(genshin_impact),4,2136 +1515525,mayuzumi_fuyuko,4,2133 +99,shinku,4,2131 +1631433,tone_(kancolle),4,2131 +1630477,akizuki_(kancolle),4,2130 +1602206,qiqi_(genshin_impact),4,2128 +598066,houjou_hibiki,4,2127 +9080,futami_ami,4,2125 +1055516,akari_(pokemon),4,2120 +12106,kousaka_tamaki,4,2116 +1452975,yorigami_jo'on,4,2113 +1440110,akagi_(azur_lane),4,2111 +1283598,bronya_zaychik,4,2108 +626945,shokuhou_misaki,4,2107 +1765430,jeanne_d'arc_alter_(swimsuit_berserker)_(fate),4,2096 +1311294,gran_(granblue_fantasy),4,2093 +1678980,sangonomiya_kokomi,4,2091 +1316167,kurosawa_dia,4,2088 +1605761,hina_(blue_archive),4,2086 +573907,blue_oak,4,2085 +662472,takanashi_rikka,4,2085 +717136,aida_mana,4,2083 +1631116,kisaragi_(kancolle),4,2074 +1250847,junketsu,4,2072 +1236625,eren_yeager,4,2070 +1366306,rowlet,4,2069 +1316169,matsuura_kanan,4,2066 +615289,hilbert_(pokemon),4,2062 +1234829,yang_xiao_long,4,2059 +1402355,kagari_atsuko,4,2058 +1596241,diluc_(genshin_impact),4,2051 +405240,amagi_yukiko,4,2049 +853361,bb_(fate/extra),4,2042 +1719009,la+_darknesss,4,2042 +1432299,matara_okina,4,2040 +657125,ia_(vocaloid),4,2033 +1183449,nonna_(girls_und_panzer),4,2033 +1252196,akuma_homura,4,2030 +1448715,kizuna_akari,4,2029 +1431862,nero_claudius_(swimsuit_caster)_(fate),4,2027 +1585360,battleship_princess,4,2020 +1667140,ump9_(girls'_frontline),4,2019 +426767,ikamusume,4,2018 +691541,perrine_h._clostermann,4,2017 +1631333,shikinami_(kancolle),4,2017 +1685270,hakos_baelz,4,2016 +530171,kurumi_erika,4,2014 +1316166,kunikida_hanamaru,4,2013 +1631090,kamikaze_(kancolle),4,2012 +1515818,denji_(chainsaw_man),4,2010 +527779,han_juri,4,2003 +1587880,gotou_hitori,4,2001 +599208,charlotte_e._yeager,4,2000 +1271044,raiden_mei,4,1994 +1308178,octoling,4,1994 +409162,senjougahara_hitagi,4,1991 +1630675,gambier_bay_(kancolle),4,1990 +1631046,ise_(kancolle),4,1985 +610107,akaza_akari,4,1983 +1387121,tamamo_no_mae_(swimsuit_lancer)_(fate),4,1983 +1464778,nakano_yotsuba,4,1983 +1631071,jun'you_(kancolle),4,1980 +660392,hoshizora_miyuki,4,1977 +1631188,miyuki_(kancolle),4,1976 +16066,raising_heart,4,1975 +416172,kujikawa_rise,4,1967 +1467626,anastasia_(fate),4,1960 +1440070,kaga_(azur_lane),4,1958 +1630677,gangut_(kancolle),4,1953 +1159816,mirko,4,1952 +1646759,silence_suzuka_(umamusume),4,1950 +1627569,fou_(fate),4,1949 +1631265,pola_(kancolle),4,1949 +663681,honda_mio,4,1948 +591906,panty_(psg),4,1945 +772426,ohtsuki_yui,4,1941 +1250855,hex_maniac_(pokemon),4,1941 +1658781,scaramouche_(genshin_impact),4,1941 +502807,shinki_(touhou),4,1940 +386434,piplup,4,1933 +1452668,hassan_of_serenity_(fate),4,1932 +414820,lynette_bishop,4,1929 +476084,saten_ruiko,4,1929 +1488442,bb_(swimsuit_mooncancer)_(fate),4,1926 +16082,ryougi_shiki,4,1923 +41,suiseiseki,4,1919 +1610754,yu_mei-ren_(fate),4,1911 +11050,sonozaki_mion,4,1910 +1509453,fu_hua,4,1909 +1625332,yuuka_(blue_archive),4,1908 +1540881,w_(arknights),4,1905 +1580066,suzuran_(arknights),4,1905 +1817174,inkling_boy,4,1902 +553633,lyra_(pokemon),4,1894 +1645002,nice_nature_(umamusume),4,1890 +721694,tatsumaki,4,1888 +1631016,i-168_(kancolle),4,1887 +1716513,avatar_(ff11),4,1885 +384405,irisviel_von_einzbern,4,1885 +445847,charizard,4,1883 +1459161,tsukino_mito,4,1883 +1675937,kaedehara_kazuha,4,1883 +1472743,ibaraki_douji_(fate),4,1882 +1387748,katsuki_yuuri,4,1881 +1316168,kurosawa_ruby,4,1876 +1631510,yuugumo_(kancolle),4,1875 +1378262,mallow_(pokemon),4,1874 +1406378,shoebill_(kemono_friends),4,1874 +1770074,inoue_takina,4,1871 +1257126,p-head_producer,4,1869 +16122,nico_robin,4,1865 +1449263,nia_(xenoblade),4,1865 +1387712,viktor_nikiforov,4,1855 +1408667,kochou_shinobu,4,1852 +1670077,springfield_(girls'_frontline),4,1850 +1680379,mash_kyrielight_(dangerous_beast),4,1850 +1544632,mostima_(arknights),4,1850 +660389,christa_renz,4,1848 +1239637,jakuzure_nonon,4,1842 +1631211,nachi_(kancolle),4,1842 +1534498,meltryllis_(swimsuit_lancer)_(fate),4,1842 +1275722,makigumo_(kancolle),4,1841 +1506818,neptune_(neptune_series),4,1840 +7579,vita,4,1836 +438339,rotom,4,1834 +664082,miyamoto_frederica,4,1825 +383738,vivio,4,1822 +1542251,orange_pekoe_(girls_und_panzer),4,1822 +1533460,lysithea_von_ordelia,4,1817 +1384409,akamatsu_kaede,4,1815 +7477,noumi_kudryavka,4,1811 +512688,brendan_(pokemon),4,1811 +394317,rosalina,4,1811 +1693513,elizabeth_bathory_(fate/extra_ccc),4,1810 +938279,lyn_(fire_emblem),4,1809 +1268743,ujimatsu_chiya,4,1806 +171918,android_18,4,1802 +666034,akagi_miria,4,1801 +713731,tedeza_rize,4,1800 +543959,sakura_miku,4,1799 +1630542,choukai_(kancolle),4,1799 +1629430,mysterious_heroine_xx_(fate),4,1795 +1525541,gojou_satoru,4,1789 +1222730,sesshouin_kiara,4,1788 +1629420,jeanne_d'arc_alter_santa_lily_(fate),4,1787 +433649,johnny_joestar,4,1783 +1631163,maru-yu_(kancolle),4,1781 +1160566,blake_belladonna,4,1780 +1549045,tsunomaki_watame,4,1780 +14180,lilith_aensland,4,1770 +1631225,nagatsuki_(kancolle),4,1764 +565443,shinjou_akane,4,1763 +628777,yuzuriha_inori,4,1760 +1447957,nero_claudius_(bride)_(fate),4,1760 +1533066,hilda_valentine_goneril,4,1760 +1631102,katsuragi_(kancolle),4,1757 +1664919,yoimiya_(genshin_impact),4,1753 +1406537,shima_rin,4,1752 +1239070,akatsuki_kirika,4,1748 +717139,kenzaki_makoto,4,1746 +1525756,sonia_(pokemon),4,1745 +382079,takara_miyuki,4,1742 +1346647,shinomiya_kaguya,4,1742 +1533350,morpeko,4,1737 +1670933,index_(toaru_majutsu_no_index),4,1734 +596343,mima_(touhou),4,1731 +753977,sinon,4,1731 +8276,bardiche,4,1730 +1341257,toga_himiko,4,1730 +1440145,javelin_(azur_lane),4,1726 +1631425,teruzuki_(kancolle),4,1725 +1631244,noshiro_(kancolle),4,1723 +1251354,phosphophyllite,4,1721 +414816,sakamoto_mio,4,1720 +1442305,hiro_(darling_in_the_franxx),4,1719 +399147,yowane_haku,4,1717 +664359,tachibana_hibiki_(symphogear),4,1717 +7914,mizuno_ami,4,1716 +10146,koizumi_itsuki,4,1715 +1631402,tama_(kancolle),4,1714 +1257062,pepperoni_(girls_und_panzer),4,1714 +1405419,lucky_beast_(kemono_friends),4,1713 +568921,aegis_(persona),4,1709 +713449,morikubo_nono,4,1709 +1852825,iono_(pokemon),4,1704 +4906,lum,4,1703 +1670940,last_order_(toaru_majutsu_no_index),4,1702 +1630685,gotland_(kancolle),4,1698 +1631495,yayoi_(kancolle),4,1693 +1631373,suzukaze_(kancolle),4,1690 +1292966,asui_tsuyu,4,1689 +1644992,manhattan_cafe_(umamusume),4,1688 +1631198,sensei_(blue_archive),4,1686 +1735921,asashio_kai_ni_(kancolle),4,1680 +1602199,ningguang_(genshin_impact),4,1677 +1623528,dodoco_(genshin_impact),4,1672 +1441509,andou_(girls_und_panzer),4,1669 +301250,yae_sakura,4,1668 +1631357,shirayuki_(kancolle),4,1667 +1275721,kuroshio_(kancolle),4,1666 +5036,signum,4,1663 +1685269,ceres_fauna,4,1663 +1667145,ak-12_(girls'_frontline),4,1662 +424944,hanamura_yousuke,4,1661 +1350741,darkness_(konosuba),4,1661 +496829,makoto_nanaya,4,1657 +681874,shiomi_syuko,4,1657 +1403842,chiyoda_momo,4,1657 +7794,aino_minako,4,1656 +606667,kirino_ranmaru,4,1655 +1446811,st._louis_(azur_lane),4,1653 +529058,hanasaki_tsubomi,4,1649 +567872,n_(pokemon),4,1648 +399582,lucario,4,1646 +1432467,morgan_le_fay_(fate),4,1646 +401222,noel_vermillion,4,1644 +1317049,seiran_(touhou),4,1643 +1248475,jinx_(league_of_legends),4,1640 +1646757,special_week_(umamusume),4,1639 +1295749,tracer_(overwatch),4,1635 +1630510,asashimo_(kancolle),4,1634 +1631376,suzutsuki_(kancolle),4,1632 +1303014,producer_(idolmaster_cinderella_girls_anime),4,1629 +1672736,twilight_(spy_x_family),4,1629 +378207,matou_kariya,4,1628 +1734277,oda_nobunaga_(koha-ace),4,1628 +1344591,matsuno_karamatsu,4,1624 +1459170,hachimiya_meguru,4,1624 +488853,kasumi_(doa),4,1623 +1524282,lio_fotia,4,1622 +1243759,horikawa_raiko,4,1621 +423669,saber_lily,4,1619 +1581062,shiomi_kotone,4,1617 +386311,otonashi_kotori,4,1613 +664313,moroboshi_kirari,4,1612 +386242,sakata_gintoki,4,1611 +1300728,oumae_kumiko,4,1604 +1344594,matsuno_jyushimatsu,4,1603 +1407560,kizuna_ai,4,1602 +436994,sakurai_momoka,4,1601 +593802,minamino_kanade,4,1600 +1631112,kinugasa_(kancolle),4,1599 +467096,leaf_(pokemon),4,1595 +1630499,arashio_(kancolle),4,1595 +1344590,matsuno_osomatsu,4,1595 +1678981,kujou_sara,4,1594 +1639112,sendai_kai_ni_(kancolle),4,1593 +1344593,matsuno_ichimatsu,4,1593 +1383241,lusamine_(pokemon),4,1592 +1629361,ushiwakamaru_(fate),4,1591 +1501023,artoria_pendragon_(lancer_alter)_(fate),4,1590 +1799501,karin_(bunny)_(blue_archive),4,1590 +1401124,yorha_no._9_type_s,4,1589 +663432,kamiya_nao,4,1588 +658795,mimura_kanako,4,1585 +716185,nishizumi_shiho,4,1585 +15221,hanyuu,4,1583 +1584593,felicia_(vampire),4,1582 +1529256,robin_(fire_emblem)_(female),4,1581 +527774,monkey_d._luffy,4,1577 +1630529,ayanami_(kancolle),4,1570 +1273262,rensouhou-kun,4,1569 +1525544,itadori_yuuji,4,1569 +1255499,satou_kazuma,4,1567 +13036,misumi_nagisa,4,1560 +1631054,isuzu_(kancolle),4,1560 +42,souseiseki,4,1559 +396068,watatsuki_no_yorihime,4,1557 +1248309,sendai_hakurei_no_miko,4,1557 +1630445,agano_(kancolle),4,1556 +1824247,etna_(disgaea),4,1554 +1386288,harukawa_maki,4,1554 +1467675,symboli_rudolf_(umamusume),4,1553 +1493508,princess_king_boo,4,1552 +1417247,japanese_crested_ibis_(kemono_friends),4,1551 +1245442,i-class_destroyer,4,1550 +1586177,omaru_polka,4,1546 +1338854,mei_(overwatch),4,1543 +1734866,musashi_kai_ni_(kancolle),4,1543 +712088,leafa,4,1540 +601490,monokuma,4,1540 +727253,hojo_karen,4,1540 +1522661,angelina_(arknights),4,1539 +1316170,ohara_mari,4,1537 +1542253,rosehip_(girls_und_panzer),4,1536 +1231206,levi_(shingeki_no_kyojin),4,1535 +1407467,northern_white-faced_owl_(kemono_friends),4,1535 +697698,kirigaya_suguha,4,1531 +445901,gengar,4,1525 +1682833,satono_diamond_(umamusume),4,1525 +1561724,fukumaru_koito,4,1523 +657914,tokisaki_kurumi,4,1522 +1631141,libeccio_(kancolle),4,1522 +1560134,morpeko_(full),4,1522 +1560614,saren_(princess_connect!),4,1521 +1408471,camilla_(fire_emblem),4,1520 +674693,skyla_(pokemon),4,1514 +1814848,takodachi_(ninomae_ina'nis),4,1514 +1423783,eternity_larva,4,1512 +479648,hirasawa_ui,4,1510 +427708,ushiromiya_ange,4,1509 +354943,edward_elric,4,1505 +700409,tsumiki_mikan,4,1504 +1447804,oshida_(girls_und_panzer),4,1504 +547415,funami_yui,4,1503 +1253671,gamagoori_ira,4,1503 +1596245,kaeya_(genshin_impact),4,1501 +1304225,mikazuki_munechika,4,1500 +1561956,bremerton_(scorching-hot_training)_(azur_lane),4,1500 +595668,hatsune_miku_(append),4,1496 +404724,kagura_(gintama),4,1495 +1382909,kawakaze_(kancolle),4,1495 +1789597,asakura_toru,4,1495 +1629414,artoria_pendragon_(alter_swimsuit_rider)_(fate),4,1494 +11427,kasugano_sakura,4,1492 +1446812,honolulu_(azur_lane),4,1491 +1266581,ramlethal_valentine,4,1490 +8586,chibi_usa,4,1489 +1525545,fushiguro_megumi,4,1489 +1409154,tohru_(maidragon),4,1487 +1295790,widowmaker_(overwatch),4,1485 +559717,purple_heart,4,1484 +10546,vegeta,4,1479 +1627626,leonardo_da_vinci_(fate),4,1479 +1317200,endeavor_(boku_no_hero_academia),4,1475 +401594,palutena,4,1474 +1631052,isonami_(kancolle),4,1474 +1654650,skadi_the_corrupting_heart_(arknights),4,1474 +1459802,shirase_sakuya,4,1472 +414819,francesca_lucchini,4,1471 +1524986,specter_(arknights),4,1471 +418600,kamui_gakupo,4,1470 +1317067,ringo_(touhou),4,1470 +1467838,oguri_cap_(umamusume),4,1469 +432194,tina_branford,4,1465 +657793,cure_peace,4,1462 +1593680,ashiya_douman_(fate),4,1462 +1627803,yang_guifei_(fate),4,1462 +432816,kishibe_rohan,4,1459 +1303947,kashuu_kiyomitsu,4,1454 +1344592,matsuno_choromatsu,4,1454 +1551569,nian_(arknights),4,1454 +1613891,albedo_(genshin_impact),4,1451 +1629640,martha_(fate),4,1450 +722867,ymir_(shingeki_no_kyojin),4,1448 +1534779,artoria_pendragon_(swimsuit_ruler)_(fate),4,1448 +1407816,silver_fox_(kemono_friends),4,1443 +1594464,bloop_(gawr_gura),4,1443 +474547,uiharu_kazari,4,1441 +1631100,katori_(kancolle),4,1440 +56878,fujibayashi_kyou,4,1439 +8151,hino_rei,4,1437 +1493611,kemomimi-chan_(naga_u),4,1437 +1631208,myoukou_(kancolle),4,1435 +1630559,enemy_aircraft_(kancolle),4,1432 +1577501,lisa_(genshin_impact),4,1431 +1631408,tashkent_(kancolle),4,1429 +403378,yuffie_kisaragi,4,1428 +1644998,mihono_bourbon_(umamusume),4,1425 +445833,jessie_(pokemon),4,1424 +375109,midna,4,1423 +1695267,noire_(neptune_series),4,1422 +470503,konjiki_no_yami,4,1421 +1639094,murakumo_kai_ni_(kancolle),4,1419 +1528228,le_malin_(azur_lane),4,1418 +1622591,koharu_(blue_archive),4,1417 +11051,sonozaki_shion,4,1414 +436223,nanasaki_ai,4,1413 +1499780,jeanne_d'arc_(swimsuit_archer)_(fate),4,1413 +1631062,jervis_(kancolle),4,1411 +1257906,elsa_(frozen),4,1410 +1627580,helena_blavatsky_(fate),4,1410 +1405975,grey_wolf_(kemono_friends),4,1410 +428744,yuri_lowell,4,1409 +1627695,marie_antoinette_(fate),4,1409 +344358,roronoa_zoro,4,1407 +1410565,fujiwara_chika,4,1407 +1644994,mayano_top_gun_(umamusume),4,1405 +437685,bayonetta,4,1404 +1409820,ezo_red_fox_(kemono_friends),4,1401 +550010,tsukikage_yuri,4,1400 +1627756,scathach_skadi_(fate),4,1400 +1292970,yaoyorozu_momo,4,1399 +439343,ragna_the_bloodedge,4,1397 +1288044,popuko,4,1397 +1757557,jeanne_d'arc_alter_(ver._shinjuku_1999)_(fate),4,1397 +466937,higashi_setsuna,4,1396 +1630671,furutaka_(kancolle),4,1396 +1627727,osakabe-hime_(fate),4,1396 +8545,kamio_misuzu,4,1394 +1768632,mysterious_heroine_x_alter_(fate),4,1393 +1586174,momosuzu_nene,4,1393 +8107,bulma,4,1391 +1186381,arch_bishop_(ragnarok_online),4,1391 +674691,elesa_(pokemon),4,1391 +1421907,komi_shouko,4,1391 +1368824,takamaki_anne,4,1390 +518079,tiki_(fire_emblem),4,1389 +126661,furukawa_nagisa,4,1389 +1862749,aris_(blue_archive),4,1389 +1307612,nishi_kinuyo,4,1388 +1524993,saria_(arknights),4,1388 +401823,sonic_the_hedgehog,4,1387 +1365551,sakura_futaba,4,1387 +1786496,artoria_caster_(fate),4,1387 +1344595,matsuno_todomatsu,4,1385 +1495228,konno_junko,4,1385 +602082,charlotte_dunois,4,1384 +392481,madotsuki,4,1383 +1631161,mamiya_(kancolle),4,1383 +54495,jean_pierre_polnareff,4,1380 +1630726,hayashimo_(kancolle),4,1379 +707037,hoshi_syoko,4,1378 +1258989,failure_penguin,4,1378 +1532748,byleth_(fire_emblem)_(male),4,1371 +1599722,aru_(blue_archive),4,1371 +1304908,yamato-no-kami_yasusada,4,1369 +606875,little_red_riding_hood_(grimm),4,1368 +1572074,lucifer_(helltaker),4,1367 +419122,tatsumi_kanji,4,1364 +384100,natsume_rin,4,1363 +544077,kris_(pokemon),4,1362 +1534338,kicchou_yachie,4,1362 +1589926,kamina_(ttgl),4,1360 +592111,oshawott,4,1357 +695285,sakuma_mayu,4,1356 +682208,bridget_(guilty_gear),4,1354 +1630503,ark_royal_(kancolle),4,1351 +1459804,tsukioka_kogane,4,1351 +610092,yoshikawa_chinatsu,4,1349 +1525577,hoshiguma_(arknights),4,1348 +361258,ranma-chan,4,1347 +1462453,morino_rinze,4,1347 +714995,yuno_(hidamari_sketch),4,1344 +520787,elin,4,1342 +1631092,kamoi_(kancolle),4,1342 +1517401,lize_helesta,4,1342 +970886,roll_(mega_man),4,1338 +382240,nekomusume,4,1337 +1667148,m4a1_(girls'_frontline),4,1337 +935913,alice_margatroid_(pc-98),4,1335 +1588986,abigail_williams_(swimsuit_foreigner)_(fate),4,1334 +1243753,tsukumo_benben,4,1332 +510496,ryu_(street_fighter),4,1330 +446937,reiuji_utsuho_(bird),4,1330 +1533840,kurokoma_saki,4,1330 +8152,kino_makoto,4,1329 +1667154,an-94_(girls'_frontline),4,1329 +1674212,irys_(hololive),4,1327 +1551542,dido_(azur_lane),4,1325 +13037,yukishiro_honoka,4,1323 +424220,silver_(pokemon),4,1322 +1460817,kuwayama_chiyuki,4,1321 +1581646,noelle_(genshin_impact),4,1321 +1386217,umikaze_(kancolle),4,1320 +1419028,komano_aunn,4,1318 +1805355,suletta_mercury,4,1316 +1377502,tamura_yuri,4,1311 +1412756,theresa_apocalypse,4,1309 +1467925,vodka_(umamusume),4,1308 +1526355,wattson_(apex_legends),4,1308 +1539717,reze_(chainsaw_man),4,1308 +547150,myoudouin_itsuki,4,1307 +1433946,marina_(splatoon),4,1307 +1479089,okita_souji_alter_(fate),4,1306 +1631145,little_boy_admiral_(kancolle),4,1305 +1514982,elio_(pokemon),4,1305 +1451890,kaguya_luna,4,1304 +1618002,slime_(genshin_impact),4,1303 +816414,joseph_joestar_(old),4,1302 +1630693,hagikaze_(kancolle),4,1302 +1732422,kasumi_kai_ni_(kancolle),4,1302 +1584986,hoshino_(blue_archive),4,1301 +428824,bruno_bucciarati,4,1299 +1307567,cagliostro_(granblue_fantasy),4,1299 +1627148,koyanskaya_(fate),4,1299 +445414,bianca_(pokemon),4,1297 +663499,totoki_airi,4,1297 +658638,oreki_houtarou,4,1296 +1375862,mimikyu,4,1296 +1513845,scorbunny,4,1296 +387299,prisma_illya,4,1292 +1360561,natsuki_subaru,4,1292 +1438046,android_21,4,1292 +1631358,shouhou_(kancolle),4,1291 +451173,haramura_nodoka,4,1290 +617637,oomuro_sakurako,4,1290 +1695263,blanc_(neptune_series),4,1289 +1667146,g11_(girls'_frontline),4,1287 +1462526,higuchi_kaede,4,1286 +1549066,himemori_luna,4,1285 +1649113,gilles_de_rais_(caster)_(fate),4,1283 +487228,sengoku_nadeko,4,1283 +1304230,tsurumaru_kuninaga,4,1280 +396219,tokiko_(touhou),4,1276 +1597302,beidou_(genshin_impact),4,1275 +405776,riesz,4,1274 +1222667,ike_(fire_emblem),4,1274 +1630643,etorofu_(kancolle),4,1274 +1667152,m4_sopmod_ii_(girls'_frontline),4,1273 +1527621,marianne_von_edmund,4,1273 +1432308,nishida_satono,4,1272 +12091,tohno_akiha,4,1270 +1630653,fletcher_(kancolle),4,1269 +1392841,altera_(fate),4,1268 +1533372,miyamoto_musashi_(swimsuit_berserker)_(fate),4,1268 +416940,su-san,4,1267 +1258306,ninomiya_asuka,4,1267 +1682831,kitasan_black_(umamusume),4,1266 +1470527,natori_sana,4,1265 +489852,akizuki_ryo,4,1264 +1296572,todoroki_shouto,4,1259 +663460,sasaki_chie,4,1257 +1667150,st_ar-15_(girls'_frontline),4,1256 +1535146,schwarz_(arknights),4,1255 +1226975,diana_cavendish,4,1254 +653217,nepgear,4,1253 +1630497,arashi_(kancolle),4,1252 +1407454,atalanta_(fate),4,1249 +710980,kadotani_anzu,4,1247 +1406536,kagamihara_nadeshiko,4,1246 +1654886,kudamaki_tsukasa,4,1246 +622669,alisa_ilinichina_amiella,4,1245 +570743,kirin_(armor),4,1244 +1630636,enemy_lifebuoy_(kancolle),4,1244 +1525687,blue_poison_(arknights),4,1244 +1677020,fairy_knight_tristan_(fate),4,1242 +599168,hourai_doll,4,1241 +475559,araragi_koyomi,4,1240 +7449,daidouji_tomoyo,4,1238 +618147,honma_meiko,4,1238 +1511279,murasaki_shikibu_(fate),4,1237 +1508231,sunazuka_akira,4,1236 +532518,cure_marine,4,1233 +1544952,piers_(pokemon),4,1233 +464857,sailor_mercury,4,1231 +430852,hachikuji_mayoi,4,1231 +437588,kuma_(persona_4),4,1231 +1762182,ranni_the_witch,4,1231 +408655,kasane_teto,4,1230 +1631154,maikaze_(kancolle),4,1230 +1522707,siege_(arknights),4,1230 +1440177,z23_(azur_lane),4,1229 +433648,gyro_zeppeli,4,1228 +1305388,namazuo_toushirou,4,1226 +421102,minna-dietlinde_wilcke,4,1225 +1630544,colorado_(kancolle),4,1224 +1432310,teireida_mai,4,1223 +1627780,tokitarou_(fate),4,1222 +389156,frederica_bernkastel,4,1221 +1631255,ooshio_(kancolle),4,1221 +4908,kero,4,1220 +1513846,sobble,4,1219 +1525770,hop_(pokemon),4,1218 +1719005,hakui_koyori,4,1218 +445954,bulbasaur,4,1215 +618301,ivan_karelin,4,1215 +542683,sonya_(kill_me_baby),4,1214 +593284,naegi_makoto,4,1214 +1529257,robin_(fire_emblem)_(male),4,1214 +1425456,seele_vollerei,4,1213 +1631260,oyashio_(kancolle),4,1211 +1282191,hoshino_fumina,4,1210 +1388692,touhoku_kiritan,4,1210 +181219,kirijou_mitsuru,4,1208 +1631270,richelieu_(kancolle),4,1208 +596093,caren_hortensia,4,1205 +1300741,kousaka_reina,4,1205 +1305386,honebami_toushirou,4,1204 +1625330,hibiki_(blue_archive),4,1204 +597205,silica,4,1201 +11052,maebara_keiichi,4,1199 +734427,sona_(league_of_legends),4,1199 +592340,snivy,4,1197 +1675744,selen_tatsuki,4,1196 +633741,furutani_himawari,4,1194 +375278,tohsaka_tokiomi,4,1193 +1414917,alpaca_suri_(kemono_friends),4,1193 +1512399,wraith_(apex_legends),4,1193 +1299395,amanogawa_kirara,4,1192 +513774,shantae,4,1190 +1624311,nagi_(kannagi),4,1189 +1303946,midare_toushirou,4,1187 +1531714,baltimore_(azur_lane),4,1185 +533537,ciel_(tsukihime),4,1184 +1407495,eurasian_eagle_owl_(kemono_friends),4,1184 +1536889,kanroji_mitsuri,4,1181 +1622307,hasumi_(blue_archive),4,1181 +1472521,medea_(fate),4,1180 +1630505,asagumo_(kancolle),4,1178 +1443455,igarashi_futaba_(shiromanta),4,1178 +1441567,monika_(doki_doki_literature_club),4,1177 +681655,oikawa_shizuku,4,1175 +1242334,ta-class_battleship,4,1174 +1575935,nagatoro_hayase,4,1171 +1181678,boo_(mario),4,1168 +1341419,anila_(granblue_fantasy),4,1168 +1288043,pipimi,4,1166 +1383156,gladion_(pokemon),4,1163 +1571821,modeus_(helltaker),4,1163 +1542249,assam_(girls_und_panzer),4,1162 +1630538,chitose_(kancolle),4,1162 +1242336,ru-class_battleship,4,1160 +1827774,sanji_(one_piece),4,1158 +1533833,haniyasushin_keiki,4,1158 +1641844,yanfei_(genshin_impact),4,1157 +1399519,tamaki_iroha,4,1156 +7459,white_mage,4,1155 +1719006,kazama_iroha,4,1153 +375868,kururugi_suzaku,4,1152 +672515,abe_nana,4,1152 +1277829,sento_isuzu,4,1152 +1318793,zeta_(granblue_fantasy),4,1152 +1667157,m16a1_(girls'_frontline),4,1149 +717606,yukinoshita_yukino,4,1148 +1696728,rydia_(ff4),4,1147 +445832,james_(pokemon),4,1145 +445831,green_(pokemon),4,1145 +1292110,shidare_hotaru,4,1145 +1442807,marie_(girls_und_panzer),4,1145 +1374966,kamado_tanjirou,4,1144 +1544888,victor_(pokemon),4,1143 +1631180,mikuma_(kancolle),4,1142 +1305416,saniwa_(touken_ranbu),4,1142 +8760,kusanagi_motoko,4,1139 +1596439,mutsuki_(blue_archive),4,1139 +12208,shihouin_yoruichi,4,1138 +709319,yuigahama_yui,4,1134 +533539,kohaku_(tsukihime),4,1133 +1536880,zara_(azur_lane),4,1133 +644430,rias_gremory,4,1132 +1631019,i-26_(kancolle),4,1131 +1405299,emperor_penguin_(kemono_friends),4,1130 +1781047,artoria_pendragon_(alter_swimsuit_rider)_(second_ascension)_(fate),4,1129 +1630536,chikuma_(kancolle),4,1128 +1467946,haru_urara_(umamusume),4,1128 +1667163,commander_(girls'_frontline),4,1127 +1406070,jaguar_(kemono_friends),4,1127 +7559,luigi,4,1126 +1630717,hatsushimo_(kancolle),4,1126 +1496142,minamoto_sakura,4,1126 +10145,tsuruya,4,1125 +1630667,fumizuki_(kancolle),4,1125 +558421,high_priest_(ragnarok_online),4,1122 +1630715,hatsukaze_(kancolle),4,1122 +464855,sailor_venus,4,1121 +459048,momozono_love,4,1121 +1627521,boudica_(fate),4,1118 +575975,iris_(pokemon),4,1117 +544078,lucas_(pokemon),4,1116 +425768,umbreon,4,1116 +528716,yui_(angel_beats!),4,1116 +746341,tharja_(fire_emblem),4,1116 +1399291,pod_(nier_automata),4,1116 +1368823,niijima_makoto,4,1115 +374467,princess_daisy,4,1114 +1724523,irida_(pokemon),4,1114 +1452674,frankenstein's_monster_(fate),4,1113 +727697,sylveon,4,1113 +1492381,shiina_yuika,4,1113 +630836,huang_baoling,4,1112 +1525780,rotom_phone,4,1112 +502557,nu-13,4,1111 +1639053,fubuki_kai_ni_(kancolle),4,1111 +1495229,mizuno_ai,4,1111 +1657251,elira_pendora,4,1111 +1492855,hawks_(boku_no_hero_academia),4,1110 +12518,leona_heidern,4,1108 +1401930,nemoto_hina,4,1108 +712140,kawashima_momo,4,1107 +1589903,yin_(darker_than_black),4,1105 +1239071,tsukuyomi_shirabe,4,1105 +1498626,rita_rossweisse,4,1105 +445848,squirtle,4,1104 +1292974,ashido_mina,4,1104 +1645011,tamamo_cross_(umamusume),4,1104 +1496188,yuzuki_choco,4,1104 +1626315,dusk_(arknights),4,1103 +1556681,rex_(xenoblade),4,1102 +1349628,fubuki_(one-punch_man),4,1100 +1125853,enkidu_(fate),4,1098 +1304228,izumi-no-kami_kanesada,4,1097 +464856,sailor_mars,4,1096 +1431995,minamoto_no_raikou_(swimsuit_lancer)_(fate),4,1095 +1594449,kashino_(azur_lane),4,1095 +1542542,higashiyama_kobeni,4,1094 +1631147,littorio_(kancolle),4,1093 +1846970,rebecca_(cyberpunk),4,1093 +1281721,slaine_troyard,4,1092 +1619061,jumpy_dumpty,4,1091 +1232066,armin_arlert,4,1089 +555,haro,4,1088 +1440247,yamashiro_(azur_lane),4,1088 +1534340,joutouguu_mayumi,4,1088 +1589993,chongyun_(genshin_impact),4,1088 +1629448,passionlip_(fate),4,1086 +1631088,kako_(kancolle),4,1086 +1631518,zara_(kancolle),4,1086 +1846070,hibiki_(cheerleader)_(blue_archive),4,1086 +423518,berserker_(fate/zero),4,1085 +420502,guido_mista,4,1085 +1631246,nowaki_(kancolle),4,1085 +1629366,xuangzang_sanzang_(fate),4,1085 +396070,watatsuki_no_toyohime,4,1084 +425771,glaceon,4,1083 +713156,hoshimiya_ichigo,4,1082 +1630728,hayasui_(kancolle),4,1080 +1518710,hisakawa_hayate,4,1079 +1489783,carpaccio_(girls_und_panzer),4,1077 +1298160,kotonoha_akane,4,1077 +1391739,karna_(fate),4,1076 +528478,sabrina_(pokemon),4,1074 +1644983,eishin_flash_(umamusume),4,1073 +550750,cure_sunshine,4,1072 +1447775,katou_asuka,4,1072 +1631068,johnston_(kancolle),4,1072 +421683,angel_(kof),4,1071 +1481030,caenis_(fate),4,1071 +1517396,ange_katrina,4,1070 +1518711,hisakawa_nagi,4,1070 +422389,cyndaquil,4,1069 +902082,tateyama_ayano,4,1069 +1295903,pharah_(overwatch),4,1069 +1560602,kyouka_(princess_connect!),4,1069 +421660,tsunade_(naruto),4,1067 +1533343,bede_(pokemon),4,1067 +542685,oribe_yasuna,4,1065 +1332548,chi-chi_(dragon_ball),4,1064 +472786,america_(hetalia),4,1063 +657796,cure_beauty,4,1062 +1527167,azura_(fire_emblem),4,1060 +7583,fukuzawa_yumi,4,1059 +564326,nakamura_yuri,4,1059 +1517393,inui_toko,4,1059 +1611363,kureiji_ollie,4,1059 +416695,uryuu_ryuunosuke,4,1058 +1589994,xingqiu_(genshin_impact),4,1058 +394620,yuuki_mikan,4,1057 +1814893,magical_mirai_miku,4,1055 +1629357,medb_(fate),4,1055 +1462508,tokino_sora,4,1054 +8305,tomoe_hotaru,4,1052 +1627153,medjed_(fate),4,1051 +1522347,suzuhara_lulu,4,1051 +1515913,reines_el-melloi_archisorte,4,1050 +1440644,inuyama_aoi,4,1049 +12258,katsuragi_misato,4,1046 +503437,eve_(elsword),4,1046 +1177793,katou_megumi,4,1046 +439063,rachel_alucard,4,1043 +12210,kuchiki_rukia,4,1042 +15312,millia_rage,4,1040 +1685273,tsukumo_sana,4,1040 +532519,cure_blossom,4,1039 +587823,tsurumaki_maki,4,1039 +1631192,mochizuki_(kancolle),4,1038 +1541326,hoshikawa_sara,4,1038 +1789592,osaki_amana,4,1036 +6177,moogle,4,1034 +601379,takagi-san,4,1034 +1620953,hifumi_(blue_archive),4,1034 +654355,kazanari_tsubasa,4,1033 +1515526,serizawa_asahi,4,1033 +485033,sora_(kingdom_hearts),4,1032 +1732814,kongou_kai_ni_(kancolle),4,1031 +1607439,arjuna_(fate),4,1031 +1343724,miyamizu_mitsuha,4,1031 +382261,subaru_nakajima,4,1029 +596939,akali,4,1029 +1402193,nanachi_(made_in_abyss),4,1027 +1420942,yuuki_setsuna_(love_live!),4,1027 +445845,charmander,4,1025 +428743,estellise_sidos_heurassein,4,1025 +592339,tepig,4,1024 +1387115,scathach_(swimsuit_assassin)_(fate),4,1024 +1593360,bibi_(tokoyami_towa),4,1023 +1617664,rosaria_(genshin_impact),4,1023 +186196,winry_rockbell,4,1021 +1241333,sanageyama_uzu,4,1020 +101524,bowser,4,1019 +15840,kos-mos,4,1018 +1155353,kars_(jojo),4,1018 +664191,tada_riina,4,1018 +1241962,kishinami_hakuno_(female),4,1017 +1541815,rabbit_yukine,4,1017 +1334378,albedo_(overlord),4,1017 +1366296,popplio,4,1017 +1448421,pearl_(splatoon),4,1016 +1525546,kugisaki_nobara,4,1016 +1554856,hayakawa_aki,4,1016 +1304904,horikawa_kunihiro,4,1014 +1522439,niwatari_kutaka,4,1014 +1280966,kaneki_ken,4,1013 +1722586,abigail_williams_(traveling_outfit)_(fate),4,1013 +1509864,prinz_eugen_(unfading_smile)_(azur_lane),4,1012 +1530489,eyjafjalla_(arknights),4,1012 +1646767,twin_turbo_(umamusume),4,1012 +7566,kamikita_komari,4,1010 +628623,sorceress_(dragon's_crown),4,1009 +12099,komaki_manaka,4,1008 +1462463,arisugawa_natsuha,4,1008 +1503277,makaino_ririmu,4,1008 +1519338,nursery_rhyme_(fate),4,1007 +1631276,roma_(kancolle),4,1007 +1436151,uzaki_hana,4,1006 +87514,cure_black,4,1005 +1318266,clarisse_(granblue_fantasy),4,1004 +425767,espeon,4,1003 +1631106,kazagumo_(kancolle),4,1002 +1334050,frisk_(undertale),4,1002 +1462454,sonoda_chiyoko,4,999 +9090,mizunashi_akari,4,998 +385133,ushiromiya_maria,4,998 +705643,ib_(ib),4,998 +716728,kitashirakawa_tamako,4,998 +1341416,ferry_(granblue_fantasy),4,995 +1412049,mitake_ran,4,994 +1350177,violet_evergarden,4,993 +1805391,miorine_rembran,4,993 +1627618,king_hassan_(fate),4,992 +1243761,tsukumo_yatsuhashi,4,991 +1386434,momota_kaito,4,990 +715313,marth_(fire_emblem),4,989 +1319288,yoroizuka_mizore,4,989 +1459806,tanaka_mamimi,4,989 +1631437,tsushima_(kancolle),4,988 +1285741,suzukaze_aoba,4,986 +1643885,mari_(blue_archive),4,985 +657794,cure_march,4,983 +1639062,haruna_kai_ni_(kancolle),4,983 +286,kooh,4,982 +176593,takeba_yukari,4,982 +1631396,takanami_(kancolle),4,982 +1548047,vikala_(granblue_fantasy),4,982 +1229728,kitazawa_shiho,4,981 +1292136,raphtalia,4,981 +1462457,komiya_kaho,4,981 +677075,reiner_braun,4,979 +1387746,yuri_plisetsky,4,978 +539676,taneshima_popura,4,977 +1631040,intrepid_(kancolle),4,977 +1333583,kozakura_marry,4,974 +1630474,akitsushima_(kancolle),4,974 +657791,cure_happy,4,971 +1660217,lucoa_(maidragon),4,971 +431436,momo_velia_deviluke,4,970 +1806092,shiroko_(swimsuit)_(blue_archive),4,970 +1768637,miyu_(blue_archive),4,970 +1403111,sucy_manbavaran,4,969 +464858,sailor_jupiter,4,968 +1513843,grookey,4,967 +14569,jill_valentine,4,966 +402795,meowth,4,966 +717859,nate_(pokemon),4,965 +717540,yotsuba_alice,4,965 +7570,hina_ichigo,4,964 +12207,inoue_orihime,4,964 +480039,manabe_nodoka,4,963 +605171,kujou_karen,4,963 +1435314,oyama_mahiro,4,962 +401814,saotome_alto,4,960 +594282,cure_melody,4,960 +16268,son_gohan,4,958 +1257905,shirayuki_hime,4,958 +487246,araragi_karen,4,956 +618134,karina_lyle,4,956 +1783170,meltryllis_(swimsuit_lancer)_(first_ascension)_(fate),4,955 +1579977,cheshire_(azur_lane),4,955 +1654887,iizunamaru_megumu,4,955 +1303902,miss_cloud,4,952 +472784,japan_(hetalia),4,951 +1362417,elaina_(majo_no_tabitabi),4,951 +1290263,danua,4,950 +1349627,saitama_(one-punch_man),4,948 +1464773,nakano_itsuki,4,948 +7587,toudou_shimako,4,946 +655527,kayneth_el-melloi_archibald,4,946 +445933,vaporeon,4,946 +1442307,ichigo_(darling_in_the_franxx),4,946 +1584985,nonomi_(blue_archive),4,946 +354942,alphonse_elric,4,945 +13066,okazaki_yumemi,4,945 +1572402,xiangling_(genshin_impact),4,945 +9687,kula_diamond,4,944 +1373495,airfield_princess,4,943 +6000,baiken,4,942 +1230568,isabelle_(animal_crossing),4,939 +1401126,yorha_type_a_no._2,4,938 +1684882,florence_nightingale_(trick_or_treatment)_(fate),4,938 +554323,may_(guilty_gear),4,937 +1583984,kino_(kino_no_tabi),4,937 +445840,jigglypuff,4,937 +597292,fujisaki_chihiro,4,936 +472787,united_kingdom_(hetalia),4,934 +1767936,cu_chulainn_alter_(fate),4,934 +1654888,tenkyuu_chimata,4,934 +664000,ichihara_nina,4,933 +717654,kiriya_aoi,4,931 +615130,anjou_naruko,4,930 +1630481,amagi_(kancolle),4,929 +1436229,uehara_ayumu,4,929 +533538,hisui_(tsukihime),4,928 +701392,mioda_ibuki,4,928 +1644977,agnes_digital_(umamusume),4,928 +508153,okabe_rintarou,4,927 +713607,sawa_azusa,4,927 +1473353,arthur_pendragon_(fate),4,926 +1766156,astolfo_(sailor_paladin)_(fate),4,926 +376498,zidane_tribal,4,925 +1323324,yuna_(ff10),4,922 +456946,assassin_(fate/zero),4,922 +610702,oktavia_von_seckendorff,4,919 +628849,yuuki_(sao),4,919 +1630548,commandant_teste_(kancolle),4,919 +438329,torchic,4,918 +471218,aragaki_ayase,4,918 +745262,celestia_ludenberg,4,918 +1631110,kinu_(kancolle),4,916 +1645007,seiun_sky_(umamusume),4,916 +1677018,fairy_knight_gawain_(fate),4,916 +10082,sephiroth,4,915 +688703,miia_(monster_musume),4,915 +1606513,len_(tsukihime),4,914 +1672711,suomi_(girls'_frontline),4,914 +12093,tohno_shiki,4,913 +606666,shindou_takuto,4,913 +1631480,yamagumo_(kancolle),4,913 +620348,keith_goodman,4,912 +1405056,lion_(kemono_friends),4,912 +1055501,micaiah_(fire_emblem),4,911 +439615,misaka_imouto,4,910 +1478568,merlin_(fate),4,910 +1445023,hikawa_hina,4,908 +567695,cheren_(pokemon),4,907 +1468121,nakano_ichika,4,907 +1677022,fairy_knight_lancelot_(fate),4,907 +16210,lenna_charlotte_tycoon,4,901 +388724,lala_satalin_deviluke,4,900 +1783064,miyamoto_musashi_(swimsuit_berserker)_(second_ascension)_(fate),4,900 +1591636,goh_(pokemon),4,899 +1515002,aisha_landar,4,898 +425936,doujima_nanako,4,898 +1533061,bernadetta_von_varley,4,898 +1627134,euryale_(fate),4,897 +676594,lulu_(league_of_legends),4,897 +474262,slime_(dragon_quest),4,896 +471221,kousaka_kyousuke,4,896 +1630493,aquila_(kancolle),4,896 +1235294,kurokawa_eren,4,895 +1304226,hotarumaru,4,894 +1444059,hammann_(azur_lane),4,894 +1459172,sakuragi_mano,4,894 +1564800,moona_hoshinova,4,894 +1598866,sucrose_(genshin_impact),4,894 +1672682,type_95_(girls'_frontline),4,892 +1631536,hilichurl_(genshin_impact),4,891 +1762549,mordred_(memories_at_trifas)_(fate),4,889 +1319289,kasaki_nozomi,4,889 +16119,star_platinum,4,888 +428825,narancia_ghirga,4,888 +743241,racing_miku,4,888 +1644970,grass_wonder_(umamusume),4,888 +1487055,sasaki_saku,4,888 +378846,tenjouin_asuka,4,887 +252261,godzilla,4,887 +1667166,ro635_(girls'_frontline),4,887 +1439987,cleveland_(azur_lane),4,887 +1311289,lyria_(granblue_fantasy),4,886 +1631984,ako_(blue_archive),4,886 +1314604,sakurajima_mai,4,885 +1534941,claude_von_riegan,4,885 +664381,mukai_takumi,4,884 +1254335,marie_rose,4,884 +1366290,okumura_haru,4,884 +663434,kohinata_miho,4,883 +1688938,vira_(granblue_fantasy),4,883 +1439979,graf_zeppelin_(azur_lane),4,883 +1477331,osaki_tenka,4,883 +596161,steven_stone,4,882 +601489,maizono_sayaka,4,882 +1459180,kazano_hiori,4,882 +547417,sugiura_ayano,4,881 +587354,lux_(league_of_legends),4,881 +1235700,seiren_(suite_precure),4,880 +662499,nibutani_shinka,4,880 +396114,lei_lei,4,878 +1631064,jingei_(kancolle),4,876 +1298161,kotonoha_aoi,4,875 +1420690,hikawa_sayo,4,875 +1500657,hayasaka_ai,4,875 +1525261,platinum_(arknights),4,875 +16208,faris_scherwiz,4,873 +378317,garnet_til_alexandros_xvii,4,873 +621741,nyarlathotep_(nyaruko-san),4,873 +1292965,jirou_kyouka,4,873 +1524996,ifrit_(arknights),4,873 +1524346,pramanix_(arknights),4,872 +1275716,hatsuharu_(kancolle),4,871 +1690906,kamisato_ayato,4,871 +661692,dante_(devil_may_cry),4,870 +660387,annie_leonhardt,4,870 +1631235,nenohi_(kancolle),4,870 +1246021,momoe_nagisa,4,870 +1456824,nekomusume_(gegege_no_kitarou_6),4,870 +12213,matsumoto_rangiku,4,868 +1630540,chiyoda_(kancolle),4,867 +12095,aozaki_aoko,4,866 +1462223,hatoba_tsugu,4,866 +1557434,ceobe_(arknights),4,866 +1606545,diona_(genshin_impact),4,865 +726764,sakura_chiyo,4,864 +1591011,nia_(blade)_(xenoblade),4,864 +1569872,yuuki_(princess_connect!),4,864 +1594283,shinano_(azur_lane),4,864 +1594498,alice_zuberg,4,863 +1257904,aino_megumi,4,863 +1337528,aki_(girls_und_panzer),4,863 +411080,lopunny,4,862 +665521,ogata_chieri,4,861 +893075,suou_momoko,4,861 +1461094,shizuka_rin,4,860 +1480638,nadia_la_arwall,4,859 +526169,trunks_(dragon_ball),4,859 +491993,chibi_miku,4,859 +657795,cure_sunny,4,859 +1258956,anna_(frozen),4,859 +466365,mega_man_(character),4,858 +1552816,blaze_(arknights),4,858 +1719012,takane_lui,4,858 +1455448,nagato_(azur_lane),4,857 +465401,ten'ou_haruka,4,856 +981832,guts_(berserk),4,855 +503373,furudo_erika,4,854 +701163,kisaragi_shintarou,4,854 +1340376,murata_himeko,4,854 +1544890,allister_(pokemon),4,854 +87516,cure_white,4,853 +1829230,octoling_girl,4,853 +1267895,ayane_(doa),4,851 +452145,miyanaga_saki,4,851 +487224,kanbaru_suruga,4,851 +890228,alisa_(girls_und_panzer),4,851 +1478519,cu_chulainn_(caster)_(fate),4,851 +1304346,yagen_toushirou,4,851 +1479891,rimuru_tempest,4,851 +1427681,luoxiaohei,4,851 +1572068,cerberus_(helltaker),4,851 +602083,laura_bodewig,4,849 +606793,alastor_(shakugan_no_shana),4,848 +416104,eva_02,4,848 +461883,chikorita,4,848 +1630999,hiyou_(kancolle),4,848 +557902,priest_(ragnarok_online),4,847 +1243506,magical_ruby,4,847 +411757,roy_(fire_emblem),4,847 +425769,leafeon,4,847 +717114,kasumigaoka_utaha,4,847 +1644982,curren_chan_(umamusume),4,847 +1246632,monomi_(danganronpa),4,846 +1537880,dimitri_alexandre_blaiddyd,4,845 +1627523,bradamante_(fate),4,845 +520564,lucy_heartfilia,4,844 +588022,cecilia_alcott,4,844 +1275714,arare_(kancolle),4,844 +381743,yumehara_nozomi,4,843 +652455,maou_(maoyuu),4,843 +712653,kondou_taeko,4,843 +1631178,mikazuki_(kancolle),4,842 +1682834,matikane_tannhauser_(umamusume),4,842 +437349,garchomp,4,841 +877404,yokoyama_nao,4,840 +1631405,tanikaze_(kancolle),4,840 +1412894,tsurumaki_kokoro,4,840 +1584990,arona_(blue_archive),4,840 +1592675,bianca_(dq5),4,838 +1631297,samuel_b._roberts_(kancolle),4,837 +1578300,taihou_(enraptured_companion)_(azur_lane),4,837 +1733431,murasame_kai_ni_(kancolle),4,836 +1631290,sagiri_(kancolle),4,836 +1792537,zabaniyya_(housamo),4,836 +1533059,dorothea_arnault,4,836 +662826,himejima_akeno,4,835 +1631170,matsuwa_(kancolle),4,834 +1439994,akashi_(azur_lane),4,833 +1525557,nanami_kento,4,832 +1551985,sirius_(azure_horizons)_(azur_lane),4,832 +1222099,nanao_yuriko,4,830 +1551455,silence_(arknights),4,830 +445935,flareon,4,829 +623899,shirabe_ako,4,829 +382135,reinforce_zwei,4,828 +467599,takoluka,4,828 +1270627,jouga_maya,4,828 +1327418,maria_cadenzavna_eve,4,825 +1205702,kirishima_touka,4,825 +1560591,yui_(princess_connect!),4,825 +1345441,asahina_mirai,4,825 +1572071,justice_(helltaker),4,825 +1645715,zero_(mega_man),4,824 +1239636,inumuta_houka,4,824 +1605760,iori_(blue_archive),4,824 +1285682,iroha_(samurai_spirits),4,823 +1644965,air_groove_(umamusume),4,823 +691588,pit_(kid_icarus),4,822 +457596,diego_brando,4,822 +1279056,revy_(black_lagoon),4,821 +1124739,angela_balzac,4,821 +1515527,izumi_mei,4,821 +14172,rainbow_mika,4,820 +398745,lambdadelta,4,820 +420074,izayoi_aki,4,820 +1528909,corrin_(fire_emblem)_(male),4,819 +1631288,sado_(kancolle),4,818 +1536980,zara_(poolside_coincidence)_(azur_lane),4,818 +1644973,narita_brian_(umamusume),4,817 +1631002,hornet_(kancolle),4,817 +1390755,cosmog,4,816 +1263716,kiss-shot_acerola-orion_heart-under-blade,4,815 +1247199,braixen,4,815 +1630508,asakaze_(kancolle),4,815 +1571010,takasaki_yuu,4,815 +507427,anegasaki_nene,4,814 +1572599,rosmontis_(arknights),4,813 +1753908,goldenglow_(arknights),4,812 +439179,mohammed_avdol,4,811 +1291135,elphelt_valentine,4,811 +8711,prinny,4,810 +654784,lord_el-melloi_ii,4,810 +435392,boa_hancock,4,809 +628333,yumi_(senran_kagura),4,809 +1293670,yamada_elf,4,809 +536735,yuuki_juudai,4,807 +666040,takamori_aiko,4,807 +1351075,yunyun_(konosuba),4,807 +176585,yamagishi_fuuka,4,806 +50896,pichu,4,806 +429524,mudkip,4,806 +1408788,brown_bear_(kemono_friends),4,806 +434747,kira_yoshikage,4,805 +1630704,harukaze_(kancolle),4,805 +1439976,kisaragi_(azur_lane),4,805 +1353706,mumei_(kabaneri),4,804 +1367142,litten,4,804 +487247,araragi_tsukihi,4,803 +711467,kamukura_izuru,4,803 +1462595,andira_(granblue_fantasy),4,803 +1631293,sakawa_(kancolle),4,802 +1369698,hau_(pokemon),4,801 +378592,usada_hikaru,4,799 +400139,kaiou_michiru,4,799 +1790620,clumsy_nun_(diva),4,799 +1760945,kuki_shinobu,4,799 +555676,makoto_(street_fighter),4,798 +538729,cure_moonlight,4,798 +1629426,mysterious_heroine_x_(fate),4,798 +1765868,jeanne_d'arc_alter_(avenger)_(third_ascension)_(fate),4,798 +1506004,amagi_(azur_lane),4,798 +1628204,momoi_(blue_archive),4,798 +1768617,scathach_(piercing_bunny)_(fate),4,794 +668055,kohinata_miku,4,793 +1628203,midori_(blue_archive),4,793 +414192,rx-78-2,4,792 +436529,toon_link,4,792 +1304942,female_saniwa_(touken_ranbu),4,792 +1443456,takeda_harumi_(shiromanta),4,792 +616166,caitlyn_(league_of_legends),4,791 +1374971,female_protagonist_(pokemon_go),4,791 +1420943,tennouji_rina,4,791 +684942,garry_(ib),4,790 +713599,koyama_yuzu,4,790 +1302247,sawamura_spencer_eriri,4,790 +1695265,vert_(neptune_series),4,789 +1644990,king_halo_(umamusume),4,789 +1846972,lucy_(cyberpunk),4,789 +1764432,jeanne_d'arc_(third_ascension)_(fate),4,788 +1252365,calem_(pokemon),4,787 +1270628,natsu_megumi,4,787 +1472931,y'shtola_rhul,4,786 +664518,kobayakawa_sae,4,786 +390798,eva_01,4,783 +462517,yamabuki_inori,4,783 +1407120,humboldt_penguin_(kemono_friends),4,783 +1456294,admiral_graf_spee_(azur_lane),4,783 +1233044,yuuki_haru,4,782 +420577,shampoo_(ranma_1/2),4,781 +455510,cure_peach,4,781 +1432652,jack-o'_valentine,4,781 +1578189,atago_(stunning_speedster)_(azur_lane),4,781 +1398095,hinatsuru_ai,4,780 +437875,takei_hisa,4,779 +1452666,brynhildr_(fate),4,779 +664499,hino_akane_(idolmaster),4,778 +1627556,edmond_dantes_(fate),4,778 +701389,sonia_nevermind,4,777 +1579913,yamato_(one_piece),4,777 +1404427,tsuchinoko_(kemono_friends),4,776 +1569874,yuni_(princess_connect!),4,776 +1561721,ichikawa_hinana,4,776 +1211856,kiki_(majo_no_takkyuubin),4,775 +1419237,tanned_cirno,4,775 +1405052,moose_(kemono_friends),4,775 +1600783,ryoumen_sukuna_(jujutsu_kaisen),4,775 +1379601,guzma_(pokemon),4,773 +765367,chrom_(fire_emblem),4,771 +1593833,crewmate_(among_us),4,771 +16164,celes_chere,4,770 +545377,pannacotta_fugo,4,770 +1680386,senji_muramasa_(fate),4,770 +1645001,narita_taishin_(umamusume),4,770 +1489740,aki_rosenthal,4,770 +633080,takakura_himari,4,769 +1306594,ichigo_hitofuri,4,769 +1645009,super_creek_(umamusume),4,769 +1637361,pyra_(pro_swimmer)_(xenoblade),4,769 +1416553,maruyama_aya,4,768 +1634345,izuna_(blue_archive),4,768 +664409,sajo_yukimi,4,767 +1388311,elizabeth_bathory_(brave)_(fate),4,767 +1768610,saber_alter_(ver._shinjuku_1999)_(fate),4,767 +1701951,arataki_itto,4,765 +1766600,abigail_williams_(third_ascension)_(fate),4,764 +1667213,m200_(girls'_frontline),4,764 +9881,meer_campbell,4,763 +702015,matoi_(pso2),4,763 +693236,ibuki_(street_fighter),4,762 +601752,milla_maxwell,4,762 +664406,natalia_(idolmaster),4,762 +1462589,zooey_(granblue_fantasy),4,762 +1522437,feater_(arknights),4,762 +1589614,pochita_(chainsaw_man),4,762 +1675004,elysia_(honkai_impact),4,762 +381201,konpaku_youki,4,761 +14899,yamamura_sadako,4,761 +1245116,ri-class_heavy_cruiser,4,761 +1471118,roon_(azur_lane),4,761 +668312,senkawa_chihiro,4,760 +1394776,acerola_(pokemon),4,760 +1475191,aoba_moca,4,760 +790426,ara_haan,4,759 +1346609,beatrix_(granblue_fantasy),4,759 +1667171,g36_(girls'_frontline),4,759 +1705709,irene_(arknights),4,759 +700633,ene_(kagerou_project),4,757 +1629302,gawain_(fate),4,757 +1259432,oomori_yuuko,4,757 +1505470,galo_thymos,4,757 +1624414,neru_(blue_archive),4,757 +1447950,nearl_(arknights),4,756 +1591026,pneuma_(xenoblade),4,756 +1572332,helltaker_(character),4,756 +1337529,mikko_(girls_und_panzer),4,755 +1782427,bb_(swimsuit_mooncancer)_(second_ascension)_(fate),4,755 +1706706,toutetsu_yuuma,4,755 +1257345,harime_nui,4,754 +1631233,nelson_(kancolle),4,754 +1784572,abigail_williams_(swimsuit_foreigner)_(third_ascension)_(fate),4,754 +506315,yumeko_(touhou),4,753 +428827,trish_una,4,751 +1631216,nagara_(kancolle),4,751 +1435684,merlin_(fate/prototype),4,751 +1398097,sora_ginko,4,750 +1538828,ingrid_brandl_galatea,4,749 +1587911,tomimi_(arknights),4,749 +1790903,lisbeth_(sao),4,748 +1643688,azusa_(blue_archive),4,748 +1657252,pomu_rainpuff,4,748 +1249877,iori_rinko,4,747 +4858,chocobo,4,746 +419659,rita_mordio,4,745 +552918,kaine_(nier),4,743 +1573721,st._louis_(luxurious_wheels)_(azur_lane),4,743 +396395,naoe_riki,4,742 +662005,mifune_miyu,4,742 +1440255,yuudachi_(azur_lane),4,742 +1531303,swire_(arknights),4,742 +597426,eirika_(fire_emblem),4,741 +427882,bazett_fraga_mcremitz,4,740 +423092,dead_master,4,740 +708151,kido_tsubomi,4,740 +1515003,rena_erindel,4,739 +1246940,matoba_risa,4,739 +1420954,nakasu_kasumi,4,739 +1480691,platelet_(hataraku_saibou),4,739 +432714,trafalgar_law,4,738 +1441359,shoukaku_(azur_lane),4,738 +1674016,manya_(dq4),4,737 +464859,sailor_saturn,4,737 +693559,ingo_(pokemon),4,737 +717909,vi_(league_of_legends),4,737 +1586655,eunectes_(arknights),4,737 +1667329,oberon_(fate),4,737 +11594,lina_inverse,4,736 +1304907,gokotai,4,736 +1657250,finana_ryugu,4,736 +1644995,meisho_doto_(umamusume),4,735 +1597904,shishio_chris,4,735 +1526525,jill_stingray,4,734 +1783171,meltryllis_(swimsuit_lancer)_(second_ascension)_(fate),4,734 +672299,oshino_ougi,4,733 +1630639,enemy_naval_mine_(kancolle),4,733 +1310847,hunter_(bloodborne),4,733 +1711621,master_3_(housamo),4,733 +1528128,himeno_(chainsaw_man),4,733 +254440,kirlia,4,732 +432818,hirose_koichi,4,732 +680146,mary_(ib),4,732 +712651,isobe_noriko,4,732 +1305420,shokudaikiri_mitsutada,4,732 +1781830,jeanne_d'arc_(swimsuit_archer)_(first_ascension)_(fate),4,732 +1627248,shun_(blue_archive),4,732 +400328,okita_sougo,4,731 +1228013,regina_(dokidoki!_precure),4,731 +1631231,natori_(kancolle),4,730 +1527683,yamper,4,730 +1538944,sussurro_(arknights),4,730 +1627531,carmilla_(fate),4,727 +1413408,small-clawed_otter_(kemono_friends),4,727 +402521,meta_knight,4,726 +1344498,vane_(granblue_fantasy),4,726 +1663193,white_rabbit_(alice_in_wonderland),4,725 +1237385,akaboshi_koume,4,725 +1522750,projekt_red_(arknights),4,724 +1478614,wakan_tanka,4,723 +1496206,kuzuha_(nijisanji),4,723 +1504965,hagoromo_lala,4,723 +1626978,reisen_(touhou_bougetsushou),4,722 +1305382,kogitsunemaru,4,722 +1627732,paul_bunyan_(fate),4,722 +1431868,nitocris_(swimsuit_assassin)_(fate),4,721 +1627625,lavinia_whateley_(fate),4,720 +716715,cure_heart,4,719 +1299400,haruno_haruka,4,719 +1755026,fujimaru_ritsuka_(male)_(polar_chaldea_uniform),4,719 +1240487,yusa_kozue,4,718 +1400058,satanichia_kurumizawa_mcdowell,4,718 +1631012,i-13_(kancolle),4,718 +1505029,leonardo_da_vinci_(rider)_(fate),4,718 +935914,kazami_yuuka_(pc-98),4,717 +520900,sf-a2_miki,4,716 +1631108,kikuzuki_(kancolle),4,716 +1468152,roboco-san,4,716 +1261730,elesis_(elsword),4,715 +593801,cure_rhythm,4,714 +1386435,yumeno_himiko,4,712 +1708017,sirius_(scorching-hot_seirios)_(azur_lane),4,712 +1281005,naomi_(girls_und_panzer),4,711 +742395,toudou_yurika,4,711 +1479269,tomioka_giyuu,4,711 +1597903,ryugasaki_rene,4,711 +1665751,t-head_trainer,4,711 +1447393,alina_gray,4,710 +462261,nikka_edvardine_katajainen,4,709 +1765330,elizabeth_bathory_(first_ascension)_(fate),4,708 +1496591,nikaidou_saki,4,708 +1693731,mash_kyrielight_(swimsuit_of_perpetual_summer),4,707 +1667168,dinergate_(girls'_frontline),4,707 +422506,erika_(pokemon),4,706 +1631249,okinami_(kancolle),4,706 +1443050,zuikaku_(azur_lane),4,706 +1631262,perth_(kancolle),4,706 +1790618,froggy_nun_(diva),4,706 +1665128,gorou_(genshin_impact),4,706 +566218,platinum_the_trinity,4,705 +1791907,utsumi_erice,4,705 +644034,kariya_masaki,4,704 +1386439,iruma_miu,4,704 +1477969,sister_cleaire,4,704 +1272430,isolated_island_oni,4,703 +1646429,fukuda_haru,4,701 +391387,akita_neru,4,700 +516743,lance_(pokemon),4,700 +523901,shinonome_nano,4,700 +1237658,error_musume,4,699 +1627167,stheno_(fate),4,698 +1399945,tanya_degurechaff,4,698 +1644996,mejiro_dober_(umamusume),4,698 +1758613,ui_(blue_archive),4,698 +1229736,satake_minako,4,697 +1528912,takumi_(fire_emblem),4,697 +1676518,thoma_(genshin_impact),4,697 +1631044,irako_(kancolle),4,695 +1786499,artoria_caster_(second_ascension)_(fate),4,695 +1762593,kirisawa_juuzou_(character),4,694 +1305340,morgana_(persona_5),4,694 +1533069,rhea_(fire_emblem),4,694 +1555021,sei_shounagon_(fate),4,694 +1386133,ogata_hyakunosuke,4,693 +1755030,fujimaru_ritsuka_(female)_(polar_chaldea_uniform),4,691 +1276392,otokura_yuuki,4,689 +1401541,izayoi_liko,4,689 +1459805,yukoku_kiriko,4,689 +559713,black_heart,4,687 +1346345,takimoto_hifumi,4,687 +1441569,yuri_(doki_doki_literature_club),4,686 +1644984,fine_motion_(umamusume),4,686 +1644976,admire_vega_(umamusume),4,686 +1630689,grecale_(kancolle),4,686 +1571004,shibuya_kanon,4,686 +1452677,semiramis_(fate),4,685 +1627797,wu_zetian_(fate),4,685 +1607938,getou_suguru,4,684 +376441,arle_nadja,4,683 +664614,ryuzaki_kaoru,4,683 +1797173,hyakumantenbara_salome,4,683 +1619673,puru-see_(hoshizuki_(seigetsu)),4,682 +1152270,ibuki_tsubasa,4,681 +1227600,mochizuki_anna,4,681 +1275005,ousaka_shizuku,4,681 +1782428,bb_(swimsuit_mooncancer)_(third_ascension)_(fate),4,679 +1693037,le_malin_(listless_lapin)_(azur_lane),4,679 +1768854,mysterious_heroine_x_alter_(first_ascension)_(fate),4,678 +1631348,shinshuu_maru_(kancolle),4,678 +480982,asbel_lhant,4,677 +1316228,nakagawa_natsuki,4,677 +1667164,g41_(girls'_frontline),4,677 +404920,sage_(dq3),4,676 +1331206,kawakami_mai,4,676 +1423942,eris_greyrat,4,676 +1560517,utage_(arknights),4,676 +1405059,sand_cat_(kemono_friends),4,675 +1680295,mika_(blue_archive),4,675 +664407,himekawa_yuki,4,674 +1631118,kishinami_(kancolle),4,674 +1285963,alena_(dq4),4,672 +1645008,smart_falcon_(umamusume),4,672 +497689,cheria_barnes,4,671 +1631097,kasuga_maru_(kancolle),4,671 +1432300,yatadera_narumi,4,669 +1387122,mordred_(swimsuit_rider)_(fate),4,667 +1529378,sakata_kintoki_(fate),4,666 +1408392,golden_snub-nosed_monkey_(kemono_friends),4,666 +1780213,hina_(swimsuit)_(blue_archive),4,666 +1875916,tiki_(adult)_(fire_emblem),4,665 +1386436,amami_rantarou,4,664 +548087,hasegawa_kobato,4,663 +1257848,hoshimiya_kate,4,663 +1335159,sugimoto_saichi,4,663 +596743,fukawa_touko,4,662 +1476820,yozora_mel,4,662 +1789595,saijo_juri,4,661 +1327917,yuel_(granblue_fantasy),4,660 +1460549,nekomiya_hinata,4,660 +688953,igarashi_kyoko,4,658 +1639090,maya_kai_ni_(kancolle),4,658 +1588338,tomoe_gozen_(swimsuit_saber)_(fate),4,658 +1657407,blue_poison_(shoal_beat)_(arknights),4,658 +1856336,hasumi_(gym_uniform)_(blue_archive),4,656 +1598223,kayoko_(blue_archive),4,655 +1434774,uehara_himari,4,654 +1344209,roxy_migurdia,4,653 +1837736,saren_(summer)_(princess_connect!),4,653 +1485459,jean_bart_(azur_lane),4,653 +713347,katagiri_sanae,4,652 +1440285,queen_elizabeth_(azur_lane),4,652 +1667205,9a-91_(girls'_frontline),4,651 +1479271,rengoku_kyoujurou,4,650 +1386290,keebo,4,649 +1599618,whislash_(arknights),4,646 +971934,vampy,4,645 +1639099,naganami_kai_ni_(kancolle),4,644 +1326283,jeanne_d'arc_(granblue_fantasy),4,643 +1644991,matikanefukukitaru_(umamusume),4,643 +1645010,sweep_tosho_(umamusume),4,642 +879608,toyokawa_fuka,4,641 +1387119,kiyohime_(swimsuit_lancer)_(fate),4,641 +1836895,karyl_(summer)_(princess_connect!),4,641 +1596254,razor_(genshin_impact),4,640 +1480768,siro_(dennou_shoujo_youtuber_siro),4,639 +1491126,tsuyuri_kanao,4,637 +1667169,negev_(girls'_frontline),4,636 +1440310,eldridge_(azur_lane),4,636 +1284942,midway_princess,4,635 +1420829,matsubara_kanon,4,633 +1541801,magallan_(arknights),4,633 +1782915,ijichi_nijika,4,632 +1411715,okusawa_misaki,4,628 +1875918,tiki_(young)_(fire_emblem),4,627 +1790615,spicy_nun_(diva),4,625 +1067206,hayasaka_mirei,4,623 +1781831,jeanne_d'arc_(swimsuit_archer)_(second_ascension)_(fate),4,623 +1420746,udagawa_tomoe,4,621 +1445024,shirasagi_chisato,4,621 +1678878,la_pluma_(arknights),4,619 +1265247,sato_shin,4,617 +1491428,takamiya_rion,4,612 +1623487,crypto_(apex_legends),4,612 +1533772,uzuki_sayaka,4,607 1533771,kumada_masaru,4,600 \ No newline at end of file diff --git a/Christmas/UI/AutoComplete.py b/RUNA/UI/AutoComplete.py similarity index 81% rename from Christmas/UI/AutoComplete.py rename to RUNA/UI/AutoComplete.py index b077c88..1fd38e1 100644 --- a/Christmas/UI/AutoComplete.py +++ b/RUNA/UI/AutoComplete.py @@ -1,16 +1,16 @@ -from discord import AutocompleteContext - -from Christmas.SearchEngine.Snowball import Snowball - - -async def Guild_Autocomplete(ctx: AutocompleteContext): - snowball = Snowball() - query = ctx.value - print(query) - result = await snowball.query_guild(query) - results = [] - for i in result["hits"]: - gname = i["guild_name"] - gid = i["guild_id"] - results.append(f"{gname} ({gid})") +from discord import AutocompleteContext + +from RUNA.Database.MeiliSearch import Snowball + + +async def Guild_Autocomplete(ctx: AutocompleteContext): + snowball = Snowball() + query = ctx.value + print(query) + result = await snowball.query_guild(query) + results = [] + for i in result["hits"]: + gname = i["guild_name"] + gid = i["guild_id"] + results.append(f"{gname} ({gid})") return results \ No newline at end of file diff --git a/Christmas/UI/Buttons.py b/RUNA/UI/Buttons.py similarity index 87% rename from Christmas/UI/Buttons.py rename to RUNA/UI/Buttons.py index de88dec..2a21252 100644 --- a/Christmas/UI/Buttons.py +++ b/RUNA/UI/Buttons.py @@ -1,76 +1,80 @@ -import random -from discord.ui import View, button -from discord import Interaction, ButtonStyle, Embed, Color, TextChannel, Forbidden, Message, Member, User, File, HTTPException - -from Christmas.UI.Embed import Mail_Embed, Arcade_Embed -from Christmas.Database import database -from Christmas.SearchEngine.Snowball import Snowball -from Christmas.config import ChristmasConfig - -from koreanbots import KoreanbotsRequester - -class Mail_Confirm_Button(View): - def __init__(self, editmode: bool, recive_user: Member, title: str, description: str, *args, **kwargs): - self.editmode = editmode - self.recive_user = recive_user - self.title = title - self.description = description - super().__init__(timeout=None) - - @button(label="전송", style=ButtonStyle.green, custom_id="mail_send") - async def send(self, button, interaction: Interaction): - await interaction.response.defer() - if await database.get_guild(interaction.guild.id) == None: - await interaction.edit_original_response(embed=Embed(title="❌ 에러!", description="서버가 가입되어있지 않아요! 서버에 가입해주세요!"), view=None) - return - else: - if self.editmode == True: - await database.update_inserted_mail(self.recive_user.id, interaction.user.id, self.title, self.description) - await interaction.edit_original_response(embed=Mail_Embed.mail_edit_sended(receive_user=self.recive_user), view=None) - else: - await database.insert_mail(interaction.user.id, self.recive_user.id, interaction.user.name, self.title, self.description) - await interaction.edit_original_response(embed=Mail_Embed.mail_sended(receive_user=self.recive_user), view=None) - - @button(label="취소", style=ButtonStyle.red, custom_id="mail_cancel") - async def cancel(self, button, interaction: Interaction): - await interaction.response.defer() - await interaction.edit_original_response(embed=Embed(title="✅ 전송취소!", description="편지 전송을 취소했어요!"), view=None) - -class Arcade_Register_Agree(View): - def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs, timeout=None) - - @button(label="동의", style=ButtonStyle.green, custom_id="arcade_register_agree") - async def agree(self, button, interaction: Interaction): - await interaction.response.defer() - try: - region = random.choice(["south", "north"]) - await database.register_arcade(interaction.guild.id, interaction.guild.name, region) - await Snowball.register_guild(interaction.guild.id, interaction.guild.name, region) - except Exception as e: - print(e) - await interaction.edit_original_response(embed=Arcade_Embed.register_failed(), view=None) - return - await interaction.edit_original_response(embed=Arcade_Embed.register_sucessfull(), view=None) - - @button(label="거절", style=ButtonStyle.red, custom_id="arcade_register_disagree") - async def disagree(self, button, interaction: Interaction): - await interaction.response.defer() - await interaction.edit_original_response(embed=Arcade_Embed.register_cancel(), view=None) - -class Recommanded(View): - def __init__(self, *args, **kwargs): - self.config = ChristmasConfig() - super().__init__(*args, **kwargs, timeout=None) - - @button(label="추천완료", style=ButtonStyle.green, custom_id="arcade_recommanded") - async def finished(self, button, interaction: Interaction): - await interaction.response.defer() - data = await KoreanbotsRequester(self.config.KOREANBOT_TOKEN).get_bot_vote(int(interaction.user.id), interaction.guild.me.id) - if data["data"]["voted"] == True: - await database.insert_guild_art_point(interaction.guild.id, 5) - await database.insert_arcade_point(interaction.guild.id, interaction.user.id) - await interaction.edit_original_response(embed=Arcade_Embed.recommend_sucess(), view=None) - else: - await interaction.edit_original_response(embed=Arcade_Embed.recommend_failed(), view=self) +import random +import os +from discord.ui import View, button +from discord import Interaction, ButtonStyle, Embed, Member +from dotenv import load_dotenv, find_dotenv + +from RUNA.UI.Embed import Mail_Embed, Arcade_Embed +from RUNA.Database import database +from RUNA.Database.MeiliSearch import Snowball + +from koreanbots import KoreanbotsRequester + + +load_dotenv(find_dotenv()) + +class Mail_Confirm_Button(View): + def __init__(self, editmode: bool, recive_user: Member, title: str, description: str, *args, **kwargs): + self.editmode = editmode + self.recive_user = recive_user + self.title = title + self.description = description + super().__init__(timeout=None) + + @button(label="전송", style=ButtonStyle.green, custom_id="mail_send") + async def send(self, button, interaction: Interaction): + await interaction.response.defer() + if await database.get_guild(interaction.guild.id) == None: + await interaction.edit_original_response(embed=Embed(title="❌ 에러!", description="서버가 가입되어있지 않아요! 서버에 가입해주세요!"), view=None) + return + else: + if self.editmode == True: + await database.update_inserted_mail(self.recive_user.id, interaction.user.id, self.title, self.description) + await interaction.edit_original_response(embed=Mail_Embed.mail_edit_sended(receive_user=self.recive_user), view=None) + else: + await database.insert_mail(interaction.user.id, self.recive_user.id, interaction.user.name, self.title, self.description) + await interaction.edit_original_response(embed=Mail_Embed.mail_sended(receive_user=self.recive_user), view=None) + + @button(label="취소", style=ButtonStyle.red, custom_id="mail_cancel") + async def cancel(self, button, interaction: Interaction): + await interaction.response.defer() + await interaction.edit_original_response(embed=Embed(title="✅ 전송취소!", description="편지 전송을 취소했어요!"), view=None) + +class Arcade_Register_Agree(View): + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs, timeout=None) + + @button(label="동의", style=ButtonStyle.green, custom_id="arcade_register_agree") + async def agree(self, button, interaction: Interaction): + await interaction.response.defer() + try: + region = random.choice(["south", "north"]) + await database.register_arcade(interaction.guild.id, interaction.guild.name, region) + await Snowball.register_guild(interaction.guild.id, interaction.guild.name, region) + except Exception as e: + print(e) + await interaction.edit_original_response(embed=Arcade_Embed.register_failed(), view=None) + return + await interaction.edit_original_response(embed=Arcade_Embed.register_sucessfull(), view=None) + + @button(label="거절", style=ButtonStyle.red, custom_id="arcade_register_disagree") + async def disagree(self, button, interaction: Interaction): + await interaction.response.defer() + await interaction.edit_original_response(embed=Arcade_Embed.register_cancel(), view=None) + +class Recommanded(View): + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs, timeout=None) + + @button(label="추천완료", style=ButtonStyle.green, custom_id="arcade_recommanded") + async def finished(self, button, interaction: Interaction): + await interaction.response.defer() + data = await KoreanbotsRequester(os.getenv("KOREANBOT_TOKEN")).get_bot_vote(int(interaction.user.id), interaction.guild.me.id) + if data["data"]["voted"] == True: + if database. + await database.insert_guild_art_point(interaction.guild.id, 5) + await database.insert_arcade_point(interaction.guild.id, interaction.user.id) + await interaction.edit_original_response(embed=Arcade_Embed.recommend_sucess(), view=None) + else: + await interaction.edit_original_response(embed=Arcade_Embed.recommend_failed(), view=self) \ No newline at end of file diff --git a/Christmas/UI/Embed.py b/RUNA/UI/Embed.py similarity index 82% rename from Christmas/UI/Embed.py rename to RUNA/UI/Embed.py index 0a5e334..2bc5691 100644 --- a/Christmas/UI/Embed.py +++ b/RUNA/UI/Embed.py @@ -1,374 +1,392 @@ -import wavelink -import typing -import psutil -from typing import Any, Optional -from discord import Embed, Colour, Embed, Member, Guild -from discord.types.embed import EmbedType -from datetime import datetime -from korcen import korcen - - -start_time = datetime.now() - -class ChristmasEmbed(Embed): - def __init__(self, *, - color: int | Colour | None = 0xf4f9ff, - title: Any | None = None, - type: EmbedType = "rich", - url: Any | None = None, - description: Any | None = None, - timestamp: datetime | None = None, - ): - super().__init__( - color=color, - title=title, - type=type, - url=url, - description=description, - timestamp=timestamp, - ) - - def set_footer(self, *, text: Any | None = "크돌이⛄", icon_url: Any | None = "https://discord.com/assets/6dbfff5aae6b1de2b83f.svg") -> None: - super().set_footer(text=text) - -class Default_Embed: - - @staticmethod - def default_join_embed(): - embed = ChristmasEmbed(title="🎉 크돌이를 추가해주셔서 감사해요!", description="봇을 사용하기 전에 이 서버의 관리자라면 다음의 절차를 따라주세요!") - embed.add_field(name="1. 약관 동의", value="다음의 약관을 읽고 ``/서버 가입``명령어를 실행해주세요", inline=False) - embed.add_field(name="1.1 약관", value="크돌이는 음악 재생과 명령어 전송을 위해 사용자가 쓴 커맨드를 확인할수 있어요, 또한 그림생성은 어떤 결과물이 나오든 크돌이는 책임지지 않아요!") - embed.add_field(name="2. 설정", value="``/설정`` 명령어를 통해 크돌이의 여러 기능을 설정할수 있어요!", inline=False) - embed.add_field(name="3. 도움말", value="``/도움말`` 명령어를 통해 크돌이의 명령어를 확인할 수 있어요!", inline=False) - embed.set_footer() - return embed - - - @staticmethod - def register_sucess(): - embed = ChristmasEmbed(title="🎉 가입 성공!", description="서버가입을 성공했어요!") - embed.add_field(name="안내", value="이제 크돌이를 즐겨보세요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def register_failed(): - embed = ChristmasEmbed(title="❌ 가입 실패!", description="서버가입을 실패했어요!") - embed.add_field(name="안내", value="알수없는 오류로 인해 가입에 실패했어요! 이 현상이 지속된다면 서비스 서버에 문의해주세요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def already_register(): - embed = ChristmasEmbed(title="❌ 가입 실패!", description="이미 가입된 서버에요!") - embed.add_field(name="안내", value="이미 가입된 서버에요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def cooldown(sec): - return "이 명령어는 " + f"``{round(sec, 2)}``" + "초 뒤에 다시 사용할 수 있어요!" - - @staticmethod - def leave_sucess(): - embed = ChristmasEmbed(title="🎉 탈퇴 성공!", description="서버에서 탈퇴했어요!") - embed.add_field(name="안내", value="크돌이를 이용해주셔서 감사해요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def help(): - embed = ChristmasEmbed(title="🎉 크돌이 도움말", description="크리스마스를 즐겨보세요!") - embed.add_field(name="``/도움말``", value="크돌이의 도움말을 확인해요!", inline=False) - embed.add_field(name="``/서버가입``", value="이 서버에 크돌이를 가입해요!", inline=False) - embed.add_field(name="``/봇정보``", value="크돌이의 정보를 확인해요!", inline=False) - embed.add_field(name="**편지**", value="``/편지 보내기 (유저)``: 유저에게 편지를 보내요!\n``/편지 확인``: 받은 편지를 확인해요!", inline=False) - embed.add_field(name="**그림**", value="``/그림 생성``: 크돌이가 그림을 그려줘요!\n``/그림 분석``: 그림을 분석해요!", inline=False) - embed.add_field(name="**음악**", value="``/음악 재생``: 크돌이가 음악을(LOFI) 재생해요!\n``/음악 정지``: 크돌이가 음악을 정지해요!\n``/음악 설정 (설정이름) (값)``: 음악 설정을 변경해요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def recommend(): - embed = ChristmasEmbed(title="🎉 크돌이를 추천해주세요!", description="크돌이를 추천해주세요!") - embed.add_field(name="안내", value="크돌이를 추천해주시면 크돌이가 더욱더 발전할 수 있어요!\n 아래의 추천링크를 통해 크돌이를 추천하였다면 ``추천완료``버튼을 눌러주세요", inline=False) - embed.add_field(name="추천 링크", value="https://koreanbots.dev/bots/974665354573930507", inline=False) - embed.set_footer() - return embed - - @staticmethod - def BotInfo(gpuserver: typing.Dict[str, typing.Any], bot) -> Embed: - current_time = datetime.now() - uptime = current_time - start_time - uptime = str(uptime).split(".")[0] - """ - gpuserver: [system_memory_usage,cuda_memory_usage,oom_count] - """ - embed = Embed(title="**봇 정보**", description="크돌이의 정보에요!") - embed.add_field(name="**봇 개요**", value=f"봇 ID: {bot.user.id}\n봇 버전: 1.3.0\n가동시간: {str(uptime)}\n개발자: RunaLab,PvPConnect", inline=True) - orin = psutil.virtual_memory().used - orin = orin / 1024 / 1024 / 1024 - if gpuserver == None or gpuserver["status"] == "offline": - embed.add_field(name="**봇 자원**", value=f"GPU서버1 메모리 사용량: **오류**\nGPU서버1 CUDA 메모리 사용량: **오류**\nGPU서버1 메모리 오류 횟수: **오류**\n 현재 샤드 메모리 사용량:{round(orin)}GB", inline=False) - else: - mem_usage = gpuserver["system_memory_usage"] - cuda_memory_usage = gpuserver["cuda_memory_usage"] - oom_count = gpuserver["oom_count"] - embed.add_field(name="**봇 자원**", value=f"현재 샤드 메모리 사용량: {round(orin)}GB\n\nGPU서버1 메모리 사용량: {mem_usage}GB/128GB\nGPU서버1 GPU 메모리 사용량: {cuda_memory_usage}GB/80GB\nGPU서버1 메모리 오류 횟수: {oom_count}", inline=False) - embed.add_field(name="**봇 통계**", value=f"🏘️ **{len(bot.guilds)}**개의 서버에서 봇을 사용중이에요!\n🤖 **{len(bot.users)}**명의 유저와 함께하는 중이에요!", inline=False) - embed.add_field(name="**봇 핑**", value=f"🏓 **디스코드 게이트웨이 핑**: {round(bot.latency * 1000)}ms") - #if APIlatency is None: - # embed.add_field(name="**봇 핑**", value=f"🏓 **디스코드 게이트웨이 핑**: {round(bot.latency * 1000)}ms\n🏓 **AI 게이트웨이 핑**: 오류", inline=False) - #else: - # embed.add_field(name="**봇 핑**", value=f"🏓 **디스코드 게이트웨이 핑**: {round(bot.latency * 1000)}ms\n🏓 **AI 게이트웨이 핑**: {APIlatency}ms", inline=False) - embed.set_footer() - return embed - -class Mail_Embed: - - @staticmethod - def mail_confirm(title: str, description: str, receive_user: Member) -> Embed: - embed = ChristmasEmbed(title="⚠️ 전송전 확인", description="편지를 정말로 전송하시겠습니까?") - embed.add_field(name="⚠️ 주의사항 ⚠️", value="편지는 한 번 전송하면 한번의 수정 기회 이후에는 취소할 수 없어요!\n 내용을 잘 읽고 ``전송``버튼을 눌러주세요!", inline=False) - embed.add_field(name="받는이", value=f"{receive_user.mention}", inline=False) - embed.add_field(name="제목", value=title, inline=False) - embed.add_field(name="내용", value=description, inline=False) - embed.set_footer() - return embed - - @staticmethod - def mail_confirm_edit(title: str, description: str, receive_user: Member) -> Embed: - embed = ChristmasEmbed(title="⚠️ 수정전 확인", description="편지를 정말로 수정하시겠습니까?") - embed.add_field(name="⚠️ 주의사항 ⚠️", value="이번에 편지를 수정하면 다시는 수정할 수 없게 되요!\n 내용을 잘 읽고 ``전송``버튼을 눌러주세요!", inline=False) - embed.add_field(name="받는이", value=f"{receive_user.mention}", inline=False) - embed.add_field(name="제목", value=title, inline=False) - embed.add_field(name="내용", value=description, inline=False) - embed.set_footer() - return embed - - @staticmethod - def mail_cant_edit(): - embed = ChristmasEmbed(title="❌ 편지 수정 실패!", description="편지 수정에 실패했어요!") - embed.add_field(name="안내", value="편지는 한 번 전송하면 한번의 수정 기회 이후에는 취소하거나 수정 할 수 없어요!", inline=False) - embed.set_footer() - return embed - - - @staticmethod - def mail_sended(receive_user: Member) -> Embed: - embed = ChristmasEmbed(title="✅ 전송완료!", description="편지 전송을 완료했어요!") - embed.add_field(name="안내", value="보낸 편지는 2023년 12월 25일부터 열람 가능해요!", inline=False) - embed.add_field(name="받는이", value=f"{receive_user.mention}", inline=False) - return embed - - @staticmethod - def mail_edit_sended(receive_user: Member) -> Embed: - embed = ChristmasEmbed(title="✅ 수정완료!", description="편지 수정을 완료했어요!") - embed.add_field(name="안내", value="수정된 편지는 2023년 12월 25일부터 열람 가능해요!", inline=False) - embed.add_field(name="받는이", value=f"{receive_user.mention}", inline=False) - return embed - - @staticmethod - def mail_notfound() -> Embed: - embed = ChristmasEmbed(title="❌ 편지 없음!", description="편지가 없어요!") - embed.add_field(name="안내", value="받은 편지가 없어요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def mail_already_sended() -> Embed: - embed = ChristmasEmbed(title="❌ 편지 전송 실패!", description="이미 편지를 보냈어요!") - embed.add_field(name="안내", value="이미 편지를 보냈어요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def mail_page(data) -> Embed: - embed = ChristmasEmbed(title="📨 편지", description="편지를 확인해보세요!(욕설등 민감한 내용이 포함된 내용은 자동으로 스포일러처리되요!)") - username = data["username"] - userid = data["userid"] - title = data["title"] - description = data["content"] - if korcen.check(title) == True: - title = "||" + title + "||" - if korcen.check(description) == True: - description = "||" + description + "||" - embed.add_field(name="보낸이", value=f"{username}({userid})", inline=False) - embed.add_field(name="제목", value=title, inline=False) - embed.add_field(name="내용", value=description, inline=False) - embed.set_footer() - return embed - -class Aiart_Embed: - - @staticmethod - def failed_generate() -> Embed: - embed = ChristmasEmbed(title="❌ 그림 생성 실패!", description="그림 생성에 실패했어요!") - embed.add_field(name="안내", value="그림 생성에 실패했어요! 이 현상이 지속된다면 서비스 서버에 문의해주세요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def sucess_generate(prompt: str, remove: str) -> Embed: - embed = ChristmasEmbed(title="✅ 그림 생성 성공!", description="그림 생성에 성공했어요!") - embed.add_field(name="프롬포트", value=prompt, inline=False) - embed.add_field(name="지운 프롬포트", value=remove, inline=False) - embed.set_image(url="attachment://image.png") - embed.set_footer() - return embed - - @staticmethod - def generating() -> Embed: - embed = ChristmasEmbed(title="그림 생성중...", description="그림을 생성하는 중이에요!") - embed.add_field(name="안내", value="그림 생성에는 최대 2분이 소요될 수 있어요!(크돌이는 돈이 없어요...)", inline=False) - embed.set_footer() - return embed - - @staticmethod - def evalate(tags, rating) -> ChristmasEmbed: - if tags == None: - embed = ChristmasEmbed(name="**오류**", value="그림 분석에 실패했어요. 나중에 다시 시도해주세요", inline=False) - return embed - else: - embed = ChristmasEmbed(title="**그림 분석 완료**", description="그림 분석이 완료되었어요!") - embed.set_image(url="attachment://image.png") - embed.add_field(name="**등급**", value=f"{rating}", inline=False) - texts = "" - for tag, score in tags: - percentage = score * 100 - texts = texts + f"{tag} : {percentage:.1f}%\n" - embed.add_field(name="**분석된 요소**", value=f"{texts}", inline=False) - embed.set_footer() - return embed - - @staticmethod - def gen_nsfw(): - embed = ChristmasEmbed(title="❌ 그림 생성 실패!", description="그림 생성에 실패했어요!") - embed.add_field(name="안내", value="NSFW 채널이 아닌경우 NSFW 그림을 생성을 할수 없어요!", inline=False) - embed.set_footer() - return embed - -class Music_Embed: - - @staticmethod - def music_notenable(): - embed = ChristmasEmbed(title="❌ 음악 재생 실패!", description="음악 재생에 실패했어요!") - embed.add_field(name="안내", value="이 서버에서는 음악을 재생할수 없어요! \n만약 서버의 관리자라면 ``/설정`` 명령어로 음악 기능을 다시 활성화사킬수 있어요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def author_not_voice(): - embed = ChristmasEmbed(title="❌ 음악 재생 실패!", description="음악 재생에 실패했어요!") - embed.add_field(name="안내", value="음악을 재생하려면 음성채널에 들어가야 해요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def author_diffrent_voice(): - embed = ChristmasEmbed(title="❌ 음악 재생 실패!", description="음악 재생에 실패했어요!") - embed.add_field(name="안내", value="이미 다른 채널에 접속되어있어요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def music_play(): - embed = ChristmasEmbed(title="✅ 재생 시작!", description="LOFI 재생을 시작했어요!") - embed.set_footer() - return embed - - @staticmethod - def music_stop(): - embed = ChristmasEmbed(title="✅ 재생 정지!", description="LOFI 재생을 정지했어요!") - embed.set_footer() - return embed - - @staticmethod - def changed_christmas(): - embed = ChristmasEmbed(title="✅ 크리스마스 모드 변경!", description="크리스마스 모드를 변경했어요! 이 시간부터 25일 11시 59분까지 크리스마스 모드가 적용되요!") - embed.set_footer() - return embed - - @staticmethod - def music_setting(value: bool, settings: str): - embed = ChristmasEmbed(title="✅ 음악 설정 변경!", description="음악 설정을 변경했어요!") - if settings == "music": - if value == True: - embed.add_field(name="안내", value="이제 이 서버에서 음악을 재생할수 있어요!", inline=False) - else: - embed.add_field(name="안내", value="이제 이 서버에서 음악을 재생할수 없어요!", inline=False) - elif settings == "admin_run": - if value == False: - embed.add_field(name="안내", value="이제 이 서버에서 관리자를 제외한 사람들도 음악을 재생할수 있어요!", inline=False) - else: - embed.add_field(name="안내", value="이제 이 서버에서 관리자를 제외한 사람은 음악을 재생할수 없어요!", inline=False) - embed.set_footer() - return embed - -class Arcade_Embed: - - - @staticmethod - def register_inital(): - embed = ChristmasEmbed(title="🎉 눈싸움 등록!", description="눈싸움 등록을 시작해요!") - embed.add_field(name="안내", value="크돌이의 눈싸움은 서버대 서버로 경쟁하며 그 안의 유저들이 서로 협동하여 이뤄지는 게임이에요!\n1.눈싸움은 매일 항상 열려있어요! \n2.눈싸움은 시즌당 1달로 구성되있어요!\n3.시즌은 1주일 간격으로 준비-싸움-준비-싸움으로 구성되있어요!\n4.이 과정에서 절대로 봇을 이용한 싸움은 허락되지 않아요!\n5.눈싸움의 규정을 위반할경우 통보없이 눈싸움에서 제외될수 있어요!", inline=False) - embed.add_field(name="약관", value="다음의 약관을 읽고 동의한다면 `동의`버튼을 눌러주세요.", inline=False) - embed.set_footer() - return embed - - - @staticmethod - def register_sucessfull(): - embed = ChristmasEmbed(title="🎉 눈싸움 등록 성공!", description="눈싸움 등록을 성공했어요!") - embed.add_field(name="안내", value="이제 이 서버에서 눈싸움을 즐겨보세요!", inline=False) - embed.add_field(name="안내", value="초기금으로 ``10000 눈덩이``가 지급되었어요!") - embed.set_footer() - return embed - - @staticmethod - def register_already(): - embed = ChristmasEmbed(title="❌ 눈싸움 등록 실패!", description="눈싸움 등록에 실패했어요!") - embed.add_field(name="안내", value="이미 서버가 눈싸움에 등록되어있어요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def register_failed(): - embed = ChristmasEmbed(title="❌ 눈싸움 등록 실패!", description="눈싸움 등록에 실패했어요!") - embed.add_field(name="안내", value="알수없는 오류로 인해 눈싸움 등록에 실패했어요! 이 현상이 지속된다면 서비스 서버에 문의해주세요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def register_cancel(): - embed = ChristmasEmbed(title="❌ 눈싸움 등록 실패!", description="눈싸움 등록에 실패했어요!") - embed.add_field(name="안내", value="눈싸움 등록을 취소했어요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def static_info(guild: Guild, region: str): - region_dict = { - "south": "남쪽", - "north": "북쪽" - } - region = region_dict[region] - embed = ChristmasEmbed(title="🎉 눈싸움 정보!", description=f"{guild.name}서버의 눈싸움 정보에요!") - embed.add_field(name="진영", value=f"{region}", inline=False) - embed.add_field(name="상대진영", value=f"{region}", inline=False) - - - @staticmethod - def recommend_sucess(): - embed = ChristmasEmbed(title="🎉 추천 완료!", description="크돌이를 추천해주셔서 감사해요!") - embed.add_field(name="안내", value="크돌이는 한디리에 등록되어있어요! 한디리에서 크돌이를 추천해주시면 크돌이가 더 많은 사람들에게 알려질수 있어요!", inline=False) - embed.set_footer() - return embed - - @staticmethod - def recommend_failed(): - embed = ChristmasEmbed(title="❌ 추천 실패!", description="크돌이를 추천했는지 확인하는데 실패했어요") - embed.add_field(name="안내", value="크돌이의 추천을 확인하는데 실패했어요! 이 현상이 지속된다면 서비스 서버에 문의해주세요!", inline=False) - embed.set_footer() - return embed - \ No newline at end of file +import wavelink +import typing +import psutil +from typing import Any, Optional +from discord import Embed, Colour, Embed, Member, Guild +from discord.types.embed import EmbedType +from datetime import datetime +from korcen import korcen + +start_time = datetime.now() + + +class RunaEmbed(Embed): + def __init__(self, *, + color: int | Colour | None = 0xf4f9ff, + title: Any | None = None, + type: EmbedType = "rich", + url: Any | None = None, + description: Any | None = None, + timestamp: datetime | None = None, + ): + super().__init__( + color=color, + title=title, + type=type, + url=url, + description=description, + timestamp=timestamp, + ) + + def set_footer(self, *, text: Any | None = "루나", + icon_url: Any | None = "https://discord.com/assets/6dbfff5aae6b1de2b83f.svg") -> None: + super().set_footer(text=text) + + +class Default_Embed: + + @staticmethod + def default_join_embed(): + embed = ChristmasEmbed(title="🎉 크돌이를 추가해주셔서 감사해요!", description="봇을 사용하기 전에 이 서버의 관리자라면 다음의 절차를 따라주세요!") + embed.add_field(name="1. 약관 동의", value="다음의 약관을 읽고 ``/서버 가입``명령어를 실행해주세요", inline=False) + embed.add_field(name="1.1 약관", + value="크돌이는 음악 재생과 명령어 전송을 위해 사용자가 쓴 커맨드를 확인할수 있어요, 또한 그림생성은 어떤 결과물이 나오든 크돌이는 책임지지 않아요!") + embed.add_field(name="2. 설정", value="``/설정`` 명령어를 통해 크돌이의 여러 기능을 설정할수 있어요!", inline=False) + embed.add_field(name="3. 도움말", value="``/도움말`` 명령어를 통해 크돌이의 명령어를 확인할 수 있어요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def register_sucess(): + embed = ChristmasEmbed(title="🎉 가입 성공!", description="서버가입을 성공했어요!") + embed.add_field(name="안내", value="이제 크돌이를 즐겨보세요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def register_failed(): + embed = ChristmasEmbed(title="❌ 가입 실패!", description="서버가입을 실패했어요!") + embed.add_field(name="안내", value="알수없는 오류로 인해 가입에 실패했어요! 이 현상이 지속된다면 서비스 서버에 문의해주세요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def already_register(): + embed = ChristmasEmbed(title="❌ 가입 실패!", description="이미 가입된 서버에요!") + embed.add_field(name="안내", value="이미 가입된 서버에요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def cooldown(sec): + return "이 명령어는 " + f"``{round(sec, 2)}``" + "초 뒤에 다시 사용할 수 있어요!" + + @staticmethod + def leave_sucess(): + embed = ChristmasEmbed(title="🎉 탈퇴 성공!", description="서버에서 탈퇴했어요!") + embed.add_field(name="안내", value="크돌이를 이용해주셔서 감사해요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def help(): + embed = ChristmasEmbed(title="🎉 크돌이 도움말", description="크리스마스를 즐겨보세요!") + embed.add_field(name="``/도움말``", value="크돌이의 도움말을 확인해요!", inline=False) + embed.add_field(name="``/서버가입``", value="이 서버에 크돌이를 가입해요!", inline=False) + embed.add_field(name="``/봇정보``", value="크돌이의 정보를 확인해요!", inline=False) + embed.add_field(name="**편지**", value="``/편지 보내기 (유저)``: 유저에게 편지를 보내요!\n``/편지 확인``: 받은 편지를 확인해요!", inline=False) + embed.add_field(name="**그림**", value="``/그림 생성``: 크돌이가 그림을 그려줘요!\n``/그림 분석``: 그림을 분석해요!", inline=False) + embed.add_field(name="**음악**", + value="``/음악 재생``: 크돌이가 음악을(LOFI) 재생해요!\n``/음악 정지``: 크돌이가 음악을 정지해요!\n``/음악 설정 (설정이름) (값)``: 음악 설정을 변경해요!", + inline=False) + embed.set_footer() + return embed + + @staticmethod + def recommend(): + embed = ChristmasEmbed(title="🎉 크돌이를 추천해주세요!", description="크돌이를 추천해주세요!") + embed.add_field(name="안내", value="크돌이를 추천해주시면 크돌이가 더욱더 발전할 수 있어요!\n 아래의 추천링크를 통해 크돌이를 추천하였다면 ``추천완료``버튼을 눌러주세요", + inline=False) + embed.add_field(name="추천 링크", value="https://koreanbots.dev/bots/974665354573930507", inline=False) + embed.set_footer() + return embed + + @staticmethod + def BotInfo(gpuserver: typing.Dict[str, typing.Any], bot) -> Embed: + current_time = datetime.now() + uptime = current_time - start_time + uptime = str(uptime).split(".")[0] + """ + gpuserver: [system_memory_usage,cuda_memory_usage,oom_count] + """ + embed = Embed(title="**봇 정보**", description="크돌이의 정보에요!") + embed.add_field(name="**봇 개요**", + value=f"봇 ID: {bot.user.id}\n봇 버전: 1.3.0\n가동시간: {str(uptime)}\n개발자: RunaLab,PvPConnect", + inline=True) + orin = psutil.virtual_memory().used + orin = orin / 1024 / 1024 / 1024 + if gpuserver == None or gpuserver["status"] == "offline": + embed.add_field(name="**봇 자원**", + value=f"GPU서버1 메모리 사용량: **오류**\nGPU서버1 CUDA 메모리 사용량: **오류**\nGPU서버1 메모리 오류 횟수: **오류**\n 현재 샤드 메모리 사용량:{round(orin)}GB", + inline=False) + else: + mem_usage = gpuserver["system_memory_usage"] + cuda_memory_usage = gpuserver["cuda_memory_usage"] + oom_count = gpuserver["oom_count"] + embed.add_field(name="**봇 자원**", + value=f"현재 샤드 메모리 사용량: {round(orin)}GB\n\nGPU서버1 메모리 사용량: {mem_usage}GB/128GB\nGPU서버1 GPU 메모리 사용량: {cuda_memory_usage}GB/80GB\nGPU서버1 메모리 오류 횟수: {oom_count}", + inline=False) + embed.add_field(name="**봇 통계**", + value=f"🏘️ **{len(bot.guilds)}**개의 서버에서 봇을 사용중이에요!\n🤖 **{len(bot.users)}**명의 유저와 함께하는 중이에요!", + inline=False) + embed.add_field(name="**봇 핑**", value=f"🏓 **디스코드 게이트웨이 핑**: {round(bot.latency * 1000)}ms") + # if APIlatency is None: + # embed.add_field(name="**봇 핑**", value=f"🏓 **디스코드 게이트웨이 핑**: {round(bot.latency * 1000)}ms\n🏓 **AI 게이트웨이 핑**: 오류", inline=False) + # else: + # embed.add_field(name="**봇 핑**", value=f"🏓 **디스코드 게이트웨이 핑**: {round(bot.latency * 1000)}ms\n🏓 **AI 게이트웨이 핑**: {APIlatency}ms", inline=False) + embed.set_footer() + return embed + + +class Mail_Embed: + + @staticmethod + def mail_confirm(title: str, description: str, receive_user: Member) -> Embed: + embed = ChristmasEmbed(title="⚠️ 전송전 확인", description="편지를 정말로 전송하시겠습니까?") + embed.add_field(name="⚠️ 주의사항 ⚠️", value="편지는 한 번 전송하면 한번의 수정 기회 이후에는 취소할 수 없어요!\n 내용을 잘 읽고 ``전송``버튼을 눌러주세요!", + inline=False) + embed.add_field(name="받는이", value=f"{receive_user.mention}", inline=False) + embed.add_field(name="제목", value=title, inline=False) + embed.add_field(name="내용", value=description, inline=False) + embed.set_footer() + return embed + + @staticmethod + def mail_confirm_edit(title: str, description: str, receive_user: Member) -> Embed: + embed = ChristmasEmbed(title="⚠️ 수정전 확인", description="편지를 정말로 수정하시겠습니까?") + embed.add_field(name="⚠️ 주의사항 ⚠️", value="이번에 편지를 수정하면 다시는 수정할 수 없게 되요!\n 내용을 잘 읽고 ``전송``버튼을 눌러주세요!", + inline=False) + embed.add_field(name="받는이", value=f"{receive_user.mention}", inline=False) + embed.add_field(name="제목", value=title, inline=False) + embed.add_field(name="내용", value=description, inline=False) + embed.set_footer() + return embed + + @staticmethod + def mail_cant_edit(): + embed = ChristmasEmbed(title="❌ 편지 수정 실패!", description="편지 수정에 실패했어요!") + embed.add_field(name="안내", value="편지는 한 번 전송하면 한번의 수정 기회 이후에는 취소하거나 수정 할 수 없어요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def mail_sended(receive_user: Member) -> Embed: + embed = ChristmasEmbed(title="✅ 전송완료!", description="편지 전송을 완료했어요!") + embed.add_field(name="안내", value="보낸 편지는 2023년 12월 25일부터 열람 가능해요!", inline=False) + embed.add_field(name="받는이", value=f"{receive_user.mention}", inline=False) + return embed + + @staticmethod + def mail_edit_sended(receive_user: Member) -> Embed: + embed = ChristmasEmbed(title="✅ 수정완료!", description="편지 수정을 완료했어요!") + embed.add_field(name="안내", value="수정된 편지는 2023년 12월 25일부터 열람 가능해요!", inline=False) + embed.add_field(name="받는이", value=f"{receive_user.mention}", inline=False) + return embed + + @staticmethod + def mail_notfound() -> Embed: + embed = ChristmasEmbed(title="❌ 편지 없음!", description="편지가 없어요!") + embed.add_field(name="안내", value="받은 편지가 없어요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def mail_already_sended() -> Embed: + embed = ChristmasEmbed(title="❌ 편지 전송 실패!", description="이미 편지를 보냈어요!") + embed.add_field(name="안내", value="이미 편지를 보냈어요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def mail_page(data) -> Embed: + embed = ChristmasEmbed(title="📨 편지", description="편지를 확인해보세요!(욕설등 민감한 내용이 포함된 내용은 자동으로 스포일러처리되요!)") + username = data["username"] + userid = data["userid"] + title = data["title"] + description = data["content"] + if korcen.check(title) == True: + title = "||" + title + "||" + if korcen.check(description) == True: + description = "||" + description + "||" + embed.add_field(name="보낸이", value=f"{username}({userid})", inline=False) + embed.add_field(name="제목", value=title, inline=False) + embed.add_field(name="내용", value=description, inline=False) + embed.set_footer() + return embed + + +class Aiart_Embed: + + @staticmethod + def failed_generate() -> Embed: + embed = ChristmasEmbed(title="❌ 그림 생성 실패!", description="그림 생성에 실패했어요!") + embed.add_field(name="안내", value="그림 생성에 실패했어요! 이 현상이 지속된다면 서비스 서버에 문의해주세요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def sucess_generate(prompt: str, remove: str) -> Embed: + embed = ChristmasEmbed(title="✅ 그림 생성 성공!", description="그림 생성에 성공했어요!") + embed.add_field(name="프롬포트", value=prompt, inline=False) + embed.add_field(name="지운 프롬포트", value=remove, inline=False) + embed.set_image(url="attachment://image.png") + embed.set_footer() + return embed + + @staticmethod + def generating() -> Embed: + embed = ChristmasEmbed(title="그림 생성중...", description="그림을 생성하는 중이에요!") + embed.add_field(name="안내", value="그림 생성에는 최대 2분이 소요될 수 있어요!(크돌이는 돈이 없어요...)", inline=False) + embed.set_footer() + return embed + + @staticmethod + def evalate(tags, rating) -> ChristmasEmbed: + if tags == None: + embed = ChristmasEmbed(name="**오류**", value="그림 분석에 실패했어요. 나중에 다시 시도해주세요", inline=False) + return embed + else: + embed = ChristmasEmbed(title="**그림 분석 완료**", description="그림 분석이 완료되었어요!") + embed.set_image(url="attachment://image.png") + embed.add_field(name="**등급**", value=f"{rating}", inline=False) + texts = "" + for tag, score in tags: + percentage = score * 100 + texts = texts + f"{tag} : {percentage:.1f}%\n" + embed.add_field(name="**분석된 요소**", value=f"{texts}", inline=False) + embed.set_footer() + return embed + + @staticmethod + def gen_nsfw(): + embed = ChristmasEmbed(title="❌ 그림 생성 실패!", description="그림 생성에 실패했어요!") + embed.add_field(name="안내", value="NSFW 채널이 아닌경우 NSFW 그림을 생성을 할수 없어요!", inline=False) + embed.set_footer() + return embed + + +class Music_Embed: + + @staticmethod + def music_notenable(): + embed = ChristmasEmbed(title="❌ 음악 재생 실패!", description="음악 재생에 실패했어요!") + embed.add_field(name="안내", value="이 서버에서는 음악을 재생할수 없어요! \n만약 서버의 관리자라면 ``/설정`` 명령어로 음악 기능을 다시 활성화사킬수 있어요!", + inline=False) + embed.set_footer() + return embed + + @staticmethod + def author_not_voice(): + embed = ChristmasEmbed(title="❌ 음악 재생 실패!", description="음악 재생에 실패했어요!") + embed.add_field(name="안내", value="음악을 재생하려면 음성채널에 들어가야 해요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def author_diffrent_voice(): + embed = ChristmasEmbed(title="❌ 음악 재생 실패!", description="음악 재생에 실패했어요!") + embed.add_field(name="안내", value="이미 다른 채널에 접속되어있어요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def music_play(): + embed = ChristmasEmbed(title="✅ 재생 시작!", description="LOFI 재생을 시작했어요!") + embed.set_footer() + return embed + + @staticmethod + def music_stop(): + embed = ChristmasEmbed(title="✅ 재생 정지!", description="LOFI 재생을 정지했어요!") + embed.set_footer() + return embed + + @staticmethod + def changed_christmas(): + embed = ChristmasEmbed(title="✅ 크리스마스 모드 변경!", + description="크리스마스 모드를 변경했어요! 이 시간부터 25일 11시 59분까지 크리스마스 모드가 적용되요!") + embed.set_footer() + return embed + + @staticmethod + def music_setting(value: bool, settings: str): + embed = ChristmasEmbed(title="✅ 음악 설정 변경!", description="음악 설정을 변경했어요!") + if settings == "music": + if value == True: + embed.add_field(name="안내", value="이제 이 서버에서 음악을 재생할수 있어요!", inline=False) + else: + embed.add_field(name="안내", value="이제 이 서버에서 음악을 재생할수 없어요!", inline=False) + elif settings == "admin_run": + if value == False: + embed.add_field(name="안내", value="이제 이 서버에서 관리자를 제외한 사람들도 음악을 재생할수 있어요!", inline=False) + else: + embed.add_field(name="안내", value="이제 이 서버에서 관리자를 제외한 사람은 음악을 재생할수 없어요!", inline=False) + embed.set_footer() + return embed + + +class Arcade_Embed: + + @staticmethod + def register_inital(): + embed = ChristmasEmbed(title="🎉 눈싸움 등록!", description="눈싸움 등록을 시작해요!") + embed.add_field(name="안내", + value="크돌이의 눈싸움은 서버대 서버로 경쟁하며 그 안의 유저들이 서로 협동하여 이뤄지는 게임이에요!\n1.눈싸움은 매일 항상 열려있어요! \n2.눈싸움은 시즌당 1달로 구성되있어요!\n3.시즌은 1주일 간격으로 준비-싸움-준비-싸움으로 구성되있어요!\n4.이 과정에서 절대로 봇을 이용한 싸움은 허락되지 않아요!\n5.눈싸움의 규정을 위반할경우 통보없이 눈싸움에서 제외될수 있어요!", + inline=False) + embed.add_field(name="약관", value="다음의 약관을 읽고 동의한다면 `동의`버튼을 눌러주세요.", inline=False) + embed.set_footer() + return embed + + @staticmethod + def register_sucessfull(): + embed = ChristmasEmbed(title="🎉 눈싸움 등록 성공!", description="눈싸움 등록을 성공했어요!") + embed.add_field(name="안내", value="이제 이 서버에서 눈싸움을 즐겨보세요!", inline=False) + embed.add_field(name="안내", value="초기금으로 ``10000 눈덩이``가 지급되었어요!") + embed.set_footer() + return embed + + @staticmethod + def register_already(): + embed = ChristmasEmbed(title="❌ 눈싸움 등록 실패!", description="눈싸움 등록에 실패했어요!") + embed.add_field(name="안내", value="이미 서버가 눈싸움에 등록되어있어요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def register_failed(): + embed = ChristmasEmbed(title="❌ 눈싸움 등록 실패!", description="눈싸움 등록에 실패했어요!") + embed.add_field(name="안내", value="알수없는 오류로 인해 눈싸움 등록에 실패했어요! 이 현상이 지속된다면 서비스 서버에 문의해주세요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def register_cancel(): + embed = ChristmasEmbed(title="❌ 눈싸움 등록 실패!", description="눈싸움 등록에 실패했어요!") + embed.add_field(name="안내", value="눈싸움 등록을 취소했어요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def static_info(guild: Guild, region: str): + region_dict = { + "south": "남쪽", + "north": "북쪽" + } + region = region_dict[region] + embed = ChristmasEmbed(title="🎉 눈싸움 정보!", description=f"{guild.name}서버의 눈싸움 정보에요!") + embed.add_field(name="진영", value=f"{region}", inline=False) + embed.add_field(name="상대진영", value=f"{region}", inline=False) + + @staticmethod + def recommend_sucess(): + embed = ChristmasEmbed(title="🎉 추천 완료!", description="크돌이를 추천해주셔서 감사해요!") + embed.add_field(name="안내", value="크돌이는 한디리에 등록되어있어요! 한디리에서 크돌이를 추천해주시면 크돌이가 더 많은 사람들에게 알려질수 있어요!", inline=False) + embed.set_footer() + return embed + + @staticmethod + def recommend_failed(): + embed = ChristmasEmbed(title="❌ 추천 실패!", description="크돌이를 추천했는지 확인하는데 실패했어요") + embed.add_field(name="안내", value="크돌이의 추천을 확인하는데 실패했어요! 이 현상이 지속된다면 서비스 서버에 문의해주세요!", inline=False) + embed.set_footer() + return embed diff --git a/Christmas/UI/Modal.py b/RUNA/UI/Modal.py similarity index 88% rename from Christmas/UI/Modal.py rename to RUNA/UI/Modal.py index 7dcbaa6..0fef334 100644 --- a/Christmas/UI/Modal.py +++ b/RUNA/UI/Modal.py @@ -1,86 +1,85 @@ -import re -import base64 -from discord import InputTextStyle, Interaction, Member -from discord.ui import Modal, InputText - -#from Christmas.Module import check_curse - -from Christmas.UI.Embed import Mail_Embed, Aiart_Embed -from Christmas.UI.Buttons import Mail_Confirm_Button -from Christmas.Module import process_prompt, post_gpu_server, base64_to_image -from Christmas.config import ChristmasConfig -from Christmas.Tagging import Tagging -from Christmas.Cogs.Event import model - - -class Send_Mail_Modal(Modal): - def __init__(self, reciveuser: Member, editmode: bool, *args, **kwargs): - self.reciveuser = reciveuser - self.editmode = editmode - - super().__init__(timeout=None, *args, **kwargs) - - self.add_item(InputText(label="제목", placeholder="제목을 입력해주세요.", style=InputTextStyle.short, required=True, custom_id="mail_title")) - self.add_item(InputText(label="내용", placeholder="내용을 입력해주세요.", style=InputTextStyle.long, required=True, custom_id="mail_content")) - - - async def callback(self, interaction: Interaction): - if self.editmode == False: - await interaction.response.send_message(embed=Mail_Embed.mail_confirm(self.children[0].value, self.children[1].value, self.reciveuser), view=Mail_Confirm_Button(recive_user=self.reciveuser, title=self.children[0].value, description=self.children[1].value, editmode=False),ephemeral=True) - else: - await interaction.response.send_message(embed=Mail_Embed.mail_confirm_edit(self.children[0].value, self.children[1].value, self.reciveuser), view=Mail_Confirm_Button(recive_user=self.reciveuser, title=self.children[0].value, description=self.children[1].value, editmode=True),ephemeral=True) - -class Aiart(Modal): - def __init__(self, show: bool, allownsfw: bool, res: list, style1: float, style2: float, afterprocess: bool, *args, **kwargs): - self.show = show - self.allownsfw = allownsfw - self.res = res - self.style1 = style1 - self.style2 = style2 - self.config = ChristmasConfig() - self.afterprocess = afterprocess - super().__init__(timeout=None, *args, **kwargs) - - self.add_item(InputText(label="그람에 포함시키고 싶은 태그를 입력해주세요.", placeholder="한글도 입력 가능해요! 태그는 문장형도 알아듣지만 ,를 통해 구별해요", style=InputTextStyle.long, required=True, custom_id="aiart_tag")) - self.add_item(InputText(label="그림에서 제거하고 싶은 태그를 입력해주세요.", placeholder="한글도 입력 가능해요! 태그는 문장형도 알아듣지만 ,를 통해 구별해요", style=InputTextStyle.long, required=False, custom_id="aiart_remove_tag")) - - async def callback(self, interaction: Interaction): - prompt = self.children[0].value - remove = self.children[1].value - #255자까지 자름 - original_prompt = prompt - original_remove = remove - if len(prompt) > 255: - original_prompt = original_prompt[:255] - if len(remove) > 255: - original_remove = original_remove[:255] - await interaction.response.send_message(embed=Aiart_Embed.generating(), ephemeral=self.show) - avatars = None - if re.search(r"\{[0-9]{18}\}", prompt): - user_id = re.search(r"\{[0-9]{18}\}", prompt).group()[1:-1] - user = await interaction.guild.fetch_member(int(user_id)) - if user == None: - avatars = None - else: - avatars = user.avatar - config = ChristmasConfig() - #prompt: str, remove: str, res: list, isnsfw: bool, style1: float, style2: float, afterprocess: float - payload = await process_prompt(prompt, remove, self.res, self.allownsfw, self.style1, self.style2, self.afterprocess, avatars) - config = ChristmasConfig() - result = await post_gpu_server(f"{config.AI}/sdapi/v1/txt2img", payload) - if result["status"] != True: - return await interaction.edit_original_response(embed=Aiart_Embed.failed_generate()) - if self.allownsfw is False: - tag = Tagging(model=model) - result2 = await tag.predict(base64.b64decode(result["data"]["images"][0])) - if result2 is None: - return await interaction.edit_original_response(embed=Aiart_Embed.failed_generate()) - rating = max(result2[2], key=result2[2].get) - if rating == "explicit" or rating == "questionable": - return await interaction.edit_original_response(embed=Aiart_Embed.gen_nsfw()) - try: - attachment = await base64_to_image(result["data"]["images"][0]) - except Exception as e: - return await interaction.edit_original_response(embed=Aiart_Embed.failed_generate()) - await interaction.edit_original_response(embed=Aiart_Embed.sucess_generate(original_prompt,original_remove), file=attachment) +import re +import os +import random +import base64 +from discord import InputTextStyle, Interaction, Member +from discord.ui import Modal, InputText + +from dotenv import load_dotenv, find_dotenv +#from RUNA.Module import check_curse + +from RUNA.UI.Embed import Mail_Embed, Aiart_Embed +from RUNA.UI.Buttons import Mail_Confirm_Button +from RUNA.Module import process_prompt, post_gpu_server, base64_to_image +from RUNA.Tagging import Tagging +from RUNA.Cogs.Event import model + + +class Send_Mail_Modal(Modal): + def __init__(self, reciveuser: Member, editmode: bool, *args, **kwargs): + self.reciveuser = reciveuser + self.editmode = editmode + + super().__init__(timeout=None, *args, **kwargs) + + self.add_item(InputText(label="제목", placeholder="제목을 입력해주세요.", style=InputTextStyle.short, required=True, custom_id="mail_title")) + self.add_item(InputText(label="내용", placeholder="내용을 입력해주세요.", style=InputTextStyle.long, required=True, custom_id="mail_content")) + + + async def callback(self, interaction: Interaction): + if self.editmode == False: + await interaction.response.send_message(embed=Mail_Embed.mail_confirm(self.children[0].value, self.children[1].value, self.reciveuser), view=Mail_Confirm_Button(recive_user=self.reciveuser, title=self.children[0].value, description=self.children[1].value, editmode=False),ephemeral=True) + else: + await interaction.response.send_message(embed=Mail_Embed.mail_confirm_edit(self.children[0].value, self.children[1].value, self.reciveuser), view=Mail_Confirm_Button(recive_user=self.reciveuser, title=self.children[0].value, description=self.children[1].value, editmode=True),ephemeral=True) + +class Aiart(Modal): + def __init__(self, show: bool, allownsfw: bool, res: list, style1: float, style2: float, afterprocess: bool, *args, **kwargs): + self.show = show + self.allownsfw = allownsfw + self.res = res + self.style1 = style1 + self.style2 = style2 + self.afterprocess = afterprocess + super().__init__(timeout=None, *args, **kwargs) + + self.add_item(InputText(label="그람에 포함시키고 싶은 태그를 입력해주세요.", placeholder="한글도 입력 가능해요! 태그는 문장형도 알아듣지만 ,를 통해 구별해요", style=InputTextStyle.long, required=True, custom_id="aiart_tag")) + self.add_item(InputText(label="그림에서 제거하고 싶은 태그를 입력해주세요.", placeholder="한글도 입력 가능해요! 태그는 문장형도 알아듣지만 ,를 통해 구별해요", style=InputTextStyle.long, required=False, custom_id="aiart_remove_tag")) + + async def callback(self, interaction: Interaction): + prompt = self.children[0].value + remove = self.children[1].value + #255자까지 자름 + original_prompt = prompt + original_remove = remove + if len(prompt) > 255: + original_prompt = original_prompt[:255] + if len(remove) > 255: + original_remove = original_remove[:255] + await interaction.response.send_message(embed=Aiart_Embed.generating(), ephemeral=self.show) + avatars = None + if re.search(r"\{[0-9]{18}\}", prompt): + user_id = re.search(r"\{[0-9]{18}\}", prompt).group()[1:-1] + user = await interaction.guild.fetch_member(int(user_id)) + if user == None: + avatars = None + else: + avatars = user.avatar + #prompt: str, remove: str, res: list, isnsfw: bool, style1: float, style2: float, afterprocess: float + payload = await process_prompt(prompt, remove, self.res, self.allownsfw, self.style1, self.style2, self.afterprocess, avatars) + result = await post_gpu_server(f"{random.choices(list(os.getenv("AI_GATEWAT")))}/sdapi/v1/txt2img", payload) + if result["status"] != True: + return await interaction.edit_original_response(embed=Aiart_Embed.failed_generate()) + if self.allownsfw is False: + tag = Tagging() + result2 = await tag.predict(base64.b64decode(result["data"]["images"][0])) + if result2 is None: + return await interaction.edit_original_response(embed=Aiart_Embed.failed_generate()) + rating = max(result2[2], key=result2[2].get) + if rating == "explicit" or rating == "questionable": + return await interaction.edit_original_response(embed=Aiart_Embed.gen_nsfw()) + try: + attachment = await base64_to_image(result["data"]["images"][0]) + except Exception as e: + return await interaction.edit_original_response(embed=Aiart_Embed.failed_generate()) + await interaction.edit_original_response(embed=Aiart_Embed.sucess_generate(original_prompt,original_remove), file=attachment) \ No newline at end of file diff --git a/Christmas/UI/Paginator.py b/RUNA/UI/Paginator.py similarity index 93% rename from Christmas/UI/Paginator.py rename to RUNA/UI/Paginator.py index 23c1375..de5411f 100644 --- a/Christmas/UI/Paginator.py +++ b/RUNA/UI/Paginator.py @@ -1,62 +1,62 @@ -from functools import cached_property -from typing import Any, Dict, List, Union - -from discord.ui import button - -from discord.enums import ButtonStyle -from discord.interactions import Interaction -from discord.ui import Button, View - -from Christmas.UI.Embed import ChristmasEmbed - -class Mail_Paginator(View): - def __init__( - self, - senduser: int, - embeds: list[ChristmasEmbed], - timeout: int = 180, - - ): - super().__init__(timeout=timeout) - self.embeds = embeds - self.index = 0 - self.senduser = senduser - self.selected = False - - @cached_property - def total(self) -> int: - return len(self.embeds) - - async def interaction_check(self, interaction: Interaction) -> bool: - if user := interaction.user: - if user.id == self.senduser.id: - return True - - await interaction.response.send_message( - "명령어 실행자만 상호작용이 가능합니다.", ephemeral=True - ) - - return False - - @button(label="이전", style=ButtonStyle.primary, emoji="◀") - async def prev(self, button, interaction: Interaction) -> None: - self.index -= 1 - - if self.index < 0: - self.index = self.total - 1 - - await interaction.response.edit_message(embed=self.embeds[self.index]) - - @button(label="다음", style=ButtonStyle.primary, emoji="▶️") - async def next(self, button, interaction: Interaction) -> None: - self.index += 1 - - if self.index >= self.total: - self.index = 0 - - await interaction.response.edit_message(embed=self.embeds[self.index]) - - @button(label="닫기", style=ButtonStyle.danger, emoji="✖️") - async def close(self, button, interaction: Interaction) -> None: - await interaction.response.defer() +from functools import cached_property +from typing import Any, Dict, List, Union + +from discord.ui import button + +from discord.enums import ButtonStyle +from discord.interactions import Interaction +from discord.ui import Button, View + +from RUNA.UI.Embed import ChristmasEmbed + +class Mail_Paginator(View): + def __init__( + self, + senduser: int, + embeds: list[ChristmasEmbed], + timeout: int = 180, + + ): + super().__init__(timeout=timeout) + self.embeds = embeds + self.index = 0 + self.senduser = senduser + self.selected = False + + @cached_property + def total(self) -> int: + return len(self.embeds) + + async def interaction_check(self, interaction: Interaction) -> bool: + if user := interaction.user: + if user.id == self.senduser.id: + return True + + await interaction.response.send_message( + "명령어 실행자만 상호작용이 가능합니다.", ephemeral=True + ) + + return False + + @button(label="이전", style=ButtonStyle.primary, emoji="◀") + async def prev(self, button, interaction: Interaction) -> None: + self.index -= 1 + + if self.index < 0: + self.index = self.total - 1 + + await interaction.response.edit_message(embed=self.embeds[self.index]) + + @button(label="다음", style=ButtonStyle.primary, emoji="▶️") + async def next(self, button, interaction: Interaction) -> None: + self.index += 1 + + if self.index >= self.total: + self.index = 0 + + await interaction.response.edit_message(embed=self.embeds[self.index]) + + @button(label="닫기", style=ButtonStyle.danger, emoji="✖️") + async def close(self, button, interaction: Interaction) -> None: + await interaction.response.defer() self.stop() \ No newline at end of file diff --git a/Christmas/__init__.py b/RUNA/__init__.py similarity index 50% rename from Christmas/__init__.py rename to RUNA/__init__.py index fd40910..6120b37 100644 --- a/Christmas/__init__.py +++ b/RUNA/__init__.py @@ -1,4 +1,4 @@ - - - - + + + + diff --git a/RUNA/__main__.py b/RUNA/__main__.py new file mode 100644 index 0000000..fdb7c7f --- /dev/null +++ b/RUNA/__main__.py @@ -0,0 +1,24 @@ +import os + +from typing import Any, cast +from dotenv import find_dotenv, load_dotenv + +from discord import AutoShardedBot, Intents +from discord.ext import commands, tasks + +from RUNA.discord import Runa, load_cogs, apply_uvloop, init_sentry_sdk +from koreanbots.integrations.discord import DiscordpyKoreanbots + +load_dotenv(find_dotenv()) + +if __name__ == "__main__": + bot = Runa( + command_prefix=commands.when_mentioned_or("r!"), + case_insensitive=True, + intents=Intents.default() + ) + DiscordpyKoreanbots(bot, os.getenv("KOREANBOT_TOKEN"), run_task=True) + load_cogs(bot) + apply_uvloop() + init_sentry_sdk(os.getenv("SENTRY_DSN")) + bot.run() \ No newline at end of file diff --git a/RUNA/discord.py b/RUNA/discord.py new file mode 100644 index 0000000..47e6175 --- /dev/null +++ b/RUNA/discord.py @@ -0,0 +1,55 @@ +import os +import sentry_sdk + +from sentry_sdk.integrations.asyncio import AsyncioIntegration +from sentry_sdk.integrations.pymongo import PyMongoIntegration +from sentry_sdk.integrations.aiohttp import AioHttpIntegration +from sentry_sdk.integrations.loguru import LoguruIntegration + +from typing import Any, cast +from dotenv import load_dotenv, find_dotenv +from discord import AutoShardedBot +from discord.ext import commands, tasks + +from RUNA.Modules.Logging import Logging + +load_dotenv(find_dotenv()) + + +class Runa(AutoShardedBot): + def __init__(self, *args: Any, **kwargs: Any): + super().__init__(*args, **kwargs) + # self.debug_guilds = [1090621667778244638,1015236495910649926,957142859629342790,1125370139165081612,1170310470503247993] + + def run(self, *args: Any, **kwargs: Any) -> None: + kwargs.update({"token": os.getenv("TOKEN")}) + super().run(*args, **kwargs) + + +def load_cogs(bot: AutoShardedBot) -> None: + for filename in os.listdir("RUNA/Cogs"): + if filename.endswith(".py"): + bot.load_extension(f"RUNA.Cogs.{filename[:-3]}") + + +def apply_uvloop() -> None: + try: + import uvloop + import asyncio + except ImportError: + pass + else: + uvloop.install() + asyncio.set_event_loop_policy(uvloop.EventLoopPolicy()) + + +def init_sentry_sdk(dsn: str) -> None: + sentry_sdk.init( + dsn=dsn, + integrations=[ + AsyncioIntegration(), + PyMongoIntegration(), + AioHttpIntegration(), + LoguruIntegration() + ] + ) diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a22a5b9 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,33 @@ +[tool.poetry] +name = "runabot" +version = "0.1.0" +description = "" +authors = ["tmddn3070 "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.12" +py-cord = {extras = ["speed"], version = "^2.5.0"} +uvloop = "^0.19.0" +nanoid = "^2.0.0" +pendulum = "^3.0.0" +onnxruntime = "^1.17.1" +psutil = "^5.9.8" +meilisearch-python-sdk = "^2.8.0" +pillow = "^10.2.0" +opencv-python = "^4.9.0.80" +aiogoogletrans = "^3.3.3" +koreanbots = "^2.1.0" +joblib = "^1.3.2" +pandas = "^2.2.1" +numpy = "^1.26.4" +sentry-sdk = "^1.42.0" +loguru = "^0.7.2" +orjson = "^3.9.15" +motor = "^3.3.2" +python-dotenv = "^1.0.1" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"