Spaces:
Sleeping
Sleeping
John6666
commited on
Commit
•
f392602
0
Parent(s):
Super-squash branch 'main' using huggingface_hub
Browse files- .gitattributes +35 -0
- README.md +13 -0
- all_tags_ja_ext.csv +0 -0
- app.py +47 -0
- characterfull.txt +0 -0
- danbooru_e621.csv +0 -0
- requirements.txt +8 -0
- tag_group.csv +3222 -0
- tagger.py +413 -0
- unused/all_tags_en_googletrans.csv +0 -0
- unused/all_tags_ja.csv +0 -0
- unused/danbooru_ja.csv +0 -0
- unused/e621_ja.csv +0 -0
.gitattributes
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: SD Danbooru/e621 tag to Japanese? tag converter
|
3 |
+
emoji: 😻
|
4 |
+
colorFrom: pink
|
5 |
+
colorTo: yellow
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: 4.36.1
|
8 |
+
app_file: app.py
|
9 |
+
pinned: false
|
10 |
+
license: apache-2.0
|
11 |
+
---
|
12 |
+
|
13 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
all_tags_ja_ext.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
app.py
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import spaces # ZERO GPU
|
3 |
+
|
4 |
+
from tagger import (
|
5 |
+
convert_tags_to_ja,
|
6 |
+
translate_prompt_to_ja,
|
7 |
+
)
|
8 |
+
|
9 |
+
|
10 |
+
DESCRIPTION_MD = """
|
11 |
+
# Convert SD tags to Japanese? tags
|
12 |
+
- I have no idea if it will be of any use.
|
13 |
+
""".strip()
|
14 |
+
|
15 |
+
DESCRIPTION_MD2 = """
|
16 |
+
The dictionary was generated using the following repository: [ponapon280/danbooru-e621-converter](https://github.com/ponapon280/danbooru-e621-converter)
|
17 |
+
""".strip()
|
18 |
+
|
19 |
+
|
20 |
+
def demo():
|
21 |
+
with gr.Blocks() as ui:
|
22 |
+
gr.Markdown(DESCRIPTION_MD)
|
23 |
+
|
24 |
+
with gr.Row():
|
25 |
+
with gr.Column():
|
26 |
+
with gr.Group():
|
27 |
+
input_general = gr.TextArea(
|
28 |
+
label="Input tags",
|
29 |
+
lines=6,
|
30 |
+
placeholder="1girl, solo, ...",
|
31 |
+
)
|
32 |
+
start_btn = gr.Button(value="CONVERT", size="lg", variant="primary")
|
33 |
+
|
34 |
+
with gr.Column():
|
35 |
+
with gr.Group():
|
36 |
+
output_prompt = gr.TextArea(label="Output tags", lines=6, show_copy_button=True, interactive=False)
|
37 |
+
|
38 |
+
gr.Markdown(DESCRIPTION_MD2)
|
39 |
+
|
40 |
+
start_btn.click(convert_tags_to_ja, inputs=[input_general], outputs=[output_prompt]).then(
|
41 |
+
translate_prompt_to_ja, inputs=[output_prompt], outputs=[output_prompt],
|
42 |
+
)
|
43 |
+
|
44 |
+
return ui
|
45 |
+
|
46 |
+
if __name__ == "__main__":
|
47 |
+
demo().queue().launch()
|
characterfull.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
danbooru_e621.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
requirements.txt
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
torch
|
2 |
+
torchvision
|
3 |
+
accelerate
|
4 |
+
transformers
|
5 |
+
optimum[onnxruntime]
|
6 |
+
spaces
|
7 |
+
httpcore
|
8 |
+
googletrans==4.0.0rc1
|
tag_group.csv
ADDED
@@ -0,0 +1,3222 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
effect,effect
|
2 |
+
bloodwater,effect
|
3 |
+
splashing blood,effect
|
4 |
+
blood rain,effect
|
5 |
+
blood drop,effect
|
6 |
+
bloodstain,effect
|
7 |
+
bara,effect
|
8 |
+
not rose,effect
|
9 |
+
musical note,effect
|
10 |
+
confetti,effect
|
11 |
+
feathers,effect
|
12 |
+
floating feathers,effect
|
13 |
+
anchor symbol,effect
|
14 |
+
rose,effect
|
15 |
+
liquid body,effect
|
16 |
+
sweat,effect
|
17 |
+
sweatdrop,effect
|
18 |
+
blood,effect
|
19 |
+
many sweat,effect
|
20 |
+
saliva trail,effect
|
21 |
+
flying sweatdrops,effect
|
22 |
+
splash,effect
|
23 |
+
splashing,effect
|
24 |
+
flame painter,effect
|
25 |
+
flame whirlpool,effect
|
26 |
+
flames,effect
|
27 |
+
smoke of gunpowder,effect
|
28 |
+
fire,effect
|
29 |
+
gunpowder smoke,effect
|
30 |
+
fire cloud,effect
|
31 |
+
wings on fire,effect
|
32 |
+
flame,effect
|
33 |
+
spark,effect
|
34 |
+
fireworks,effect
|
35 |
+
flames around,effect
|
36 |
+
explosion,effect
|
37 |
+
smoke,effect
|
38 |
+
humid,effect
|
39 |
+
steam,effect
|
40 |
+
hanabi,effect
|
41 |
+
flare,effect
|
42 |
+
brilliant light,effect
|
43 |
+
light particles,effect
|
44 |
+
particle,effect
|
45 |
+
falling petals,effect
|
46 |
+
bubble,effect
|
47 |
+
water,effect
|
48 |
+
water spray,effect
|
49 |
+
water bloom,effect
|
50 |
+
splashing water,effect
|
51 |
+
god ray,effect
|
52 |
+
blackhole behind the girl,effect
|
53 |
+
lightning chain,effect
|
54 |
+
lightning effect,effect
|
55 |
+
electric,effect
|
56 |
+
snowflake,effect
|
57 |
+
magic circle,effect
|
58 |
+
ornament,object
|
59 |
+
pee puddle,object
|
60 |
+
cardboard box,object
|
61 |
+
flowers,object
|
62 |
+
leash with bell,object
|
63 |
+
street light,object
|
64 |
+
chain link fence,object
|
65 |
+
sack,object
|
66 |
+
oven,object
|
67 |
+
closet,object
|
68 |
+
trash can,object
|
69 |
+
couch,object
|
70 |
+
sofa,object
|
71 |
+
table,object
|
72 |
+
bed,object
|
73 |
+
bed sheet,object
|
74 |
+
mirror,object
|
75 |
+
chair,object
|
76 |
+
microwave oven,object
|
77 |
+
futon,object
|
78 |
+
wall clock,object
|
79 |
+
refrigerator,object
|
80 |
+
speaker amplifier,object
|
81 |
+
drums,object
|
82 |
+
mic,object
|
83 |
+
instrument,object
|
84 |
+
playing instrument,object
|
85 |
+
pyramid,object
|
86 |
+
lamppost,object
|
87 |
+
vending machine,object
|
88 |
+
power lines,object
|
89 |
+
utility pole,object
|
90 |
+
telephone pole,object
|
91 |
+
inverted mountain,object
|
92 |
+
cherry blossoms,object
|
93 |
+
under cherry blossoms,object
|
94 |
+
cherry trees,object
|
95 |
+
mountains,object
|
96 |
+
grass,object
|
97 |
+
sun,object
|
98 |
+
VR Goggles,object
|
99 |
+
curtains,object
|
100 |
+
soccer ball,object
|
101 |
+
straw,object
|
102 |
+
smartphones,object
|
103 |
+
cigarettes,object
|
104 |
+
tumbler,object
|
105 |
+
personal computer,object
|
106 |
+
randoseru,object
|
107 |
+
rucksack,object
|
108 |
+
vase,object
|
109 |
+
pocket watch,object
|
110 |
+
quilt,object
|
111 |
+
cellphone,object
|
112 |
+
censer,object
|
113 |
+
chain,object
|
114 |
+
manacles,object
|
115 |
+
water bottle,object
|
116 |
+
intravenous drip,object
|
117 |
+
phone,object
|
118 |
+
stuffed animal,object
|
119 |
+
balloon,object
|
120 |
+
book,object
|
121 |
+
pillow,object
|
122 |
+
super sports car,object
|
123 |
+
sports car,object
|
124 |
+
sports motorcycle,object
|
125 |
+
truck,object
|
126 |
+
harley-davidson,object
|
127 |
+
motorcycle,object
|
128 |
+
space opera,object
|
129 |
+
star ship,object
|
130 |
+
locomotive,object
|
131 |
+
luxury liner,object
|
132 |
+
bicycles,object
|
133 |
+
car,object
|
134 |
+
battle ship,object
|
135 |
+
train,object
|
136 |
+
zipper,option
|
137 |
+
whipped cream,option
|
138 |
+
eyebrows hidden by hair,option
|
139 |
+
eyewear on head,option
|
140 |
+
one piece tan,option
|
141 |
+
candy,option
|
142 |
+
lolipop,option
|
143 |
+
unzipped,option
|
144 |
+
death,option
|
145 |
+
injury,option
|
146 |
+
scar on face,option
|
147 |
+
antennae,option
|
148 |
+
thigh gap,option
|
149 |
+
ass visible through thighs,option
|
150 |
+
with thigh gap,option
|
151 |
+
halo,option
|
152 |
+
trait connection,option
|
153 |
+
characteristic connection,option
|
154 |
+
smell,option
|
155 |
+
tanlines,option
|
156 |
+
wet sweat,option
|
157 |
+
wet cloth,option
|
158 |
+
ripples,option
|
159 |
+
torn dress,option
|
160 |
+
torn clothesup,option
|
161 |
+
thong,option
|
162 |
+
dakimakura,option
|
163 |
+
tears,option
|
164 |
+
excrement,option
|
165 |
+
faeces,option
|
166 |
+
bare white shirt,favorite
|
167 |
+
sharp focus,camera
|
168 |
+
upper body,camera
|
169 |
+
cowboy shot,camera
|
170 |
+
lower body,camera
|
171 |
+
face,camera
|
172 |
+
close up,camera
|
173 |
+
feet out of frame,camera
|
174 |
+
portrait,camera
|
175 |
+
full body,camera
|
176 |
+
feet,camera
|
177 |
+
solo focus,camera
|
178 |
+
out of frame,camera
|
179 |
+
only lower body,camera
|
180 |
+
only upper body,camera
|
181 |
+
full body,camera
|
182 |
+
head out of frame,camera
|
183 |
+
far from viewer,camera
|
184 |
+
very close to viewers,camera
|
185 |
+
close to viewers,camera
|
186 |
+
action shot,camera
|
187 |
+
wide shot,camera
|
188 |
+
anal focus,camera
|
189 |
+
dynamic angle,camera
|
190 |
+
dramatic angle,camera
|
191 |
+
perspective,camera
|
192 |
+
low angle,camera
|
193 |
+
cinematic shot,camera
|
194 |
+
cinematic angle,camera
|
195 |
+
from up side,camera
|
196 |
+
intense angle,camera
|
197 |
+
on back,camera
|
198 |
+
staring,camera
|
199 |
+
viewfinder,camera
|
200 |
+
railing,camera
|
201 |
+
arm behind back,camera
|
202 |
+
from right under,camera
|
203 |
+
hair over shoulder,camera
|
204 |
+
profile,camera
|
205 |
+
from behind,camera
|
206 |
+
back viewers,camera
|
207 |
+
from side,camera
|
208 |
+
from above,camera
|
209 |
+
from below,camera
|
210 |
+
dutch angle,camera
|
211 |
+
looking away,camera
|
212 |
+
pov hands,camera
|
213 |
+
facing viewer,camera
|
214 |
+
forhead,camera
|
215 |
+
selfie view,camera
|
216 |
+
pov,camera
|
217 |
+
foreshortening,camera
|
218 |
+
side view,camera
|
219 |
+
multiple views,camera
|
220 |
+
illyasviel von einzbern,character
|
221 |
+
artoria caster,character
|
222 |
+
Trevor Philips bald hair,character
|
223 |
+
sakura miko,character
|
224 |
+
sakamata chloe,character
|
225 |
+
murasaki shion,character
|
226 |
+
akai haato,character
|
227 |
+
yukihana lamy,character
|
228 |
+
amane kanata,character
|
229 |
+
minato aqua,character
|
230 |
+
kotonoha aoi,character
|
231 |
+
kotonoha akane,character
|
232 |
+
yuzuki yukari,character
|
233 |
+
shigure ui,character
|
234 |
+
higuchi madoka,character
|
235 |
+
elaina,character
|
236 |
+
tracen school uniform,character
|
237 |
+
erune,character
|
238 |
+
kafuu chino,character
|
239 |
+
megumin,character
|
240 |
+
sonico,character
|
241 |
+
splatoon inkling girl,character
|
242 |
+
splatoon inkling boy,character
|
243 |
+
misaka_mikoto,character
|
244 |
+
hoshikawa sara,character
|
245 |
+
yorumi rena,character
|
246 |
+
hatsune miku,character
|
247 |
+
princess daisy,character
|
248 |
+
Princess Peach,character
|
249 |
+
nishikino maki,character
|
250 |
+
mine fujiko,character
|
251 |
+
inuyasha,character
|
252 |
+
souryuu asuka langley,character
|
253 |
+
ayanami rei,character
|
254 |
+
mikasa ackerman,character
|
255 |
+
touwa erio,character
|
256 |
+
alice margatroid,character
|
257 |
+
touhou alice margatroid,character
|
258 |
+
patchouli knowledge,character
|
259 |
+
moriya suwako,character
|
260 |
+
komeiji koishi,character
|
261 |
+
komeiji satori,character
|
262 |
+
hong meiling,character
|
263 |
+
konpaku youmu,character
|
264 |
+
izayoi sakuya,character
|
265 |
+
hoshiguma yuugi,character
|
266 |
+
hijiri byakuren,character
|
267 |
+
touhou yuyuko,character
|
268 |
+
fujiwara no mokou,character
|
269 |
+
hakurei reimu,character
|
270 |
+
yakumo yukari,character
|
271 |
+
houraisan kaguya,character
|
272 |
+
kirisame marisa,character
|
273 |
+
reisen udongein inaba,character
|
274 |
+
reiuji utsuho,character
|
275 |
+
alice in wonderland,character
|
276 |
+
dark magician girl,character
|
277 |
+
suzumiya haruhi,character
|
278 |
+
grappler,costume
|
279 |
+
crossbowman,costume
|
280 |
+
dancer uniform,costume
|
281 |
+
barbarian,costume
|
282 |
+
assassin,costume
|
283 |
+
pirate,costume
|
284 |
+
sorceress,costume
|
285 |
+
knight,costume
|
286 |
+
rider,costume
|
287 |
+
archer,costume
|
288 |
+
berserker,costume
|
289 |
+
europian tabard,costume
|
290 |
+
mercenary,costume
|
291 |
+
clergy,costume
|
292 |
+
paladin,costume
|
293 |
+
cleric,costume
|
294 |
+
warrior,costume
|
295 |
+
soldier uniform,costume
|
296 |
+
witch,costume
|
297 |
+
mage,costume
|
298 |
+
magical girl,costume
|
299 |
+
dancer,costume
|
300 |
+
dragoon,costume
|
301 |
+
miko,costume
|
302 |
+
thief,costume
|
303 |
+
american football uniform,costume
|
304 |
+
golf uniform,costume
|
305 |
+
soccer uniform,costume
|
306 |
+
ski uniform,costume
|
307 |
+
snowboard uniform,costume
|
308 |
+
dance uniform,costume
|
309 |
+
cheerleading uniform,costume
|
310 |
+
tennis uniform,costume
|
311 |
+
basketball uniform,costume
|
312 |
+
badminton uniform,costume
|
313 |
+
volleyball uniform,costume
|
314 |
+
rugby uniform,costume
|
315 |
+
karate uniform,costume
|
316 |
+
kendo uniform,costume
|
317 |
+
judo uniform,costume
|
318 |
+
swimming uniform,costume
|
319 |
+
table tennis uniform,costume
|
320 |
+
baseball uniform,costume
|
321 |
+
baseball uniform,costume
|
322 |
+
track and field uniform,costume
|
323 |
+
idol uniform,costume
|
324 |
+
idol costume,costume
|
325 |
+
waiter uniform,costume
|
326 |
+
waitress,costume
|
327 |
+
chef uniform,costume
|
328 |
+
stewardess uniform,costume
|
329 |
+
cheerleader,costume
|
330 |
+
nurse,costume
|
331 |
+
bartender uniform,costume
|
332 |
+
pilot uniform,costume
|
333 |
+
bunny girl,costume
|
334 |
+
bunny suits,costume
|
335 |
+
playboy bunny,costume
|
336 |
+
hostess uniform,costume
|
337 |
+
host uniform,costume
|
338 |
+
magician uniform,costume
|
339 |
+
model uniform,costume
|
340 |
+
racer uniform,costume
|
341 |
+
race queen,costume
|
342 |
+
ranger,costume
|
343 |
+
doctor uniform,costume
|
344 |
+
singer uniform,costume
|
345 |
+
student,costume
|
346 |
+
reverse bunnysuit,costume
|
347 |
+
bandit,costume
|
348 |
+
teacher uniform,costume
|
349 |
+
military,costume
|
350 |
+
military jacket,costume
|
351 |
+
military or naval uniform,costume
|
352 |
+
military uniform,costume
|
353 |
+
military_uniform,costume
|
354 |
+
judge uniform,costume
|
355 |
+
bluecollar worker,costume
|
356 |
+
photograph,costume
|
357 |
+
evil girl,costume
|
358 |
+
evil boy,costume
|
359 |
+
reception girl,costume
|
360 |
+
prisoner,costume
|
361 |
+
prison uniform,costume
|
362 |
+
actress uniform,costume
|
363 |
+
firefighter uniform,costume
|
364 |
+
countrywoman,costume
|
365 |
+
farmer,costume
|
366 |
+
actor uniform,costume
|
367 |
+
policewoman,costume
|
368 |
+
lawyer uniform,costume
|
369 |
+
Childminder,costume
|
370 |
+
sheriff,costume
|
371 |
+
japanese school swimsuit,costume
|
372 |
+
slingshot swimsuit,costume
|
373 |
+
highleg,costume
|
374 |
+
sarong,costume
|
375 |
+
bandeau,costume
|
376 |
+
bikini,costume
|
377 |
+
micro bikini,costume
|
378 |
+
string bikini,costume
|
379 |
+
maid bikini,costume
|
380 |
+
leotard,costume
|
381 |
+
competition swimsuit,costume
|
382 |
+
swimming suit,costume
|
383 |
+
miniature microbikini,costume
|
384 |
+
swimsuit,costume
|
385 |
+
multi strapped bikini,costume
|
386 |
+
front tie top,costume
|
387 |
+
side tie panties,costume
|
388 |
+
side-tie bikini bottom,costume
|
389 |
+
clown uniform,costume
|
390 |
+
nun,costume
|
391 |
+
mummy_costume,costume
|
392 |
+
maid,costume
|
393 |
+
merchant,costume
|
394 |
+
prostitute,costume
|
395 |
+
bard,costume
|
396 |
+
japanese tabard,costume
|
397 |
+
badger_costume,costume
|
398 |
+
white rabit_costume,costume
|
399 |
+
cow_costume,costume
|
400 |
+
wolf_costume,costume
|
401 |
+
fox_costume,costume
|
402 |
+
shark_costume,costume
|
403 |
+
deer_costume,costume
|
404 |
+
raccoon_costume,costume
|
405 |
+
reindeer_costume,costume
|
406 |
+
dragon_costume,costume
|
407 |
+
tiger_costume,costume
|
408 |
+
cat_costume,costume
|
409 |
+
panda_costume,costume
|
410 |
+
sheep_costume,costume
|
411 |
+
leopard_costume,costume
|
412 |
+
goat_costume,costume
|
413 |
+
lion_costume,costume
|
414 |
+
cow_costume,costume
|
415 |
+
dinosaur_costume,costume
|
416 |
+
dog_costume,costume
|
417 |
+
animal_costume,costume
|
418 |
+
sheep_costume,costume
|
419 |
+
samurai,costume
|
420 |
+
ninja,costume
|
421 |
+
wedding,situation
|
422 |
+
christmas,situation
|
423 |
+
hang out,situation
|
424 |
+
valentine,situation
|
425 |
+
halloween,situation
|
426 |
+
playing card,situation
|
427 |
+
couple,situation
|
428 |
+
kiss,situation
|
429 |
+
under covers,situation
|
430 |
+
skydiving,situation
|
431 |
+
french kiss,situation
|
432 |
+
battle scene,situation
|
433 |
+
pantyshot,situation
|
434 |
+
hand over another's mouth,situation
|
435 |
+
pole dance,situation
|
436 |
+
meteor strike,situation
|
437 |
+
accepting without reservation,situation
|
438 |
+
face to face,situation
|
439 |
+
heads together,situation
|
440 |
+
bound,situation
|
441 |
+
open arms to sky,situation
|
442 |
+
aerial,situation
|
443 |
+
eye contact,situation
|
444 |
+
gag,situation
|
445 |
+
asymmetrical docking,situation
|
446 |
+
hypnosis,situation
|
447 |
+
photography event,situation
|
448 |
+
selfie,situation
|
449 |
+
crowd,situation
|
450 |
+
girl sandwich,situation
|
451 |
+
feeding,situation
|
452 |
+
zzz,situation
|
453 |
+
height difference,situation
|
454 |
+
partially submerged,situation
|
455 |
+
afloat,situation
|
456 |
+
wading,situation
|
457 |
+
hug from front,situation
|
458 |
+
polearm,situation
|
459 |
+
holding umbrella,situation
|
460 |
+
headpat,situation
|
461 |
+
recording video,situation
|
462 |
+
symmetrical docking,situation
|
463 |
+
bathing,situation
|
464 |
+
burn oneself in flames,situation
|
465 |
+
hug from behind,situation
|
466 |
+
back to back,situation
|
467 |
+
in container,other
|
468 |
+
sns,other
|
469 |
+
instagram,other
|
470 |
+
twitter,other
|
471 |
+
injection,other
|
472 |
+
sticky,other
|
473 |
+
morbid,other
|
474 |
+
duplicate,other
|
475 |
+
drugs,other
|
476 |
+
4koma,taste
|
477 |
+
scifi,taste
|
478 |
+
thick outline,taste
|
479 |
+
cthulhu,taste
|
480 |
+
game cg,taste
|
481 |
+
mosaic,taste
|
482 |
+
outline,taste
|
483 |
+
caustics,taste
|
484 |
+
black white,taste
|
485 |
+
monotone,taste
|
486 |
+
aurora theme,taste
|
487 |
+
guilty crown theme,taste
|
488 |
+
kill la kill theme,taste
|
489 |
+
god eater theme,taste
|
490 |
+
sketch theme,taste
|
491 |
+
fantasy theme,taste
|
492 |
+
fate theme,taste
|
493 |
+
bridal theme,taste
|
494 |
+
restaurant theme,taste
|
495 |
+
dark theme,taste
|
496 |
+
galaxy theme,taste
|
497 |
+
summer theme,taste
|
498 |
+
flower theme,taste
|
499 |
+
kancolle theme,taste
|
500 |
+
black theme,taste
|
501 |
+
clock theme,taste
|
502 |
+
crystal theme,taste
|
503 |
+
underwater theme,taste
|
504 |
+
blue theme,taste
|
505 |
+
red theme,taste
|
506 |
+
touhou theme,taste
|
507 |
+
japanese theme,taste
|
508 |
+
white theme,taste
|
509 |
+
magical girl theme,taste
|
510 |
+
cooking theme,taste
|
511 |
+
green theme,taste
|
512 |
+
japanese bridal theme,taste
|
513 |
+
style of anmi,taste
|
514 |
+
ixy,taste
|
515 |
+
sy4,taste
|
516 |
+
art deco,taste
|
517 |
+
art nouveau,taste
|
518 |
+
ilya repin,taste
|
519 |
+
yuru yuri,taste
|
520 |
+
michiking,taste
|
521 |
+
momoco haru,taste
|
522 |
+
Gabiran,taste
|
523 |
+
taira tsukune,taste
|
524 |
+
fauvism,taste
|
525 |
+
henri matisse,taste
|
526 |
+
silhouette,taste
|
527 |
+
halftone,taste
|
528 |
+
full color,taste
|
529 |
+
monochrome,taste
|
530 |
+
lineart,taste
|
531 |
+
greyscale,taste
|
532 |
+
graphite,taste
|
533 |
+
hd semirealistic anime cg concept art digital painting,taste
|
534 |
+
realistic,taste
|
535 |
+
photorealistic,taste
|
536 |
+
hyperrealistic,taste
|
537 |
+
impressionism,taste
|
538 |
+
camille pissarro,taste
|
539 |
+
claude monet,taste
|
540 |
+
childe hassam,taste
|
541 |
+
acrylic paint,taste
|
542 |
+
ink,taste
|
543 |
+
marker,taste
|
544 |
+
millipen,taste
|
545 |
+
watercolor,taste
|
546 |
+
3d,taste
|
547 |
+
3d game,taste
|
548 |
+
chibi,taste
|
549 |
+
traditional media,taste
|
550 |
+
anime,taste
|
551 |
+
anime screencap,taste
|
552 |
+
concept art,taste
|
553 |
+
sketch,taste
|
554 |
+
cel shading,taste
|
555 |
+
toon,taste
|
556 |
+
nendroid,taste
|
557 |
+
baroque,taste
|
558 |
+
pixel art,taste
|
559 |
+
fresco,taste
|
560 |
+
photoreal,taste
|
561 |
+
renaissance,taste
|
562 |
+
abstract,taste
|
563 |
+
nihonga,taste
|
564 |
+
ukiyo e,taste
|
565 |
+
character chart,taste
|
566 |
+
reference sheet,taste
|
567 |
+
to many pose,taste
|
568 |
+
artbook,taste
|
569 |
+
bust chart,taste
|
570 |
+
costume setup materials,taste
|
571 |
+
bang dream!,taste
|
572 |
+
death note,taste
|
573 |
+
dragon ball,taste
|
574 |
+
ergo proxy,taste
|
575 |
+
arknights,taste
|
576 |
+
urusei yatsura,taste
|
577 |
+
eromanga sensei,taste
|
578 |
+
gabriel dropout,taste
|
579 |
+
girls und panzer,taste
|
580 |
+
kill la kill,taste
|
581 |
+
kin-iro mosaic,taste
|
582 |
+
granblue fantasy,taste
|
583 |
+
k-on,taste
|
584 |
+
kemono friends,taste
|
585 |
+
code geass,taste
|
586 |
+
gochuumon wa usagi desu ka?,taste
|
587 |
+
gochuumon wa usagi desu ka,taste
|
588 |
+
PSYCHO-PASS,taste
|
589 |
+
strike witches,taste
|
590 |
+
xenoblade chronicles 2,taste
|
591 |
+
type moon,taste
|
592 |
+
danganronpa,taste
|
593 |
+
chainsaw man,taste
|
594 |
+
digimon,taste
|
595 |
+
doraemon,taste
|
596 |
+
nijisanji,taste
|
597 |
+
high school dxd,taste
|
598 |
+
hitoribocchi no marumaru seikatsu,taste
|
599 |
+
precure,taste
|
600 |
+
persona 5,taste
|
601 |
+
hololive,taste
|
602 |
+
yuzusoft,taste
|
603 |
+
yuyushiki,taste
|
604 |
+
yurucamp,taste
|
605 |
+
yuruyuri,taste
|
606 |
+
lucky star,taste
|
607 |
+
love live!,taste
|
608 |
+
kyoto animation,taste
|
609 |
+
eureka seven,taste
|
610 |
+
kobayashi-san chi no maidragon,taste
|
611 |
+
senki zesshou symphogear,taste
|
612 |
+
Takano Yuki,taste
|
613 |
+
asanagi,taste
|
614 |
+
tengen toppa gurren lagann,taste
|
615 |
+
nichijou,taste
|
616 |
+
bishoujo senshi sailor moon,taste
|
617 |
+
boku no hero academia,taste
|
618 |
+
disgaea,taste
|
619 |
+
mahou shoujo madoka magica,taste
|
620 |
+
mahou shoujo lyrical nanoha,taste
|
621 |
+
Yabuki kentaro,taste
|
622 |
+
suzumiya haruhi no yuuutsu,taste
|
623 |
+
science fiction,taste
|
624 |
+
cyberpunk,taste
|
625 |
+
fantasy girl illust,taste
|
626 |
+
contraposto,taste
|
627 |
+
posing sketck,taste
|
628 |
+
vanishing point,taste
|
629 |
+
expressions,taste
|
630 |
+
60s,taste
|
631 |
+
70s,taste
|
632 |
+
80s,taste
|
633 |
+
90s,taste
|
634 |
+
00s,taste
|
635 |
+
anime screeshot,taste
|
636 |
+
anime face,taste
|
637 |
+
anime face eyes,taste
|
638 |
+
azur lane,temporary
|
639 |
+
array stars,temporary
|
640 |
+
anglesailor dress,temporary
|
641 |
+
ambient light,temporary
|
642 |
+
isky,temporary
|
643 |
+
illustration,temporary
|
644 |
+
illumination,temporary
|
645 |
+
impasto,temporary
|
646 |
+
near the water edge,temporary
|
647 |
+
royal skirt with edge,temporary
|
648 |
+
elegant,temporary
|
649 |
+
angel halo,temporary
|
650 |
+
ophakama,temporary
|
651 |
+
oppai loli,temporary
|
652 |
+
original,temporary
|
653 |
+
hazy fog,temporary
|
654 |
+
cassock,temporary
|
655 |
+
mouldy,temporary
|
656 |
+
character,temporary
|
657 |
+
charactergirl,temporary
|
658 |
+
the character is in the center of the frame,temporary
|
659 |
+
character focus,temporary
|
660 |
+
sparkling anime eyes,temporary
|
661 |
+
cloud map plan,temporary
|
662 |
+
cloud map plane,temporary
|
663 |
+
classic,temporary
|
664 |
+
grand,temporary
|
665 |
+
grfeathers,temporary
|
666 |
+
glisten,temporary
|
667 |
+
cross necklace,temporary
|
668 |
+
cage,temporary
|
669 |
+
corner,temporary
|
670 |
+
coral,temporary
|
671 |
+
machine,temporary
|
672 |
+
side blunt bangs,temporary
|
673 |
+
sapphire frills,temporary
|
674 |
+
various metals background,temporary
|
675 |
+
ceiling,temporary
|
676 |
+
gemological hair,temporary
|
677 |
+
citylight,temporary
|
678 |
+
juliet sleeve,temporary
|
679 |
+
silk shawl,temporary
|
680 |
+
star river,temporary
|
681 |
+
style girl,temporary
|
682 |
+
steet,temporary
|
683 |
+
strips,temporary
|
684 |
+
stretch,temporary
|
685 |
+
amazing,temporary
|
686 |
+
everything flowing melt,temporary
|
687 |
+
smooth,temporary
|
688 |
+
gelatinous texture,temporary
|
689 |
+
sole,temporary
|
690 |
+
soft focus,temporary
|
691 |
+
dargon wings,temporary
|
692 |
+
dynamic hair,temporary
|
693 |
+
dynamic fuzziness,temporary
|
694 |
+
diamonds,temporary
|
695 |
+
glaring eyes,temporary
|
696 |
+
optuck,temporary
|
697 |
+
chains,temporary
|
698 |
+
chain storm,temporary
|
699 |
+
chain ring,temporary
|
700 |
+
tulle skirt,temporary
|
701 |
+
tulle lace skirt flowers grass meadow,temporary
|
702 |
+
twist braid,temporary
|
703 |
+
two tone hair:white,temporary
|
704 |
+
tiara,temporary
|
705 |
+
deatailed shadow,temporary
|
706 |
+
tispy,temporary
|
707 |
+
tyndall effect,temporary
|
708 |
+
tailfin,temporary
|
709 |
+
texture skin,temporary
|
710 |
+
texture wings,temporary
|
711 |
+
texture flowers,temporary
|
712 |
+
texture hair,temporary
|
713 |
+
crystallize texture body,temporary
|
714 |
+
aesthetic,temporary
|
715 |
+
thorns,temporary
|
716 |
+
long hair floating everywhere,temporary
|
717 |
+
top sleeves,temporary
|
718 |
+
dragonwings,temporary
|
719 |
+
dragon stands behind the girl,temporary
|
720 |
+
dragon background,temporary
|
721 |
+
dragon eyes,temporary
|
722 |
+
dragon horn,temporary
|
723 |
+
triple crown inlaid with obsidian,temporary
|
724 |
+
skull on dress,temporary
|
725 |
+
revealing dress,temporary
|
726 |
+
brokbody,temporary
|
727 |
+
movement,temporary
|
728 |
+
noble,temporary
|
729 |
+
pearl,temporary
|
730 |
+
background urban rooftop,temporary
|
731 |
+
bana,temporary
|
732 |
+
spring,temporary
|
733 |
+
rose eyes,temporary
|
734 |
+
pampas grass field,temporary
|
735 |
+
peach pink pupils,temporary
|
736 |
+
bikiniiridescence rainbow eyes,temporary
|
737 |
+
corrugated,temporary
|
738 |
+
hit1,temporary
|
739 |
+
starfish,temporary
|
740 |
+
cracked floor,temporary
|
741 |
+
pink pupils,temporary
|
742 |
+
fire butterflys,temporary
|
743 |
+
filesize,temporary
|
744 |
+
fighting,temporary
|
745 |
+
highly fishtail,temporary
|
746 |
+
filigree,temporary
|
747 |
+
hooded cape,temporary
|
748 |
+
fairyland,temporary
|
749 |
+
phoenix girl,temporary
|
750 |
+
fence,temporary
|
751 |
+
vines,temporary
|
752 |
+
blood mist,temporary
|
753 |
+
branch,temporary
|
754 |
+
frills,temporary
|
755 |
+
fringes,temporary
|
756 |
+
bloom effect,temporary
|
757 |
+
frame,temporary
|
758 |
+
flow,temporary
|
759 |
+
floaing feathers,temporary
|
760 |
+
floating cloud,temporary
|
761 |
+
floating rainbow hair,temporary
|
762 |
+
floating fragments,temporary
|
763 |
+
floating silk,temporary
|
764 |
+
floating light spot,temporary
|
765 |
+
floating flow,temporary
|
766 |
+
fluffy hair,temporary
|
767 |
+
haircut,temporary
|
768 |
+
hair hoop,temporary
|
769 |
+
hair bow,temporary
|
770 |
+
hair ribbon,temporary
|
771 |
+
painting,temporary
|
772 |
+
veil,temporary
|
773 |
+
posing,temporary
|
774 |
+
blank stare,temporary
|
775 |
+
dust,temporary
|
776 |
+
bodysuit,temporary
|
777 |
+
poppies,temporary
|
778 |
+
halter dress,temporary
|
779 |
+
staring blankly,temporary
|
780 |
+
straight on,temporary
|
781 |
+
wholebloomer,temporary
|
782 |
+
cloak,temporary
|
783 |
+
medium bust,temporary
|
784 |
+
medium frilled skirt,temporary
|
785 |
+
bare stomach,temporary
|
786 |
+
mechwing,temporary
|
787 |
+
mechanical armor headdress,temporary
|
788 |
+
mechanical girl,temporary
|
789 |
+
mechcoverage,temporary
|
790 |
+
mechclothes,temporary
|
791 |
+
metal scratch,temporary
|
792 |
+
metal style,temporary
|
793 |
+
insanely frills,temporary
|
794 |
+
motion,temporary
|
795 |
+
loose long hair,temporary
|
796 |
+
hands as clear as jewels,temporary
|
797 |
+
less stars form circle,temporary
|
798 |
+
more transparent stars,temporary
|
799 |
+
light 1girl,temporary
|
800 |
+
light shafts,temporary
|
801 |
+
latin cross budded,temporary
|
802 |
+
lavender eyes,temporary
|
803 |
+
randomly distributed clouds,temporary
|
804 |
+
loong,temporary
|
805 |
+
lacy misty,temporary
|
806 |
+
ray tracing,temporary
|
807 |
+
lace flowing melt,temporary
|
808 |
+
translucent fluttering dress with lace,temporary
|
809 |
+
rope,temporary
|
810 |
+
shirt under robe,temporary
|
811 |
+
robot arm,temporary
|
812 |
+
robot girl,temporary
|
813 |
+
long shot,temporary
|
814 |
+
long dress,temporary
|
815 |
+
long focus,temporary
|
816 |
+
holding wine gourd,temporary
|
817 |
+
own hands clasped,temporary
|
818 |
+
dark,temporary
|
819 |
+
dark dress,temporary
|
820 |
+
dark intense shadows,temporary
|
821 |
+
dark soul,temporary
|
822 |
+
dark midnight sky,temporary
|
823 |
+
darkness,temporary
|
824 |
+
gloom expression depressed,temporary
|
825 |
+
dark clouds,temporary
|
826 |
+
darkside,temporary
|
827 |
+
dark persona,temporary
|
828 |
+
ejacuculation under clothes,temporary
|
829 |
+
crystallization of clothes,temporary
|
830 |
+
one girl,temporary
|
831 |
+
hiddhands,temporary
|
832 |
+
right eye,temporary
|
833 |
+
swirl,temporary
|
834 |
+
no shadow,temporary
|
835 |
+
starry sky in circle,temporary
|
836 |
+
columnar crystal,temporary
|
837 |
+
lateral braid,temporary
|
838 |
+
princess,temporary
|
839 |
+
yokozuwari in the cage,temporary
|
840 |
+
volume,temporary
|
841 |
+
the lower body is fishandno human thigh,temporary
|
842 |
+
the lower body is bare,temporary
|
843 |
+
summer long skirt,temporary
|
844 |
+
flower,temporary
|
845 |
+
flowers tire,temporary
|
846 |
+
hiddin the light flowers,temporary
|
847 |
+
flowery flowers,temporary
|
848 |
+
flowery bubbles,temporary
|
849 |
+
flowers meadow,temporary
|
850 |
+
grasslwith petal,temporary
|
851 |
+
petal,temporary
|
852 |
+
caustic,temporary
|
853 |
+
metal crown with ornate stripes,temporary
|
854 |
+
overexplosure,temporary
|
855 |
+
rotating star sky,temporary
|
856 |
+
brokrobot,temporary
|
857 |
+
brokscreen,temporary
|
858 |
+
seaweed,temporary
|
859 |
+
seabirds,temporary
|
860 |
+
light grey very long hair,temporary
|
861 |
+
grey hair,temporary
|
862 |
+
seashell,temporary
|
863 |
+
angle,temporary
|
864 |
+
brokglass,temporary
|
865 |
+
smooth radiant face,temporary
|
866 |
+
smooth radiant skin,temporary
|
867 |
+
smooth skin,temporary
|
868 |
+
conch,temporary
|
869 |
+
perfect limbs,temporary
|
870 |
+
perfect details,temporary
|
871 |
+
emotionless eyes,temporary
|
872 |
+
round hat,temporary
|
873 |
+
focus on face,temporary
|
874 |
+
no facial features,temporary
|
875 |
+
mechanical arm armor,temporary
|
876 |
+
mechanical body armor,temporary
|
877 |
+
mechanical prosthesis,temporary
|
878 |
+
mechanical wing,temporary
|
879 |
+
precious refraction,temporary
|
880 |
+
contour deepening glow,temporary
|
881 |
+
crying,temporary
|
882 |
+
cry,temporary
|
883 |
+
fish,temporary
|
884 |
+
fishes,temporary
|
885 |
+
insanity,temporary
|
886 |
+
amazing details brush strokes,temporary
|
887 |
+
sit on the throne,temporary
|
888 |
+
clothes with lace,temporary
|
889 |
+
metal details,temporary
|
890 |
+
metal texture,temporary
|
891 |
+
metal defects,temporary
|
892 |
+
metal carving,temporary
|
893 |
+
metal wings,temporary
|
894 |
+
melting and,temporary
|
895 |
+
galaxy,temporary
|
896 |
+
falling from the sky,temporary
|
897 |
+
face towards the sky,temporary
|
898 |
+
air force fleet in the sky,temporary
|
899 |
+
rainbow in the sky,temporary
|
900 |
+
feathers floating in the air,temporary
|
901 |
+
flying,temporary
|
902 |
+
refraction,temporary
|
903 |
+
shaped texture hand,temporary
|
904 |
+
shaped clothes,temporary
|
905 |
+
grace,temporary
|
906 |
+
fluorescence,temporary
|
907 |
+
fluorescent purple,temporary
|
908 |
+
light smile,temporary
|
909 |
+
light blush,temporary
|
910 |
+
light particle,temporary
|
911 |
+
crystallized clothing,temporary
|
912 |
+
crystalline purple gemstone gloves,temporary
|
913 |
+
covein blood,temporary
|
914 |
+
blood cherry blossom,temporary
|
915 |
+
blood fog,temporary
|
916 |
+
bloody scenes,temporary
|
917 |
+
moon,temporary
|
918 |
+
with sword,temporary
|
919 |
+
hold sword,temporary
|
920 |
+
buildings,temporary
|
921 |
+
fist,temporary
|
922 |
+
silk,temporary
|
923 |
+
silky hair,temporary
|
924 |
+
stare,temporary
|
925 |
+
prospect,temporary
|
926 |
+
classic decorative border,temporary
|
927 |
+
lying on the lake,temporary
|
928 |
+
pentagram,temporary
|
929 |
+
night with lights whith richly layeclouds clouded moon in the sky,temporary
|
930 |
+
optical phenomena,temporary
|
931 |
+
gradient eyes,temporary
|
932 |
+
thick coating,temporary
|
933 |
+
flooding feet,temporary
|
934 |
+
squeeze,temporary
|
935 |
+
blighting stars,temporary
|
936 |
+
dead end machine,temporary
|
937 |
+
high collar coat,temporary
|
938 |
+
plateau,temporary
|
939 |
+
obsidian bracelet,temporary
|
940 |
+
bone,temporary
|
941 |
+
tables chairs in disarray,temporary
|
942 |
+
left eye,temporary
|
943 |
+
quality;highly,temporary
|
944 |
+
slender waist,temporary
|
945 |
+
finely,temporary
|
946 |
+
bloom,temporary
|
947 |
+
clothes made of silver,temporary
|
948 |
+
there are many scatteluminous petals,temporary
|
949 |
+
the residual eaves duanbi,temporary
|
950 |
+
sleeves past fingers,temporary
|
951 |
+
willows with branches falling into the water,temporary
|
952 |
+
clock,temporary
|
953 |
+
nature,temporary
|
954 |
+
grabbing own breast,temporary
|
955 |
+
drenched,temporary
|
956 |
+
lawn,temporary
|
957 |
+
the picture fills the canvas,temporary
|
958 |
+
cars,temporary
|
959 |
+
young girls,temporary
|
960 |
+
principal,temporary
|
961 |
+
flashes of lightning from the hands,temporary
|
962 |
+
lightning in hand,temporary
|
963 |
+
hands hide in puffy sleeves,temporary
|
964 |
+
hide hands,temporary
|
965 |
+
doomsday scenes,temporary
|
966 |
+
girl leaned her hands against the fence,temporary
|
967 |
+
girls' front,temporary
|
968 |
+
girl wears clothes with texture,temporary
|
969 |
+
girl wears clothes taoist robes,temporary
|
970 |
+
goddess,temporary
|
971 |
+
female girl,temporary
|
972 |
+
small whirlpool,temporary
|
973 |
+
small breast,temporary
|
974 |
+
slightly opmouth,temporary
|
975 |
+
lighting,temporary
|
976 |
+
lighting particle,temporary
|
977 |
+
teasing smile,temporary
|
978 |
+
huge clock core above,temporary
|
979 |
+
upper body exposed,temporary
|
980 |
+
riding motor,temporary
|
981 |
+
the castle stands out against the sky,temporary
|
982 |
+
tint,temporary
|
983 |
+
colocrystal,temporary
|
984 |
+
coloinner hair,temporary
|
985 |
+
deep dark,temporary
|
986 |
+
deep eyes,temporary
|
987 |
+
close up of people,temporary
|
988 |
+
human hands,temporary
|
989 |
+
scales on mermaid,temporary
|
990 |
+
vertical pupil,temporary
|
991 |
+
watercolor 1girl,temporary
|
992 |
+
watercolor medium,temporary
|
993 |
+
water color,temporary
|
994 |
+
underwater forest,temporary
|
995 |
+
water surface,temporary
|
996 |
+
world masterpiece,temporary
|
997 |
+
world masterpiece theater,temporary
|
998 |
+
mature,temporary
|
999 |
+
mature female,temporary
|
1000 |
+
just like stars imploding we absorb the light of day,temporary
|
1001 |
+
sitting on star,temporary
|
1002 |
+
starry sky adorns hair,temporary
|
1003 |
+
pupils,temporary
|
1004 |
+
spirit,temporary
|
1005 |
+
holy,temporary
|
1006 |
+
holy light,temporary
|
1007 |
+
holy lighting,temporary
|
1008 |
+
vary orange pink hard light,temporary
|
1009 |
+
leaning on stone,temporary
|
1010 |
+
mediumhair,temporary
|
1011 |
+
exposing cleavage,temporary
|
1012 |
+
exquisite flame,temporary
|
1013 |
+
exquisite blood,temporary
|
1014 |
+
exquisite cloth,temporary
|
1015 |
+
pointed boots,temporary
|
1016 |
+
river,temporary
|
1017 |
+
war,temporary
|
1018 |
+
battleing,temporary
|
1019 |
+
submerge,temporary
|
1020 |
+
girls,temporary
|
1021 |
+
intricate hair,temporary
|
1022 |
+
detail face,temporary
|
1023 |
+
starry sky in detail,temporary
|
1024 |
+
diagonally from front,temporary
|
1025 |
+
whole body,temporary
|
1026 |
+
bare foot,temporary
|
1027 |
+
lovely eyes,temporary
|
1028 |
+
window pane,temporary
|
1029 |
+
altocumulus,temporary
|
1030 |
+
the finest grass. eyes,temporary
|
1031 |
+
the grass sways in the wind,temporary
|
1032 |
+
grassland,temporary
|
1033 |
+
vast expanse of grassland,temporary
|
1034 |
+
jewelry decoration,temporary
|
1035 |
+
dress with decoration,temporary
|
1036 |
+
violet dress with decoration,temporary
|
1037 |
+
dress with pink lace with decoration,temporary
|
1038 |
+
gear,temporary
|
1039 |
+
other minato aqua,temporary
|
1040 |
+
details,temporary
|
1041 |
+
glowing particles,temporary
|
1042 |
+
many flying drops of water,temporary
|
1043 |
+
many scatteleaves,temporary
|
1044 |
+
multicolohair,temporary
|
1045 |
+
number of environments,temporary
|
1046 |
+
the sun shines through the trees,temporary
|
1047 |
+
body,temporary
|
1048 |
+
gemstone of body,temporary
|
1049 |
+
attitude,temporary
|
1050 |
+
world war,temporary
|
1051 |
+
short little girl,temporary
|
1052 |
+
resolute eyes,temporary
|
1053 |
+
man,temporary
|
1054 |
+
intercourse with man,temporary
|
1055 |
+
hollow eyes,temporary
|
1056 |
+
hollow night,temporary
|
1057 |
+
hollow knight,temporary
|
1058 |
+
medieval town,temporary
|
1059 |
+
medium breast,temporary
|
1060 |
+
medium chest circumference,temporary
|
1061 |
+
medium wind,temporary
|
1062 |
+
formal,temporary
|
1063 |
+
super illustration,temporary
|
1064 |
+
very long dress cover feet,temporary
|
1065 |
+
long dark blond hair,temporary
|
1066 |
+
long top sleeves past fingers,temporary
|
1067 |
+
long yarn,temporary
|
1068 |
+
very long rainbow hair,temporary
|
1069 |
+
long wavy curly hair,temporary
|
1070 |
+
long wavy hair,temporary
|
1071 |
+
long hair blown up,temporary
|
1072 |
+
birds,temporary
|
1073 |
+
birdcage,temporary
|
1074 |
+
bird see,temporary
|
1075 |
+
torii,temporary
|
1076 |
+
normal hands,temporary
|
1077 |
+
suspended crystal,temporary
|
1078 |
+
suspended colorless crystal,temporary
|
1079 |
+
garden,temporary
|
1080 |
+
canopy,temporary
|
1081 |
+
angel wings,temporary
|
1082 |
+
beautifully painted,temporary
|
1083 |
+
angry face,temporary
|
1084 |
+
anger,temporary
|
1085 |
+
frozfeathers,temporary
|
1086 |
+
transparent glass,temporary
|
1087 |
+
dynamic composition,temporary
|
1088 |
+
animal face,temporary
|
1089 |
+
baby face,temporary
|
1090 |
+
single human girl,temporary
|
1091 |
+
pig tails,temporary
|
1092 |
+
with lightning inside the crystal,temporary
|
1093 |
+
sputtebrokfrom inside to outside,temporary
|
1094 |
+
two legs,temporary
|
1095 |
+
iridescence rainbow sailor dress,temporary
|
1096 |
+
iridescence rainbow dress,temporary
|
1097 |
+
iridescence rainbow hair,temporary
|
1098 |
+
iridescence rainbow eyes,temporary
|
1099 |
+
iridescent headwear,temporary
|
1100 |
+
sunrise,temporary
|
1101 |
+
sunlight,temporary
|
1102 |
+
cum in breasts,temporary
|
1103 |
+
thick hair,temporary
|
1104 |
+
glistening light of waves,temporary
|
1105 |
+
damaged classroom,temporary
|
1106 |
+
background,temporary
|
1107 |
+
loong background,temporary
|
1108 |
+
luminescence,temporary
|
1109 |
+
luminous eyes,temporary
|
1110 |
+
luminous particles,temporary
|
1111 |
+
man with has short hair,temporary
|
1112 |
+
hair stick,temporary
|
1113 |
+
hair decoration,temporary
|
1114 |
+
emerging dark purple across with hair,temporary
|
1115 |
+
pick dye hair in hair,temporary
|
1116 |
+
fluttering hair,temporary
|
1117 |
+
lowing hair,temporary
|
1118 |
+
disreveled hair,temporary
|
1119 |
+
hair flows upwards,temporary
|
1120 |
+
translucent fluttering skirt,temporary
|
1121 |
+
reflective,temporary
|
1122 |
+
she bowed her head in frustration,temporary
|
1123 |
+
flying sparks,temporary
|
1124 |
+
flying splashes,temporary
|
1125 |
+
flying petals,temporary
|
1126 |
+
beauty eye,temporary
|
1127 |
+
bishoujo,temporary
|
1128 |
+
nose blush,temporary
|
1129 |
+
kneehighs,temporary
|
1130 |
+
knee highs,temporary
|
1131 |
+
ice,temporary
|
1132 |
+
ice adorns hair,temporary
|
1133 |
+
feathers made of ice,temporary
|
1134 |
+
ice fire melt,temporary
|
1135 |
+
ice crystal,temporary
|
1136 |
+
expression,temporary
|
1137 |
+
the quality,temporary
|
1138 |
+
float,temporary
|
1139 |
+
floating sflow,temporary
|
1140 |
+
long hair flowing with the wind,temporary
|
1141 |
+
hair fluttering in the wind,temporary
|
1142 |
+
landscape,temporary
|
1143 |
+
clothes,temporary
|
1144 |
+
paizuri under clothes,temporary
|
1145 |
+
intricate detail,temporary
|
1146 |
+
complex pattern,temporary
|
1147 |
+
intricate light,temporary
|
1148 |
+
multiple wings,temporary
|
1149 |
+
covebreasts,temporary
|
1150 |
+
flat breasts,temporary
|
1151 |
+
dove of peace,temporary
|
1152 |
+
wallpaper,temporary
|
1153 |
+
wallpaper 8k cg,temporary
|
1154 |
+
strange,temporary
|
1155 |
+
pendant on tip of hat,temporary
|
1156 |
+
authentic face,temporary
|
1157 |
+
authentic skin texture,temporary
|
1158 |
+
magical,temporary
|
1159 |
+
magic style,temporary
|
1160 |
+
comic,temporary
|
1161 |
+
manganime,temporary
|
1162 |
+
indifference,temporary
|
1163 |
+
fog,temporary
|
1164 |
+
eyes face,temporary
|
1165 |
+
fire in eyes,temporary
|
1166 |
+
long bangs betweeyes,temporary
|
1167 |
+
stars in the eyes,temporary
|
1168 |
+
shine eyes,temporary
|
1169 |
+
unhelpless,temporary
|
1170 |
+
oil,temporary
|
1171 |
+
oil painting,temporary
|
1172 |
+
melt,temporary
|
1173 |
+
hair like melted metal,temporary
|
1174 |
+
sputtemoltiron,temporary
|
1175 |
+
leaves,temporary
|
1176 |
+
leaves dress,temporary
|
1177 |
+
bare navel,temporary
|
1178 |
+
bare shoulders,temporary
|
1179 |
+
bare arms,temporary
|
1180 |
+
dishevelled hair,temporary
|
1181 |
+
messy hair style,temporary
|
1182 |
+
messy long hair,temporary
|
1183 |
+
messy floating hair,temporary
|
1184 |
+
flowing,temporary
|
1185 |
+
flowing lace,temporary
|
1186 |
+
flowing background,temporary
|
1187 |
+
the sensation of water flowing,temporary
|
1188 |
+
flowing iron,temporary
|
1189 |
+
flowing transparent black,temporary
|
1190 |
+
flowing transparent white,temporary
|
1191 |
+
flowing hair,temporary
|
1192 |
+
meteor,temporary
|
1193 |
+
contour deepening,temporary
|
1194 |
+
cumulus,temporary
|
1195 |
+
overexposure,temporary
|
1196 |
+
curved slender fish tail,temporary
|
1197 |
+
spoken elipsis,screen
|
1198 |
+
spoken question mark,screen
|
1199 |
+
spoken musical note,screen
|
1200 |
+
spoken squiggle.,screen
|
1201 |
+
spoken heart,screen
|
1202 |
+
speech balloons,screen
|
1203 |
+
spoken exclamation mark,screen
|
1204 |
+
thought bubble,screen
|
1205 |
+
hdr,screen
|
1206 |
+
film grain,screen
|
1207 |
+
bokeh,screen
|
1208 |
+
blurry,screen
|
1209 |
+
blurred,screen
|
1210 |
+
blur,screen
|
1211 |
+
blurry background,screen
|
1212 |
+
blurry foreground,screen
|
1213 |
+
light bloom,screen
|
1214 |
+
raytrace,screen
|
1215 |
+
lens flare,screen
|
1216 |
+
fisheye,screen
|
1217 |
+
motion blur,screen
|
1218 |
+
emphasis lines,screen
|
1219 |
+
chromatic aberration,screen
|
1220 |
+
ligne claire,screen
|
1221 |
+
motion lines,screen
|
1222 |
+
depth of field,screen
|
1223 |
+
optical illusion,screen
|
1224 |
+
album cover,screen
|
1225 |
+
cover page,screen
|
1226 |
+
magazine cover,screen
|
1227 |
+
cover,screen
|
1228 |
+
manga cover,screen
|
1229 |
+
card,screen
|
1230 |
+
phone screen,screen
|
1231 |
+
letterboxed,screen
|
1232 |
+
framed,screen
|
1233 |
+
border,screen
|
1234 |
+
beard,face
|
1235 |
+
pacifier mouth,face
|
1236 |
+
colorful tongue,face
|
1237 |
+
puckered lips,face
|
1238 |
+
liquid tongue,face
|
1239 |
+
tongue within mouth,face
|
1240 |
+
tongue,face
|
1241 |
+
big mouth,face
|
1242 |
+
fangs,face
|
1243 |
+
closed mouth,face
|
1244 |
+
sharp teeth,face
|
1245 |
+
upper teeth,face
|
1246 |
+
skin fang,face
|
1247 |
+
rabbit ears,face
|
1248 |
+
pointy ears,face
|
1249 |
+
fox ears,face
|
1250 |
+
liquid ears,face
|
1251 |
+
liquid animal ears,face
|
1252 |
+
hair behind ear,face
|
1253 |
+
heavy ears,face
|
1254 |
+
heavy animal ears,face
|
1255 |
+
short elf ears,face
|
1256 |
+
animal ear,face
|
1257 |
+
cat ears,face
|
1258 |
+
horse ears,face
|
1259 |
+
fused animal ears,face
|
1260 |
+
wolf ears,face
|
1261 |
+
v shaped eyebrows,face
|
1262 |
+
thick eyebrows,face
|
1263 |
+
short eyebrows,face
|
1264 |
+
facial hair,face
|
1265 |
+
eye shadow,face
|
1266 |
+
disgusted eyes,face
|
1267 |
+
heterochromia,face
|
1268 |
+
unusual pupils,face
|
1269 |
+
scorned eyes,face
|
1270 |
+
jitome,face
|
1271 |
+
half closed eyes,face
|
1272 |
+
tareme,face
|
1273 |
+
tsurime,face
|
1274 |
+
rolling eyes,face
|
1275 |
+
heart shaped pupils,face
|
1276 |
+
rape face,face
|
1277 |
+
glow eyes,face
|
1278 |
+
glowing eyes,face
|
1279 |
+
sanpaku eyes,face
|
1280 |
+
slanted eyes,face
|
1281 |
+
upturned eyes,face
|
1282 |
+
water eyes,face
|
1283 |
+
provocative eyes,face
|
1284 |
+
symbol shaped pupils,face
|
1285 |
+
slit pupils,face
|
1286 |
+
halfclosedeyes,face
|
1287 |
+
closed eyes,face
|
1288 |
+
raised eyebrow,face
|
1289 |
+
diamond into eyes,face
|
1290 |
+
tearing up,face
|
1291 |
+
orange eyes,face
|
1292 |
+
golden eye,face
|
1293 |
+
pink eyes,face
|
1294 |
+
blonde eyes,face
|
1295 |
+
yellow eyes,face
|
1296 |
+
gray eyes,face
|
1297 |
+
brond eyes,face
|
1298 |
+
silver eyes,face
|
1299 |
+
sky blue eyes,face
|
1300 |
+
black eyes,face
|
1301 |
+
navy eyes,face
|
1302 |
+
purple eyes,face
|
1303 |
+
vermilion eyes,face
|
1304 |
+
blue eyes,face
|
1305 |
+
red eyes,face
|
1306 |
+
multicolored eyes,face
|
1307 |
+
brown eyes,face
|
1308 |
+
cooper eyes,face
|
1309 |
+
rainbow eyes,face
|
1310 |
+
white eyes,face
|
1311 |
+
colorless eyes,face
|
1312 |
+
light purple eyes,face
|
1313 |
+
indigo eyes,face
|
1314 |
+
green eyes,face
|
1315 |
+
big face,face
|
1316 |
+
kawaii face,face
|
1317 |
+
floating,modifier
|
1318 |
+
indoor,modifier
|
1319 |
+
exterior,modifier
|
1320 |
+
interior,modifier
|
1321 |
+
wetting,modifier
|
1322 |
+
ruined,modifier
|
1323 |
+
beautiful,modifier
|
1324 |
+
outdoor,modifier
|
1325 |
+
wild,modifier
|
1326 |
+
body fur,animal
|
1327 |
+
blue fur,animal
|
1328 |
+
red fur,animal
|
1329 |
+
azure fur,animal
|
1330 |
+
orange fur,animal
|
1331 |
+
colorful fur,animal
|
1332 |
+
yellow fur,animal
|
1333 |
+
black fur,animal
|
1334 |
+
white fur,animal
|
1335 |
+
brown fur,animal
|
1336 |
+
gray fur,animal
|
1337 |
+
rose fur,animal
|
1338 |
+
pink fur,animal
|
1339 |
+
green fur,animal
|
1340 |
+
purple fur,animal
|
1341 |
+
rainbow fur,animal
|
1342 |
+
blond fur,animal
|
1343 |
+
silver fur,animal
|
1344 |
+
sky blue fur,animal
|
1345 |
+
navy fur,animal
|
1346 |
+
vermilion fur,animal
|
1347 |
+
cooper fur,animal
|
1348 |
+
colorless fur,animal
|
1349 |
+
light purple fur,animal
|
1350 |
+
indigo fur,animal
|
1351 |
+
shadow,lighting
|
1352 |
+
cinematic shadows,lighting
|
1353 |
+
dramatic shadows,lighting
|
1354 |
+
deep shadows,lighting
|
1355 |
+
golden hour lighting,lighting
|
1356 |
+
spot light,lighting
|
1357 |
+
dynamic lighting,lighting
|
1358 |
+
sparkle,lighting
|
1359 |
+
cinematic lighting,lighting
|
1360 |
+
shine,lighting
|
1361 |
+
glinting stars,lighting
|
1362 |
+
backlighting,lighting
|
1363 |
+
backlight,lighting
|
1364 |
+
strong rim light,lighting
|
1365 |
+
strong light,lighting
|
1366 |
+
strong light coming in,lighting
|
1367 |
+
moonlight,lighting
|
1368 |
+
light,lighting
|
1369 |
+
light sparkles,lighting
|
1370 |
+
glowing,lighting
|
1371 |
+
light rays,lighting
|
1372 |
+
faint light,lighting
|
1373 |
+
rim light,lighting
|
1374 |
+
volumetric light,lighting
|
1375 |
+
dappled sunlight,lighting
|
1376 |
+
light leaks,lighting
|
1377 |
+
beautifully lit,lighting
|
1378 |
+
skull,detail
|
1379 |
+
dragon,detail
|
1380 |
+
heart,detail
|
1381 |
+
sphere,detail
|
1382 |
+
spherical,detail
|
1383 |
+
crescent,detail
|
1384 |
+
carrot,detail
|
1385 |
+
star,detail
|
1386 |
+
butterfly,detail
|
1387 |
+
gem,detail
|
1388 |
+
leaf,detail
|
1389 |
+
bat,detail
|
1390 |
+
cool,detail
|
1391 |
+
cute,detail
|
1392 |
+
sphere,detail
|
1393 |
+
glassy,detail
|
1394 |
+
crystal,detail
|
1395 |
+
diamond,detail
|
1396 |
+
latex,detail
|
1397 |
+
denim,detail
|
1398 |
+
ruby,detail
|
1399 |
+
lace trim,detail
|
1400 |
+
spherical,detail
|
1401 |
+
metallic,detail
|
1402 |
+
transparent,detail
|
1403 |
+
leather,detail
|
1404 |
+
fur,detail
|
1405 |
+
furry,detail
|
1406 |
+
wooden,detail
|
1407 |
+
midriff,detail
|
1408 |
+
shiny,detail
|
1409 |
+
glitter,detail
|
1410 |
+
refractions,detail
|
1411 |
+
wet,detail
|
1412 |
+
burning,detail
|
1413 |
+
luminous,detail
|
1414 |
+
bright,detail
|
1415 |
+
cold,detail
|
1416 |
+
blue,detail
|
1417 |
+
red,detail
|
1418 |
+
azure,detail
|
1419 |
+
orange,detail
|
1420 |
+
colorful,detail
|
1421 |
+
yellow,detail
|
1422 |
+
black,detail
|
1423 |
+
white,detail
|
1424 |
+
brown,detail
|
1425 |
+
gray,detail
|
1426 |
+
rose,detail
|
1427 |
+
pink,detail
|
1428 |
+
green,detail
|
1429 |
+
purple,detail
|
1430 |
+
rainbow,detail
|
1431 |
+
blond,detail
|
1432 |
+
silver,detail
|
1433 |
+
sky blue,detail
|
1434 |
+
navy,detail
|
1435 |
+
vermilion,detail
|
1436 |
+
cooper,detail
|
1437 |
+
colorless,detail
|
1438 |
+
light purple,detail
|
1439 |
+
indigo,detail
|
1440 |
+
lot of,detail
|
1441 |
+
huge,detail
|
1442 |
+
little,detail
|
1443 |
+
big,detail
|
1444 |
+
short,detail
|
1445 |
+
middle,detail
|
1446 |
+
long,detail
|
1447 |
+
detailed,detail
|
1448 |
+
gorgeous,detail
|
1449 |
+
excellent beautiful,detail
|
1450 |
+
high quality,detail
|
1451 |
+
best,detail
|
1452 |
+
1000 layer,detail
|
1453 |
+
incredibly detailed,detail
|
1454 |
+
delicate,detail
|
1455 |
+
extremely detailed,detail
|
1456 |
+
extremely beautiful detailed,detail
|
1457 |
+
beautiful detailed,detail
|
1458 |
+
fine,detail
|
1459 |
+
atlantis,place
|
1460 |
+
cyberpunk city,place
|
1461 |
+
desert with cactus,place
|
1462 |
+
jungle,place
|
1463 |
+
snow mountain,place
|
1464 |
+
slum,place
|
1465 |
+
Disney Resort outdoo,place
|
1466 |
+
death garden,place
|
1467 |
+
swimming pool,place
|
1468 |
+
pool side,place
|
1469 |
+
hotel outside,place
|
1470 |
+
Las Vegas,place
|
1471 |
+
space port,place
|
1472 |
+
athletic field,place
|
1473 |
+
mountains lakes in the distance,place
|
1474 |
+
outdoors,place
|
1475 |
+
residence,place
|
1476 |
+
residence house outdoors,place
|
1477 |
+
onsen,place
|
1478 |
+
onsen,place
|
1479 |
+
hot water,place
|
1480 |
+
house outdoors,place
|
1481 |
+
rivers,place
|
1482 |
+
volcano,place
|
1483 |
+
sea of flowers,place
|
1484 |
+
flower field,place
|
1485 |
+
beach,place
|
1486 |
+
ocean waves,place
|
1487 |
+
coast,place
|
1488 |
+
in the sea,place
|
1489 |
+
cliff,place
|
1490 |
+
street,place
|
1491 |
+
cityscape,place
|
1492 |
+
school outdoors,place
|
1493 |
+
kyoto,place
|
1494 |
+
church outdoors,place
|
1495 |
+
near future city,place
|
1496 |
+
sky,place
|
1497 |
+
lunar surface,place
|
1498 |
+
public park,place
|
1499 |
+
factory,place
|
1500 |
+
factory area outdoor,place
|
1501 |
+
deck of a ship,place
|
1502 |
+
desert,place
|
1503 |
+
lake in mountain stream,place
|
1504 |
+
castle outdoor,place
|
1505 |
+
shrine grove,place
|
1506 |
+
forest,place
|
1507 |
+
shrine,place
|
1508 |
+
underwater,place
|
1509 |
+
underwater,place
|
1510 |
+
starry sky,place
|
1511 |
+
snow field,place
|
1512 |
+
battlefield,place
|
1513 |
+
on the battlefield,place
|
1514 |
+
ruins of city in war,place
|
1515 |
+
ruins of details,place
|
1516 |
+
waterfall,place
|
1517 |
+
underground,place
|
1518 |
+
hell on earth,place
|
1519 |
+
train outdoors,place
|
1520 |
+
railroad crossing,place
|
1521 |
+
ruins,place
|
1522 |
+
ruins outdoor,place
|
1523 |
+
power plant outdoor,place
|
1524 |
+
downtown area,place
|
1525 |
+
hospital outdoors,place
|
1526 |
+
graveyard,place
|
1527 |
+
mist encircles the mountains,place
|
1528 |
+
snow forest with trees,place
|
1529 |
+
amusement park,place
|
1530 |
+
athletics stadium,place
|
1531 |
+
baby cradle,place
|
1532 |
+
baby room,place
|
1533 |
+
western style room,place
|
1534 |
+
casino,place
|
1535 |
+
tidy classroom,place
|
1536 |
+
gym,place
|
1537 |
+
skeleton church,place
|
1538 |
+
toilet room,place
|
1539 |
+
bathtub,place
|
1540 |
+
on bed,place
|
1541 |
+
bedroom,place
|
1542 |
+
hotel inside,place
|
1543 |
+
live music club,place
|
1544 |
+
dark room,place
|
1545 |
+
infirmary,place
|
1546 |
+
cinema,place
|
1547 |
+
cinema indoors,place
|
1548 |
+
indoors,place
|
1549 |
+
residence indoors,place
|
1550 |
+
house,place
|
1551 |
+
house indoors,place
|
1552 |
+
school,place
|
1553 |
+
school indoors,place
|
1554 |
+
church,place
|
1555 |
+
church indoors,place
|
1556 |
+
classrooms,place
|
1557 |
+
factory area indoor,place
|
1558 |
+
changing room,place
|
1559 |
+
kidsroom,place
|
1560 |
+
primary school,place
|
1561 |
+
elementary school,place
|
1562 |
+
castle,place
|
1563 |
+
castle indoor,place
|
1564 |
+
tatami,place
|
1565 |
+
library,place
|
1566 |
+
aquarium,place
|
1567 |
+
rest room,place
|
1568 |
+
dressing room,place
|
1569 |
+
inside a train,place
|
1570 |
+
train interior,place
|
1571 |
+
ruins indoor,place
|
1572 |
+
hospital,place
|
1573 |
+
hospital indoors,place
|
1574 |
+
bathroom,place
|
1575 |
+
bookstore,place
|
1576 |
+
japanese room,place
|
1577 |
+
paris outdoor,place
|
1578 |
+
leaning tower of pisa outdoor,place
|
1579 |
+
pyramid outdoor,place
|
1580 |
+
Kowloon City outdoor,place
|
1581 |
+
Empire State Building outdoor,place
|
1582 |
+
San Francisco golden gate bridge,place
|
1583 |
+
San Francisco,place
|
1584 |
+
new york outdoor,place
|
1585 |
+
florida outdoor,place
|
1586 |
+
Las Vegas outdoor,place
|
1587 |
+
San Francisco Lombard Street,place
|
1588 |
+
washington outdoor,place
|
1589 |
+
ayers rock,place
|
1590 |
+
eiffel tower,place
|
1591 |
+
Everest,place
|
1592 |
+
Kremlin,place
|
1593 |
+
Mont-Saint-Michel and its Bay,place
|
1594 |
+
arc de triomphe,place
|
1595 |
+
Kowloon City,place
|
1596 |
+
hongkong,place
|
1597 |
+
Forbidden City china,place
|
1598 |
+
Yangtze River,place
|
1599 |
+
great wall of china,place
|
1600 |
+
shinjuku kabukicho outdoor,place
|
1601 |
+
kyoto outdoor,place
|
1602 |
+
shibuya outdoor,place
|
1603 |
+
tokyo outdoor,place
|
1604 |
+
tokyo tower outdoor,place
|
1605 |
+
japanese highway outdoor,place
|
1606 |
+
fujisan outdoor,place
|
1607 |
+
annoyed,status
|
1608 |
+
spasm,status
|
1609 |
+
many steam and many sweat,status
|
1610 |
+
damaged,status
|
1611 |
+
sweating,status
|
1612 |
+
glow,status
|
1613 |
+
sweating profusely,status
|
1614 |
+
paraphilia,status
|
1615 |
+
steaming body,status
|
1616 |
+
sleep,status
|
1617 |
+
floating hair,status
|
1618 |
+
entangle,status
|
1619 |
+
ice candy,food
|
1620 |
+
curry,food
|
1621 |
+
green curry,food
|
1622 |
+
seafood curry,food
|
1623 |
+
tomato curry,food
|
1624 |
+
butter chicken curry,food
|
1625 |
+
rice ball,food
|
1626 |
+
fried rice,food
|
1627 |
+
bouillabaisse,food
|
1628 |
+
sushi,food
|
1629 |
+
toast,food
|
1630 |
+
hamburger,food
|
1631 |
+
pizza,food
|
1632 |
+
Tapioca milk tea,food
|
1633 |
+
milk,food
|
1634 |
+
??,food
|
1635 |
+
??,food
|
1636 |
+
??,food
|
1637 |
+
??,food
|
1638 |
+
??,food
|
1639 |
+
??,food
|
1640 |
+
banana,food
|
1641 |
+
tomato,food
|
1642 |
+
beef stew,food
|
1643 |
+
beef steak,food
|
1644 |
+
fried chicken,food
|
1645 |
+
roast beef,food
|
1646 |
+
udon,food
|
1647 |
+
pasta,food
|
1648 |
+
ramen,food
|
1649 |
+
salad,food
|
1650 |
+
takoyaki,food
|
1651 |
+
cat tail,body
|
1652 |
+
horse tail,body
|
1653 |
+
mole under mouth,body
|
1654 |
+
weeping rags,body
|
1655 |
+
mole under eye,body
|
1656 |
+
slim legs,body
|
1657 |
+
hips,body
|
1658 |
+
pubic hair,body
|
1659 |
+
foot,body
|
1660 |
+
foot focus,body
|
1661 |
+
soles,body
|
1662 |
+
thighs,body
|
1663 |
+
butt crack,body
|
1664 |
+
beautiful legs,body
|
1665 |
+
single horns,body
|
1666 |
+
horns,body
|
1667 |
+
demon horns,body
|
1668 |
+
dragon horns,body
|
1669 |
+
goat horns,body
|
1670 |
+
oni horns,body
|
1671 |
+
cow horns,body
|
1672 |
+
curled horns,body
|
1673 |
+
sheep horns,body
|
1674 |
+
liquid breasts,body
|
1675 |
+
sideboob,body
|
1676 |
+
underboob,body
|
1677 |
+
huge breasts,body
|
1678 |
+
heavy breasts,body
|
1679 |
+
small breasts,body
|
1680 |
+
sagging breasts,body
|
1681 |
+
big tits,body
|
1682 |
+
large breasts,body
|
1683 |
+
big breasts,body
|
1684 |
+
gigantic breasts,body
|
1685 |
+
medium breasts,body
|
1686 |
+
flat chest,body
|
1687 |
+
athletic,body
|
1688 |
+
scrawny,body
|
1689 |
+
brawny,body
|
1690 |
+
wiry,body
|
1691 |
+
toned,body
|
1692 |
+
ripped,body
|
1693 |
+
abs,body
|
1694 |
+
nail polish,body
|
1695 |
+
long nails,body
|
1696 |
+
wings,body
|
1697 |
+
mini hip,body
|
1698 |
+
small hip,body
|
1699 |
+
shiny skin,body
|
1700 |
+
big muscles,body
|
1701 |
+
toenail polish,body
|
1702 |
+
glamorous,body
|
1703 |
+
slim,body
|
1704 |
+
heavyset,body
|
1705 |
+
short stature,body
|
1706 |
+
fit,body
|
1707 |
+
chubby,body
|
1708 |
+
skinny,body
|
1709 |
+
obese,body
|
1710 |
+
rotund,body
|
1711 |
+
highers,body
|
1712 |
+
slender,body
|
1713 |
+
petite,body
|
1714 |
+
tall stature,body
|
1715 |
+
underweight,body
|
1716 |
+
obesity,body
|
1717 |
+
overweight,body
|
1718 |
+
medium,body
|
1719 |
+
voluptuous,body
|
1720 |
+
gradient,body
|
1721 |
+
slender body,body
|
1722 |
+
plump,body
|
1723 |
+
curvy,body
|
1724 |
+
tall person,body
|
1725 |
+
small build,body
|
1726 |
+
minigirl,body
|
1727 |
+
ample figure,body
|
1728 |
+
forehead mark,body
|
1729 |
+
colored skin,body
|
1730 |
+
dark skin,body
|
1731 |
+
stomach,body
|
1732 |
+
bust,body
|
1733 |
+
navel,body
|
1734 |
+
fang,body
|
1735 |
+
face,body
|
1736 |
+
chest,body
|
1737 |
+
shoulder blades,body
|
1738 |
+
mouth,body
|
1739 |
+
fingers,body
|
1740 |
+
ears,body
|
1741 |
+
hand,body
|
1742 |
+
limb,body
|
1743 |
+
hip,body
|
1744 |
+
bangs,body
|
1745 |
+
groin,body
|
1746 |
+
skin,body
|
1747 |
+
skin,body
|
1748 |
+
hair,body
|
1749 |
+
eyebrows,body
|
1750 |
+
elbow,body
|
1751 |
+
abs,body
|
1752 |
+
eyes,body
|
1753 |
+
ribs,body
|
1754 |
+
nude,body
|
1755 |
+
1girl,people
|
1756 |
+
2girls,people
|
1757 |
+
3girls,people
|
1758 |
+
girls sandwich,people
|
1759 |
+
4girls,people
|
1760 |
+
6+girls,people
|
1761 |
+
solo,people
|
1762 |
+
siblings,people
|
1763 |
+
group,people
|
1764 |
+
multiple,people
|
1765 |
+
3some,people
|
1766 |
+
threesome,people
|
1767 |
+
ffm threesome,people
|
1768 |
+
mmf threesome,people
|
1769 |
+
1boy,people
|
1770 |
+
2boys,people
|
1771 |
+
3boys,people
|
1772 |
+
boys sandwich,people
|
1773 |
+
4boys,people
|
1774 |
+
6+boys,people
|
1775 |
+
multiple girls,people
|
1776 |
+
multiple boys,people
|
1777 |
+
futa with female,gender
|
1778 |
+
furry female,gender
|
1779 |
+
baby girl,gender
|
1780 |
+
female child,gender
|
1781 |
+
girl,gender
|
1782 |
+
beauty girl,gender
|
1783 |
+
women,gender
|
1784 |
+
old man,gender
|
1785 |
+
ugly man,gender
|
1786 |
+
baby shota,gender
|
1787 |
+
little shota,gender
|
1788 |
+
bbc,gender
|
1789 |
+
boy,gender
|
1790 |
+
fat man,gender
|
1791 |
+
male,gender
|
1792 |
+
middle aged man,gender
|
1793 |
+
hairy man,gender
|
1794 |
+
shota,gender
|
1795 |
+
nwg,nsfw
|
1796 |
+
nsfw,nsfw
|
1797 |
+
spanking,nsfw
|
1798 |
+
glowing penis,nsfw
|
1799 |
+
aurora glowing penis,nsfw
|
1800 |
+
rainbow glowing penis,nsfw
|
1801 |
+
dildo,nsfw
|
1802 |
+
penis band,nsfw
|
1803 |
+
huge dildo,nsfw
|
1804 |
+
used condo,nsfw
|
1805 |
+
tentacle,nsfw
|
1806 |
+
many tentacles,nsfw
|
1807 |
+
condom in mouth,nsfw
|
1808 |
+
presentingwet pussy,nsfw
|
1809 |
+
pussy focus,nsfw
|
1810 |
+
uterus at viewer penis inserted into pussy from cross section looking through,nsfw
|
1811 |
+
be almost there,nsfw
|
1812 |
+
used condom on penis,nsfw
|
1813 |
+
open chest,nsfw
|
1814 |
+
panties aside,nsfw
|
1815 |
+
pussy juice,nsfw
|
1816 |
+
womb tattoo,nsfw
|
1817 |
+
perky breasts,nsfw
|
1818 |
+
os uteri,nsfw
|
1819 |
+
fertilization,nsfw
|
1820 |
+
censored,nsfw
|
1821 |
+
hentai,nsfw
|
1822 |
+
sperma,nsfw
|
1823 |
+
cum on tongue,nsfw
|
1824 |
+
breathless,nsfw
|
1825 |
+
white splash,nsfw
|
1826 |
+
white liquid,nsfw
|
1827 |
+
uncensored,nsfw
|
1828 |
+
cuckold,nsfw
|
1829 |
+
group sex,nsfw
|
1830 |
+
harem,nsfw
|
1831 |
+
presenting,nsfw
|
1832 |
+
rape,nsfw
|
1833 |
+
breast press,nsfw
|
1834 |
+
promiscuous sex,nsfw
|
1835 |
+
public indecency,nsfw
|
1836 |
+
the rope my crotch,nsfw
|
1837 |
+
sleeping rape,nsfw
|
1838 |
+
molest,nsfw
|
1839 |
+
molestation,nsfw
|
1840 |
+
clothed sex,nsfw
|
1841 |
+
cfnm,nsfw
|
1842 |
+
prostitution,nsfw
|
1843 |
+
orgy,nsfw
|
1844 |
+
gang bang,nsfw
|
1845 |
+
gang rape,nsfw
|
1846 |
+
pee,nsfw
|
1847 |
+
leaking pee,nsfw
|
1848 |
+
peeing,nsfw
|
1849 |
+
sex,nsfw
|
1850 |
+
intercourse with a man,nsfw
|
1851 |
+
paizuri,nsfw
|
1852 |
+
titty fuck,nsfw
|
1853 |
+
titfuck,nsfw
|
1854 |
+
tit wank,nsfw
|
1855 |
+
tortoise shell bondage,nsfw
|
1856 |
+
breast squeeze,nsfw
|
1857 |
+
mating,nsfw
|
1858 |
+
copulation,nsfw
|
1859 |
+
softcore,nsfw
|
1860 |
+
hardcore,nsfw
|
1861 |
+
grabbing from front,nsfw
|
1862 |
+
footjob,nsfw
|
1863 |
+
breast grab,nsfw
|
1864 |
+
breasts on glass,nsfw
|
1865 |
+
grabbing from behind,nsfw
|
1866 |
+
lactation through clothes,nsfw
|
1867 |
+
ass grab,nsfw
|
1868 |
+
top down bottom up,nsfw
|
1869 |
+
shirt lift,nsfw
|
1870 |
+
lift up one's skirt,nsfw
|
1871 |
+
upskirt,nsfw
|
1872 |
+
sweater lift,nsfw
|
1873 |
+
clothes lift,nsfw
|
1874 |
+
squat_toilet,nsfw
|
1875 |
+
fellatio gesture,nsfw
|
1876 |
+
female masturbation,nsfw
|
1877 |
+
straddling,nsfw
|
1878 |
+
spread leg,nsfw
|
1879 |
+
straddling spread legs,nsfw
|
1880 |
+
straddling arms behind head,nsfw
|
1881 |
+
leg grab,nsfw
|
1882 |
+
licking testicle,nsfw
|
1883 |
+
covering breasts,nsfw
|
1884 |
+
squatting,nsfw
|
1885 |
+
fingering vaginal,nsfw
|
1886 |
+
hand in pussy,nsfw
|
1887 |
+
touch her crotch with own hand,nsfw
|
1888 |
+
spread pussy,nsfw
|
1889 |
+
spread vagina,nsfw
|
1890 |
+
sitting on person,nsfw
|
1891 |
+
spread legs up,nsfw
|
1892 |
+
spread legs,nsfw
|
1893 |
+
covering nipples,nsfw
|
1894 |
+
insert fingers to pussy,nsfw
|
1895 |
+
anilingus,nsfw
|
1896 |
+
irrumatio,nsfw
|
1897 |
+
deep throat,nsfw
|
1898 |
+
:>=,nsfw
|
1899 |
+
fellatio,nsfw
|
1900 |
+
blow job,nsfw
|
1901 |
+
blowjob face,nsfw
|
1902 |
+
testicle sucking,nsfw
|
1903 |
+
milking,nsfw
|
1904 |
+
lactation,nsfw
|
1905 |
+
swallow,nsfw
|
1906 |
+
breasts sucking,nsfw
|
1907 |
+
breast sucking,nsfw
|
1908 |
+
breastfeeding,nsfw
|
1909 |
+
wank,nsfw
|
1910 |
+
masturbation,nsfw
|
1911 |
+
masturbate,nsfw
|
1912 |
+
insert dildo to pussy,nsfw
|
1913 |
+
acp,nsfw
|
1914 |
+
bukkake,nsfw
|
1915 |
+
creampie,nsfw
|
1916 |
+
creampie,nsfw
|
1917 |
+
facial,nsfw
|
1918 |
+
cum on breasts,nsfw
|
1919 |
+
oral invitation,nsfw
|
1920 |
+
cim,nsfw
|
1921 |
+
cum in mouth,nsfw
|
1922 |
+
criempie drop,nsfw
|
1923 |
+
cream shoot,nsfw
|
1924 |
+
cumshot,nsfw
|
1925 |
+
ejaculation,nsfw
|
1926 |
+
fertilization,nsfw
|
1927 |
+
gulp,nsfw
|
1928 |
+
cum on body,nsfw
|
1929 |
+
excessive cum,nsfw
|
1930 |
+
cum in pussy,nsfw
|
1931 |
+
cum on hair,nsfw
|
1932 |
+
pojecile cum,nsfw
|
1933 |
+
cum on clothes,nsfw
|
1934 |
+
cum on cheeks,nsfw
|
1935 |
+
nursing handjob,nsfw
|
1936 |
+
handjob,nsfw
|
1937 |
+
anal,nsfw
|
1938 |
+
tits,nsfw
|
1939 |
+
clitoris,nsfw
|
1940 |
+
cameltoe,nsfw
|
1941 |
+
excellent beautiful pussy,nsfw
|
1942 |
+
pink nipples,nsfw
|
1943 |
+
puffy nipples,nsfw
|
1944 |
+
futanari,nsfw
|
1945 |
+
camel toe,nsfw
|
1946 |
+
beautiful xtra small pussy,nsfw
|
1947 |
+
giant penis,nsfw
|
1948 |
+
breasts cleavage,nsfw
|
1949 |
+
veiny penis,nsfw
|
1950 |
+
the uterus,nsfw
|
1951 |
+
pussy,nsfw
|
1952 |
+
vagina,nsfw
|
1953 |
+
cunt,nsfw
|
1954 |
+
hip,nsfw
|
1955 |
+
anus,nsfw
|
1956 |
+
testis,nsfw
|
1957 |
+
big penis,nsfw
|
1958 |
+
large penis,nsfw
|
1959 |
+
light pink nipples,nsfw
|
1960 |
+
penis,nsfw
|
1961 |
+
long breasts,nsfw
|
1962 |
+
nipples,nsfw
|
1963 |
+
nipple slip,nsfw
|
1964 |
+
wet pussy,nsfw
|
1965 |
+
beautiful vagina,nsfw
|
1966 |
+
vaginal,nsfw
|
1967 |
+
cum in uterus,nsfw
|
1968 |
+
after vaginal,nsfw
|
1969 |
+
wet vagina,nsfw
|
1970 |
+
cum inside pussy,nsfw
|
1971 |
+
orgasm,nsfw
|
1972 |
+
cum,nsfw
|
1973 |
+
trembling motionline for orgasm,nsfw
|
1974 |
+
squirting,nsfw
|
1975 |
+
female ejaculation,nsfw
|
1976 |
+
gushing,nsfw
|
1977 |
+
insert vagina,nsfw
|
1978 |
+
tentacles fucks,nsfw
|
1979 |
+
tentacles anal fuck,nsfw
|
1980 |
+
tentacles vaginal fuck,nsfw
|
1981 |
+
nipple piercing,nsfw
|
1982 |
+
friend with benefits,nsfw
|
1983 |
+
fuck buddy,nsfw
|
1984 |
+
cockslut,nsfw
|
1985 |
+
hetero,nsfw
|
1986 |
+
lewd,nsfw
|
1987 |
+
nympho,nsfw
|
1988 |
+
nymphomaniac,nsfw
|
1989 |
+
homosexuality,nsfw
|
1990 |
+
cumdump,nsfw
|
1991 |
+
pregnant,nsfw
|
1992 |
+
girl in heat,nsfw
|
1993 |
+
double penetration,nsfw
|
1994 |
+
top-down bottom-up,nsfw
|
1995 |
+
cunnilingus,nsfw
|
1996 |
+
69,nsfw
|
1997 |
+
sixty nine,nsfw
|
1998 |
+
folded,nsfw
|
1999 |
+
amazon position,nsfw
|
2000 |
+
breasts blowjob,nsfw
|
2001 |
+
licking penis,nsfw
|
2002 |
+
suspended congress,nsfw
|
2003 |
+
cowgirl position,nsfw
|
2004 |
+
doggy style,nsfw
|
2005 |
+
tribadism,nsfw
|
2006 |
+
prone bone,nsfw
|
2007 |
+
missionary position,nsfw
|
2008 |
+
spitroast,nsfw
|
2009 |
+
spooning,nsfw
|
2010 |
+
upright straddle,nsfw
|
2011 |
+
reverse cowgirl position,nsfw
|
2012 |
+
reverse upright straddle,nsfw
|
2013 |
+
kneeling doggystyle,nsfw
|
2014 |
+
dinosaur,life
|
2015 |
+
crow,life
|
2016 |
+
badger furry,life
|
2017 |
+
dog furry,life
|
2018 |
+
white rabit furry,life
|
2019 |
+
cow furry,life
|
2020 |
+
wolf furry,life
|
2021 |
+
kaijuu,life
|
2022 |
+
deer furry,life
|
2023 |
+
octopus,life
|
2024 |
+
tanuki,life
|
2025 |
+
tiger furry,life
|
2026 |
+
cat furry,life
|
2027 |
+
panda furry,life
|
2028 |
+
sheep furry,life
|
2029 |
+
leopard furry,life
|
2030 |
+
goat furry,life
|
2031 |
+
lion furry,life
|
2032 |
+
dog,life
|
2033 |
+
pony,life
|
2034 |
+
rabit,life
|
2035 |
+
cat,life
|
2036 |
+
innertube,accesory
|
2037 |
+
tattoo,accesory
|
2038 |
+
pubic tattoo,accesory
|
2039 |
+
cheek,accesory
|
2040 |
+
body paint,accesory
|
2041 |
+
makeup,accesory
|
2042 |
+
facial tattoo,accesory
|
2043 |
+
shoulder tattoo,accesory
|
2044 |
+
arm tattoo,accesory
|
2045 |
+
belt,accesory
|
2046 |
+
buckle,accesory
|
2047 |
+
belt buckle,accesory
|
2048 |
+
thigh holster,accesory
|
2049 |
+
obi,accesory
|
2050 |
+
sash,accesory
|
2051 |
+
eyepatch,accesory
|
2052 |
+
sunglasses,accesory
|
2053 |
+
semi rimless eyewear,accesory
|
2054 |
+
monocle,accesory
|
2055 |
+
round eyewear,accesory
|
2056 |
+
glasses,accesory
|
2057 |
+
electric guitar,accesory
|
2058 |
+
bag,accesory
|
2059 |
+
handbag,accesory
|
2060 |
+
shoulder bag,accesory
|
2061 |
+
staff,accesory
|
2062 |
+
stick,accesory
|
2063 |
+
cane,accesory
|
2064 |
+
wand,accesory
|
2065 |
+
mace,accesory
|
2066 |
+
crutch,accesory
|
2067 |
+
hand fan,accesory
|
2068 |
+
paper lantern,accesory
|
2069 |
+
oil paper umbrella,accesory
|
2070 |
+
earmuffs,accesory
|
2071 |
+
earrings,accesory
|
2072 |
+
hoop earrings,accesory
|
2073 |
+
arm ring,accesory
|
2074 |
+
anklet,accesory
|
2075 |
+
scrunchie,accesory
|
2076 |
+
bead bracelet,accesory
|
2077 |
+
bracelet,accesory
|
2078 |
+
wrist cuffs,accesory
|
2079 |
+
shackles,accesory
|
2080 |
+
wristwatch,accesory
|
2081 |
+
ring,accesory
|
2082 |
+
id card,accesory
|
2083 |
+
o ring,accesory
|
2084 |
+
blue ascot,accesory
|
2085 |
+
choker,accesory
|
2086 |
+
dog tags,accesory
|
2087 |
+
necktie,accesory
|
2088 |
+
necklace,accesory
|
2089 |
+
ribbon,accesory
|
2090 |
+
bow,accesory
|
2091 |
+
neckerchief,accesory
|
2092 |
+
leash,accesory
|
2093 |
+
collar,accesory
|
2094 |
+
bowties,accesory
|
2095 |
+
bruise,accesory
|
2096 |
+
injection marks,accesory
|
2097 |
+
nosebleed,accesory
|
2098 |
+
birthmark,accesory
|
2099 |
+
cape,accesory
|
2100 |
+
scarf,accesory
|
2101 |
+
harness,accesory
|
2102 |
+
chest harness,accesory
|
2103 |
+
backpack,accesory
|
2104 |
+
breastplate,accesory
|
2105 |
+
epaulettes,accesory
|
2106 |
+
capelet,accesory
|
2107 |
+
armlet,accesory
|
2108 |
+
bat wings,accesory
|
2109 |
+
jewelry,accesory
|
2110 |
+
towel,accesory
|
2111 |
+
piercing,accesory
|
2112 |
+
doll,accesory
|
2113 |
+
bandages,accesory
|
2114 |
+
gemological ornaments,accesory
|
2115 |
+
scifi hair ornaments,accesory
|
2116 |
+
ball gag,accesory
|
2117 |
+
towel gag,accesory
|
2118 |
+
x hair ornament,accesory
|
2119 |
+
hairclip,accesory
|
2120 |
+
hair bobbles,accesory
|
2121 |
+
hairpin,accesory
|
2122 |
+
head gear,accesory
|
2123 |
+
headphones,accesory
|
2124 |
+
helmet,accesory
|
2125 |
+
mouth mask,accesory
|
2126 |
+
hair flower,accesory
|
2127 |
+
head wings,accesory
|
2128 |
+
hair tubes,accesory
|
2129 |
+
ribbon trim,accesory
|
2130 |
+
french braid,accesory
|
2131 |
+
single braid,accesory
|
2132 |
+
blindfold,accesory
|
2133 |
+
hair bell,accesory
|
2134 |
+
bouquet,accesory
|
2135 |
+
whip,accesory
|
2136 |
+
sword,accesory
|
2137 |
+
gun,accesory
|
2138 |
+
water gun,accesory
|
2139 |
+
katana,accesory
|
2140 |
+
dual wielding,accesory
|
2141 |
+
japanese sword,accesory
|
2142 |
+
horseshoe shaped hairband,accesory
|
2143 |
+
cabbie hat,accesory
|
2144 |
+
visor cap,accesory
|
2145 |
+
top hat,accesory
|
2146 |
+
sailor hat,accesory
|
2147 |
+
nurse cap,accesory
|
2148 |
+
beanie,accesory
|
2149 |
+
knitted hat,accesory
|
2150 |
+
bandana,accesory
|
2151 |
+
bonnet,accesory
|
2152 |
+
beret,accesory
|
2153 |
+
ascot,accesory
|
2154 |
+
mini hat,accesory
|
2155 |
+
mob cap,accesory
|
2156 |
+
hat ribbon,accesory
|
2157 |
+
head wreath,accesory
|
2158 |
+
floral decoration,accesory
|
2159 |
+
peaked cap,accesory
|
2160 |
+
military hat,accesory
|
2161 |
+
cap,accesory
|
2162 |
+
headpiece,accesory
|
2163 |
+
animal hood,accesory
|
2164 |
+
straw hat,accesory
|
2165 |
+
headband,accesory
|
2166 |
+
hair ornament,accesory
|
2167 |
+
hat,accesory
|
2168 |
+
witch hat,accesory
|
2169 |
+
american,attribute
|
2170 |
+
chinese,attribute
|
2171 |
+
japanese,attribute
|
2172 |
+
japan,attribute
|
2173 |
+
racoon,attribute
|
2174 |
+
vampire,attribute
|
2175 |
+
werewolf,attribute
|
2176 |
+
umamusume,attribute
|
2177 |
+
elf,attribute
|
2178 |
+
orc,attribute
|
2179 |
+
jiangshi,attribute
|
2180 |
+
furry,attribute
|
2181 |
+
goblin,attribute
|
2182 |
+
cyborg,attribute
|
2183 |
+
succubus,attribute
|
2184 |
+
slime,attribute
|
2185 |
+
zombie,attribute
|
2186 |
+
dark elf,attribute
|
2187 |
+
draph,attribute
|
2188 |
+
nymph,attribute
|
2189 |
+
harpy,attribute
|
2190 |
+
mecha,attribute
|
2191 |
+
mecha musume,attribute
|
2192 |
+
monster girl,attribute
|
2193 |
+
lamia,attribute
|
2194 |
+
robot,attribute
|
2195 |
+
devil,attribute
|
2196 |
+
devil girl,attribute
|
2197 |
+
devil boy,attribute
|
2198 |
+
fox girl,attribute
|
2199 |
+
skeleton,attribute
|
2200 |
+
abyssal ship,attribute
|
2201 |
+
mermaid,attribute
|
2202 |
+
angel,attribute
|
2203 |
+
angel girl,attribute
|
2204 |
+
angel boy,attribute
|
2205 |
+
ghost,attribute
|
2206 |
+
fairy,attribute
|
2207 |
+
albino,attribute
|
2208 |
+
gyaru,attribute
|
2209 |
+
sadist,attribute
|
2210 |
+
trans,attribute
|
2211 |
+
trannsexual,attribute
|
2212 |
+
babumi,attribute
|
2213 |
+
bitch,attribute
|
2214 |
+
masochism,attribute
|
2215 |
+
yandere,attribute
|
2216 |
+
kawaii,attribute
|
2217 |
+
cute and kawaii girl,attribute
|
2218 |
+
muscular,attribute
|
2219 |
+
muscular,attribute
|
2220 |
+
hermaphrodite,attribute
|
2221 |
+
women,attribute
|
2222 |
+
otoko no ko,attribute
|
2223 |
+
shoujo ai,attribute
|
2224 |
+
yuri,attribute
|
2225 |
+
motherly,attribute
|
2226 |
+
cool,attribute
|
2227 |
+
skeleton girl,attribute
|
2228 |
+
tranny,attribute
|
2229 |
+
futa,attribute
|
2230 |
+
mesugaki,attribute
|
2231 |
+
yaoi,attribute
|
2232 |
+
strong girl,attribute
|
2233 |
+
starry nebula,weather
|
2234 |
+
starry tornado,weather
|
2235 |
+
cosmic background of nebula,weather
|
2236 |
+
day light,weather
|
2237 |
+
morning,weather
|
2238 |
+
sunset,weather
|
2239 |
+
full moon,weather
|
2240 |
+
night,weather
|
2241 |
+
night time,weather
|
2242 |
+
night sky,weather
|
2243 |
+
dawn,weather
|
2244 |
+
sunset glow,weather
|
2245 |
+
dusk,weather
|
2246 |
+
dusk sky,weather
|
2247 |
+
evening,weather
|
2248 |
+
meteor shower,weather
|
2249 |
+
rainy,weather
|
2250 |
+
rainy days,weather
|
2251 |
+
cloud,weather
|
2252 |
+
snowfall,weather
|
2253 |
+
sandstorm,weather
|
2254 |
+
clear sky,weather
|
2255 |
+
snow,weather
|
2256 |
+
snowflakes,weather
|
2257 |
+
cloudy sky,weather
|
2258 |
+
cumulonimbus capillatus,weather
|
2259 |
+
breeze,weather
|
2260 |
+
wind,weather
|
2261 |
+
yawning,action
|
2262 |
+
one eye closed,action
|
2263 |
+
imminent kiss,action
|
2264 |
+
stuffed toy,action
|
2265 |
+
stuffed animal,action
|
2266 |
+
adjusting eyewear,action
|
2267 |
+
covering mouth,action
|
2268 |
+
object hug,action
|
2269 |
+
hand on own chin,action
|
2270 |
+
facepalm,action
|
2271 |
+
breasts rest on table,action
|
2272 |
+
breast hold,action
|
2273 |
+
breasts envy,action
|
2274 |
+
hands on hips,action
|
2275 |
+
finger to mouth,action
|
2276 |
+
round teeth,action
|
2277 |
+
slenched teeth,action
|
2278 |
+
clenched teeth,action
|
2279 |
+
interlocked fingers,action
|
2280 |
+
hands in pockets,action
|
2281 |
+
hand in own hair,action
|
2282 |
+
hand on headwear,action
|
2283 |
+
hand on own cheek,action
|
2284 |
+
head tilt,action
|
2285 |
+
tail raised,action
|
2286 |
+
tongue out,action
|
2287 |
+
between legs,action
|
2288 |
+
breath,action
|
2289 |
+
holding hair,action
|
2290 |
+
sleeves rolled up,action
|
2291 |
+
standing split,action
|
2292 |
+
on stomach,action
|
2293 |
+
claw pose,action
|
2294 |
+
bowlegged,action
|
2295 |
+
squat down,action
|
2296 |
+
squatting,action
|
2297 |
+
stretching,action
|
2298 |
+
dynamic pose,action
|
2299 |
+
fighting stance,action
|
2300 |
+
hand in pocket,action
|
2301 |
+
reclining,action
|
2302 |
+
on side,action
|
2303 |
+
lying,action
|
2304 |
+
open your legs wide,action
|
2305 |
+
upside down,action
|
2306 |
+
salute,action
|
2307 |
+
hands behind one's back,action
|
2308 |
+
hands tied behind back reference,action
|
2309 |
+
hand on hip,action
|
2310 |
+
all fours,action
|
2311 |
+
pointing,action
|
2312 |
+
open hand,action
|
2313 |
+
index finger raised,action
|
2314 |
+
leaning forward,action
|
2315 |
+
bent over,action
|
2316 |
+
crossed legs,action
|
2317 |
+
fetal position,action
|
2318 |
+
prostration,action
|
2319 |
+
paw pose,action
|
2320 |
+
standing on one leg,action
|
2321 |
+
standing,action
|
2322 |
+
indian style,action
|
2323 |
+
yokozuwari,action
|
2324 |
+
sitting on stairs,action
|
2325 |
+
sitting,action
|
2326 |
+
wariza,action
|
2327 |
+
seiza,action
|
2328 |
+
legs up,action
|
2329 |
+
hugging own legs,action
|
2330 |
+
leg lift,action
|
2331 |
+
pigeon toed,action
|
2332 |
+
knees up,action
|
2333 |
+
kneeling,action
|
2334 |
+
leg up,action
|
2335 |
+
standing on one leg,action
|
2336 |
+
one knee,action
|
2337 |
+
legs together,action
|
2338 |
+
crouching,action
|
2339 |
+
pointing at viewer,action
|
2340 |
+
pointing to the side,action
|
2341 |
+
pointing down,action
|
2342 |
+
pointing sword,action
|
2343 |
+
pointing another,action
|
2344 |
+
pointing at self,action
|
2345 |
+
pointing up,action
|
2346 |
+
pointing forward,action
|
2347 |
+
pointing weapon,action
|
2348 |
+
incoming kiss,action
|
2349 |
+
jumping,action
|
2350 |
+
skirt lift,action
|
2351 |
+
grabbing,action
|
2352 |
+
hold a tray,action
|
2353 |
+
hug,action
|
2354 |
+
sitting on bench,action
|
2355 |
+
with a microphone,action
|
2356 |
+
leaning back,action
|
2357 |
+
on chair,action
|
2358 |
+
sitting on chair,action
|
2359 |
+
drinking,action
|
2360 |
+
holding,action
|
2361 |
+
singing,action
|
2362 |
+
handstand,action
|
2363 |
+
shouting,action
|
2364 |
+
tying hair,action
|
2365 |
+
kicking,action
|
2366 |
+
eating,action
|
2367 |
+
sleepy,action
|
2368 |
+
hiding,action
|
2369 |
+
running,action
|
2370 |
+
soaking feet,action
|
2371 |
+
undressing,action
|
2372 |
+
run away,action
|
2373 |
+
adjusting hair,action
|
2374 |
+
hand on own face,action
|
2375 |
+
tied hair,action
|
2376 |
+
walking motion,action
|
2377 |
+
adjusting headwear,action
|
2378 |
+
pillow hug,action
|
2379 |
+
dancing,action
|
2380 |
+
falling,action
|
2381 |
+
thrust arm forward,action
|
2382 |
+
looking at viewer,action
|
2383 |
+
own hands together,action
|
2384 |
+
thumbs up,action
|
2385 |
+
hand up,action
|
2386 |
+
punching,action
|
2387 |
+
peace sign,action
|
2388 |
+
clenched hand,action
|
2389 |
+
outstretched hand,action
|
2390 |
+
leg hold,action
|
2391 |
+
arms behind back,action
|
2392 |
+
arm support,action
|
2393 |
+
holding hands,action
|
2394 |
+
reaching,action
|
2395 |
+
waving,action
|
2396 |
+
arms behind head,action
|
2397 |
+
clothes pull,action
|
2398 |
+
hands up,action
|
2399 |
+
outstretched arms,action
|
2400 |
+
arms up,action
|
2401 |
+
armpits,action
|
2402 |
+
open arms,action
|
2403 |
+
spread arms,action
|
2404 |
+
arm up,action
|
2405 |
+
crossed arms,action
|
2406 |
+
massage,action
|
2407 |
+
assertive female,age
|
2408 |
+
loli,age
|
2409 |
+
milf,age
|
2410 |
+
girl,age
|
2411 |
+
high school girl,age
|
2412 |
+
little girl,age
|
2413 |
+
baby,age
|
2414 |
+
infant,age
|
2415 |
+
toddler,age
|
2416 |
+
high school,age
|
2417 |
+
child,age
|
2418 |
+
puberty,age
|
2419 |
+
youth,age
|
2420 |
+
child,age
|
2421 |
+
flat chest,age
|
2422 |
+
preschooler,age
|
2423 |
+
shota,age
|
2424 |
+
high school boy,age
|
2425 |
+
0years old,age
|
2426 |
+
1years old,age
|
2427 |
+
2years old,age
|
2428 |
+
3years old,age
|
2429 |
+
4years old,age
|
2430 |
+
5years old,age
|
2431 |
+
6years old,age
|
2432 |
+
7years old,age
|
2433 |
+
8years old,age
|
2434 |
+
9years old,age
|
2435 |
+
10years old,age
|
2436 |
+
11years old,age
|
2437 |
+
12years old,age
|
2438 |
+
13years old,age
|
2439 |
+
14years old,age
|
2440 |
+
15years old,age
|
2441 |
+
16years old,age
|
2442 |
+
17years old,age
|
2443 |
+
18years old,age
|
2444 |
+
19years old,age
|
2445 |
+
20years old,age
|
2446 |
+
25years old,age
|
2447 |
+
30years old,age
|
2448 |
+
40years old,age
|
2449 |
+
50years old,age
|
2450 |
+
60years old,age
|
2451 |
+
70years old,age
|
2452 |
+
80years old,age
|
2453 |
+
90years old,age
|
2454 |
+
horizon,background
|
2455 |
+
white background,background
|
2456 |
+
surrounded by floating sakura,background
|
2457 |
+
floating ashes,background
|
2458 |
+
floating palace,background
|
2459 |
+
floating bubbles,background
|
2460 |
+
graffiti,background
|
2461 |
+
argyle pattern background,background
|
2462 |
+
ikat pattern background,background
|
2463 |
+
ombre background,background
|
2464 |
+
gingham check background,background
|
2465 |
+
gradient background,background
|
2466 |
+
Greek key background,background
|
2467 |
+
chevron stripe background,background
|
2468 |
+
peony pattern,background
|
2469 |
+
scallop background,background
|
2470 |
+
damask pattern background,background
|
2471 |
+
check pattern background,background
|
2472 |
+
dot pattern background,background
|
2473 |
+
trellis background,background
|
2474 |
+
harlequin check background,background
|
2475 |
+
rose pattern background,background
|
2476 |
+
daisy pattern background,background
|
2477 |
+
paisley background,background
|
2478 |
+
herringbone pattern background,background
|
2479 |
+
monochrome background,background
|
2480 |
+
Moroccan pattern background,background
|
2481 |
+
lattice background,background
|
2482 |
+
liberty print background,background
|
2483 |
+
circles background,background
|
2484 |
+
floral print background,background
|
2485 |
+
geometric patterns background,background
|
2486 |
+
the look of the sky background,background
|
2487 |
+
triangles background,background
|
2488 |
+
squares background,background
|
2489 |
+
houndstooth pattern background,background
|
2490 |
+
cat pattern background,background
|
2491 |
+
argyle background,background
|
2492 |
+
plain background,background
|
2493 |
+
hair flaps,hair
|
2494 |
+
ringlets hair,hair
|
2495 |
+
hair intakes,hair
|
2496 |
+
side swept hair,hair
|
2497 |
+
bridal hair side view,hair
|
2498 |
+
egyptian bob hair,hair
|
2499 |
+
low twintails,hair
|
2500 |
+
pigtails,hair
|
2501 |
+
bun hair,hair
|
2502 |
+
space buns hair,hair
|
2503 |
+
side buns hair,hair
|
2504 |
+
one side up,hair
|
2505 |
+
side ponytail,hair
|
2506 |
+
short twintails,hair
|
2507 |
+
twintails,hair
|
2508 |
+
two side up,hair
|
2509 |
+
drill hair,hair
|
2510 |
+
half up,hair
|
2511 |
+
half updo,hair
|
2512 |
+
pixie hair,hair
|
2513 |
+
half ponytail hair,hair
|
2514 |
+
ponytail,hair
|
2515 |
+
folded ponytail,hair
|
2516 |
+
medium bob,hair
|
2517 |
+
long ponytail hair,hair
|
2518 |
+
cone hair bun,hair
|
2519 |
+
short pigtail hair,hair
|
2520 |
+
high ponytail,hair
|
2521 |
+
braid hair,hair
|
2522 |
+
twin braids,hair
|
2523 |
+
pigtail hair,hair
|
2524 |
+
topknot hair,hair
|
2525 |
+
long braid hair,hair
|
2526 |
+
knotless braid hair,hair
|
2527 |
+
bridal hair back view,hair
|
2528 |
+
long hime cut hair,hair
|
2529 |
+
hair slicked back,hair
|
2530 |
+
straight bangs,hair
|
2531 |
+
asymmetrical bangs,hair
|
2532 |
+
blunt bangs,hair
|
2533 |
+
parted bangs,hair
|
2534 |
+
middle parting hair,hair
|
2535 |
+
sidelocks,hair
|
2536 |
+
long bangs,hair
|
2537 |
+
pointy hair,hair
|
2538 |
+
hair between eyes,hair
|
2539 |
+
hime cut,hair
|
2540 |
+
swept bangs,hair
|
2541 |
+
hair over one eye,hair
|
2542 |
+
one eye covered,hair
|
2543 |
+
cornrows,hair
|
2544 |
+
crew cut,hair
|
2545 |
+
dreadlocks,hair
|
2546 |
+
permanent wave,hair
|
2547 |
+
buzzcut hair and shaved,hair
|
2548 |
+
pixie cut,hair
|
2549 |
+
flipped hair,hair
|
2550 |
+
square cut,hair
|
2551 |
+
nupe undercut,hair
|
2552 |
+
side parted,hair
|
2553 |
+
pudding bowl hair,hair
|
2554 |
+
ahoge,hair
|
2555 |
+
antenna hair,hair
|
2556 |
+
huge ahoge,hair
|
2557 |
+
short hair,hair
|
2558 |
+
short hair with long locks,hair
|
2559 |
+
middle hair,hair
|
2560 |
+
extra short hair,hair
|
2561 |
+
extra long hair,hair
|
2562 |
+
blunt hair,hair
|
2563 |
+
extra short,hair
|
2564 |
+
very short hair,hair
|
2565 |
+
long hair,hair
|
2566 |
+
very long hair,hair
|
2567 |
+
shoulder length,hair
|
2568 |
+
absurdly long hair,hair
|
2569 |
+
medium hair,hair
|
2570 |
+
single hair bun,hair
|
2571 |
+
double bun,hair
|
2572 |
+
braided bun,hair
|
2573 |
+
hair pulled back,hair
|
2574 |
+
bob cut,hair
|
2575 |
+
spiral curl,hair
|
2576 |
+
ringlets,hair
|
2577 |
+
twin drills,hair
|
2578 |
+
one length haircut,hair
|
2579 |
+
undercut,hair
|
2580 |
+
side braid,hair
|
2581 |
+
topknot,hair
|
2582 |
+
braid ponytail,hair
|
2583 |
+
bald,hair
|
2584 |
+
afro hair,hair
|
2585 |
+
curly hair,hair
|
2586 |
+
kinky hair,hair
|
2587 |
+
straight hair,hair
|
2588 |
+
messy hair,hair
|
2589 |
+
wavy hair,hair
|
2590 |
+
shiny hair,hair
|
2591 |
+
glossy hair,hair
|
2592 |
+
big hair,hair
|
2593 |
+
two-tone hair,hair
|
2594 |
+
azure hair,hair
|
2595 |
+
orange hair,hair
|
2596 |
+
rose hair,hair
|
2597 |
+
pink hair,hair
|
2598 |
+
blonde hair,hair
|
2599 |
+
streaked hair,hair
|
2600 |
+
yellow hair,hair
|
2601 |
+
gray hair,hair
|
2602 |
+
brond hair,hair
|
2603 |
+
silver hair,hair
|
2604 |
+
sky blue hair,hair
|
2605 |
+
black hair,hair
|
2606 |
+
navy hair,hair
|
2607 |
+
purple hair,hair
|
2608 |
+
vermilion hair,hair
|
2609 |
+
blue hair,hair
|
2610 |
+
red hair,hair
|
2611 |
+
multicolored hair,hair
|
2612 |
+
brown hair,hair
|
2613 |
+
cooper hair,hair
|
2614 |
+
rainbow hair,hair
|
2615 |
+
white hair,hair
|
2616 |
+
colorless hair,hair
|
2617 |
+
light purple hair,hair
|
2618 |
+
indigo hair,hair
|
2619 |
+
green hair,hair
|
2620 |
+
doyagao,expression
|
2621 |
+
waby mouth,expression
|
2622 |
+
open mouth,expression
|
2623 |
+
close mouth,expression
|
2624 |
+
expressionless,expression
|
2625 |
+
empty eyes,expression
|
2626 |
+
sleeping,expression
|
2627 |
+
relaxed,expression
|
2628 |
+
clear face,expression
|
2629 |
+
kind smile,expression
|
2630 |
+
depressed,expression
|
2631 |
+
sobbing,expression
|
2632 |
+
shaded face,expression
|
2633 |
+
tear,expression
|
2634 |
+
crying with eyes open,expression
|
2635 |
+
despair,expression
|
2636 |
+
sad,expression
|
2637 |
+
unhappy,expression
|
2638 |
+
^^^,expression
|
2639 |
+
gloom expression,expression
|
2640 |
+
:,expression
|
2641 |
+
:<,expression
|
2642 |
+
:3,expression
|
2643 |
+
:c,expression
|
2644 |
+
:d,expression
|
2645 |
+
:i,expression
|
2646 |
+
:o,expression
|
2647 |
+
:p,expression
|
2648 |
+
:q,expression
|
2649 |
+
:x,expression
|
2650 |
+
color drain,expression
|
2651 |
+
surprised,expression
|
2652 |
+
horrified,expression
|
2653 |
+
fear face,expression
|
2654 |
+
disdain,expression
|
2655 |
+
flustered,expression
|
2656 |
+
turn pale,expression
|
2657 |
+
upset,expression
|
2658 |
+
wavy mouth,expression
|
2659 |
+
looking away,expression
|
2660 |
+
looking ahead,expression
|
2661 |
+
looking at phone,expression
|
2662 |
+
looking afar,expression
|
2663 |
+
looking down,expression
|
2664 |
+
looking to the side,expression
|
2665 |
+
looking over eyewear,expression
|
2666 |
+
looking at breasts,expression
|
2667 |
+
looking mirror,expression
|
2668 |
+
looking up,expression
|
2669 |
+
looking at phone,expression
|
2670 |
+
looking back,expression
|
2671 |
+
looking at another,expression
|
2672 |
+
serious,expression
|
2673 |
+
scornful,expression
|
2674 |
+
ahegao,expression
|
2675 |
+
full-face blush,expression
|
2676 |
+
evil smile,expression
|
2677 |
+
mouth drool,expression
|
2678 |
+
seductive smile,expression
|
2679 |
+
sexually suggestive,expression
|
2680 |
+
naughty face,expression
|
2681 |
+
blush,expression
|
2682 |
+
embarrassed,expression
|
2683 |
+
trembling,expression
|
2684 |
+
scared,expression
|
2685 |
+
defiant look,expression
|
2686 |
+
frown,expression
|
2687 |
+
furrowed brow,expression
|
2688 |
+
wince,expression
|
2689 |
+
smirk,expression
|
2690 |
+
pout,expression
|
2691 |
+
troubled eyebrows,expression
|
2692 |
+
smug,expression
|
2693 |
+
angry,expression
|
2694 |
+
anger vein,expression
|
2695 |
+
kubrick stare,expression
|
2696 |
+
sulking,expression
|
2697 |
+
glaring,expression
|
2698 |
+
blush stickers,expression
|
2699 |
+
joyful,expression
|
2700 |
+
happy,expression
|
2701 |
+
fingersmile,expression
|
2702 |
+
grin,expression
|
2703 |
+
laughing,expression
|
2704 |
+
giggling,expression
|
2705 |
+
laugh,expression
|
2706 |
+
smile,expression
|
2707 |
+
forced smile,expression
|
2708 |
+
cheerful,expression
|
2709 |
+
qr code,quality
|
2710 |
+
ui,quality
|
2711 |
+
artist name,quality
|
2712 |
+
signature,quality
|
2713 |
+
text error,quality
|
2714 |
+
text font ui,quality
|
2715 |
+
bar code,quality
|
2716 |
+
username,quality
|
2717 |
+
bad digit,quality
|
2718 |
+
liquid digit,quality
|
2719 |
+
missing digit,quality
|
2720 |
+
multiple digit,quality
|
2721 |
+
text,quality
|
2722 |
+
fused digit,quality
|
2723 |
+
extra digt,quality
|
2724 |
+
rough texture,quality
|
2725 |
+
official art,quality
|
2726 |
+
hyper extreme detailed,quality
|
2727 |
+
high quality,quality
|
2728 |
+
hyper detail,quality
|
2729 |
+
production art,quality
|
2730 |
+
novel illustration,quality
|
2731 |
+
highres,quality
|
2732 |
+
high resolution,quality
|
2733 |
+
absurdres,quality
|
2734 |
+
best quality,quality
|
2735 |
+
award winning,quality
|
2736 |
+
ultra detailed,quality
|
2737 |
+
highly detailed,quality
|
2738 |
+
an extremely delicate and beautiful,quality
|
2739 |
+
beautiful detailed sky,quality
|
2740 |
+
beautiful detailed eyes,quality
|
2741 |
+
beautiful detailed small pussy,quality
|
2742 |
+
intricate details,quality
|
2743 |
+
masterpiece,quality
|
2744 |
+
distinct image,quality
|
2745 |
+
by famous artist,quality
|
2746 |
+
more than two shoes,quality
|
2747 |
+
more than 2 thighs,quality
|
2748 |
+
more than 2 legs,quality
|
2749 |
+
three legs,quality
|
2750 |
+
missinglegs,quality
|
2751 |
+
bad knee,quality
|
2752 |
+
missing calf,quality
|
2753 |
+
more legs,quality
|
2754 |
+
bad leg,quality
|
2755 |
+
bad feet,quality
|
2756 |
+
bad legs,quality
|
2757 |
+
abnormal legs,quality
|
2758 |
+
liquid thigh gap,quality
|
2759 |
+
malformed feet,quality
|
2760 |
+
disappearing legs,quality
|
2761 |
+
huge calf,quality
|
2762 |
+
huge thighs,quality
|
2763 |
+
poorly drawn shoes,quality
|
2764 |
+
incorrect limb,quality
|
2765 |
+
arthropod limbs,quality
|
2766 |
+
missing feet,quality
|
2767 |
+
missing legs,quality
|
2768 |
+
poorly drawn feet,quality
|
2769 |
+
lose leg,quality
|
2770 |
+
missing thighs,quality
|
2771 |
+
disappearing thigh,quality
|
2772 |
+
disappearing calf,quality
|
2773 |
+
poorly drawn thigh gap,quality
|
2774 |
+
missing thigh gap,quality
|
2775 |
+
bad thigh gap,quality
|
2776 |
+
short legs,quality
|
2777 |
+
malformed limbs,quality
|
2778 |
+
multiple legs,quality
|
2779 |
+
fused calf,quality
|
2780 |
+
fused legs,quality
|
2781 |
+
fused shoes,quality
|
2782 |
+
fused feet,quality
|
2783 |
+
fused thigh gap,quality
|
2784 |
+
extra calf,quality
|
2785 |
+
extra shoes,quality
|
2786 |
+
extra feet,quality
|
2787 |
+
extra thighs,quality
|
2788 |
+
extra knee,quality
|
2789 |
+
bad tentacles,quality
|
2790 |
+
liquid tentacles,quality
|
2791 |
+
split tentacles,quality
|
2792 |
+
poorly drawn tentacles,quality
|
2793 |
+
fused tentacles,quality
|
2794 |
+
gross proportions,quality
|
2795 |
+
proportions,quality
|
2796 |
+
boken limb,quality
|
2797 |
+
bad body,quality
|
2798 |
+
bad tails,quality
|
2799 |
+
malformed,quality
|
2800 |
+
malformed mutated,quality
|
2801 |
+
missing limbs,quality
|
2802 |
+
cleavage,quality
|
2803 |
+
mutilated,quality
|
2804 |
+
bad feet hand finger leg eye,quality
|
2805 |
+
disfigured,quality
|
2806 |
+
uncoordinated body,quality
|
2807 |
+
mutation,quality
|
2808 |
+
mutation poorly drawn 1,quality
|
2809 |
+
humpbacked,quality
|
2810 |
+
poorly drawn asymmetric eyes,quality
|
2811 |
+
unnatural body,quality
|
2812 |
+
bad anatomy disfigured malformed mutated,quality
|
2813 |
+
multiple limbs,quality
|
2814 |
+
mutated,quality
|
2815 |
+
deformed,quality
|
2816 |
+
deformed body,quality
|
2817 |
+
colorful clit,quality
|
2818 |
+
colorful nipples,quality
|
2819 |
+
missing clit,quality
|
2820 |
+
bad clit,quality
|
2821 |
+
bad crotch,quality
|
2822 |
+
bad crotch seam,quality
|
2823 |
+
bad cum,quality
|
2824 |
+
bad pussy,quality
|
2825 |
+
liquid clit,quality
|
2826 |
+
black clit,quality
|
2827 |
+
fused cum,quality
|
2828 |
+
poorly drawn crotch,quality
|
2829 |
+
poorly drawn crotch seam,quality
|
2830 |
+
poorly drawn cum,quality
|
2831 |
+
poorly drawn pussy,quality
|
2832 |
+
fused clit,quality
|
2833 |
+
fused crotch,quality
|
2834 |
+
fused seam,quality
|
2835 |
+
fused anus,quality
|
2836 |
+
fused pussy,quality
|
2837 |
+
extra penises,quality
|
2838 |
+
poorly drawn anus,quality
|
2839 |
+
cloned face,quality
|
2840 |
+
twisted head,quality
|
2841 |
+
blurry face,quality
|
2842 |
+
bad face,quality
|
2843 |
+
bad ears,quality
|
2844 |
+
bad tongue,quality
|
2845 |
+
bad hairs,quality
|
2846 |
+
bad eyes,quality
|
2847 |
+
abnormal face,quality
|
2848 |
+
dirty face,quality
|
2849 |
+
dirty teeth,quality
|
2850 |
+
yellow teeth,quality
|
2851 |
+
poorly drawn face,quality
|
2852 |
+
cracked mouth,quality
|
2853 |
+
thick lips,quality
|
2854 |
+
bad mouth,quality
|
2855 |
+
black tongue,quality
|
2856 |
+
missing ears,quality
|
2857 |
+
poorly drawn ears,quality
|
2858 |
+
long face,quality
|
2859 |
+
long neck,quality
|
2860 |
+
too long tongue,quality
|
2861 |
+
missing animal ears,quality
|
2862 |
+
poorly drawn hairs,quality
|
2863 |
+
asymmetrical eyes,quality
|
2864 |
+
poorly drawn mouth,quality
|
2865 |
+
poorly drawn animal ears,quality
|
2866 |
+
unclear eyes,quality
|
2867 |
+
multiple heads,quality
|
2868 |
+
deformed face,quality
|
2869 |
+
fused face,quality
|
2870 |
+
fused mouth,quality
|
2871 |
+
fused ears,quality
|
2872 |
+
fused hairs,quality
|
2873 |
+
fused eyes poorly drawn eyes,quality
|
2874 |
+
extra mouth,quality
|
2875 |
+
extra ears,quality
|
2876 |
+
extra animal ears,quality
|
2877 |
+
extra eyes,quality
|
2878 |
+
more than 2 nipples,quality
|
2879 |
+
longbody,quality
|
2880 |
+
bad breasts,quality
|
2881 |
+
bad collarbone,quality
|
2882 |
+
bad asshole,quality
|
2883 |
+
bad nipples,quality
|
2884 |
+
bad anus,quality
|
2885 |
+
liquid collarbone,quality
|
2886 |
+
huge haunch,quality
|
2887 |
+
missing breasts,quality
|
2888 |
+
poorly drawn breasts,quality
|
2889 |
+
black nipples,quality
|
2890 |
+
missing collarbone,quality
|
2891 |
+
missing asshole,quality
|
2892 |
+
long body,quality
|
2893 |
+
long body 1,quality
|
2894 |
+
missing nipples,quality
|
2895 |
+
poorly drawn nipples,quality
|
2896 |
+
poorly drawn asshole,quality
|
2897 |
+
multiple breasts,quality
|
2898 |
+
different nipples,quality
|
2899 |
+
fused breasts,quality
|
2900 |
+
fused asshole,quality
|
2901 |
+
fused nipples,quality
|
2902 |
+
fused collarbone,quality
|
2903 |
+
extra breasts,quality
|
2904 |
+
worst low normal quality,quality
|
2905 |
+
low background,quality
|
2906 |
+
low quality light,quality
|
2907 |
+
low quality mountain,quality
|
2908 |
+
low quality background,quality
|
2909 |
+
distorted light,quality
|
2910 |
+
distorted mountain,quality
|
2911 |
+
colorful cameltoe,quality
|
2912 |
+
bad cameltoe,quality
|
2913 |
+
bad pantie,quality
|
2914 |
+
safety panties,quality
|
2915 |
+
dirty pantie,quality
|
2916 |
+
poorly drawn pantie,quality
|
2917 |
+
poorly drawn gloves,quality
|
2918 |
+
poorly drawn cloth,quality
|
2919 |
+
fused pantie,quality
|
2920 |
+
fused gloves,quality
|
2921 |
+
fused cloth,quality
|
2922 |
+
jpeg artifacts,quality
|
2923 |
+
error,quality
|
2924 |
+
gross,quality
|
2925 |
+
shit,quality
|
2926 |
+
bad,quality
|
2927 |
+
bad proportions,quality
|
2928 |
+
bad shadow,quality
|
2929 |
+
bad anatomy disfigured,quality
|
2930 |
+
bad shoes,quality
|
2931 |
+
bad gloves,quality
|
2932 |
+
bad animal ears,quality
|
2933 |
+
Pablo Picasso,quality
|
2934 |
+
poorly drawn,quality
|
2935 |
+
anatomical nonsense,quality
|
2936 |
+
watermark,quality
|
2937 |
+
five fingers,quality
|
2938 |
+
worst quality,quality
|
2939 |
+
bad anatomy,quality
|
2940 |
+
ugly,quality
|
2941 |
+
cropped,quality
|
2942 |
+
simple background,quality
|
2943 |
+
normal quality,quality
|
2944 |
+
lowers,quality
|
2945 |
+
lowres,quality
|
2946 |
+
low quality,quality
|
2947 |
+
polar lowres,quality
|
2948 |
+
standard quality,quality
|
2949 |
+
more than 1 right hand,quality
|
2950 |
+
more than 1 left hand,quality
|
2951 |
+
three arms,quality
|
2952 |
+
one hand with more than 5 fingers,quality
|
2953 |
+
one hand with less than 5 fingers,quality
|
2954 |
+
fusion hand,quality
|
2955 |
+
bad finglegs,quality
|
2956 |
+
bad hands,quality
|
2957 |
+
abnormal shoulders,quality
|
2958 |
+
abnormal fingers,quality
|
2959 |
+
abnormal hands,quality
|
2960 |
+
poorly drawn shoulders,quality
|
2961 |
+
missing?fingers,quality
|
2962 |
+
fewer digits,quality
|
2963 |
+
too many fingers,quality
|
2964 |
+
lose finger,quality
|
2965 |
+
missing hand,quality
|
2966 |
+
poorly drawn hands,quality
|
2967 |
+
short arm,quality
|
2968 |
+
malformed hands,quality
|
2969 |
+
multiple finger,quality
|
2970 |
+
multiple arms,quality
|
2971 |
+
mutated hands,quality
|
2972 |
+
mutated hands and fingers,quality
|
2973 |
+
one hand with more than 5 digit,quality
|
2974 |
+
one hand with less than 5 digit,quality
|
2975 |
+
fused fingers,quality
|
2976 |
+
fused hand,quality
|
2977 |
+
fused arms,quality
|
2978 |
+
fusion finger,quality
|
2979 |
+
extra legs,quality
|
2980 |
+
extra fingers,quality
|
2981 |
+
extra digits,quality
|
2982 |
+
extra hands,quality
|
2983 |
+
extra limbs,quality
|
2984 |
+
extra arms,quality
|
2985 |
+
missing arms,quality
|
2986 |
+
disappearing arms,quality
|
2987 |
+
super hero,dress
|
2988 |
+
justice hero,dress
|
2989 |
+
cross section,dress
|
2990 |
+
waist apron,dress
|
2991 |
+
crop top,dress
|
2992 |
+
cardigan,dress
|
2993 |
+
suspenders,dress
|
2994 |
+
open jacket,dress
|
2995 |
+
shirt,dress
|
2996 |
+
shirtless shirt,dress
|
2997 |
+
sweater,dress
|
2998 |
+
sports bibs,dress
|
2999 |
+
turtleneck,dress
|
3000 |
+
turtleneck sweater,dress
|
3001 |
+
tank top,dress
|
3002 |
+
tops,dress
|
3003 |
+
backless outfit,dress
|
3004 |
+
blouse,dress
|
3005 |
+
blazer suit,dress
|
3006 |
+
vest,dress
|
3007 |
+
underboob,dress
|
3008 |
+
buttons,dress
|
3009 |
+
halterneck,dress
|
3010 |
+
raglan sleeves,dress
|
3011 |
+
long coat,dress
|
3012 |
+
surcoat,dress
|
3013 |
+
collared shirt,dress
|
3014 |
+
off shoulder,dress
|
3015 |
+
strapless,dress
|
3016 |
+
open shirt,dress
|
3017 |
+
virgin killer sweater,dress
|
3018 |
+
cleavage cutout,dress
|
3019 |
+
hood down,dress
|
3020 |
+
open clothes,dress
|
3021 |
+
wedding dress,dress
|
3022 |
+
pinafore dress,dress
|
3023 |
+
off shoulder dress,dress
|
3024 |
+
gothic dress,dress
|
3025 |
+
short dress,dress
|
3026 |
+
strapless dress,dress
|
3027 |
+
sweater dress,dress
|
3028 |
+
dress,dress
|
3029 |
+
nightdress,dress
|
3030 |
+
sleeveless dress,dress
|
3031 |
+
party dress,dress
|
3032 |
+
frilled dress,dress
|
3033 |
+
belly dance,dress
|
3034 |
+
layered dress,dress
|
3035 |
+
robe,dress
|
3036 |
+
sundress,dress
|
3037 |
+
asymmetrical legwear,dress
|
3038 |
+
diapers,dress
|
3039 |
+
jeans,dress
|
3040 |
+
shorts,dress
|
3041 |
+
skirt,dress
|
3042 |
+
bike shorts,dress
|
3043 |
+
safety knickers,dress
|
3044 |
+
pants,dress
|
3045 |
+
pencil skirt,dress
|
3046 |
+
plaid miniskirt,dress
|
3047 |
+
denim shorts,dress
|
3048 |
+
high waist skirt,dress
|
3049 |
+
pleated skirt,dress
|
3050 |
+
pleated miniskirt,dress
|
3051 |
+
micro mini skirt,dress
|
3052 |
+
long skirt,dress
|
3053 |
+
legwear,dress
|
3054 |
+
no shoes,dress
|
3055 |
+
loin cloth,dress
|
3056 |
+
thigh gap,dress
|
3057 |
+
zettai ryouiki,dress
|
3058 |
+
bare legs,dress
|
3059 |
+
tulle chiffon skirt covered by thin translucent skirt,dress
|
3060 |
+
printed diapers,dress
|
3061 |
+
fishnet tights,dress
|
3062 |
+
armor,dress
|
3063 |
+
armor dress,dress
|
3064 |
+
idol dress,dress
|
3065 |
+
egyptian clothes,dress
|
3066 |
+
organdie dress,dress
|
3067 |
+
cape hood,dress
|
3068 |
+
gothic lolita,dress
|
3069 |
+
track suits,dress
|
3070 |
+
baby bib,dress
|
3071 |
+
serafuku,dress
|
3072 |
+
pajamas,dress
|
3073 |
+
bathrobe,dress
|
3074 |
+
boxing uniform,dress
|
3075 |
+
double breasted,dress
|
3076 |
+
bdsm,dress
|
3077 |
+
sexual bondage,dress
|
3078 |
+
bondage,dress
|
3079 |
+
lady's suit,dress
|
3080 |
+
machinery,dress
|
3081 |
+
lolita fashion,dress
|
3082 |
+
rompers,dress
|
3083 |
+
summer uniform,dress
|
3084 |
+
gakuran,dress
|
3085 |
+
school uniform,dress
|
3086 |
+
ornate,dress
|
3087 |
+
karate gi,dress
|
3088 |
+
classic maid's clothes,dress
|
3089 |
+
holy knight,dress
|
3090 |
+
bodystocking,dress
|
3091 |
+
gym clothes,dress
|
3092 |
+
gym uniform,dress
|
3093 |
+
labcoat,dress
|
3094 |
+
garter straps,dress
|
3095 |
+
chemise,dress
|
3096 |
+
boyshort panties,dress
|
3097 |
+
sports bra,dress
|
3098 |
+
bloomers,dress
|
3099 |
+
pasties,dress
|
3100 |
+
nightgown,dress
|
3101 |
+
negligee,dress
|
3102 |
+
pantyhose,dress
|
3103 |
+
panties,dress
|
3104 |
+
bra,dress
|
3105 |
+
babydoll,dress
|
3106 |
+
underwear,dress
|
3107 |
+
pelvic curtain,dress
|
3108 |
+
loincloth,dress
|
3109 |
+
classic briefs,dress
|
3110 |
+
boys briefs,dress
|
3111 |
+
side tie bikini bottom,dress
|
3112 |
+
printed diapers,dress
|
3113 |
+
high heeled shoes,dress
|
3114 |
+
platform footwear,dress
|
3115 |
+
thigh boots,dress
|
3116 |
+
cross laced footwear,dress
|
3117 |
+
lace up boots,dress
|
3118 |
+
footwear,dress
|
3119 |
+
stockings,dress
|
3120 |
+
tights,dress
|
3121 |
+
border knee socks,dress
|
3122 |
+
loose socks,dress
|
3123 |
+
socks,dress
|
3124 |
+
white socks,dress
|
3125 |
+
bridal gauntlets,dress
|
3126 |
+
elbow gloves,dress
|
3127 |
+
black gloves,dress
|
3128 |
+
fingerless glove,dress
|
3129 |
+
partially fingerless glove,dress
|
3130 |
+
gloves,dress
|
3131 |
+
paw gloves,dress
|
3132 |
+
white gloves,dress
|
3133 |
+
see through,dress
|
3134 |
+
see through sleeves,dress
|
3135 |
+
furisode,dress
|
3136 |
+
sleeves,dress
|
3137 |
+
sleeveless,dress
|
3138 |
+
long sleeves,dress
|
3139 |
+
short sleeve,dress
|
3140 |
+
sleeves past wrists,dress
|
3141 |
+
skindentation,dress
|
3142 |
+
the skirt sways with the wind,dress
|
3143 |
+
sailor dress,dress
|
3144 |
+
torn clothes,dress
|
3145 |
+
skin tight,dress
|
3146 |
+
taut shirt,dress
|
3147 |
+
unbuttoned,dress
|
3148 |
+
button gap,dress
|
3149 |
+
detached sleeves,dress
|
3150 |
+
see through wet shirt,dress
|
3151 |
+
clothes writing,dress
|
3152 |
+
bulge,dress
|
3153 |
+
skirt that sway,dress
|
3154 |
+
revealing clothes,dress
|
3155 |
+
unexposed,dress
|
3156 |
+
off shoulder jacket,dress
|
3157 |
+
gauze skirt,dress
|
3158 |
+
gothic empire waist dress,dress
|
3159 |
+
jacket,dress
|
3160 |
+
shoes,dress
|
3161 |
+
wrinkled skirt,dress
|
3162 |
+
hoodie,dress
|
3163 |
+
bustier,dress
|
3164 |
+
long straight,dress
|
3165 |
+
bottomless,dress
|
3166 |
+
completely nude,dress
|
3167 |
+
topless,dress
|
3168 |
+
naked,dress
|
3169 |
+
naked apron,dress
|
3170 |
+
naked waist apron,dress
|
3171 |
+
naked towel,dress
|
3172 |
+
naked necktie,dress
|
3173 |
+
barefoot,dress
|
3174 |
+
bleached cloth,dress
|
3175 |
+
hakama,dress
|
3176 |
+
man's formal divided skirt,dress
|
3177 |
+
tabard,dress
|
3178 |
+
kimono,dress
|
3179 |
+
girls yukata,dress
|
3180 |
+
boys yukata,dress
|
3181 |
+
japanese clothes,dress
|
3182 |
+
argyle,pattern
|
3183 |
+
argyle pattern,pattern
|
3184 |
+
ikat pattern,pattern
|
3185 |
+
ombre,pattern
|
3186 |
+
gingham check,pattern
|
3187 |
+
Greek key,pattern
|
3188 |
+
serval print,pattern
|
3189 |
+
chevron stripe,pattern
|
3190 |
+
peony pattern,pattern
|
3191 |
+
scallop,pattern
|
3192 |
+
striped,pattern
|
3193 |
+
damask pattern,pattern
|
3194 |
+
check pattern,pattern
|
3195 |
+
dot pattern,pattern
|
3196 |
+
trellis,pattern
|
3197 |
+
harlequin check,pattern
|
3198 |
+
rose pattern,pattern
|
3199 |
+
daisy pattern,pattern
|
3200 |
+
paisley,pattern
|
3201 |
+
herringbone pattern,pattern
|
3202 |
+
polka dot,pattern
|
3203 |
+
Moroccan pattern,pattern
|
3204 |
+
lattice,pattern
|
3205 |
+
liberty print,pattern
|
3206 |
+
circles,pattern
|
3207 |
+
floral print,pattern
|
3208 |
+
geometric patterns,pattern
|
3209 |
+
cow print,pattern
|
3210 |
+
the look of the sky,pattern
|
3211 |
+
tiger print,pattern
|
3212 |
+
flag print,pattern
|
3213 |
+
triangles,pattern
|
3214 |
+
star print,pattern
|
3215 |
+
squares,pattern
|
3216 |
+
houndstooth pattern,pattern
|
3217 |
+
animal print,pattern
|
3218 |
+
paw print,pattern
|
3219 |
+
cat pattern,pattern
|
3220 |
+
plain,pattern
|
3221 |
+
camouflage,pattern
|
3222 |
+
fishnets,pattern
|
tagger.py
ADDED
@@ -0,0 +1,413 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from PIL import Image
|
2 |
+
import torch
|
3 |
+
|
4 |
+
from transformers import (
|
5 |
+
AutoImageProcessor,
|
6 |
+
AutoModelForImageClassification,
|
7 |
+
)
|
8 |
+
|
9 |
+
import gradio as gr
|
10 |
+
import spaces # ZERO GPU
|
11 |
+
|
12 |
+
MODEL_NAMES = ["p1atdev/wd-swinv2-tagger-v3-hf"]
|
13 |
+
MODEL_NAME = MODEL_NAMES[0]
|
14 |
+
|
15 |
+
model = AutoModelForImageClassification.from_pretrained(MODEL_NAME, trust_remote_code=True)
|
16 |
+
model.to("cuda" if torch.cuda.is_available() else "cpu")
|
17 |
+
processor = AutoImageProcessor.from_pretrained(MODEL_NAME, trust_remote_code=True)
|
18 |
+
|
19 |
+
|
20 |
+
def _people_tag(noun: str, minimum: int = 1, maximum: int = 5):
|
21 |
+
return (
|
22 |
+
[f"1{noun}"]
|
23 |
+
+ [f"{num}{noun}s" for num in range(minimum + 1, maximum + 1)]
|
24 |
+
+ [f"{maximum+1}+{noun}s"]
|
25 |
+
)
|
26 |
+
|
27 |
+
|
28 |
+
PEOPLE_TAGS = (
|
29 |
+
_people_tag("girl") + _people_tag("boy") + _people_tag("other") + ["no humans"]
|
30 |
+
)
|
31 |
+
|
32 |
+
|
33 |
+
RATING_MAP = {
|
34 |
+
"general": "safe",
|
35 |
+
"sensitive": "sensitive",
|
36 |
+
"questionable": "nsfw",
|
37 |
+
"explicit": "explicit, nsfw",
|
38 |
+
}
|
39 |
+
DANBOORU_TO_E621_RATING_MAP = {
|
40 |
+
"safe": "rating_safe",
|
41 |
+
"sensitive": "rating_safe",
|
42 |
+
"nsfw": "rating_explicit",
|
43 |
+
"explicit, nsfw": "rating_explicit",
|
44 |
+
"explicit": "rating_explicit",
|
45 |
+
"rating:safe": "rating_safe",
|
46 |
+
"rating:general": "rating_safe",
|
47 |
+
"rating:sensitive": "rating_safe",
|
48 |
+
"rating:questionable, nsfw": "rating_explicit",
|
49 |
+
"rating:explicit, nsfw": "rating_explicit",
|
50 |
+
}
|
51 |
+
|
52 |
+
|
53 |
+
def load_dict_from_csv(filename):
|
54 |
+
with open(filename, 'r', encoding="utf-8") as f:
|
55 |
+
lines = f.readlines()
|
56 |
+
dict = {}
|
57 |
+
for line in lines:
|
58 |
+
parts = line.strip().split(',')
|
59 |
+
dict[parts[0]] = parts[1]
|
60 |
+
return dict
|
61 |
+
|
62 |
+
|
63 |
+
def get_series_dict():
|
64 |
+
import re
|
65 |
+
with open('characterfull.txt', 'r') as f:
|
66 |
+
lines = f.readlines()
|
67 |
+
series_dict = {}
|
68 |
+
for line in lines:
|
69 |
+
parts = line.strip().split(', ')
|
70 |
+
if len(parts) >= 3:
|
71 |
+
name = parts[-2].replace("\\", "")
|
72 |
+
if name.endswith(")"):
|
73 |
+
names = name.split("(")
|
74 |
+
character_name = "(".join(names[:-1])
|
75 |
+
if character_name.endswith(" "):
|
76 |
+
name = character_name[:-1]
|
77 |
+
series = re.sub(r'\\[()]', '', parts[-1])
|
78 |
+
series_dict[name] = series
|
79 |
+
return series_dict
|
80 |
+
|
81 |
+
|
82 |
+
anime_series_dict = get_series_dict()
|
83 |
+
|
84 |
+
|
85 |
+
def character_list_to_series_list(character_list):
|
86 |
+
output_series_tag = []
|
87 |
+
series_tag = ""
|
88 |
+
series_dict = anime_series_dict
|
89 |
+
for tag in character_list:
|
90 |
+
series_tag = series_dict.get(tag, "")
|
91 |
+
if tag.endswith(")"):
|
92 |
+
tags = tag.split("(")
|
93 |
+
character_tag = "(".join(tags[:-1])
|
94 |
+
if character_tag.endswith(" "):
|
95 |
+
character_tag = character_tag[:-1]
|
96 |
+
series_tag = tags[-1].replace(")", "")
|
97 |
+
|
98 |
+
if series_tag:
|
99 |
+
output_series_tag.append(series_tag)
|
100 |
+
|
101 |
+
return output_series_tag
|
102 |
+
|
103 |
+
|
104 |
+
def danbooru_to_e621(dtag, e621_dict):
|
105 |
+
def d_to_e(match, e621_dict):
|
106 |
+
dtag = match.group(0)
|
107 |
+
etag = e621_dict.get(dtag.strip().replace("_", " "), "")
|
108 |
+
if etag:
|
109 |
+
return etag
|
110 |
+
else:
|
111 |
+
return dtag
|
112 |
+
|
113 |
+
import re
|
114 |
+
tag = re.sub(r'[\w ]+', lambda wrapper: d_to_e(wrapper, e621_dict), dtag, 2)
|
115 |
+
|
116 |
+
return tag
|
117 |
+
|
118 |
+
|
119 |
+
danbooru_to_e621_dict = load_dict_from_csv('danbooru_e621.csv')
|
120 |
+
|
121 |
+
|
122 |
+
def convert_danbooru_to_e621_prompt(input_prompt: str = "", prompt_type: str = "danbooru"):
|
123 |
+
if prompt_type == "danbooru": return input_prompt
|
124 |
+
tags = input_prompt.split(",") if input_prompt else []
|
125 |
+
people_tags: list[str] = []
|
126 |
+
other_tags: list[str] = []
|
127 |
+
rating_tags: list[str] = []
|
128 |
+
|
129 |
+
e621_dict = danbooru_to_e621_dict
|
130 |
+
for tag in tags:
|
131 |
+
tag = tag.strip().replace("_", " ")
|
132 |
+
tag = danbooru_to_e621(tag, e621_dict)
|
133 |
+
if tag in PEOPLE_TAGS:
|
134 |
+
people_tags.append(tag)
|
135 |
+
elif tag in DANBOORU_TO_E621_RATING_MAP.keys():
|
136 |
+
rating_tags.append(DANBOORU_TO_E621_RATING_MAP.get(tag.replace(" ",""), ""))
|
137 |
+
else:
|
138 |
+
other_tags.append(tag)
|
139 |
+
|
140 |
+
rating_tags = sorted(set(rating_tags), key=rating_tags.index)
|
141 |
+
rating_tags = [rating_tags[0]] if rating_tags else []
|
142 |
+
rating_tags = ["explicit, nsfw"] if rating_tags[0] == "explicit" else rating_tags
|
143 |
+
|
144 |
+
output_prompt = ", ".join(people_tags + other_tags + rating_tags)
|
145 |
+
|
146 |
+
return output_prompt
|
147 |
+
|
148 |
+
|
149 |
+
def translate_prompt(prompt: str = ""):
|
150 |
+
def translate_to_english(prompt):
|
151 |
+
import httpcore
|
152 |
+
setattr(httpcore, 'SyncHTTPTransport', 'AsyncHTTPProxy')
|
153 |
+
from googletrans import Translator
|
154 |
+
translator = Translator()
|
155 |
+
try:
|
156 |
+
translated_prompt = translator.translate(prompt, src='auto', dest='en').text
|
157 |
+
return translated_prompt
|
158 |
+
except Exception as e:
|
159 |
+
return prompt
|
160 |
+
|
161 |
+
def is_japanese(s):
|
162 |
+
import unicodedata
|
163 |
+
for ch in s:
|
164 |
+
name = unicodedata.name(ch, "")
|
165 |
+
if "CJK UNIFIED" in name or "HIRAGANA" in name or "KATAKANA" in name:
|
166 |
+
return True
|
167 |
+
return False
|
168 |
+
|
169 |
+
def to_list(s):
|
170 |
+
return [x.strip() for x in s.split(",")]
|
171 |
+
|
172 |
+
prompts = to_list(prompt)
|
173 |
+
outputs = []
|
174 |
+
for p in prompts:
|
175 |
+
p = translate_to_english(p) if is_japanese(p) else p
|
176 |
+
outputs.append(p)
|
177 |
+
|
178 |
+
return ", ".join(outputs)
|
179 |
+
|
180 |
+
|
181 |
+
def translate_prompt_to_ja(prompt: str = ""):
|
182 |
+
def translate_to_japanese(prompt):
|
183 |
+
import httpcore
|
184 |
+
setattr(httpcore, 'SyncHTTPTransport', 'AsyncHTTPProxy')
|
185 |
+
from googletrans import Translator
|
186 |
+
translator = Translator()
|
187 |
+
try:
|
188 |
+
translated_prompt = translator.translate(prompt, src='en', dest='ja').text
|
189 |
+
return translated_prompt
|
190 |
+
except Exception as e:
|
191 |
+
return prompt
|
192 |
+
|
193 |
+
def is_japanese(s):
|
194 |
+
import unicodedata
|
195 |
+
for ch in s:
|
196 |
+
name = unicodedata.name(ch, "")
|
197 |
+
if "CJK UNIFIED" in name or "HIRAGANA" in name or "KATAKANA" in name:
|
198 |
+
return True
|
199 |
+
return False
|
200 |
+
|
201 |
+
def to_list(s):
|
202 |
+
return [x.strip() for x in s.split(",")]
|
203 |
+
|
204 |
+
prompts = to_list(prompt)
|
205 |
+
outputs = []
|
206 |
+
for p in prompts:
|
207 |
+
p = translate_to_japanese(p) if not is_japanese(p) else p
|
208 |
+
outputs.append(p)
|
209 |
+
|
210 |
+
return ", ".join(outputs)
|
211 |
+
|
212 |
+
|
213 |
+
def tags_to_ja(itag, dict):
|
214 |
+
def t_to_j(match, dict):
|
215 |
+
tag = match.group(0)
|
216 |
+
ja = dict.get(tag.strip().replace("_", " "), "")
|
217 |
+
if ja:
|
218 |
+
return ja
|
219 |
+
else:
|
220 |
+
return tag
|
221 |
+
|
222 |
+
import re
|
223 |
+
tag = re.sub(r'[\w ]+', lambda wrapper: t_to_j(wrapper, dict), itag, 2)
|
224 |
+
|
225 |
+
return tag
|
226 |
+
|
227 |
+
|
228 |
+
tags_to_ja_dict = load_dict_from_csv('all_tags_ja_ext.csv')
|
229 |
+
|
230 |
+
|
231 |
+
def convert_tags_to_ja(input_prompt: str = ""):
|
232 |
+
tags = input_prompt.split(",") if input_prompt else []
|
233 |
+
out_tags = []
|
234 |
+
|
235 |
+
dict = tags_to_ja_dict
|
236 |
+
for tag in tags:
|
237 |
+
tag = tag.strip().replace("_", " ")
|
238 |
+
tag = tags_to_ja(tag, dict)
|
239 |
+
out_tags.append(tag)
|
240 |
+
|
241 |
+
return ", ".join(out_tags)
|
242 |
+
|
243 |
+
|
244 |
+
def insert_recom_prompt(prompt: str = "", neg_prompt: str = "", type: str = "None"):
|
245 |
+
def to_list(s):
|
246 |
+
return [x.strip() for x in s.split(",") if not s == ""]
|
247 |
+
|
248 |
+
def list_sub(a, b):
|
249 |
+
return [e for e in a if e not in b]
|
250 |
+
|
251 |
+
def list_uniq(l):
|
252 |
+
return sorted(set(l), key=l.index)
|
253 |
+
|
254 |
+
animagine_ps = to_list("masterpiece, best quality, very aesthetic, absurdres")
|
255 |
+
animagine_nps = to_list("lowres, (bad), text, error, fewer, extra, missing, worst quality, jpeg artifacts, low quality, watermark, unfinished, displeasing, oldest, early, chromatic aberration, signature, extra digits, artistic error, username, scan, [abstract]")
|
256 |
+
pony_ps = to_list("source_anime, score_9, score_8_up, score_7_up, masterpiece, best quality, very aesthetic, absurdres")
|
257 |
+
pony_nps = to_list("source_pony, source_furry, source_cartoon, score_6, score_5, score_4, busty, ugly face, mutated hands, low res, blurry face, black and white, the simpsons, overwatch, apex legends")
|
258 |
+
prompts = to_list(prompt)
|
259 |
+
neg_prompts = to_list(neg_prompt)
|
260 |
+
|
261 |
+
prompts = list_sub(prompts, animagine_ps + pony_ps)
|
262 |
+
neg_prompts = list_sub(neg_prompts, animagine_nps + pony_nps)
|
263 |
+
|
264 |
+
last_empty_p = [""] if not prompts and type != "None" else []
|
265 |
+
last_empty_np = [""] if not neg_prompts and type != "None" else []
|
266 |
+
|
267 |
+
if type == "Animagine":
|
268 |
+
prompts = prompts + animagine_ps
|
269 |
+
neg_prompts = neg_prompts + animagine_nps
|
270 |
+
elif type == "Pony":
|
271 |
+
prompts = prompts + pony_ps
|
272 |
+
neg_prompts = neg_prompts + pony_nps
|
273 |
+
|
274 |
+
prompt = ", ".join(list_uniq(prompts) + last_empty_p)
|
275 |
+
neg_prompt = ", ".join(list_uniq(neg_prompts) + last_empty_np)
|
276 |
+
|
277 |
+
return prompt, neg_prompt
|
278 |
+
|
279 |
+
|
280 |
+
tag_group_dict = load_dict_from_csv('tag_group.csv')
|
281 |
+
|
282 |
+
|
283 |
+
def remove_specific_prompt(input_prompt: str = "", keep_tags: str = "all"):
|
284 |
+
def is_dressed(tag):
|
285 |
+
import re
|
286 |
+
p = re.compile(r'dress|cloth|uniform|costume|vest|sweater|coat|shirt|jacket|blazer|apron|leotard|hood|sleeve|skirt|shorts|pant|loafer|ribbon|necktie|bow|collar|glove|sock|shoe|boots|wear|emblem')
|
287 |
+
return p.search(tag)
|
288 |
+
|
289 |
+
def is_background(tag):
|
290 |
+
import re
|
291 |
+
p = re.compile(r'background|outline|light|sky|build|day|screen|tree|city')
|
292 |
+
return p.search(tag)
|
293 |
+
|
294 |
+
un_tags = ['solo']
|
295 |
+
group_list = ['people', 'age', 'pattern', 'place', 'hair', 'modifier', 'screen', 'animal', 'effect', 'situation', 'status', 'lighting', 'accesory', 'body', 'nsfw', 'camera', 'option', 'taste', 'other', 'detail', 'action', 'dress', 'character', 'face', 'costume', 'attribute', 'weather', 'temporary', 'gender', 'favorite', 'food', 'object', 'quality', 'expression', 'life', 'background']
|
296 |
+
keep_group_dict = {
|
297 |
+
"body": ['people', 'age', 'hair', 'body', 'character', 'face', 'gender'],
|
298 |
+
"dress": ['people', 'age', 'hair', 'accesory', 'body', 'dress', 'character', 'face', 'costume', 'gender'],
|
299 |
+
"all": ['people', 'age', 'pattern', 'place', 'hair', 'modifier', 'screen', 'animal', 'effect', 'situation', 'status', 'lighting', 'accesory', 'body', 'nsfw', 'camera', 'option', 'taste', 'other', 'detail', 'action', 'dress', 'character', 'face', 'costume', 'attribute', 'weather', 'temporary', 'gender', 'favorite', 'food', 'object', 'quality', 'expression', 'life', 'background']
|
300 |
+
}
|
301 |
+
|
302 |
+
def is_necessary(tag, keep_tags, group_dict):
|
303 |
+
if keep_tags == "all":
|
304 |
+
return True
|
305 |
+
elif tag in un_tags or group_dict.get(tag, "") in explicit_group:
|
306 |
+
return False
|
307 |
+
elif keep_tags == "body" and is_dressed(tag):
|
308 |
+
return False
|
309 |
+
elif is_background(tag):
|
310 |
+
return False
|
311 |
+
else:
|
312 |
+
return True
|
313 |
+
|
314 |
+
if keep_tags == "all": return input_prompt
|
315 |
+
keep_group = keep_group_dict.get(keep_tags, ['people', 'age', 'hair', 'body', 'character', 'face', 'gender'])
|
316 |
+
explicit_group = list(set(group_list) ^ set(keep_group))
|
317 |
+
|
318 |
+
tags = input_prompt.split(",") if input_prompt else []
|
319 |
+
people_tags: list[str] = []
|
320 |
+
other_tags: list[str] = []
|
321 |
+
|
322 |
+
group_dict = tag_group_dict
|
323 |
+
for tag in tags:
|
324 |
+
tag = tag.strip().replace("_", " ")
|
325 |
+
if tag in PEOPLE_TAGS:
|
326 |
+
people_tags.append(tag)
|
327 |
+
elif is_necessary(tag, keep_tags, group_dict):
|
328 |
+
other_tags.append(tag)
|
329 |
+
|
330 |
+
output_prompt = ", ".join(people_tags + other_tags)
|
331 |
+
|
332 |
+
return output_prompt
|
333 |
+
|
334 |
+
|
335 |
+
def postprocess_results(results: dict[str, float], general_threshold: float, character_threshold: float):
|
336 |
+
results = {
|
337 |
+
k: v for k, v in sorted(results.items(), key=lambda item: item[1], reverse=True)
|
338 |
+
}
|
339 |
+
|
340 |
+
rating = {}
|
341 |
+
character = {}
|
342 |
+
general = {}
|
343 |
+
|
344 |
+
for k, v in results.items():
|
345 |
+
if k.startswith("rating:"):
|
346 |
+
rating[k.replace("rating:", "")] = v
|
347 |
+
continue
|
348 |
+
elif k.startswith("character:"):
|
349 |
+
character[k.replace("character:", "")] = v
|
350 |
+
continue
|
351 |
+
|
352 |
+
general[k] = v
|
353 |
+
|
354 |
+
character = {k: v for k, v in character.items() if v >= character_threshold}
|
355 |
+
general = {k: v for k, v in general.items() if v >= general_threshold}
|
356 |
+
|
357 |
+
return rating, character, general
|
358 |
+
|
359 |
+
|
360 |
+
def gen_prompt(rating: list[str], character: list[str], general: list[str]):
|
361 |
+
people_tags: list[str] = []
|
362 |
+
other_tags: list[str] = []
|
363 |
+
rating_tag = RATING_MAP[rating[0]]
|
364 |
+
|
365 |
+
for tag in general:
|
366 |
+
if tag in PEOPLE_TAGS:
|
367 |
+
people_tags.append(tag)
|
368 |
+
else:
|
369 |
+
other_tags.append(tag)
|
370 |
+
|
371 |
+
all_tags = people_tags + other_tags
|
372 |
+
|
373 |
+
return ", ".join(all_tags)
|
374 |
+
|
375 |
+
|
376 |
+
@spaces.GPU()
|
377 |
+
def predict_tags(image: Image.Image, general_threshold: float = 0.3, character_threshold: float = 0.8):
|
378 |
+
inputs = processor.preprocess(image, return_tensors="pt")
|
379 |
+
|
380 |
+
outputs = model(**inputs.to(model.device, model.dtype))
|
381 |
+
logits = torch.sigmoid(outputs.logits[0]) # take the first logits
|
382 |
+
|
383 |
+
# get probabilities
|
384 |
+
results = {
|
385 |
+
model.config.id2label[i]: float(logit.float()) for i, logit in enumerate(logits)
|
386 |
+
}
|
387 |
+
|
388 |
+
# rating, character, general
|
389 |
+
rating, character, general = postprocess_results(
|
390 |
+
results, general_threshold, character_threshold
|
391 |
+
)
|
392 |
+
|
393 |
+
prompt = gen_prompt(
|
394 |
+
list(rating.keys()), list(character.keys()), list(general.keys())
|
395 |
+
)
|
396 |
+
|
397 |
+
output_series_tag = ""
|
398 |
+
output_series_list = character_list_to_series_list(character.keys())
|
399 |
+
if output_series_list:
|
400 |
+
output_series_tag = output_series_list[0]
|
401 |
+
else:
|
402 |
+
output_series_tag = ""
|
403 |
+
|
404 |
+
return output_series_tag, ", ".join(character.keys()), prompt, gr.update(interactive=True),
|
405 |
+
|
406 |
+
|
407 |
+
def compose_prompt_to_copy(character: str, series: str, general: str):
|
408 |
+
characters = character.split(",") if character else []
|
409 |
+
serieses = series.split(",") if series else []
|
410 |
+
generals = general.split(",") if general else []
|
411 |
+
tags = characters + serieses + generals
|
412 |
+
cprompt = ",".join(tags) if tags else ""
|
413 |
+
return cprompt
|
unused/all_tags_en_googletrans.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
unused/all_tags_ja.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
unused/danbooru_ja.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
unused/e621_ja.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|