File size: 28,017 Bytes
df9bd3d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
{
  "id": 72288,
  "name": "BBMIX-EIMI",
  "description": "<h1 id=\"bbmix-eimi\">BBMIX-EIMI</h1><p>Clear eyes and orange, red, elastic and lively skin is an attractive model, and it must be a familiar appearance. In this model, background and body unet control, weight interpretation and other settings were finely adjusted.</p><p></p><p><strong>referral prompt</strong></p><ul><li><p>from above, from below</p></li><li><p>shiny skin, (nice leg line:1.3),thick thighs,thin waist</p></li></ul><p><strong>negative</strong></p><ul><li><p>{1$$EasyNegative|verybadimagenegative_v1.3}</p></li></ul><p><strong>VAE</strong></p><ul><li><p>clearvae_main , clearvae_main2</p></li><li><p>vae-ft-mse-840000-ema-pruned</p></li></ul><p><br />We will continue to add sample images after finding good Loras so that we can copy and use EXIF in the sample post.</p><p></p><h2 id=\"precautions-be-sure-to-observe-this\">Precautions (Be sure to observe this)</h2><ol><li><p>Models may not be traded or sold. Because this is free. .</p></li><li><p>Models are not available for online paid services. (Free service available)</p></li><li><p>In using the model, all responsibility lies with the user.</p></li></ol><p></p><h1 id=\"how-to-high-quality\">How to high quality</h1><ol><li><p>You can output an image like the sample by using an extension to increase the quality. (All sample images were used with the extensions below)</p></li></ol><ul><li><p>1. Hires.fix -&gt; SwinIR_4x <strong>or</strong> R-ESRGAN 4x+ Anime6B</p></li><li><p>2. Dynamic Thresholding (CFG Scale Fix)</p></li><li><p>3. Detection Detailer (must use)</p></li><li><p>4. SD upscaler <strong>or</strong> <a target=\"_blank\" rel=\"ugc\" href=\"https://oo.pe/https://www.upscayl.org/\">https://oo.pe/https://www.upscayl.org/</a></p></li></ul><p></p><h3 id=\"1hiresfix-built-in-or\">1.Hires.fix ( built-in ) or</h3><p></p><img src=\"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/19b03b42-7fc2-45b6-97f9-2586f5fa353e/width=525/19b03b42-7fc2-45b6-97f9-2586f5fa353e.jpeg\" /><p></p><h3 id=\"2-dynamic-thresholding\">2. Dynamic Thresholding</h3><p><a target=\"_blank\" rel=\"ugc\" href=\"https://github.com/mcmonkeyprojects/sd-dynamic-thresholding.git\">https://github.com/mcmonkeyprojects/sd-dynamic-thresholding.git</a></p><img src=\"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a4af6e92-9d0c-4222-9131-d3445b22396f/width=525/a4af6e92-9d0c-4222-9131-d3445b22396f.jpeg\" /><p></p><h3 id=\"3detection-detailer\">3.Detection Detailer</h3><p><a target=\"_blank\" rel=\"ugc\" href=\"https://github.com/Bing-su/dddetailer.git\">https://github.com/Bing-su/dddetailer.git</a></p><img src=\"https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6599bfa0-373f-4e9f-988e-aac60caaf6f1/width=525/6599bfa0-373f-4e9f-988e-aac60caaf6f1.jpeg\" /><p></p><p>Questions that do not use the above four cannot be answered. Please note that images printed without using the four extensions may not look good.</p><p></p><p></p><p></p><h1 id=\"tip\">TIP</h1><p>In order to keep token 75, do not insert resolution, detail, or quality tokens. Since extension add-ons such as DD or DT handle it anyway, there is no need to insert tokens like the ones below.</p><p></p><h2 id=\"bad-prompt-do-not-use\">bad prompt (do not use)</h2><p>official art, unity 8k wallpaper, ultra detailed, ultra high res, 8k uhd, film grain, delicate, RAW, light particles, detailed skin texture, detailed armor texture, detailed face, intricate details, ultra detailed,</p><p>Reality Emphasis Prompt Excludes Detail Emphasis Prompt.</p><p></p><h1 id=\"notice\">Notice</h1><p>The sample images are created with random prompts and are only examples of what these images can be generated for.<span style=\"color:rgb(60, 64, 67)\"> </span>Therefore, images and prompts may not match.</p><p></p>",
  "type": "Checkpoint",
  "poi": false,
  "nsfw": false,
  "allowNoCredit": true,
  "allowCommercialUse": "Rent",
  "allowDerivatives": false,
  "allowDifferentLicense": false,
  "stats": {
    "downloadCount": 1264,
    "favoriteCount": 413,
    "commentCount": 2,
    "ratingCount": 5,
    "rating": 5
  },
  "creator": {
    "username": "BBMIX",
    "image": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b53a85b9-71ea-471a-b944-e4f245850c00/width=96/BBMIX.jpeg"
  },
  "tags": [
    "anime",
    "character",
    "sexy",
    "female",
    "woman",
    "cute",
    "girls"
  ],
  "modelVersions": [
    {
      "id": 77031,
      "modelId": 72288,
      "name": "v1.0",
      "createdAt": "2023-05-21T16:48:26.905Z",
      "updatedAt": "2023-05-21T17:01:22.314Z",
      "trainedWords": [
        "masterpiece",
        "best quality",
        "white theme",
        "black theme"
      ],
      "baseModel": "SD 1.5",
      "earlyAccessTimeFrame": 0,
      "description": "<p>RC1</p>",
      "stats": {
        "downloadCount": 1264,
        "ratingCount": 5,
        "rating": 5
      },
      "files": [
        {
          "name": "clearvae_main2.safetensors",
          "id": 55307,
          "sizeKB": 326797.86328125,
          "type": "VAE",
          "metadata": {
            "fp": null,
            "size": null,
            "format": "Other"
          },
          "pickleScanResult": "Success",
          "pickleScanMessage": "No Pickle imports",
          "virusScanResult": "Success",
          "scannedAt": "2023-05-25T11:56:02.404Z",
          "hashes": {
            "AutoV1": "89ABF451",
            "AutoV2": "600345C503",
            "SHA256": "600345C503784CD77536D714F0E4C43F9E1FA4379007E730D54C454C66EE36DB",
            "CRC32": "A5AC268D",
            "BLAKE3": "389F5954F26D7C555C7FEC603F1836DC5DEB40707A330E2433AAE5379BF5CB43"
          },
          "downloadUrl": "https://civitai.com/api/download/models/77031?type=VAE&format=Other"
        },
        {
          "name": "bbmixEIMI_v10.safetensors",
          "id": 53111,
          "sizeKB": 4001869.052734375,
          "type": "Model",
          "metadata": {
            "fp": "fp16",
            "size": "pruned",
            "format": "SafeTensor"
          },
          "pickleScanResult": "Success",
          "pickleScanMessage": "No Pickle imports",
          "virusScanResult": "Success",
          "scannedAt": "2023-05-21T17:03:29.243Z",
          "hashes": {
            "AutoV1": "DE2F2560",
            "AutoV2": "37F1F187ED",
            "SHA256": "37F1F187ED2EE090B224A16762AC7AE6C71D30152617C0218BE72452D926F610",
            "CRC32": "E5D87DBD",
            "BLAKE3": "4797C0F054AD52852887CABF6FBEF16CA0BD09A06677B259C7E588ABD75C79B8"
          },
          "downloadUrl": "https://civitai.com/api/download/models/77031",
          "primary": true
        }
      ],
      "images": [
        {
          "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/56e02c91-3988-470d-a041-6d51a7bd347b/width=450/863808.jpeg",
          "nsfw": "Soft",
          "width": 1024,
          "height": 1536,
          "hash": "ULELs#-;IpNH?w%2xHW=O@S4smxa9vE2e-xZ",
          "meta": {
            "Eta": "0.2",
            "Size": "512x768",
            "seed": 1093849213,
            "steps": 30,
            "Script": "Detection Detailer",
            "hashes": {
              "vae": "600345c503",
              "embed:badhandv4": "5e40d722fc",
              "embed:EasyNegative": "66a7279a88"
            },
            "prompt": "masterpiece, best quality,1girl,young girl,misty_rose eyes,long hair,mesugaki smile,shiny skin,(nice leg line:1.3),thick thighs,thin waist,huge breasts\nBREAK\nA winged dragon with iridescent scales perched on a rocky outcrop overlooking a valley filled with villages and farmland. The dragon is breathing fire, and the setting is at sunset, casting an orange glow over the landscape.,landscape\nBREAK\nstore,crowd,depth of field,looking at viewer,squatting,from behind,upper body,legsupsexms",
            "sampler": "DPM++ SDE Karras",
            "cfgScale": 7,
            "Clip skip": "2",
            "resources": [],
            "Model hash": "37f1f187ed",
            "Hires steps": "10",
            "Mimic scale": "7",
            "DDetailer cfg": "7",
            "Hires upscale": "2",
            "Hires upscaler": "SwinIR_4x",
            "negativePrompt": "EasyNegative, badhandv4, bad anatomy, pencil",
            "DDetailer conf a": "30",
            "DDetailer conf b": "30",
            "DDetailer bitwise": "None",
            "DDetailer model a": "bbox\\mmdet_anime-face_yolov3.pth [51e1af4a]",
            "DDetailer model b": "None",
            "Denoising strength": "0.4",
            "DDetailer denoising": "0.4",
            "DDetailer mask blur": "4",
            "DDetailer dilation a": "4",
            "DDetailer dilation b": "4",
            "DDetailer offset x a": "0",
            "DDetailer offset x b": "0",
            "DDetailer offset y a": "0",
            "DDetailer offset y b": "0",
            "Threshold percentile": "100",
            "DDetailer inpaint full": "True",
            "DDetailer preprocess b": "False",
            "DDetailer inpaint padding": "32",
            "Dynamic thresholding enabled": "True"
          }
        },
        {
          "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/4e5b6bae-7e50-4116-baf8-bd09653b779c/width=450/863795.jpeg",
          "nsfw": "Soft",
          "width": 1024,
          "height": 1536,
          "hash": "U9GIG%_3x[D%000fIU-;^*~p-V-;-W0f^+IU",
          "meta": {
            "Eta": "0.2",
            "Size": "512x768",
            "seed": 1093849210,
            "steps": 30,
            "Script": "Detection Detailer",
            "hashes": {
              "vae": "600345c503",
              "embed:badhandv4": "5e40d722fc",
              "embed:EasyNegative": "66a7279a88"
            },
            "prompt": "masterpiece, best quality,1girl,young girl,brass eyes,long hair,happy smile,shiny skin,(nice leg line:1.3),thick thighs,thin waist,huge breasts\nBREAK\nGladiator, leather armor, gladius sword, shield, fighting in an arena, cheered on by a crowd, facing a fierce opponent.,, Outdoor_space_featuring_sculptures_and_artwork,\nBREAK\npark,crowd,depth of field,looking at viewer,squatting,from side,full body,legsupsexms",
            "sampler": "DPM++ SDE Karras",
            "cfgScale": 7,
            "Clip skip": "2",
            "resources": [],
            "Model hash": "37f1f187ed",
            "Hires steps": "10",
            "Mimic scale": "7",
            "DDetailer cfg": "7",
            "Hires upscale": "2",
            "Hires upscaler": "SwinIR_4x",
            "negativePrompt": "EasyNegative, badhandv4, bad anatomy, pencil",
            "DDetailer conf a": "30",
            "DDetailer conf b": "30",
            "DDetailer bitwise": "None",
            "DDetailer model a": "bbox\\mmdet_anime-face_yolov3.pth [51e1af4a]",
            "DDetailer model b": "None",
            "Denoising strength": "0.4",
            "DDetailer denoising": "0.4",
            "DDetailer mask blur": "4",
            "DDetailer dilation a": "4",
            "DDetailer dilation b": "4",
            "DDetailer offset x a": "0",
            "DDetailer offset x b": "0",
            "DDetailer offset y a": "0",
            "DDetailer offset y b": "0",
            "Threshold percentile": "100",
            "DDetailer inpaint full": "True",
            "DDetailer preprocess b": "False",
            "DDetailer inpaint padding": "32",
            "Dynamic thresholding enabled": "True"
          }
        },
        {
          "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9a28cb03-13ad-4f23-a013-18d8ba34f9fb/width=450/863804.jpeg",
          "nsfw": "Soft",
          "width": 1024,
          "height": 1536,
          "hash": "UHD+}7-:EgM{_MV[M}Rj0KD%Met7IAbFE1s;",
          "meta": {
            "Eta": "0.2",
            "Size": "512x768",
            "seed": 1093849201,
            "steps": 30,
            "Script": "Detection Detailer",
            "hashes": {
              "vae": "600345c503",
              "embed:badhandv4": "5e40d722fc",
              "embed:EasyNegative": "66a7279a88"
            },
            "prompt": "masterpiece, best quality,1girl,young girl,sun_yellow eyes,long hair,evil smile,shiny skin,(nice leg line:1.3),thick thighs,thin waist,huge breasts\nBREAK\nFemale Priest, Long, flowing robes with intricate golden embroidery, a golden cross necklace, and leather sandals, Deep forest with dense vegetation and towering trees, The female priest is walking through the forest, carrying a wooden staff and a leather satchel filled with holy books and herbs for healing. Suddenly, she hears a strange gurgling noise and turns to see a large, slimy creature with writhing tentacles emerging from the underbrush,The slime lunges towards her, its tentacles wrappingaround herbodyand squeezingtightly. The priest struggles to free herself, but the slime's acidic bodily fluids begin to eat away at her robes, causing them to dissolve and melt away, The priest's face contorts in pain and terror as she tries desperately to break free from the slime's grasp, her eyes wide with fear and her mouth open in a silent scream.,, Rocky_cliffs_that_overlook_the_ocean,\nBREAK\nstore,crowd,depth of field,looking at viewer,squatting,from front,full body,legsupsexms",
            "sampler": "DPM++ SDE Karras",
            "cfgScale": 7,
            "Clip skip": "2",
            "resources": [],
            "Model hash": "37f1f187ed",
            "Hires steps": "10",
            "Mimic scale": "7",
            "DDetailer cfg": "7",
            "Hires upscale": "2",
            "Hires upscaler": "SwinIR_4x",
            "negativePrompt": "EasyNegative, badhandv4, bad anatomy, pencil",
            "DDetailer conf a": "30",
            "DDetailer conf b": "30",
            "DDetailer bitwise": "None",
            "DDetailer model a": "bbox\\mmdet_anime-face_yolov3.pth [51e1af4a]",
            "DDetailer model b": "None",
            "Denoising strength": "0.4",
            "DDetailer denoising": "0.4",
            "DDetailer mask blur": "4",
            "DDetailer dilation a": "4",
            "DDetailer dilation b": "4",
            "DDetailer offset x a": "0",
            "DDetailer offset x b": "0",
            "DDetailer offset y a": "0",
            "DDetailer offset y b": "0",
            "Threshold percentile": "100",
            "DDetailer inpaint full": "True",
            "DDetailer preprocess b": "False",
            "DDetailer inpaint padding": "32",
            "Dynamic thresholding enabled": "True"
          }
        },
        {
          "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/9599b5af-beaf-4fd3-aded-1ae6bfbe6c07/width=450/863805.jpeg",
          "nsfw": "None",
          "width": 1024,
          "height": 1536,
          "hash": "USF~U8-;oa%M_4R+NG%M^+xajv%M%NbIWCog",
          "meta": {
            "Eta": "0.2",
            "Size": "512x768",
            "seed": 1093849200,
            "steps": 30,
            "Script": "Detection Detailer",
            "hashes": {
              "vae": "600345c503",
              "embed:badhandv4": "5e40d722fc",
              "embed:verybadimagenegative_v1.3": "d70463f870"
            },
            "prompt": "masterpiece, best quality,1girl,young girl,brass eyes,short hair,happy smile,shiny skin,(nice leg line:1.3),thick thighs,thin waist,huge breasts\nBREAK\nPirate, Leather boots, ragged trousers, a striped shirt, a bandana, and a tricorn hat, A ship deck, Swashbuckling in a sword fight with a rival pirate, Leaping from the mast to attack, Ferocious determination,, Narrow_and_steep-sided_valley_with_a_stream_or_river,\nBREAK\ncity,crowd,depth of field,looking at viewer,squatting,from front,upper body,legsupsexms",
            "sampler": "DPM++ SDE Karras",
            "cfgScale": 7,
            "Clip skip": "2",
            "resources": [],
            "Model hash": "37f1f187ed",
            "Hires steps": "10",
            "Mimic scale": "7",
            "DDetailer cfg": "7",
            "Hires upscale": "2",
            "Hires upscaler": "SwinIR_4x",
            "negativePrompt": "verybadimagenegative_v1.3, badhandv4, bad anatomy, pencil",
            "DDetailer conf a": "30",
            "DDetailer conf b": "30",
            "DDetailer bitwise": "None",
            "DDetailer model a": "bbox\\mmdet_anime-face_yolov3.pth [51e1af4a]",
            "DDetailer model b": "None",
            "Denoising strength": "0.4",
            "DDetailer denoising": "0.4",
            "DDetailer mask blur": "4",
            "DDetailer dilation a": "4",
            "DDetailer dilation b": "4",
            "DDetailer offset x a": "0",
            "DDetailer offset x b": "0",
            "DDetailer offset y a": "0",
            "DDetailer offset y b": "0",
            "Threshold percentile": "100",
            "DDetailer inpaint full": "True",
            "DDetailer preprocess b": "False",
            "DDetailer inpaint padding": "32",
            "Dynamic thresholding enabled": "True"
          }
        },
        {
          "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1ce198d2-1c71-486b-b4e6-cd6ccb47931c/width=450/863759.jpeg",
          "nsfw": "Soft",
          "width": 1024,
          "height": 1536,
          "hash": "UFEySZ029E%L?[nn9FWVOHxWrqNKxuIWM_%L",
          "meta": null
        },
        {
          "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/23ec1580-fbc2-4c63-adbf-3d5916ea6268/width=450/863806.jpeg",
          "nsfw": "None",
          "width": 1024,
          "height": 1536,
          "hash": "UVI}ea4oyCxu_NRjxuxu57xZRlX8D%R%j]V@",
          "meta": {
            "Eta": "0.2",
            "Size": "512x768",
            "seed": 1093849196,
            "steps": 30,
            "Script": "Detection Detailer",
            "hashes": {
              "vae": "600345c503",
              "embed:badhandv4": "5e40d722fc",
              "embed:verybadimagenegative_v1.3": "d70463f870"
            },
            "prompt": "masterpiece, best quality,1girl,young girl,brown_sugar eyes,drill hair,mesugaki smile,shiny skin,(nice leg line:1.3),thick thighs,thin waist,huge breasts\nBREAK\nPirate, Tricorn hat, eye patch, bandana, puffy shirt, boots, On deck of ship, Boarding enemy vessel, Swinging from ropes, brandishing cutlass, Fierce and determined,, Jewelry_making_studio,\nBREAK\ncity,crowd,depth of field,looking at viewer,standing,from front,upper body,legsupsexms",
            "sampler": "DPM++ SDE Karras",
            "cfgScale": 7,
            "Clip skip": "2",
            "resources": [],
            "Model hash": "37f1f187ed",
            "Hires steps": "10",
            "Mimic scale": "7",
            "DDetailer cfg": "7",
            "Hires upscale": "2",
            "Hires upscaler": "SwinIR_4x",
            "negativePrompt": "verybadimagenegative_v1.3, badhandv4, bad anatomy, pencil",
            "DDetailer conf a": "30",
            "DDetailer conf b": "30",
            "DDetailer bitwise": "None",
            "DDetailer model a": "bbox\\mmdet_anime-face_yolov3.pth [51e1af4a]",
            "DDetailer model b": "None",
            "Denoising strength": "0.4",
            "DDetailer denoising": "0.4",
            "DDetailer mask blur": "4",
            "DDetailer dilation a": "4",
            "DDetailer dilation b": "4",
            "DDetailer offset x a": "0",
            "DDetailer offset x b": "0",
            "DDetailer offset y a": "0",
            "DDetailer offset y b": "0",
            "Threshold percentile": "100",
            "DDetailer inpaint full": "True",
            "DDetailer preprocess b": "False",
            "DDetailer inpaint padding": "32",
            "Dynamic thresholding enabled": "True"
          }
        },
        {
          "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/17cdabd6-005c-4c3a-8e62-1cfaea9d61d7/width=450/926714.jpeg",
          "nsfw": "None",
          "width": 1536,
          "height": 2304,
          "hash": "UAGv9Y00*I01P;+[9GZj0%?u=a?bHZ4:.7X9",
          "meta": {
            "Eta": "0.2",
            "Size": "1024x1536",
            "seed": 1912354084,
            "steps": 30,
            "hashes": {
              "vae": "600345c503",
              "model": "37f1f187ed"
            },
            "prompt": "masterpiece, best quality,1girl,young girl,brown eyes,long hair,disappointed _face,shiny skin,(nice leg line:1.3),thin waist,huge breasts,\nBREAK\nmagical spells, mythical creatures, ancient artifacts, epic battles, hidden lairs, chosen ones\nBREAK\naround crowd:1.1,depth of field,looking at viewer,sitting,from behind,upper body",
            "sampler": "DPM++ SDE Karras",
            "cfgScale": 7,
            "Clip skip": "2",
            "Mask blur": "4",
            "resources": [],
            "Model hash": "37f1f187ed",
            "Mimic scale": "7",
            "negativePrompt": "(worst quality:1.4),(low quality:1.4),(monochrome:1.1),EasyNegative,badhandv4,bad anatomy,((nsfw)),((nipples))",
            "Denoising strength": "0.4",
            "SD upscale overlap": "64",
            "SD upscale upscaler": "4x-UltraSharp",
            "Threshold percentile": "100",
            "Dynamic thresholding enabled": "True"
          }
        },
        {
          "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/6c1fa2fe-2ddd-4c22-b28b-e0abe7fcf2e4/width=450/863754.jpeg",
          "nsfw": "Soft",
          "width": 1024,
          "height": 1536,
          "hash": "UEHxHU0Ju4-:~pDjozNF01DibwD%00yDwcRj",
          "meta": {
            "Eta": "0.2",
            "Size": "1024x1536",
            "seed": 1018964107,
            "steps": 30,
            "hashes": {
              "vae": "600345c503",
              "embed:badhandv4": "5e40d722fc",
              "embed:verybadimagenegative_v1.3": "d70463f870"
            },
            "prompt": "masterpiece, best quality,2girl,young girl,black eyes, burgundy, straight hair,scoffing _face,shiny skin,huge breasts,nice leg line:1.3,thick thighs, thin waist,, Cleavage_white_button-down_blouse, high-waisted_black_pencil_skirt, black_strappy_heels, gold_choker_necklace, black_leather_clutch, cityscape,looking at viewer,cowboy shot,upper body",
            "sampler": "DPM++ SDE Karras",
            "cfgScale": 7,
            "Clip skip": "2",
            "Mask blur": "4",
            "resources": [],
            "Model hash": "37f1f187ed",
            "Mimic scale": "7",
            "negativePrompt": "verybadimagenegative_v1.3, badhandv4, artist name, signture, extra fingers, fewer fingers, blurry, watermark, logo, nsfw, nipples, ((eyelashes)), ((speech bubble))",
            "Denoising strength": "0.4",
            "Threshold percentile": "100",
            "Dynamic thresholding enabled": "True"
          }
        },
        {
          "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/07062e7a-c7cd-4fe8-859b-31a2bb91347e/width=450/863785.jpeg",
          "nsfw": "None",
          "width": 1024,
          "height": 1536,
          "hash": "UHF$%~00Fdxu?^rVE3Se,[ELxHM{%2NHIp-U",
          "meta": {
            "Eta": "0.2",
            "Size": "512x768",
            "seed": 1093849193,
            "steps": 30,
            "Script": "Detection Detailer",
            "hashes": {
              "vae": "600345c503",
              "embed:badhandv4": "5e40d722fc",
              "embed:EasyNegative": "66a7279a88"
            },
            "prompt": "masterpiece, best quality,1girl,young girl,tan_brown eyes,long hair,happy smile,shiny skin,(nice leg line:1.3),thick thighs,thin waist,huge breasts\nBREAK\nelf, green tunic, hood, bow and arrows, boots, forest, hunting for food and protecting nature, shooting arrows with accuracy and grace, calm and wise,, Sandy_shore_by_the_ocean,\nBREAK\nstore,crowd,depth of field,looking at viewer,squatting,from above,full body,legsupsexms",
            "sampler": "DPM++ SDE Karras",
            "cfgScale": 7,
            "Clip skip": "2",
            "resources": [],
            "Model hash": "37f1f187ed",
            "Hires steps": "10",
            "Mimic scale": "7",
            "DDetailer cfg": "7",
            "Hires upscale": "2",
            "Hires upscaler": "SwinIR_4x",
            "negativePrompt": "EasyNegative, badhandv4, bad anatomy, pencil",
            "DDetailer conf a": "30",
            "DDetailer conf b": "30",
            "DDetailer bitwise": "None",
            "DDetailer model a": "bbox\\mmdet_anime-face_yolov3.pth [51e1af4a]",
            "DDetailer model b": "None",
            "Denoising strength": "0.4",
            "DDetailer denoising": "0.4",
            "DDetailer mask blur": "4",
            "DDetailer dilation a": "4",
            "DDetailer dilation b": "4",
            "DDetailer offset x a": "0",
            "DDetailer offset x b": "0",
            "DDetailer offset y a": "0",
            "DDetailer offset y b": "0",
            "Threshold percentile": "100",
            "DDetailer inpaint full": "True",
            "DDetailer preprocess b": "False",
            "DDetailer inpaint padding": "32",
            "Dynamic thresholding enabled": "True"
          }
        },
        {
          "url": "https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b701927f-b841-43cf-a70d-d776404748c2/width=450/863770.jpeg",
          "nsfw": "None",
          "width": 1024,
          "height": 1536,
          "hash": "UCGl6F9Y0J~pPnbC-T-:%Os;IUxY^mIV9G-p",
          "meta": {
            "Eta": "0.2",
            "Size": "512x768",
            "seed": 1093849191,
            "steps": 30,
            "Script": "Detection Detailer",
            "hashes": {
              "vae": "600345c503",
              "embed:badhandv4": "5e40d722fc",
              "embed:EasyNegative": "66a7279a88"
            },
            "prompt": "masterpiece, best quality,1girl,young girl,purple_monster eyes,long hair,mesugaki smile,shiny skin,(nice leg line:1.3),thick thighs,thin waist,huge breasts\nBREAK\nVintner, Vintner, Long green velvet coat with gold buttons, white ruffled shirt, black trousers, tall leather boots, a wide-brimmed hat with a feather, A vast vineyard with rolling hills, grapevines as far as the eye can see, Harvest season, the vintner inspects the grapes to ensure they are of the highest quality for the wine-making process, The vintner holds a bunch of grapes up to the sunlight and examines them closely, checking for ripeness and signs of disease, The vintner wears a serious expression, reflecting the importance of selecting only the best grapes for thewine.,landscape\nBREAK\nstore,crowd,depth of field,looking at viewer,standing,from behind,upper body,legsupsexms",
            "sampler": "DPM++ SDE Karras",
            "cfgScale": 7,
            "Clip skip": "2",
            "resources": [],
            "Model hash": "37f1f187ed",
            "Hires steps": "10",
            "Mimic scale": "7",
            "DDetailer cfg": "7",
            "Hires upscale": "2",
            "Hires upscaler": "SwinIR_4x",
            "negativePrompt": "EasyNegative, badhandv4, bad anatomy, pencil",
            "DDetailer conf a": "30",
            "DDetailer conf b": "30",
            "DDetailer bitwise": "None",
            "DDetailer model a": "bbox\\mmdet_anime-face_yolov3.pth [51e1af4a]",
            "DDetailer model b": "None",
            "Denoising strength": "0.4",
            "DDetailer denoising": "0.4",
            "DDetailer mask blur": "4",
            "DDetailer dilation a": "4",
            "DDetailer dilation b": "4",
            "DDetailer offset x a": "0",
            "DDetailer offset x b": "0",
            "DDetailer offset y a": "0",
            "DDetailer offset y b": "0",
            "Threshold percentile": "100",
            "DDetailer inpaint full": "True",
            "DDetailer preprocess b": "False",
            "DDetailer inpaint padding": "32",
            "Dynamic thresholding enabled": "True"
          }
        }
      ],
      "downloadUrl": "https://civitai.com/api/download/models/77031"
    }
  ]
}