om-app greendra commited on
Commit
84d1f18
·
0 Parent(s):

Duplicate from greendra/dmini

Browse files

Co-authored-by: Jack Hullis <[email protected]>

Files changed (7) hide show
  1. .gitattributes +33 -0
  2. README.md +14 -0
  3. app.py +181 -0
  4. bad_words.txt +926 -0
  5. error.png +0 -0
  6. requirements.txt +2 -0
  7. unsafe.png +0 -0
.gitattributes ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ *.ftz filter=lfs diff=lfs merge=lfs -text
6
+ *.gz filter=lfs diff=lfs merge=lfs -text
7
+ *.h5 filter=lfs diff=lfs merge=lfs -text
8
+ *.joblib filter=lfs diff=lfs merge=lfs -text
9
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
10
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
11
+ *.model filter=lfs diff=lfs merge=lfs -text
12
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
13
+ *.npy filter=lfs diff=lfs merge=lfs -text
14
+ *.npz filter=lfs diff=lfs merge=lfs -text
15
+ *.onnx filter=lfs diff=lfs merge=lfs -text
16
+ *.ot filter=lfs diff=lfs merge=lfs -text
17
+ *.parquet filter=lfs diff=lfs merge=lfs -text
18
+ *.pb filter=lfs diff=lfs merge=lfs -text
19
+ *.pickle filter=lfs diff=lfs merge=lfs -text
20
+ *.pkl filter=lfs diff=lfs merge=lfs -text
21
+ *.pt filter=lfs diff=lfs merge=lfs -text
22
+ *.pth filter=lfs diff=lfs merge=lfs -text
23
+ *.rar filter=lfs diff=lfs merge=lfs -text
24
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
25
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
26
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
27
+ *.tflite filter=lfs diff=lfs merge=lfs -text
28
+ *.tgz filter=lfs diff=lfs merge=lfs -text
29
+ *.wasm filter=lfs diff=lfs merge=lfs -text
30
+ *.xz filter=lfs diff=lfs merge=lfs -text
31
+ *.zip filter=lfs diff=lfs merge=lfs -text
32
+ *.zst filter=lfs diff=lfs merge=lfs -text
33
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: HelloWorld
3
+ emoji: 🔥
4
+ colorFrom: indigo
5
+ colorTo: red
6
+ sdk: gradio
7
+ sdk_version: 3.4
8
+ app_file: app.py
9
+ pinned: false
10
+ license: cc
11
+ duplicated_from: greendra/dmini
12
+ ---
13
+
14
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def dmini(prompt):
4
+ from craiyon import Craiyon
5
+ import time
6
+ from datetime import datetime
7
+ import base64
8
+ from io import BytesIO
9
+ from PIL import Image
10
+ import re
11
+
12
+ # if prompt is empty, log to console an error
13
+ if prompt == "":
14
+ return ["error.png"] * 9
15
+ # get time now gmt
16
+ timestamp = time.strftime("%H:%M:%S", time.localtime())
17
+ # format it to a string
18
+ timestamp = str(timestamp)
19
+ # convert string prompt to lowercase
20
+ prompt = prompt.lower()
21
+ # create list bad_words_list from bad_words.txt and strip whitespace
22
+ with open('bad_words.txt') as f:
23
+ bad_words_list = f.readlines()
24
+ bad_words_list = [x.strip() for x in bad_words_list]
25
+ # check if bad_words_list is in prompt
26
+ if any(re.findall(r'\b{}\b'.format(bad_word), prompt) for bad_word in bad_words_list):
27
+ # check if any bad words are in prompt
28
+ blocked_words = []
29
+ for word in bad_words_list:
30
+ if word in prompt:
31
+ blocked_words.append(word)
32
+ blocked_words = ', '.join(blocked_words)
33
+ print(timestamp + ": BLOCKED PROMPT \"" + prompt + "\" BANNED WORDS: " + blocked_words)
34
+ time.sleep(8)
35
+ print("User has had their time wasted.")
36
+ return ["unsafe.png"] * 9
37
+ else:
38
+ generator = Craiyon() # Instantiates the api wrapper
39
+ result = generator.generate(prompt) # Generates 9 images by default and you cannot change that
40
+ images = result.images # A list containing image data as base64 encoded strings
41
+ imagelist = []
42
+ for i in images:
43
+ image = Image.open(BytesIO(base64.decodebytes(i.encode("utf-8"))))
44
+ imagelist.append(image)
45
+ print(timestamp + ": PROMPT \"" + prompt + "\" WAS GENERATED SUCCESSFULLY\n")
46
+ return imagelist
47
+
48
+ examples = ["Futuristic utopian city in Coruscant. god beams. white buildings. street view. golden sunset. colorful, cityscape, green trees, future, urban, megapolis, breathtaking, Imaginative, utopia, Wallpaper, beautiful design, scifi, high detail, global illumination, ArtStation, art by Sebastian Wagner, Stephan Martiniere, Leon Tukker, Vitaly-Sokol",
49
+ "A dream of a distant galaxy, by Caspar David Friedrich, matte painting trending on artstation HQ",
50
+ "Cute close portrait dainty beautiful futurstic white robotic girl, portraits, white cyberpunk inflatable formfitting tops, highly detailed sharp big eyes, white fringeshort hair, transparent intricate details, professional 3d visualisation in pastel colours, by wlop, intricate linework, trending on artstation, unreal engine 5 highly rendered, epic composition, by guweiz, shal. e, laica chrose, final fantasy",
51
+ "1990s movie, orbit space new york city street with many pedestrians bejng attacked by ufos as a loading screen, cinestill 800t 18mm, heavy grainy picture, very detailed, high quality, 4k panoramic, dramatic lightning, streetlight at night, rain, mud, foggy, anchray flags",
52
+ "Portrait of a woman by Greg Rutkowski, she is about 30 years old, pretty, blond hair with two strans around her face, slavic features, melancholic gaze, pretty aquiline nose, she is wearing a blue utilitarian jumpsuit, highly detailed portrait, digital painting, artstation, concept art, smooth, sharp foccus ilustration, Artstation HQ.",
53
+ "A small cabin on top of a snowy mountain in the style of Disney, artstation"]
54
+
55
+ article="""
56
+ <style>
57
+ h2 {
58
+ font-size: 30px;
59
+ }
60
+ h3 {
61
+ font-size: 20px;
62
+ }
63
+ p, img, ol, ul {
64
+ padding-bottom: 20px;
65
+ }
66
+ ul {
67
+ list-style-type: disc;
68
+ list-style-position: inside;
69
+ }
70
+ ol {
71
+ list-style-type: decimal;
72
+ list-style-position: inside;
73
+ }
74
+ ul ul, ol ul {
75
+ list-style-type: circle;
76
+ list-style-position: inside;
77
+ margin-left: 15px;
78
+ }
79
+ ol ol, ul ol {
80
+ list-style-type: lower-latin;
81
+ list-style-position: inside;
82
+ margin-left: 15px;
83
+ }
84
+ </style>
85
+ <br>
86
+ <h2>Prompt Guide</h2>
87
+ <p>If you're struggling to get started, here's a good prompt engineering guide put together by Stable Diffusion community member Graverman.
88
+ <h3>1. Raw Prompt</h3>
89
+ <p>Raw prompt is the simplest way of describing what you want to generate, for instance;</p>
90
+ <ul>
91
+ <li>Panda</li>
92
+ <li>A warrior with a sword</li>
93
+ <li>Skeleton</li>
94
+ </ul>
95
+ <p>This is the basic building block of any prompt. Most new people start by only using raw prompts, this is usually a mistake as the images you generate like this tend to get random and chaotic. Here are some examples that I generated with running the earlier prompts</p>
96
+ <img src="https://beta.dreamstudio.ai/media/images/prompt-guide-example.png"/>
97
+ <p>As you can see, these images have random scenery and don’t look very aesthetically pleasing, I definitely wouldn’t consider them art. This brings me to my next point;</p>
98
+ <h3>2. Style</h3>
99
+ <p>Style is a crucial part of the prompt. The AI, when missing a specified style, usually chooses the one it has seen the most in related images, for example, if I generated landscape, it would probably generate realistic or oil painting looking images. Having a well chosen style + raw prompt is sometimes enough, as the style influences the image the most right after the raw prompt.</p>
100
+ <p>The most commonly used styles include:</p>
101
+ <ol>
102
+ <li>Realistic</li>
103
+ <li>Oil painting</li>
104
+ <li>Pencil drawing</li>
105
+ <li>Concept art</li>
106
+ </ol>
107
+ <p>I&rsquo;ll examine them one by one to give an overview on how you might use these styles.</p>
108
+ <p>In the case of a realistic image, there are various ways of making it the style, most resulting in similar images. Here are some commonly used techniques of making the image realistic:</p>
109
+ <ol>
110
+ <li>a photo of + raw prompt</li>
111
+ <li>a photograph of + raw prompt</li>
112
+ <li>raw prompt, hyperrealistic</li>
113
+ <li>raw prompt, realistic</li>
114
+ </ol>
115
+ <p>You can of course combine these to get more and more realistic images.</p>
116
+ <p>To get oil painting you can just simply add &ldquo;an oil painting of&rdquo; to your prompt. This sometimes results in the image showing an oil painting in a frame, to fix this you can just re-run the prompt or use raw prompt + &ldquo;oil painting&rdquo;</p>
117
+ <p>To make a pencil drawing just simply add &ldquo;a pencil drawing of&rdquo; to your raw prompt or make your prompt raw prompt + &ldquo;pencil drawing&rdquo;.</p>
118
+ <p>The same applies to landscape art.</p>
119
+ <p><br></p>
120
+ <h3>3. Artist</h3>
121
+ <p>To make your style more specific, or the image more coherent, you can use artists&rsquo; names in your prompt. For instance, if you want a very abstract image, you can add &ldquo;made by Pablo Picasso&rdquo; or just simply, &ldquo;Picasso&rdquo;.</p>
122
+ <p>Below are lists of artists in different styles that you can use, but I always encourage you to search for different artists as it is a cool way of discovering new art.</p>
123
+ <b>Portrait</b>
124
+ <ol>
125
+ <li>John Singer Sargent</li>
126
+ <li>Edgar Degas</li>
127
+ <li>Paul C&eacute;zanne</li>
128
+ <li>Jan van Eyck</li>
129
+ </ol>
130
+ <b>Oil painting</b>
131
+ <ol>
132
+ <li>Leonardo DaVinci</li>
133
+ <li>Vincent Van Gogh</li>
134
+ <li>Johannes Vermeer</li>
135
+ <li>Rembrandt</li>
136
+ </ol>
137
+ <b>Pencil/Pen drawing</b>
138
+ <ol>
139
+ <li>Albrecht D&uuml;rer</li>
140
+ <li>Leonardo da Vinci</li>
141
+ <li>Michelangelo</li>
142
+ <li>Jean-Auguste-Dominique Ingres</li>
143
+ </ol>
144
+ <b>Landscape art</b>
145
+ <ol>
146
+ <li>Thomas Moran</li>
147
+ <li>Claude Monet</li>
148
+ <li>Alfred Bierstadt</li>
149
+ <li>Frederic Edwin Church</li>
150
+ </ol>
151
+ <p>Mixing the artists is highly encouraged, as it can lead to interesting-looking art.</p>
152
+ <p><br></p>
153
+ <h3>4. Finishing touches</h3>
154
+ <p>This is the part that some people take to extremes, leading to longer prompts than this article. Finishing touches are the final things that you add to your prompt to make it look like you want. For instance, if you want to make your image more artistic, add &ldquo;trending on artstation&rdquo;. If you want to add more realistic lighting add &ldquo;Unreal Engine.&rdquo; You can add anything you want, but here are some examples:</p>
155
+ <p>Highly detailed, surrealism, trending on art station, triadic color scheme, smooth, sharp focus, matte, elegant, the most beautiful image ever seen, illustration, digital paint, dark, gloomy, octane render, 8k, 4k, washed colors, sharp, dramatic lighting, beautiful, post processing, picture of the day, ambient lighting, epic composition</p>
156
+ <p><br></p>
157
+ <h3>5. Conclusion</h3>
158
+ <p>Prompt engineering allows you to have better control of what the image will look like. It (if done right) improves the image quality by a lot in every aspect. If you enjoyed this &ldquo;article&rdquo;, well, I&rsquo;m glad I didn&rsquo;t waste my time. If you see any ways that I can improve this, definitely let me know on discord (Graverman#0804)</p>
159
+ <p>This guide was written by Graverman, who can be found on twitter under the username @dailystablediff</p>
160
+ <br>
161
+ <p>This app is not run in affiliation with StabilityAI. This app uses the Stable Diffusion API to generate images.</p>
162
+ <h3>LICENSE</h3>
163
+ <p>The model is licensed with a&nbsp;<a href="https://huggingface.co/spaces/CompVis/stable-diffusion-license" target="_blank">CreativeML Open RAIL-M</a> license.
164
+ The authors claim no rights on the outputs you generate, you are free to use them and are accountable for their use which must not go against the provisions set in this license. The license forbids you from sharing any content that violates any laws, produce any harm to a person, disseminate any personal information that would be meant for harm, spread misinformation and target vulnerable groups.
165
+ For the full list of restrictions please&nbsp;<a href="https://huggingface.co/spaces/CompVis/stable-diffusion-license" target="_blank">read the license</a></p>
166
+ """
167
+
168
+ with gr.Blocks(css = """
169
+ *, body, #name, #ex, #article, .border-gray-200, .gr-input, .border-gray-100 { background: #0b0f19; color: white; border-color: #4c4c4c; }
170
+ .gr-samples-gallery .gr-sample-textbox, #greet_btn, #save_btn, .py-1, .gr-samples-gallery:hover .gr-sample-textbox:hover, .gr-text-input, #output, .wrap.svelte-1c38quw, .h-wrap { background: #1f2937; color: white; border-color: #4c4c4c;}
171
+ """
172
+ ) as demo:
173
+ output = gr.Gallery(label="Image Generation", elem_id="output").style(grid=3)
174
+ name = gr.Textbox(label="Prompt", placeholder="Describe the image you want to generate. Longer and more detailed prompts work better.", elem_id="name")
175
+ greet_btn = gr.Button("Generate Image", elem_id="greet_btn")
176
+ ex = gr.Examples(examples=examples, fn=dmini, inputs=name, outputs=output, cache_examples=True)
177
+ ex.dataset.headers = [""]
178
+ article = gr.HTML(article, elem_id="article")
179
+ greet_btn.click(fn=dmini, inputs=name, outputs=output)
180
+
181
+ demo.queue(concurrency_count=20, max_size=20).launch(max_threads=150)
bad_words.txt ADDED
@@ -0,0 +1,926 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2 girls 1 cup
2
+ 2g1c
3
+ 4r5e
4
+ 5h1t
5
+ 5hit
6
+ a55
7
+ a_s_s
8
+ acrotomophilia
9
+ alabama hot pocket
10
+ alaskan pipeline
11
+ anal
12
+ anilingus
13
+ anus
14
+ apeshit
15
+ ar5e
16
+ arrse
17
+ arsehole
18
+ ass-fucker
19
+ ass-hat
20
+ ass-pirate
21
+ assbag
22
+ assbandit
23
+ assbanger
24
+ assbite
25
+ assclown
26
+ asscock
27
+ asscracker
28
+ assface
29
+ assfucker
30
+ assfukka
31
+ assgoblin
32
+ asshat
33
+ asshead
34
+ asshole
35
+ assholes
36
+ asshopper
37
+ assjacker
38
+ asslick
39
+ asslicker
40
+ assmonkey
41
+ assmunch
42
+ assmuncher
43
+ asspirate
44
+ assshole
45
+ asssucker
46
+ asswad
47
+ asswhole
48
+ asswipe
49
+ auto erotic
50
+ autoerotic
51
+ b!tch
52
+ b00bs
53
+ b17ch
54
+ b1tch
55
+ babeland
56
+ baby batter
57
+ baby juice
58
+ ball gag
59
+ ball gravy
60
+ ball kicking
61
+ ball licking
62
+ ball sack
63
+ ball sucking
64
+ ballbag
65
+ ballsack
66
+ bampot
67
+ bangbros
68
+ bareback
69
+ barely legal
70
+ barenaked
71
+ bastard
72
+ bastardo
73
+ bastinado
74
+ bbw
75
+ bdsm
76
+ beaner
77
+ beaners
78
+ beastial
79
+ beastiality
80
+ beastility
81
+ beaver cleaver
82
+ beaver lips
83
+ bellend
84
+ bestial
85
+ bestiality
86
+ bi+ch
87
+ biatch
88
+ big black
89
+ big knockers
90
+ big tits
91
+ bimbos
92
+ birdlock
93
+ bitch
94
+ bitcher
95
+ bitchers
96
+ bitches
97
+ bitchin
98
+ bitching
99
+ black cock
100
+ blonde action
101
+ blonde on blonde action
102
+ blow job
103
+ blow your load
104
+ blowjob
105
+ blowjobs
106
+ blue waffle
107
+ blumpkin
108
+ boiolas
109
+ bollock
110
+ bollocks
111
+ bollok
112
+ bollox
113
+ bondage
114
+ boner
115
+ booty call
116
+ breast
117
+ brown showers
118
+ brunette action
119
+ buceta
120
+ bukkake
121
+ bulldyke
122
+ bullet vibe
123
+ bullshit
124
+ bung hole
125
+ bunghole
126
+ bunny fucker
127
+ butt-pirate
128
+ buttcheeks
129
+ butthole
130
+ buttmunch
131
+ buttplug
132
+ c0ck
133
+ c0cksucker
134
+ camel toe
135
+ camgirl
136
+ camslut
137
+ camwhore
138
+ carpet muncher
139
+ carpetmuncher
140
+ cawk
141
+ chinc
142
+ chink
143
+ choad
144
+ chocolate rosebuds
145
+ chode
146
+ cipa
147
+ circlejerk
148
+ cl1t
149
+ cleveland steamer
150
+ clit
151
+ clitface
152
+ clitoris
153
+ clits
154
+ clover clamps
155
+ clusterfuck
156
+ cnut
157
+ cock
158
+ cock-sucker
159
+ cockbite
160
+ cockburger
161
+ cockface
162
+ cockhead
163
+ cockjockey
164
+ cockknoker
165
+ cockmaster
166
+ cockmongler
167
+ cockmongruel
168
+ cockmonkey
169
+ cockmunch
170
+ cockmuncher
171
+ cocknose
172
+ cocknugget
173
+ cocks
174
+ cockshit
175
+ cocksmith
176
+ cocksmoker
177
+ cocksuck
178
+ cocksuck
179
+ cocksucked
180
+ cocksucked
181
+ cocksucker
182
+ cocksucking
183
+ cocksucks
184
+ cocksuka
185
+ cocksukka
186
+ cok
187
+ cokmuncher
188
+ coksucka
189
+ coochie
190
+ coochy
191
+ coon
192
+ coons
193
+ cooter
194
+ coprolagnia
195
+ coprophilia
196
+ cornhole
197
+ creampie
198
+ cum
199
+ cumbubble
200
+ cumdumpster
201
+ cumguzzler
202
+ cumjockey
203
+ cummer
204
+ cumming
205
+ cums
206
+ cumshot
207
+ cumslut
208
+ cumtart
209
+ cunilingus
210
+ cunillingus
211
+ cunnie
212
+ cunnilingus
213
+ cunt
214
+ cuntface
215
+ cunthole
216
+ cuntlick
217
+ cuntlick
218
+ cuntlicker
219
+ cuntlicker
220
+ cuntlicking
221
+ cuntlicking
222
+ cuntrag
223
+ cunts
224
+ cyalis
225
+ cyberfuc
226
+ cyberfuck
227
+ cyberfucked
228
+ cyberfucker
229
+ cyberfuckers
230
+ cyberfucking
231
+ d1ck
232
+ darkie
233
+ date rape
234
+ daterape
235
+ deep throat
236
+ deepthroat
237
+ dendrophilia
238
+ dick
239
+ dickbag
240
+ dickbeater
241
+ dickface
242
+ dickhead
243
+ dickhole
244
+ dickjuice
245
+ dickmilk
246
+ dickmonger
247
+ dickslap
248
+ dicksucker
249
+ dickwad
250
+ dickweasel
251
+ dickweed
252
+ dickwod
253
+ dike
254
+ dildo
255
+ dildos
256
+ dingleberries
257
+ dingleberry
258
+ dink
259
+ dinks
260
+ dipshit
261
+ dirsa
262
+ dirty pillows
263
+ dirty sanchez
264
+ dlck
265
+ dog style
266
+ dog-fucker
267
+ doggie style
268
+ doggiestyle
269
+ doggin
270
+ dogging
271
+ doggy style
272
+ doggystyle
273
+ dolcett
274
+ domination
275
+ dominatrix
276
+ dommes
277
+ donkey punch
278
+ donkeyribber
279
+ doochbag
280
+ dookie
281
+ doosh
282
+ double dong
283
+ double penetration
284
+ douche
285
+ douchebag
286
+ dp action
287
+ dry hump
288
+ duche
289
+ dumbshit
290
+ dumshit
291
+ dvda
292
+ dyke
293
+ eat my ass
294
+ ecchi
295
+ ejaculate
296
+ ejaculated
297
+ ejaculates
298
+ ejaculating
299
+ ejaculatings
300
+ ejaculation
301
+ ejakulate
302
+ erotic
303
+ erotism
304
+ escort
305
+ eunuch
306
+ f u c k
307
+ f u c k e r
308
+ f4nny
309
+ f_u_c_k
310
+ fag
311
+ fagbag
312
+ fagg
313
+ fagging
314
+ faggit
315
+ faggitt
316
+ faggot
317
+ faggs
318
+ fagot
319
+ fagots
320
+ fags
321
+ fagtard
322
+ fanny
323
+ fannyflaps
324
+ fannyfucker
325
+ fanyy
326
+ fatass
327
+ fcuk
328
+ fcuker
329
+ fcuking
330
+ fecal
331
+ feck
332
+ fecker
333
+ felatio
334
+ felch
335
+ felching
336
+ fellate
337
+ fellatio
338
+ feltch
339
+ female squirting
340
+ femdom
341
+ figging
342
+ fingerbang
343
+ fingerfuck
344
+ fingerfucked
345
+ fingerfucker
346
+ fingerfuckers
347
+ fingerfucking
348
+ fingerfucks
349
+ fingering
350
+ fistfuck
351
+ fistfucked
352
+ fistfucker
353
+ fistfuckers
354
+ fistfucking
355
+ fistfuckings
356
+ fistfucks
357
+ fisting
358
+ flamer
359
+ flange
360
+ fook
361
+ fooker
362
+ foot fetish
363
+ footjob
364
+ frotting
365
+ fuck
366
+ fuck buttons
367
+ fucka
368
+ fucked
369
+ fucker
370
+ fuckers
371
+ fuckhead
372
+ fuckheads
373
+ fuckin
374
+ fucking
375
+ fuckings
376
+ fuckingshitmotherfucker
377
+ fuckme
378
+ fucks
379
+ fucktards
380
+ fuckwhit
381
+ fuckwit
382
+ fudge packer
383
+ fudgepacker
384
+ fuk
385
+ fuker
386
+ fukker
387
+ fukkin
388
+ fuks
389
+ fukwhit
390
+ fukwit
391
+ futanari
392
+ fux
393
+ fux0r
394
+ g-spot
395
+ gang bang
396
+ gangbang
397
+ gangbanged
398
+ gangbanged
399
+ gangbangs
400
+ gays
401
+ gay sex
402
+ gayass
403
+ gaybob
404
+ gaydo
405
+ gaylord
406
+ gaysex
407
+ gaytard
408
+ gaywad
409
+ genitals
410
+ giant cock
411
+ girls gone wild
412
+ goatcx
413
+ goatse
414
+ gokkun
415
+ golden shower
416
+ goo girl
417
+ gooch
418
+ goodpoop
419
+ gook
420
+ goregasm
421
+ gringo
422
+ grope
423
+ group sex
424
+ guido
425
+ guro
426
+ hand job
427
+ handjob
428
+ hard core
429
+ hardcore
430
+ hardcoresex
431
+ heeb
432
+ hentai
433
+ heshe
434
+ ho
435
+ hoar
436
+ hoare
437
+ hoe
438
+ hoer
439
+ homo
440
+ homoerotic
441
+ honkey
442
+ honky
443
+ hooker
444
+ hore
445
+ horniest
446
+ horny
447
+ hot carl
448
+ hotsex
449
+ how to kill
450
+ how to murder
451
+ huge fat
452
+ humping
453
+ incest
454
+ intercourse
455
+ jack off
456
+ jack-off
457
+ jackass
458
+ jackoff
459
+ jail bait
460
+ jailbait
461
+ jap
462
+ jelly donut
463
+ jerk off
464
+ jerk-off
465
+ jigaboo
466
+ jiggaboo
467
+ jiggerboo
468
+ jism
469
+ jiz
470
+ jiz
471
+ jizm
472
+ jizm
473
+ jizz
474
+ juggs
475
+ kawk
476
+ kike
477
+ kinbaku
478
+ kinkster
479
+ kinky
480
+ kiunt
481
+ knob
482
+ knobbing
483
+ knobead
484
+ knobed
485
+ knobend
486
+ knobhead
487
+ knobjocky
488
+ knobjokey
489
+ kock
490
+ kondum
491
+ kondums
492
+ kooch
493
+ kootch
494
+ kum
495
+ kumer
496
+ kummer
497
+ kumming
498
+ kums
499
+ kunilingus
500
+ kunt
501
+ kyke
502
+ l3i+ch
503
+ l3itch
504
+ labia
505
+ leather restraint
506
+ leather straight jacket
507
+ lemon party
508
+ lesbo
509
+ lezzie
510
+ lolita
511
+ lovemaking
512
+ lust
513
+ lusting
514
+ m0f0
515
+ m0fo
516
+ m45terbate
517
+ ma5terb8
518
+ ma5terbate
519
+ make me come
520
+ male squirting
521
+ masochist
522
+ master-bate
523
+ masterb8
524
+ masterbat*
525
+ masterbat3
526
+ masterbate
527
+ masterbation
528
+ masterbations
529
+ masturbate
530
+ menage a trois
531
+ milf
532
+ minge
533
+ missionary position
534
+ mo-fo
535
+ mof0
536
+ mofo
537
+ mothafuck
538
+ mothafucka
539
+ mothafuckas
540
+ mothafuckaz
541
+ mothafucked
542
+ mothafucker
543
+ mothafuckers
544
+ mothafuckin
545
+ mothafucking
546
+ mothafuckings
547
+ mothafucks
548
+ mother fucker
549
+ motherfuck
550
+ motherfucked
551
+ motherfucker
552
+ motherfuckers
553
+ motherfuckin
554
+ motherfucking
555
+ motherfuckings
556
+ motherfuckka
557
+ motherfucks
558
+ mound of venus
559
+ mr hands
560
+ muff
561
+ muff diver
562
+ muffdiver
563
+ muffdiving
564
+ mutha
565
+ muthafecker
566
+ muthafuckker
567
+ muther
568
+ mutherfucker
569
+ n1gga
570
+ n1gger
571
+ nambla
572
+ naked
573
+ nawashi
574
+ nazi
575
+ neonazi
576
+ nig nog
577
+ nigg3r
578
+ nigg4h
579
+ nigga
580
+ niggah
581
+ niggas
582
+ niggaz
583
+ nigger
584
+ niggers
585
+ niglet
586
+ nimphomania
587
+ nipple
588
+ nipples
589
+ nob
590
+ nob jokey
591
+ nobhead
592
+ nobjocky
593
+ nobjokey
594
+ nsfw
595
+ nsfw images
596
+ nude
597
+ nudity
598
+ nudist
599
+ numbnuts
600
+ nutsack
601
+ nympho
602
+ nymphomania
603
+ octopussy
604
+ omorashi
605
+ one cup two girls
606
+ one guy one jar
607
+ orgasim
608
+ orgasim
609
+ orgasims
610
+ orgasm
611
+ orgasms
612
+ orgy
613
+ p0rn
614
+ paedophile
615
+ paki
616
+ panooch
617
+ panties
618
+ panty
619
+ pawn
620
+ pecker
621
+ peckerhead
622
+ pedobear
623
+ pedophile
624
+ pegging
625
+ penis
626
+ penisfucker
627
+ phone sex
628
+ phonesex
629
+ phuck
630
+ phuk
631
+ phuked
632
+ phuking
633
+ phukked
634
+ phukking
635
+ phuks
636
+ phuq
637
+ piece of shit
638
+ pigfucker
639
+ pimpis
640
+ pis
641
+ pises
642
+ pisin
643
+ pising
644
+ pisof
645
+ piss
646
+ piss pig
647
+ pissed
648
+ pisser
649
+ pissers
650
+ pisses
651
+ pissflap
652
+ pissflaps
653
+ pissin
654
+ pissin
655
+ pissing
656
+ pissoff
657
+ pissoff
658
+ pisspig
659
+ playboy
660
+ pleasure chest
661
+ pole smoker
662
+ polesmoker
663
+ pollock
664
+ ponyplay
665
+ poo
666
+ poof
667
+ poon
668
+ poonani
669
+ poonany
670
+ poontang
671
+ poop
672
+ poop chute
673
+ poopchute
674
+ porn
675
+ porno
676
+ pornography
677
+ pornos
678
+ prick
679
+ pricks
680
+ prince albert piercing
681
+ pron
682
+ pthc
683
+ pube
684
+ pubes
685
+ punanny
686
+ punany
687
+ punta
688
+ pusies
689
+ pusse
690
+ pussi
691
+ pussies
692
+ pussy
693
+ pussylicking
694
+ pussys
695
+ pusy
696
+ puto
697
+ queaf
698
+ queef
699
+ queerbait
700
+ queerhole
701
+ quim
702
+ raghead
703
+ raging boner
704
+ rape
705
+ raping
706
+ rapist
707
+ rectum
708
+ renob
709
+ retard
710
+ reverse cowgirl
711
+ rimjaw
712
+ rimjob
713
+ rimming
714
+ rosy palm
715
+ rosy palm and her 5 sisters
716
+ ruski
717
+ rusty trombone
718
+ s hit
719
+ s&m
720
+ s.o.b.
721
+ s_h_i_t
722
+ sadism
723
+ sadist
724
+ santorum
725
+ scat
726
+ schlong
727
+ scissoring
728
+ screwing
729
+ scroat
730
+ scrote
731
+ scrotum
732
+ semen
733
+ sex
734
+ sexo
735
+ sh!+
736
+ sh!t
737
+ sh1t
738
+ shag
739
+ shagger
740
+ shaggin
741
+ shagging
742
+ shaved beaver
743
+ shaved pussy
744
+ shemale
745
+ shi+
746
+ shibari
747
+ shit
748
+ shit-ass
749
+ shit-bag
750
+ shit-bagger
751
+ shit-brain
752
+ shit-breath
753
+ shit-cunt
754
+ shit-dick
755
+ shit-eating
756
+ shit-face
757
+ shit-faced
758
+ shit-fit
759
+ shit-head
760
+ shit-heel
761
+ shit-hole
762
+ shit-house
763
+ shit-load
764
+ shit-pot
765
+ shit-spitter
766
+ shit-stain
767
+ shitass
768
+ shitbag
769
+ shitbagger
770
+ shitblimp
771
+ shitbrain
772
+ shitbreath
773
+ shitcunt
774
+ shitdick
775
+ shite
776
+ shiteating
777
+ shited
778
+ shitey
779
+ shitface
780
+ shitfaced
781
+ shitfit
782
+ shitfuck
783
+ shitfull
784
+ shithead
785
+ shitheel
786
+ shithole
787
+ shithouse
788
+ shiting
789
+ shitings
790
+ shitload
791
+ shitpot
792
+ shits
793
+ shitspitter
794
+ shitstain
795
+ shitted
796
+ shitter
797
+ shitters
798
+ shittiest
799
+ shitting
800
+ shittings
801
+ shitty
802
+ shitty
803
+ shity
804
+ shiz
805
+ shiznit
806
+ shota
807
+ shrimping
808
+ skank
809
+ skeet
810
+ slanteye
811
+ slut
812
+ slutbag
813
+ sluts
814
+ smeg
815
+ smegma
816
+ smut
817
+ snatch
818
+ snowballing
819
+ sodomize
820
+ sodomy
821
+ son-of-a-bitch
822
+ spac
823
+ spic
824
+ spick
825
+ splooge
826
+ splooge moose
827
+ spooge
828
+ spread legs
829
+ spunk
830
+ strap on
831
+ strapon
832
+ strappado
833
+ strip club
834
+ style doggy
835
+ suicide girls
836
+ sultry women
837
+ swastika
838
+ swinger
839
+ t1tt1e5
840
+ t1tties
841
+ tainted love
842
+ tard
843
+ taste my
844
+ tea bagging
845
+ teets
846
+ teez
847
+ testical
848
+ testicle
849
+ threesome
850
+ throating
851
+ thundercunt
852
+ tied up
853
+ tight white
854
+ tittyfuck
855
+ tittywank
856
+ titwank
857
+ tongue in a
858
+ tosser
859
+ towelhead
860
+ tranny
861
+ tribadism
862
+ tub girl
863
+ tubgirl
864
+ turd
865
+ tushy
866
+ tw4t
867
+ twat
868
+ twathead
869
+ twatlips
870
+ twatty
871
+ twink
872
+ twinkie
873
+ two girls one cup
874
+ twunt
875
+ twunter
876
+ upskirt
877
+ up skirt
878
+ urethra play
879
+ urophilia
880
+ v14gra
881
+ v1gra
882
+ va-j-j
883
+ vag
884
+ vagina
885
+ venus mound
886
+ viagra
887
+ vibrator
888
+ violet wand
889
+ vjayjay
890
+ vorarephilia
891
+ voyeur
892
+ vulva
893
+ w00se
894
+ wang
895
+ wank
896
+ wanker
897
+ wanky
898
+ wet dream
899
+ wetback
900
+ white power
901
+ whoar
902
+ whore
903
+ willies
904
+ willy
905
+ wrapping men
906
+ wrinkled starfish
907
+ xrated
908
+ xx
909
+ xxx
910
+ yaoi
911
+ yellow showers
912
+ yiffy
913
+ zoophilia
914
+ transparent clothes
915
+ wardrobe malfunction
916
+ suicide
917
+ little girl
918
+ little girls
919
+ pregnant
920
+ breastfeeding
921
+ gore
922
+ metart
923
+ clean shaven
924
+ mons pubis
925
+ groin
926
+ knickers
error.png ADDED
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ craiyon.py
2
+ pillow
unsafe.png ADDED