forked from AUTOMATIC1111/stable-diffusion-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui-config.json
1247 lines (1247 loc) · 84.1 KB
/
ui-config.json
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
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"txt2img/Prompt/visible": true,
"txt2img/Prompt/value": "",
"txt2img/Negative prompt/visible": true,
"txt2img/Negative prompt/value": "",
"txt2img/Style 1/value": "None",
"txt2img/Style 1/visible": true,
"txt2img/Style 2/value": "None",
"txt2img/Style 2/visible": true,
"txt2img/Sampling Steps/visible": true,
"txt2img/Sampling Steps/value": 20,
"txt2img/Sampling Steps/minimum": 1,
"txt2img/Sampling Steps/maximum": 150,
"txt2img/Sampling Steps/step": 1,
"txt2img/Sampling method/visible": true,
"txt2img/Sampling method/value": "Euler a",
"txt2img/Width/visible": true,
"txt2img/Width/value": 768,
"txt2img/Width/minimum": 64,
"txt2img/Width/maximum": 8192,
"txt2img/Width/step": 64,
"txt2img/Height/visible": true,
"txt2img/Height/value": 768,
"txt2img/Height/minimum": 64,
"txt2img/Height/maximum": 8192,
"txt2img/Height/step": 64,
"txt2img/Restore faces/visible": true,
"txt2img/Restore faces/value": false,
"txt2img/Tiling/visible": true,
"txt2img/Tiling/value": false,
"txt2img/Highres. fix/visible": true,
"txt2img/Highres. fix/value": false,
"txt2img/Firstpass width/visible": true,
"txt2img/Firstpass width/value": 0,
"txt2img/Firstpass width/minimum": 0,
"txt2img/Firstpass width/maximum": 4096,
"txt2img/Firstpass width/step": 64,
"txt2img/Firstpass height/visible": true,
"txt2img/Firstpass height/value": 0,
"txt2img/Firstpass height/minimum": 0,
"txt2img/Firstpass height/maximum": 4096,
"txt2img/Firstpass height/step": 64,
"txt2img/Denoising strength/visible": true,
"txt2img/Denoising strength/value": 0.7,
"txt2img/Denoising strength/minimum": 0.0,
"txt2img/Denoising strength/maximum": 1.0,
"txt2img/Denoising strength/step": 0.01,
"txt2img/Batch count/visible": true,
"txt2img/Batch count/value": 1,
"txt2img/Batch count/minimum": 1,
"txt2img/Batch count/maximum": 1000,
"txt2img/Batch count/step": 1,
"txt2img/Batch size/visible": true,
"txt2img/Batch size/value": 1,
"txt2img/Batch size/minimum": 1,
"txt2img/Batch size/maximum": 64,
"txt2img/Batch size/step": 1,
"txt2img/CFG Scale/visible": true,
"txt2img/CFG Scale/value": 7.0,
"txt2img/CFG Scale/minimum": 1.0,
"txt2img/CFG Scale/maximum": 30.0,
"txt2img/CFG Scale/step": 0.5,
"txt2img/Seed/visible": true,
"txt2img/Seed/value": -1.0,
"txt2img/Extra/visible": true,
"txt2img/Extra/value": false,
"txt2img/Variation seed/visible": true,
"txt2img/Variation seed/value": -1.0,
"txt2img/Variation strength/visible": true,
"txt2img/Variation strength/value": 0.0,
"txt2img/Variation strength/minimum": 0,
"txt2img/Variation strength/maximum": 1,
"txt2img/Variation strength/step": 0.01,
"txt2img/Resize seed from width/visible": true,
"txt2img/Resize seed from width/value": 0,
"txt2img/Resize seed from width/minimum": 0,
"txt2img/Resize seed from width/maximum": 4096,
"txt2img/Resize seed from width/step": 64,
"txt2img/Resize seed from height/visible": true,
"txt2img/Resize seed from height/value": 0,
"txt2img/Resize seed from height/minimum": 0,
"txt2img/Resize seed from height/maximum": 4096,
"txt2img/Resize seed from height/step": 64,
"txt2img/Script/value": "None",
"txt2img/Script/visible": true,
"customscript/prompt_matrix.py/txt2img/Put variable parts at start of prompt/visible": true,
"customscript/prompt_matrix.py/txt2img/Put variable parts at start of prompt/value": false,
"customscript/prompts_from_file.py/txt2img/Iterate seed every line/visible": true,
"customscript/prompts_from_file.py/txt2img/Iterate seed every line/value": false,
"customscript/prompts_from_file.py/txt2img/Use same random seed for all lines/visible": true,
"customscript/prompts_from_file.py/txt2img/Use same random seed for all lines/value": false,
"customscript/prompts_from_file.py/txt2img/List of prompt inputs/visible": true,
"customscript/prompts_from_file.py/txt2img/List of prompt inputs/value": "",
"customscript/xy_grid.py/txt2img/X values/visible": true,
"customscript/xy_grid.py/txt2img/X values/value": "",
"customscript/xy_grid.py/txt2img/Y values/visible": true,
"customscript/xy_grid.py/txt2img/Y values/value": "",
"customscript/xy_grid.py/txt2img/Draw legend/visible": true,
"customscript/xy_grid.py/txt2img/Draw legend/value": true,
"customscript/xy_grid.py/txt2img/Include Separate Images/visible": true,
"customscript/xy_grid.py/txt2img/Include Separate Images/value": false,
"customscript/xy_grid.py/txt2img/Keep -1 for seeds/visible": true,
"customscript/xy_grid.py/txt2img/Keep -1 for seeds/value": false,
"txt2img/Make Zip when Save?/visible": true,
"txt2img/Make Zip when Save?/value": false,
"img2img/Prompt/visible": true,
"img2img/Prompt/value": "",
"img2img/Negative prompt/visible": true,
"img2img/Negative prompt/value": "",
"img2img/Style 1/value": "None",
"img2img/Style 1/visible": true,
"img2img/Style 2/value": "None",
"img2img/Style 2/visible": true,
"img2img/Mask blur/visible": true,
"img2img/Mask blur/value": 4,
"img2img/Mask blur/minimum": 0,
"img2img/Mask blur/maximum": 64,
"img2img/Mask blur/step": 1,
"img2img/Mask mode/visible": true,
"img2img/Mask mode/value": "Inpaint masked",
"img2img/Masking mode/visible": true,
"img2img/Masking mode/value": "Inpaint masked",
"img2img/Masked content/visible": true,
"img2img/Masked content/value": "original",
"img2img/Inpaint at full resolution/visible": true,
"img2img/Inpaint at full resolution/value": false,
"img2img/Inpaint at full resolution padding, pixels/visible": true,
"img2img/Inpaint at full resolution padding, pixels/value": 32,
"img2img/Inpaint at full resolution padding, pixels/minimum": 0,
"img2img/Inpaint at full resolution padding, pixels/maximum": 256,
"img2img/Inpaint at full resolution padding, pixels/step": 4,
"img2img/Input directory/visible": true,
"img2img/Input directory/value": "",
"img2img/Output directory/visible": true,
"img2img/Output directory/value": "",
"img2img/Resize mode/visible": true,
"img2img/Resize mode/value": "Just resize",
"img2img/Sampling Steps/visible": true,
"img2img/Sampling Steps/value": 20,
"img2img/Sampling Steps/minimum": 1,
"img2img/Sampling Steps/maximum": 150,
"img2img/Sampling Steps/step": 1,
"img2img/Sampling method/visible": true,
"img2img/Sampling method/value": "Euler a",
"img2img/Width/visible": true,
"img2img/Width/value": 768,
"img2img/Width/minimum": 64,
"img2img/Width/maximum": 8192,
"img2img/Width/step": 64,
"img2img/Height/visible": true,
"img2img/Height/value": 768,
"img2img/Height/minimum": 64,
"img2img/Height/maximum": 8192,
"img2img/Height/step": 64,
"img2img/Restore faces/visible": true,
"img2img/Restore faces/value": false,
"img2img/Tiling/visible": true,
"img2img/Tiling/value": false,
"img2img/Batch count/visible": true,
"img2img/Batch count/value": 1,
"img2img/Batch count/minimum": 1,
"img2img/Batch count/maximum": 1000,
"img2img/Batch count/step": 1,
"img2img/Batch size/visible": true,
"img2img/Batch size/value": 1,
"img2img/Batch size/minimum": 1,
"img2img/Batch size/maximum": 64,
"img2img/Batch size/step": 1,
"img2img/CFG Scale/visible": true,
"img2img/CFG Scale/value": 7.0,
"img2img/CFG Scale/minimum": 1.0,
"img2img/CFG Scale/maximum": 30.0,
"img2img/CFG Scale/step": 0.5,
"img2img/Denoising strength/visible": true,
"img2img/Denoising strength/value": 0.75,
"img2img/Denoising strength/minimum": 0.0,
"img2img/Denoising strength/maximum": 1.0,
"img2img/Denoising strength/step": 0.01,
"img2img/Seed/visible": true,
"img2img/Seed/value": -1.0,
"img2img/Extra/visible": true,
"img2img/Extra/value": false,
"img2img/Variation seed/visible": true,
"img2img/Variation seed/value": -1.0,
"img2img/Variation strength/visible": true,
"img2img/Variation strength/value": 0.0,
"img2img/Variation strength/minimum": 0,
"img2img/Variation strength/maximum": 1,
"img2img/Variation strength/step": 0.01,
"img2img/Resize seed from width/visible": true,
"img2img/Resize seed from width/value": 0,
"img2img/Resize seed from width/minimum": 0,
"img2img/Resize seed from width/maximum": 4096,
"img2img/Resize seed from width/step": 64,
"img2img/Resize seed from height/visible": true,
"img2img/Resize seed from height/value": 0,
"img2img/Resize seed from height/minimum": 0,
"img2img/Resize seed from height/maximum": 4096,
"img2img/Resize seed from height/step": 64,
"img2img/Script/value": "None",
"img2img/Script/visible": true,
"customscript/img2imgalt.py/img2img/Override `Sampling method` to Euler?(this method is built for it)/visible": true,
"customscript/img2imgalt.py/img2img/Override `Sampling method` to Euler?(this method is built for it)/value": true,
"customscript/img2imgalt.py/img2img/Override `prompt` to the same value as `original prompt`?(and `negative prompt`)/visible": true,
"customscript/img2imgalt.py/img2img/Override `prompt` to the same value as `original prompt`?(and `negative prompt`)/value": true,
"customscript/img2imgalt.py/img2img/Original prompt/visible": true,
"customscript/img2imgalt.py/img2img/Original prompt/value": "",
"customscript/img2imgalt.py/img2img/Original negative prompt/visible": true,
"customscript/img2imgalt.py/img2img/Original negative prompt/value": "",
"customscript/img2imgalt.py/img2img/Override `Sampling Steps` to the same value as `Decode steps`?/visible": true,
"customscript/img2imgalt.py/img2img/Override `Sampling Steps` to the same value as `Decode steps`?/value": true,
"customscript/img2imgalt.py/img2img/Decode steps/visible": true,
"customscript/img2imgalt.py/img2img/Decode steps/value": 50,
"customscript/img2imgalt.py/img2img/Decode steps/minimum": 1,
"customscript/img2imgalt.py/img2img/Decode steps/maximum": 150,
"customscript/img2imgalt.py/img2img/Decode steps/step": 1,
"customscript/img2imgalt.py/img2img/Override `Denoising strength` to 1?/visible": true,
"customscript/img2imgalt.py/img2img/Override `Denoising strength` to 1?/value": true,
"customscript/img2imgalt.py/img2img/Decode CFG scale/visible": true,
"customscript/img2imgalt.py/img2img/Decode CFG scale/value": 1.0,
"customscript/img2imgalt.py/img2img/Decode CFG scale/minimum": 0.0,
"customscript/img2imgalt.py/img2img/Decode CFG scale/maximum": 15.0,
"customscript/img2imgalt.py/img2img/Decode CFG scale/step": 0.1,
"customscript/img2imgalt.py/img2img/Randomness/visible": true,
"customscript/img2imgalt.py/img2img/Randomness/value": 0.0,
"customscript/img2imgalt.py/img2img/Randomness/minimum": 0.0,
"customscript/img2imgalt.py/img2img/Randomness/maximum": 1.0,
"customscript/img2imgalt.py/img2img/Randomness/step": 0.01,
"customscript/img2imgalt.py/img2img/Sigma adjustment for finding noise for image/visible": true,
"customscript/img2imgalt.py/img2img/Sigma adjustment for finding noise for image/value": false,
"customscript/loopback.py/img2img/Loops/visible": true,
"customscript/loopback.py/img2img/Loops/value": 4,
"customscript/loopback.py/img2img/Loops/minimum": 1,
"customscript/loopback.py/img2img/Loops/maximum": 32,
"customscript/loopback.py/img2img/Loops/step": 1,
"customscript/loopback.py/img2img/Denoising strength change factor/visible": true,
"customscript/loopback.py/img2img/Denoising strength change factor/value": 1,
"customscript/loopback.py/img2img/Denoising strength change factor/minimum": 0.9,
"customscript/loopback.py/img2img/Denoising strength change factor/maximum": 1.1,
"customscript/loopback.py/img2img/Denoising strength change factor/step": 0.01,
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/visible": true,
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/value": 128,
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/minimum": 8,
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/maximum": 256,
"customscript/outpainting_mk_2.py/img2img/Pixels to expand/step": 8,
"customscript/outpainting_mk_2.py/img2img/Mask blur/visible": true,
"customscript/outpainting_mk_2.py/img2img/Mask blur/value": 8,
"customscript/outpainting_mk_2.py/img2img/Mask blur/minimum": 0,
"customscript/outpainting_mk_2.py/img2img/Mask blur/maximum": 64,
"customscript/outpainting_mk_2.py/img2img/Mask blur/step": 1,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/visible": true,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/value": 1.0,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/minimum": 0.0,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/maximum": 4.0,
"customscript/outpainting_mk_2.py/img2img/Fall-off exponent (lower=higher detail)/step": 0.01,
"customscript/outpainting_mk_2.py/img2img/Color variation/visible": true,
"customscript/outpainting_mk_2.py/img2img/Color variation/value": 0.05,
"customscript/outpainting_mk_2.py/img2img/Color variation/minimum": 0.0,
"customscript/outpainting_mk_2.py/img2img/Color variation/maximum": 1.0,
"customscript/outpainting_mk_2.py/img2img/Color variation/step": 0.01,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/visible": true,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/value": 128,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/minimum": 8,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/maximum": 256,
"customscript/poor_mans_outpainting.py/img2img/Pixels to expand/step": 8,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/visible": true,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/value": 4,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/minimum": 0,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/maximum": 64,
"customscript/poor_mans_outpainting.py/img2img/Mask blur/step": 1,
"customscript/poor_mans_outpainting.py/img2img/Masked content/visible": true,
"customscript/poor_mans_outpainting.py/img2img/Masked content/value": "fill",
"customscript/prompt_matrix.py/img2img/Put variable parts at start of prompt/visible": true,
"customscript/prompt_matrix.py/img2img/Put variable parts at start of prompt/value": false,
"customscript/prompts_from_file.py/img2img/Iterate seed every line/visible": true,
"customscript/prompts_from_file.py/img2img/Iterate seed every line/value": false,
"customscript/prompts_from_file.py/img2img/Use same random seed for all lines/visible": true,
"customscript/prompts_from_file.py/img2img/Use same random seed for all lines/value": false,
"customscript/prompts_from_file.py/img2img/List of prompt inputs/visible": true,
"customscript/prompts_from_file.py/img2img/List of prompt inputs/value": "",
"customscript/sd_upscale.py/img2img/Tile overlap/visible": true,
"customscript/sd_upscale.py/img2img/Tile overlap/value": 64,
"customscript/sd_upscale.py/img2img/Tile overlap/minimum": 0,
"customscript/sd_upscale.py/img2img/Tile overlap/maximum": 256,
"customscript/sd_upscale.py/img2img/Tile overlap/step": 16,
"customscript/sd_upscale.py/img2img/Upscaler/visible": true,
"customscript/sd_upscale.py/img2img/Upscaler/value": "None",
"customscript/xy_grid.py/img2img/X values/visible": true,
"customscript/xy_grid.py/img2img/X values/value": "",
"customscript/xy_grid.py/img2img/Y values/visible": true,
"customscript/xy_grid.py/img2img/Y values/value": "",
"customscript/xy_grid.py/img2img/Draw legend/visible": true,
"customscript/xy_grid.py/img2img/Draw legend/value": true,
"customscript/xy_grid.py/img2img/Include Separate Images/visible": true,
"customscript/xy_grid.py/img2img/Include Separate Images/value": false,
"customscript/xy_grid.py/img2img/Keep -1 for seeds/visible": true,
"customscript/xy_grid.py/img2img/Keep -1 for seeds/value": false,
"img2img/Make Zip when Save?/visible": true,
"img2img/Make Zip when Save?/value": false,
"extras/Input directory/visible": true,
"extras/Input directory/value": "",
"extras/Output directory/visible": true,
"extras/Output directory/value": "",
"extras/Show result images/visible": true,
"extras/Show result images/value": true,
"extras/Resize/visible": true,
"extras/Resize/value": 4,
"extras/Resize/minimum": 1.0,
"extras/Resize/maximum": 8.0,
"extras/Resize/step": 0.05,
"extras/Width/visible": true,
"extras/Width/value": 512,
"extras/Height/visible": true,
"extras/Height/value": 512,
"extras/Crop to fit/visible": true,
"extras/Crop to fit/value": true,
"extras/Upscaler 1/visible": true,
"extras/Upscaler 1/value": "None",
"extras/Upscaler 2/visible": true,
"extras/Upscaler 2/value": "None",
"extras/Upscaler 2 visibility/visible": true,
"extras/Upscaler 2 visibility/value": 1,
"extras/Upscaler 2 visibility/minimum": 0.0,
"extras/Upscaler 2 visibility/maximum": 1.0,
"extras/Upscaler 2 visibility/step": 0.001,
"extras/GFPGAN visibility/visible": true,
"extras/GFPGAN visibility/value": 0,
"extras/GFPGAN visibility/minimum": 0.0,
"extras/GFPGAN visibility/maximum": 1.0,
"extras/GFPGAN visibility/step": 0.001,
"extras/CodeFormer visibility/visible": true,
"extras/CodeFormer visibility/value": 0,
"extras/CodeFormer visibility/minimum": 0.0,
"extras/CodeFormer visibility/maximum": 1.0,
"extras/CodeFormer visibility/step": 0.001,
"extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/visible": true,
"extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/value": 0,
"extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/minimum": 0.0,
"extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/maximum": 1.0,
"extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/step": 0.001,
"extras/Upscale Before Restoring Faces/visible": true,
"extras/Upscale Before Restoring Faces/value": false,
"modelmerger/Custom Name (Optional)/visible": true,
"modelmerger/Custom Name (Optional)/value": "",
"modelmerger/Multiplier (M) - set to 0 to get model A/visible": true,
"modelmerger/Multiplier (M) - set to 0 to get model A/value": 0.3,
"modelmerger/Multiplier (M) - set to 0 to get model A/minimum": 0.0,
"modelmerger/Multiplier (M) - set to 0 to get model A/maximum": 1.0,
"modelmerger/Multiplier (M) - set to 0 to get model A/step": 0.05,
"modelmerger/Interpolation Method/visible": true,
"modelmerger/Interpolation Method/value": "Weighted sum",
"modelmerger/Checkpoint format/visible": true,
"modelmerger/Checkpoint format/value": "ckpt",
"modelmerger/Save as float16/visible": true,
"modelmerger/Save as float16/value": false,
"customscript/txt2vectorgfx.py/txt2img/Visual style/visible": true,
"customscript/txt2vectorgfx.py/txt2img/Visual style/value": "Illustration",
"customscript/txt2vectorgfx.py/txt2img/Enable Vectorizing/visible": true,
"customscript/txt2vectorgfx.py/txt2img/Enable Vectorizing/value": true,
"customscript/txt2vectorgfx.py/txt2img/White is Opaque/visible": true,
"customscript/txt2vectorgfx.py/txt2img/White is Opaque/value": true,
"customscript/txt2vectorgfx.py/txt2img/Cut white margin from input/visible": true,
"customscript/txt2vectorgfx.py/txt2img/Cut white margin from input/value": true,
"customscript/txt2vectorgfx.py/txt2img/Keep temp images/visible": true,
"customscript/txt2vectorgfx.py/txt2img/Keep temp images/value": false,
"customscript/txt2vectorgfx.py/txt2img/Threshold/visible": true,
"customscript/txt2vectorgfx.py/txt2img/Threshold/value": 0.5,
"customscript/txt2vectorgfx.py/txt2img/Threshold/minimum": 0.0,
"customscript/txt2vectorgfx.py/txt2img/Threshold/maximum": 1.0,
"customscript/txt2vectorgfx.py/txt2img/Threshold/step": 0.05,
"customscript/txt2vectorgfx.py/txt2img/Transparent PNG/visible": true,
"customscript/txt2vectorgfx.py/txt2img/Transparent PNG/value": true,
"customscript/txt2vectorgfx.py/txt2img/Noise Tolerance/visible": true,
"customscript/txt2vectorgfx.py/txt2img/Noise Tolerance/value": 16,
"customscript/txt2vectorgfx.py/txt2img/Noise Tolerance/minimum": 0,
"customscript/txt2vectorgfx.py/txt2img/Noise Tolerance/maximum": 128,
"customscript/txt2vectorgfx.py/txt2img/Noise Tolerance/step": 1,
"customscript/txt2vectorgfx.py/txt2img/Quantize/visible": true,
"customscript/txt2vectorgfx.py/txt2img/Quantize/value": 16,
"customscript/txt2vectorgfx.py/txt2img/Quantize/minimum": 1,
"customscript/txt2vectorgfx.py/txt2img/Quantize/maximum": 255,
"customscript/txt2vectorgfx.py/txt2img/Quantize/step": 1,
"customscript/txt2vectorgfx.py/img2img/Visual style/visible": true,
"customscript/txt2vectorgfx.py/img2img/Visual style/value": "Illustration",
"customscript/txt2vectorgfx.py/img2img/Enable Vectorizing/visible": true,
"customscript/txt2vectorgfx.py/img2img/Enable Vectorizing/value": true,
"customscript/txt2vectorgfx.py/img2img/White is Opaque/visible": true,
"customscript/txt2vectorgfx.py/img2img/White is Opaque/value": true,
"customscript/txt2vectorgfx.py/img2img/Cut white margin from input/visible": true,
"customscript/txt2vectorgfx.py/img2img/Cut white margin from input/value": true,
"customscript/txt2vectorgfx.py/img2img/Keep temp images/visible": true,
"customscript/txt2vectorgfx.py/img2img/Keep temp images/value": false,
"customscript/txt2vectorgfx.py/img2img/Threshold/visible": true,
"customscript/txt2vectorgfx.py/img2img/Threshold/value": 0.5,
"customscript/txt2vectorgfx.py/img2img/Threshold/minimum": 0.0,
"customscript/txt2vectorgfx.py/img2img/Threshold/maximum": 1.0,
"customscript/txt2vectorgfx.py/img2img/Threshold/step": 0.05,
"customscript/txt2vectorgfx.py/img2img/Transparent PNG/visible": true,
"customscript/txt2vectorgfx.py/img2img/Transparent PNG/value": true,
"customscript/txt2vectorgfx.py/img2img/Noise Tolerance/visible": true,
"customscript/txt2vectorgfx.py/img2img/Noise Tolerance/value": 16,
"customscript/txt2vectorgfx.py/img2img/Noise Tolerance/minimum": 0,
"customscript/txt2vectorgfx.py/img2img/Noise Tolerance/maximum": 128,
"customscript/txt2vectorgfx.py/img2img/Noise Tolerance/step": 1,
"customscript/txt2vectorgfx.py/img2img/Quantize/visible": true,
"customscript/txt2vectorgfx.py/img2img/Quantize/value": 16,
"customscript/txt2vectorgfx.py/img2img/Quantize/minimum": 1,
"customscript/txt2vectorgfx.py/img2img/Quantize/maximum": 255,
"customscript/txt2vectorgfx.py/img2img/Quantize/step": 1,
"customscript/aesthetic.py/txt2img/Aesthetic weight/visible": true,
"customscript/aesthetic.py/txt2img/Aesthetic weight/value": 0.9,
"customscript/aesthetic.py/txt2img/Aesthetic weight/minimum": 0,
"customscript/aesthetic.py/txt2img/Aesthetic weight/maximum": 1,
"customscript/aesthetic.py/txt2img/Aesthetic weight/step": 0.01,
"customscript/aesthetic.py/txt2img/Aesthetic steps/visible": true,
"customscript/aesthetic.py/txt2img/Aesthetic steps/value": 5,
"customscript/aesthetic.py/txt2img/Aesthetic steps/minimum": 0,
"customscript/aesthetic.py/txt2img/Aesthetic steps/maximum": 50,
"customscript/aesthetic.py/txt2img/Aesthetic steps/step": 1,
"customscript/aesthetic.py/txt2img/Aesthetic learning rate/visible": true,
"customscript/aesthetic.py/txt2img/Aesthetic learning rate/value": "0.0001",
"customscript/aesthetic.py/txt2img/Slerp interpolation/visible": true,
"customscript/aesthetic.py/txt2img/Slerp interpolation/value": false,
"customscript/aesthetic.py/txt2img/Aesthetic text for imgs/visible": true,
"customscript/aesthetic.py/txt2img/Aesthetic text for imgs/value": "",
"customscript/aesthetic.py/txt2img/Slerp angle/visible": true,
"customscript/aesthetic.py/txt2img/Slerp angle/value": 0.1,
"customscript/aesthetic.py/txt2img/Slerp angle/minimum": 0,
"customscript/aesthetic.py/txt2img/Slerp angle/maximum": 1,
"customscript/aesthetic.py/txt2img/Slerp angle/step": 0.01,
"customscript/aesthetic.py/txt2img/Is negative text/visible": true,
"customscript/aesthetic.py/txt2img/Is negative text/value": false,
"customscript/aesthetic.py/img2img/Aesthetic weight/visible": true,
"customscript/aesthetic.py/img2img/Aesthetic weight/value": 0.9,
"customscript/aesthetic.py/img2img/Aesthetic weight/minimum": 0,
"customscript/aesthetic.py/img2img/Aesthetic weight/maximum": 1,
"customscript/aesthetic.py/img2img/Aesthetic weight/step": 0.01,
"customscript/aesthetic.py/img2img/Aesthetic steps/visible": true,
"customscript/aesthetic.py/img2img/Aesthetic steps/value": 5,
"customscript/aesthetic.py/img2img/Aesthetic steps/minimum": 0,
"customscript/aesthetic.py/img2img/Aesthetic steps/maximum": 50,
"customscript/aesthetic.py/img2img/Aesthetic steps/step": 1,
"customscript/aesthetic.py/img2img/Aesthetic learning rate/visible": true,
"customscript/aesthetic.py/img2img/Aesthetic learning rate/value": "0.0001",
"customscript/aesthetic.py/img2img/Slerp interpolation/visible": true,
"customscript/aesthetic.py/img2img/Slerp interpolation/value": false,
"customscript/aesthetic.py/img2img/Aesthetic text for imgs/visible": true,
"customscript/aesthetic.py/img2img/Aesthetic text for imgs/value": "",
"customscript/aesthetic.py/img2img/Slerp angle/visible": true,
"customscript/aesthetic.py/img2img/Slerp angle/value": 0.1,
"customscript/aesthetic.py/img2img/Slerp angle/minimum": 0,
"customscript/aesthetic.py/img2img/Slerp angle/maximum": 1,
"customscript/aesthetic.py/img2img/Slerp angle/step": 0.01,
"customscript/aesthetic.py/img2img/Is negative text/visible": true,
"customscript/aesthetic.py/img2img/Is negative text/value": false,
"img2img/Mask transparency/value": 0,
"img2img/Mask transparency/minimum": 0,
"img2img/Mask transparency/maximum": 100,
"img2img/Mask transparency/step": 1,
"customscript/latent_mirroring.py/txt2img/Latent Mirror mode/visible": true,
"customscript/latent_mirroring.py/txt2img/Latent Mirror mode/value": "None",
"customscript/latent_mirroring.py/txt2img/Latent Mirror style/visible": true,
"customscript/latent_mirroring.py/txt2img/Latent Mirror style/value": "Vertical Mirroring",
"customscript/latent_mirroring.py/txt2img/X panning/visible": true,
"customscript/latent_mirroring.py/txt2img/X panning/value": 0.0,
"customscript/latent_mirroring.py/txt2img/X panning/minimum": -1.0,
"customscript/latent_mirroring.py/txt2img/X panning/maximum": 1.0,
"customscript/latent_mirroring.py/txt2img/X panning/step": 0.01,
"customscript/latent_mirroring.py/txt2img/Y panning/visible": true,
"customscript/latent_mirroring.py/txt2img/Y panning/value": 0.0,
"customscript/latent_mirroring.py/txt2img/Y panning/minimum": -1.0,
"customscript/latent_mirroring.py/txt2img/Y panning/maximum": 1.0,
"customscript/latent_mirroring.py/txt2img/Y panning/step": 0.01,
"customscript/latent_mirroring.py/txt2img/Maximum steps fraction to mirror at/visible": true,
"customscript/latent_mirroring.py/txt2img/Maximum steps fraction to mirror at/value": 0.25,
"customscript/latent_mirroring.py/txt2img/Maximum steps fraction to mirror at/minimum": 0.0,
"customscript/latent_mirroring.py/txt2img/Maximum steps fraction to mirror at/maximum": 1.0,
"customscript/latent_mirroring.py/txt2img/Maximum steps fraction to mirror at/step": 0.01,
"customscript/dynamic_prompting.py/txt2img/Dynamic Prompts enabled/visible": true,
"customscript/dynamic_prompting.py/txt2img/Dynamic Prompts enabled/value": true,
"customscript/dynamic_prompting.py/txt2img/Combinatorial generation/visible": true,
"customscript/dynamic_prompting.py/txt2img/Combinatorial generation/value": false,
"customscript/dynamic_prompting.py/txt2img/Combinatorial batches/visible": true,
"customscript/dynamic_prompting.py/txt2img/Combinatorial batches/value": 1,
"customscript/dynamic_prompting.py/txt2img/Combinatorial batches/minimum": 0,
"customscript/dynamic_prompting.py/txt2img/Combinatorial batches/maximum": 100,
"customscript/dynamic_prompting.py/txt2img/Combinatorial batches/step": 1,
"customscript/dynamic_prompting.py/txt2img/Magic prompt/visible": true,
"customscript/dynamic_prompting.py/txt2img/Magic prompt/value": false,
"customscript/dynamic_prompting.py/txt2img/Max magic prompt length/visible": true,
"customscript/dynamic_prompting.py/txt2img/Max magic prompt length/value": 100,
"customscript/dynamic_prompting.py/txt2img/Max magic prompt length/minimum": 30,
"customscript/dynamic_prompting.py/txt2img/Max magic prompt length/maximum": 300,
"customscript/dynamic_prompting.py/txt2img/Max magic prompt length/step": 10,
"customscript/dynamic_prompting.py/txt2img/Magic prompt creativity/visible": true,
"customscript/dynamic_prompting.py/txt2img/Magic prompt creativity/value": 0.7,
"customscript/dynamic_prompting.py/txt2img/Magic prompt creativity/minimum": 0.1,
"customscript/dynamic_prompting.py/txt2img/Magic prompt creativity/maximum": 3.0,
"customscript/dynamic_prompting.py/txt2img/Magic prompt creativity/step": 0.1,
"customscript/dynamic_prompting.py/txt2img/I'm feeling lucky/visible": true,
"customscript/dynamic_prompting.py/txt2img/I'm feeling lucky/value": false,
"customscript/dynamic_prompting.py/txt2img/Attention grabber/visible": true,
"customscript/dynamic_prompting.py/txt2img/Attention grabber/value": false,
"customscript/dynamic_prompting.py/txt2img/Write prompts to file/visible": true,
"customscript/dynamic_prompting.py/txt2img/Write prompts to file/value": false,
"customscript/dynamic_prompting.py/txt2img/Don't generate images/visible": true,
"customscript/dynamic_prompting.py/txt2img/Don't generate images/value": false,
"customscript/dynamic_prompting.py/txt2img/Enable Jinja2 templates/visible": true,
"customscript/dynamic_prompting.py/txt2img/Enable Jinja2 templates/value": false,
"customscript/dynamic_prompting.py/txt2img/Unlink seed from prompt/visible": true,
"customscript/dynamic_prompting.py/txt2img/Unlink seed from prompt/value": false,
"customscript/dynamic_prompting.py/txt2img/Disable negative prompt/visible": true,
"customscript/dynamic_prompting.py/txt2img/Disable negative prompt/value": false,
"customscript/dynamic_prompting.py/txt2img/Fixed seed/visible": true,
"customscript/dynamic_prompting.py/txt2img/Fixed seed/value": false,
"customscript/conditioning-highres-fix.py/txt2img/Conditioning Highres.fix strength (for sd-v1-5-inpainting)/visible": true,
"customscript/conditioning-highres-fix.py/txt2img/Conditioning Highres.fix strength (for sd-v1-5-inpainting)/value": "Cond.fix: Disabled (none)",
"customscript/StylePile.py/txt2img/Batch count = Sequence count/visible": true,
"customscript/StylePile.py/txt2img/Batch count = Sequence count/value": true,
"customscript/StylePile.py/txt2img/Show tips when generating/visible": true,
"customscript/StylePile.py/txt2img/Show tips when generating/value": false,
"customscript/StylePile.py/txt2img/Sequential prompts [X]/visible": true,
"customscript/StylePile.py/txt2img/Sequential prompts [X]/value": "",
"customscript/StylePile.py/txt2img/SubSequential prompts [Y]/visible": true,
"customscript/StylePile.py/txt2img/SubSequential prompts [Y]/value": "",
"customscript/StylePile.py/txt2img/Random [A]/visible": true,
"customscript/StylePile.py/txt2img/Random [A]/value": "",
"customscript/StylePile.py/txt2img/Random [B]/visible": true,
"customscript/StylePile.py/txt2img/Random [B]/value": "",
"customscript/StylePile.py/txt2img/Random [C]/visible": true,
"customscript/StylePile.py/txt2img/Random [C]/value": "",
"customscript/StylePile.py/txt2img/Influence/visible": true,
"customscript/StylePile.py/txt2img/Influence/value": 1.3,
"customscript/StylePile.py/txt2img/Influence/minimum": 0,
"customscript/StylePile.py/txt2img/Influence/maximum": 2,
"customscript/StylePile.py/txt2img/Influence/step": 0.05,
"customscript/multirender.py/txt2img/Foreground prompt /visible": true,
"customscript/multirender.py/txt2img/Foreground prompt /value": "",
"customscript/multirender.py/txt2img/Number of foreground images /visible": true,
"customscript/multirender.py/txt2img/Number of foreground images /value": 5,
"customscript/multirender.py/txt2img/Number of foreground images /minimum": 1,
"customscript/multirender.py/txt2img/Number of foreground images /maximum": 10,
"customscript/multirender.py/txt2img/Number of foreground images /step": 1,
"customscript/multirender.py/txt2img/foreground steps /visible": true,
"customscript/multirender.py/txt2img/foreground steps /value": 24,
"customscript/multirender.py/txt2img/foreground steps /minimum": 1,
"customscript/multirender.py/txt2img/foreground steps /maximum": 120,
"customscript/multirender.py/txt2img/foreground steps /step": 1,
"customscript/multirender.py/txt2img/foreground cfg scale /visible": true,
"customscript/multirender.py/txt2img/foreground cfg scale /value": 12.5,
"customscript/multirender.py/txt2img/foreground cfg scale /minimum": 1,
"customscript/multirender.py/txt2img/foreground cfg scale /maximum": 30,
"customscript/multirender.py/txt2img/foreground cfg scale /step": 0.1,
"customscript/multirender.py/txt2img/foreground new seed+ /visible": true,
"customscript/multirender.py/txt2img/foreground new seed+ /value": 1000,
"customscript/multirender.py/txt2img/foreground new seed+ /minimum": 0,
"customscript/multirender.py/txt2img/foreground new seed+ /maximum": 1000,
"customscript/multirender.py/txt2img/foreground new seed+ /step": 1,
"customscript/multirender.py/txt2img/change clip for foreground (0 = no interaction) /visible": true,
"customscript/multirender.py/txt2img/change clip for foreground (0 = no interaction) /value": 0,
"customscript/multirender.py/txt2img/change clip for foreground (0 = no interaction) /minimum": 0,
"customscript/multirender.py/txt2img/change clip for foreground (0 = no interaction) /maximum": 12,
"customscript/multirender.py/txt2img/change clip for foreground (0 = no interaction) /step": 1,
"customscript/multirender.py/txt2img/foreground width (64 = same as background) /visible": true,
"customscript/multirender.py/txt2img/foreground width (64 = same as background) /value": 64,
"customscript/multirender.py/txt2img/foreground width (64 = same as background) /minimum": 64,
"customscript/multirender.py/txt2img/foreground width (64 = same as background) /maximum": 2048,
"customscript/multirender.py/txt2img/foreground width (64 = same as background) /step": 64,
"customscript/multirender.py/txt2img/foreground height (64 = same as background) /visible": true,
"customscript/multirender.py/txt2img/foreground height (64 = same as background) /value": 64,
"customscript/multirender.py/txt2img/foreground height (64 = same as background) /minimum": 64,
"customscript/multirender.py/txt2img/foreground height (64 = same as background) /maximum": 2048,
"customscript/multirender.py/txt2img/foreground height (64 = same as background) /step": 64,
"customscript/multirender.py/txt2img/final blend prompt/visible": true,
"customscript/multirender.py/txt2img/final blend prompt/value": "",
"customscript/multirender.py/txt2img/blend steps /visible": true,
"customscript/multirender.py/txt2img/blend steps /value": 64,
"customscript/multirender.py/txt2img/blend steps /minimum": 1,
"customscript/multirender.py/txt2img/blend steps /maximum": 120,
"customscript/multirender.py/txt2img/blend steps /step": 1,
"customscript/multirender.py/txt2img/blend cfg scale /visible": true,
"customscript/multirender.py/txt2img/blend cfg scale /value": 7.5,
"customscript/multirender.py/txt2img/blend cfg scale /minimum": 1,
"customscript/multirender.py/txt2img/blend cfg scale /maximum": 30,
"customscript/multirender.py/txt2img/blend cfg scale /step": 0.1,
"customscript/multirender.py/txt2img/blend denoising strength /visible": true,
"customscript/multirender.py/txt2img/blend denoising strength /value": 0.42,
"customscript/multirender.py/txt2img/blend denoising strength /minimum": 0.1,
"customscript/multirender.py/txt2img/blend denoising strength /maximum": 1,
"customscript/multirender.py/txt2img/blend denoising strength /step": 0.01,
"customscript/multirender.py/txt2img/blend width (64 = same size as background) /visible": true,
"customscript/multirender.py/txt2img/blend width (64 = same size as background) /value": 64,
"customscript/multirender.py/txt2img/blend width (64 = same size as background) /minimum": 64,
"customscript/multirender.py/txt2img/blend width (64 = same size as background) /maximum": 2048,
"customscript/multirender.py/txt2img/blend width (64 = same size as background) /step": 64,
"customscript/multirender.py/txt2img/blend height (64 = same size as background) /visible": true,
"customscript/multirender.py/txt2img/blend height (64 = same size as background) /value": 64,
"customscript/multirender.py/txt2img/blend height (64 = same size as background) /minimum": 64,
"customscript/multirender.py/txt2img/blend height (64 = same size as background) /maximum": 2048,
"customscript/multirender.py/txt2img/blend height (64 = same size as background) /step": 64,
"customscript/multirender.py/txt2img/Foreground distance from center multiplier /visible": true,
"customscript/multirender.py/txt2img/Foreground distance from center multiplier /value": 1,
"customscript/multirender.py/txt2img/Foreground distance from center multiplier /minimum": 0,
"customscript/multirender.py/txt2img/Foreground distance from center multiplier /maximum": 2,
"customscript/multirender.py/txt2img/Foreground distance from center multiplier /step": 0.01,
"customscript/multirender.py/txt2img/Foreground Y shift (far from center = lower) /visible": true,
"customscript/multirender.py/txt2img/Foreground Y shift (far from center = lower) /value": 0,
"customscript/multirender.py/txt2img/Foreground Y shift (far from center = lower) /minimum": 0,
"customscript/multirender.py/txt2img/Foreground Y shift (far from center = lower) /maximum": 100,
"customscript/multirender.py/txt2img/Foreground Y shift (far from center = lower) /step": 1,
"customscript/multirender.py/txt2img/Foreground depth cut threshold/visible": true,
"customscript/multirender.py/txt2img/Foreground depth cut threshold/value": 92,
"customscript/multirender.py/txt2img/Foreground depth cut threshold/minimum": 0,
"customscript/multirender.py/txt2img/Foreground depth cut threshold/maximum": 255,
"customscript/multirender.py/txt2img/Foreground depth cut threshold/step": 1,
"customscript/multirender.py/txt2img/Save background /visible": true,
"customscript/multirender.py/txt2img/Save background /value": true,
"customscript/multirender.py/txt2img/Save all foreground images /visible": true,
"customscript/multirender.py/txt2img/Save all foreground images /value": true,
"customscript/multirender.py/txt2img/Face correction /visible": true,
"customscript/multirender.py/txt2img/Face correction /value": true,
"customscript/multirender.py/txt2img/Random superposition /visible": true,
"customscript/multirender.py/txt2img/Random superposition /value": false,
"customscript/multirender.py/txt2img/Reverse order /visible": true,
"customscript/multirender.py/txt2img/Reverse order /value": false,
"customscript/multirender.py/txt2img/Mask foregrounds in blend/visible": true,
"customscript/multirender.py/txt2img/Mask foregrounds in blend/value": false,
"customscript/seed_travel.py/txt2img/Destination seed(s) (Comma separated)/visible": true,
"customscript/seed_travel.py/txt2img/Destination seed(s) (Comma separated)/value": "",
"customscript/seed_travel.py/txt2img/Only use Random seeds (Unless comparing paths)/visible": true,
"customscript/seed_travel.py/txt2img/Only use Random seeds (Unless comparing paths)/value": false,
"customscript/seed_travel.py/txt2img/Number of random seed(s)/visible": true,
"customscript/seed_travel.py/txt2img/Number of random seed(s)/value": 4.0,
"customscript/seed_travel.py/txt2img/Compare paths (Separate travels from 1st seed to each destination)/visible": true,
"customscript/seed_travel.py/txt2img/Compare paths (Separate travels from 1st seed to each destination)/value": false,
"customscript/seed_travel.py/txt2img/Steps/visible": true,
"customscript/seed_travel.py/txt2img/Steps/value": 10.0,
"customscript/seed_travel.py/txt2img/Loop back to initial seed/visible": true,
"customscript/seed_travel.py/txt2img/Loop back to initial seed/value": false,
"customscript/seed_travel.py/txt2img/Save results as video/visible": true,
"customscript/seed_travel.py/txt2img/Save results as video/value": true,
"customscript/seed_travel.py/txt2img/Frames per second/visible": true,
"customscript/seed_travel.py/txt2img/Frames per second/value": 30.0,
"customscript/seed_travel.py/txt2img/Number of frames for lead in/out/visible": true,
"customscript/seed_travel.py/txt2img/Number of frames for lead in/out/value": 0.0,
"customscript/seed_travel.py/txt2img/Bump seed (If > 0 do a Compare Paths but only one image. No video)/visible": true,
"customscript/seed_travel.py/txt2img/Bump seed (If > 0 do a Compare Paths but only one image. No video)/value": 0.0,
"customscript/seed_travel.py/txt2img/Bump seed (If > 0 do a Compare Paths but only one image. No video)/minimum": 0,
"customscript/seed_travel.py/txt2img/Bump seed (If > 0 do a Compare Paths but only one image. No video)/maximum": 1,
"customscript/seed_travel.py/txt2img/Bump seed (If > 0 do a Compare Paths but only one image. No video)/step": 0.01,
"customscript/seed_travel.py/txt2img/Show generated images in ui/visible": true,
"customscript/seed_travel.py/txt2img/Show generated images in ui/value": true,
"customscript/seed_travel.py/txt2img/\"Hug the middle\" during interpolation/visible": true,
"customscript/seed_travel.py/txt2img/\"Hug the middle\" during interpolation/value": false,
"customscript/seed_travel.py/txt2img/Allow the default Euler a Sampling method. (Does not produce good results)/visible": true,
"customscript/seed_travel.py/txt2img/Allow the default Euler a Sampling method. (Does not produce good results)/value": false,
"customscript/shift_attention.py/txt2img/Steps/visible": true,
"customscript/shift_attention.py/txt2img/Steps/value": 10.0,
"customscript/shift_attention.py/txt2img/Show generated images in ui/visible": true,
"customscript/shift_attention.py/txt2img/Show generated images in ui/value": true,
"customscript/shift_attention.py/txt2img/Save results as video/visible": true,
"customscript/shift_attention.py/txt2img/Save results as video/value": true,
"customscript/shift_attention.py/txt2img/Frames per second/visible": true,
"customscript/shift_attention.py/txt2img/Frames per second/value": 30.0,
"customscript/inspiration.py/txt2img/Prompt Placeholder, which can be used at the top of prompt input/visible": true,
"customscript/inspiration.py/txt2img/Prompt Placeholder, which can be used at the top of prompt input/value": "{inspiration}",
"customscript/prompt_travel.py/txt2img/Travel mode/visible": true,
"customscript/prompt_travel.py/txt2img/Travel mode/value": "linear",
"customscript/prompt_travel.py/txt2img/Travel steps between stages/visible": true,
"customscript/prompt_travel.py/txt2img/Travel steps between stages/value": "30",
"customscript/prompt_travel.py/txt2img/Step size/visible": true,
"customscript/prompt_travel.py/txt2img/Step size/value": 0.01,
"customscript/prompt_travel.py/txt2img/Step count/visible": true,
"customscript/prompt_travel.py/txt2img/Step count/value": 1,
"customscript/prompt_travel.py/txt2img/Weight for latent match/visible": true,
"customscript/prompt_travel.py/txt2img/Weight for latent match/value": 1.0,
"customscript/prompt_travel.py/txt2img/Weight for cond match/visible": true,
"customscript/prompt_travel.py/txt2img/Weight for cond match/value": 1.0,
"customscript/prompt_travel.py/txt2img/Video FPS/visible": true,
"customscript/prompt_travel.py/txt2img/Video FPS/value": 10.0,
"customscript/prompt_travel.py/txt2img/Pad begin/end frames/visible": true,
"customscript/prompt_travel.py/txt2img/Pad begin/end frames/value": 0,
"customscript/prompt_travel.py/txt2img/Pick every n-th frame/visible": true,
"customscript/prompt_travel.py/txt2img/Pick every n-th frame/value": 1,
"customscript/prompt_travel.py/txt2img/Video drop last frame/visible": true,
"customscript/prompt_travel.py/txt2img/Video drop last frame/value": false,
"customscript/prompt_travel.py/txt2img/Show console debug/visible": true,
"customscript/prompt_travel.py/txt2img/Show console debug/value": true,
"customscript/latent_mirroring.py/img2img/Latent Mirror mode/visible": true,
"customscript/latent_mirroring.py/img2img/Latent Mirror mode/value": "None",
"customscript/latent_mirroring.py/img2img/Latent Mirror style/visible": true,
"customscript/latent_mirroring.py/img2img/Latent Mirror style/value": "Vertical Mirroring",
"customscript/latent_mirroring.py/img2img/X panning/visible": true,
"customscript/latent_mirroring.py/img2img/X panning/value": 0.0,
"customscript/latent_mirroring.py/img2img/X panning/minimum": -1.0,
"customscript/latent_mirroring.py/img2img/X panning/maximum": 1.0,
"customscript/latent_mirroring.py/img2img/X panning/step": 0.01,
"customscript/latent_mirroring.py/img2img/Y panning/visible": true,
"customscript/latent_mirroring.py/img2img/Y panning/value": 0.0,
"customscript/latent_mirroring.py/img2img/Y panning/minimum": -1.0,
"customscript/latent_mirroring.py/img2img/Y panning/maximum": 1.0,
"customscript/latent_mirroring.py/img2img/Y panning/step": 0.01,
"customscript/latent_mirroring.py/img2img/Maximum steps fraction to mirror at/visible": true,
"customscript/latent_mirroring.py/img2img/Maximum steps fraction to mirror at/value": 0.25,
"customscript/latent_mirroring.py/img2img/Maximum steps fraction to mirror at/minimum": 0.0,
"customscript/latent_mirroring.py/img2img/Maximum steps fraction to mirror at/maximum": 1.0,
"customscript/latent_mirroring.py/img2img/Maximum steps fraction to mirror at/step": 0.01,
"customscript/dynamic_prompting.py/img2img/Dynamic Prompts enabled/visible": true,
"customscript/dynamic_prompting.py/img2img/Dynamic Prompts enabled/value": true,
"customscript/dynamic_prompting.py/img2img/Combinatorial generation/visible": true,
"customscript/dynamic_prompting.py/img2img/Combinatorial generation/value": false,
"customscript/dynamic_prompting.py/img2img/Combinatorial batches/visible": true,
"customscript/dynamic_prompting.py/img2img/Combinatorial batches/value": 1,
"customscript/dynamic_prompting.py/img2img/Combinatorial batches/minimum": 0,
"customscript/dynamic_prompting.py/img2img/Combinatorial batches/maximum": 100,
"customscript/dynamic_prompting.py/img2img/Combinatorial batches/step": 1,
"customscript/dynamic_prompting.py/img2img/Magic prompt/visible": true,
"customscript/dynamic_prompting.py/img2img/Magic prompt/value": false,
"customscript/dynamic_prompting.py/img2img/Max magic prompt length/visible": true,
"customscript/dynamic_prompting.py/img2img/Max magic prompt length/value": 100,
"customscript/dynamic_prompting.py/img2img/Max magic prompt length/minimum": 30,
"customscript/dynamic_prompting.py/img2img/Max magic prompt length/maximum": 300,
"customscript/dynamic_prompting.py/img2img/Max magic prompt length/step": 10,
"customscript/dynamic_prompting.py/img2img/Magic prompt creativity/visible": true,
"customscript/dynamic_prompting.py/img2img/Magic prompt creativity/value": 0.7,
"customscript/dynamic_prompting.py/img2img/Magic prompt creativity/minimum": 0.1,
"customscript/dynamic_prompting.py/img2img/Magic prompt creativity/maximum": 3.0,
"customscript/dynamic_prompting.py/img2img/Magic prompt creativity/step": 0.1,
"customscript/dynamic_prompting.py/img2img/I'm feeling lucky/visible": true,
"customscript/dynamic_prompting.py/img2img/I'm feeling lucky/value": false,
"customscript/dynamic_prompting.py/img2img/Attention grabber/visible": true,
"customscript/dynamic_prompting.py/img2img/Attention grabber/value": false,
"customscript/dynamic_prompting.py/img2img/Write prompts to file/visible": true,
"customscript/dynamic_prompting.py/img2img/Write prompts to file/value": false,
"customscript/dynamic_prompting.py/img2img/Don't generate images/visible": true,
"customscript/dynamic_prompting.py/img2img/Don't generate images/value": false,
"customscript/dynamic_prompting.py/img2img/Enable Jinja2 templates/visible": true,
"customscript/dynamic_prompting.py/img2img/Enable Jinja2 templates/value": false,
"customscript/dynamic_prompting.py/img2img/Unlink seed from prompt/visible": true,
"customscript/dynamic_prompting.py/img2img/Unlink seed from prompt/value": false,
"customscript/dynamic_prompting.py/img2img/Disable negative prompt/visible": true,
"customscript/dynamic_prompting.py/img2img/Disable negative prompt/value": false,
"customscript/dynamic_prompting.py/img2img/Fixed seed/visible": true,
"customscript/dynamic_prompting.py/img2img/Fixed seed/value": false,
"customscript/conditioning-highres-fix.py/img2img/Conditioning Highres.fix strength (for sd-v1-5-inpainting)/visible": true,
"customscript/conditioning-highres-fix.py/img2img/Conditioning Highres.fix strength (for sd-v1-5-inpainting)/value": "Cond.fix: Disabled (none)",
"customscript/StylePile.py/img2img/Batch count = Sequence count/visible": true,
"customscript/StylePile.py/img2img/Batch count = Sequence count/value": true,
"customscript/StylePile.py/img2img/Show tips when generating/visible": true,
"customscript/StylePile.py/img2img/Show tips when generating/value": false,
"customscript/StylePile.py/img2img/Sequential prompts [X]/visible": true,
"customscript/StylePile.py/img2img/Sequential prompts [X]/value": "",
"customscript/StylePile.py/img2img/SubSequential prompts [Y]/visible": true,
"customscript/StylePile.py/img2img/SubSequential prompts [Y]/value": "",
"customscript/StylePile.py/img2img/Random [A]/visible": true,
"customscript/StylePile.py/img2img/Random [A]/value": "",
"customscript/StylePile.py/img2img/Random [B]/visible": true,
"customscript/StylePile.py/img2img/Random [B]/value": "",
"customscript/StylePile.py/img2img/Random [C]/visible": true,
"customscript/StylePile.py/img2img/Random [C]/value": "",
"customscript/StylePile.py/img2img/Influence/visible": true,
"customscript/StylePile.py/img2img/Influence/value": 1.3,
"customscript/StylePile.py/img2img/Influence/minimum": 0,
"customscript/StylePile.py/img2img/Influence/maximum": 2,
"customscript/StylePile.py/img2img/Influence/step": 0.05,
"customscript/depth2image_depthmask.py/img2img/Contrasts cut level/visible": true,
"customscript/depth2image_depthmask.py/img2img/Contrasts cut level/value": 0,
"customscript/depth2image_depthmask.py/img2img/Contrasts cut level/minimum": 0,
"customscript/depth2image_depthmask.py/img2img/Contrasts cut level/maximum": 255,
"customscript/depth2image_depthmask.py/img2img/Contrasts cut level/step": 1,
"customscript/depth2image_depthmask.py/img2img/Match input size/visible": true,
"customscript/depth2image_depthmask.py/img2img/Match input size/value": true,
"customscript/depth2image_depthmask.py/img2img/Net width/visible": true,
"customscript/depth2image_depthmask.py/img2img/Net width/value": 384,
"customscript/depth2image_depthmask.py/img2img/Net width/minimum": 64,
"customscript/depth2image_depthmask.py/img2img/Net width/maximum": 2048,
"customscript/depth2image_depthmask.py/img2img/Net width/step": 64,
"customscript/depth2image_depthmask.py/img2img/Net height/visible": true,
"customscript/depth2image_depthmask.py/img2img/Net height/value": 384,
"customscript/depth2image_depthmask.py/img2img/Net height/minimum": 64,
"customscript/depth2image_depthmask.py/img2img/Net height/maximum": 2048,
"customscript/depth2image_depthmask.py/img2img/Net height/step": 64,
"customscript/depth2image_depthmask.py/img2img/Invert DepthMap/visible": true,
"customscript/depth2image_depthmask.py/img2img/Invert DepthMap/value": false,
"customscript/depth2image_depthmask.py/img2img/Save depth map/visible": true,
"customscript/depth2image_depthmask.py/img2img/Save depth map/value": false,
"customscript/depth2image_depthmask.py/img2img/Override mask blur to 0/visible": true,
"customscript/depth2image_depthmask.py/img2img/Override mask blur to 0/value": true,
"customscript/depth2image_depthmask.py/img2img/Override inpaint to original/visible": true,
"customscript/depth2image_depthmask.py/img2img/Override inpaint to original/value": true,
"customscript/depth2image_depthmask.py/img2img/Turn the depthmap into absolute black/white/visible": true,
"customscript/depth2image_depthmask.py/img2img/Turn the depthmap into absolute black/white/value": false,
"customscript/seed_travel.py/img2img/Destination seed(s) (Comma separated)/visible": true,
"customscript/seed_travel.py/img2img/Destination seed(s) (Comma separated)/value": "",
"customscript/seed_travel.py/img2img/Only use Random seeds (Unless comparing paths)/visible": true,
"customscript/seed_travel.py/img2img/Only use Random seeds (Unless comparing paths)/value": false,
"customscript/seed_travel.py/img2img/Number of random seed(s)/visible": true,
"customscript/seed_travel.py/img2img/Number of random seed(s)/value": 4.0,
"customscript/seed_travel.py/img2img/Compare paths (Separate travels from 1st seed to each destination)/visible": true,
"customscript/seed_travel.py/img2img/Compare paths (Separate travels from 1st seed to each destination)/value": false,
"customscript/seed_travel.py/img2img/Steps/visible": true,
"customscript/seed_travel.py/img2img/Steps/value": 10.0,
"customscript/seed_travel.py/img2img/Loop back to initial seed/visible": true,
"customscript/seed_travel.py/img2img/Loop back to initial seed/value": false,
"customscript/seed_travel.py/img2img/Save results as video/visible": true,
"customscript/seed_travel.py/img2img/Save results as video/value": true,
"customscript/seed_travel.py/img2img/Frames per second/visible": true,
"customscript/seed_travel.py/img2img/Frames per second/value": 30.0,
"customscript/seed_travel.py/img2img/Number of frames for lead in/out/visible": true,
"customscript/seed_travel.py/img2img/Number of frames for lead in/out/value": 0.0,
"customscript/seed_travel.py/img2img/Bump seed (If > 0 do a Compare Paths but only one image. No video)/visible": true,
"customscript/seed_travel.py/img2img/Bump seed (If > 0 do a Compare Paths but only one image. No video)/value": 0.0,
"customscript/seed_travel.py/img2img/Bump seed (If > 0 do a Compare Paths but only one image. No video)/minimum": 0,
"customscript/seed_travel.py/img2img/Bump seed (If > 0 do a Compare Paths but only one image. No video)/maximum": 1,
"customscript/seed_travel.py/img2img/Bump seed (If > 0 do a Compare Paths but only one image. No video)/step": 0.01,
"customscript/seed_travel.py/img2img/Show generated images in ui/visible": true,
"customscript/seed_travel.py/img2img/Show generated images in ui/value": true,
"customscript/seed_travel.py/img2img/\"Hug the middle\" during interpolation/visible": true,
"customscript/seed_travel.py/img2img/\"Hug the middle\" during interpolation/value": false,
"customscript/seed_travel.py/img2img/Allow the default Euler a Sampling method. (Does not produce good results)/visible": true,
"customscript/seed_travel.py/img2img/Allow the default Euler a Sampling method. (Does not produce good results)/value": false,
"customscript/shift_attention.py/img2img/Steps/visible": true,
"customscript/shift_attention.py/img2img/Steps/value": 10.0,
"customscript/shift_attention.py/img2img/Show generated images in ui/visible": true,
"customscript/shift_attention.py/img2img/Show generated images in ui/value": true,
"customscript/shift_attention.py/img2img/Save results as video/visible": true,
"customscript/shift_attention.py/img2img/Save results as video/value": true,
"customscript/shift_attention.py/img2img/Frames per second/visible": true,
"customscript/shift_attention.py/img2img/Frames per second/value": 30.0,
"customscript/inspiration.py/img2img/Prompt Placeholder, which can be used at the top of prompt input/visible": true,
"customscript/inspiration.py/img2img/Prompt Placeholder, which can be used at the top of prompt input/value": "{inspiration}",
"customscript/prompt_travel.py/img2img/Travel mode/visible": true,
"customscript/prompt_travel.py/img2img/Travel mode/value": "linear",
"customscript/prompt_travel.py/img2img/Travel steps between stages/visible": true,
"customscript/prompt_travel.py/img2img/Travel steps between stages/value": "30",
"customscript/prompt_travel.py/img2img/Step size/visible": true,
"customscript/prompt_travel.py/img2img/Step size/value": 0.01,
"customscript/prompt_travel.py/img2img/Step count/visible": true,
"customscript/prompt_travel.py/img2img/Step count/value": 1,
"customscript/prompt_travel.py/img2img/Weight for latent match/visible": true,
"customscript/prompt_travel.py/img2img/Weight for latent match/value": 1.0,
"customscript/prompt_travel.py/img2img/Weight for cond match/visible": true,
"customscript/prompt_travel.py/img2img/Weight for cond match/value": 1.0,
"customscript/prompt_travel.py/img2img/Video FPS/visible": true,
"customscript/prompt_travel.py/img2img/Video FPS/value": 10.0,
"customscript/prompt_travel.py/img2img/Pad begin/end frames/visible": true,
"customscript/prompt_travel.py/img2img/Pad begin/end frames/value": 0,
"customscript/prompt_travel.py/img2img/Pick every n-th frame/visible": true,
"customscript/prompt_travel.py/img2img/Pick every n-th frame/value": 1,
"customscript/prompt_travel.py/img2img/Video drop last frame/visible": true,
"customscript/prompt_travel.py/img2img/Video drop last frame/value": false,
"customscript/prompt_travel.py/img2img/Show console debug/visible": true,
"customscript/prompt_travel.py/img2img/Show console debug/value": true,
"customscript/prompt_matrix.py/txt2img/Use different seed for each picture/visible": true,
"customscript/prompt_matrix.py/txt2img/Use different seed for each picture/value": false,
"customscript/prompt_matrix.py/img2img/Use different seed for each picture/visible": true,
"customscript/prompt_matrix.py/img2img/Use different seed for each picture/value": false,
"customscript/sd_upscale.py/img2img/Scale Factor/visible": true,
"customscript/sd_upscale.py/img2img/Scale Factor/value": 2,
"customscript/sd_upscale.py/img2img/Scale Factor/minimum": 1,
"customscript/sd_upscale.py/img2img/Scale Factor/maximum": 4,
"customscript/sd_upscale.py/img2img/Scale Factor/step": 1,
"customscript/depthmap.py/txt2img/Compute on/visible": true,
"customscript/depthmap.py/txt2img/Compute on/value": "GPU",
"customscript/depthmap.py/txt2img/Net width/visible": true,
"customscript/depthmap.py/txt2img/Net width/value": 384,
"customscript/depthmap.py/txt2img/Net width/minimum": 64,
"customscript/depthmap.py/txt2img/Net width/maximum": 2048,
"customscript/depthmap.py/txt2img/Net width/step": 64,
"customscript/depthmap.py/txt2img/Net height/visible": true,
"customscript/depthmap.py/txt2img/Net height/value": 384,
"customscript/depthmap.py/txt2img/Net height/minimum": 64,
"customscript/depthmap.py/txt2img/Net height/maximum": 2048,
"customscript/depthmap.py/txt2img/Net height/step": 64,
"customscript/depthmap.py/txt2img/Match input size/visible": true,
"customscript/depthmap.py/txt2img/Match input size/value": false,
"customscript/depthmap.py/txt2img/BOOST (multi-resolution merging)/visible": true,
"customscript/depthmap.py/txt2img/BOOST (multi-resolution merging)/value": true,
"customscript/depthmap.py/txt2img/Invert DepthMap (black=near, white=far)/visible": true,
"customscript/depthmap.py/txt2img/Invert DepthMap (black=near, white=far)/value": false,
"customscript/depthmap.py/txt2img/Combine into one image./visible": true,
"customscript/depthmap.py/txt2img/Combine into one image./value": true,
"customscript/depthmap.py/txt2img/Combine axis/visible": true,
"customscript/depthmap.py/txt2img/Combine axis/value": "Horizontal",
"customscript/depthmap.py/txt2img/Save DepthMap/visible": true,
"customscript/depthmap.py/txt2img/Save DepthMap/value": true,
"customscript/depthmap.py/txt2img/Show DepthMap/visible": true,
"customscript/depthmap.py/txt2img/Show DepthMap/value": true,
"customscript/depthmap.py/txt2img/Show HeatMap/visible": true,
"customscript/depthmap.py/txt2img/Show HeatMap/value": false,
"customscript/depthmap.py/txt2img/Generate Stereo side-by-side image/visible": true,
"customscript/depthmap.py/txt2img/Generate Stereo side-by-side image/value": false,
"customscript/depthmap.py/txt2img/Generate Stereo anaglyph image (red/cyan)/visible": true,
"customscript/depthmap.py/txt2img/Generate Stereo anaglyph image (red/cyan)/value": false,
"customscript/depthmap.py/txt2img/IPD (cm)/visible": true,
"customscript/depthmap.py/txt2img/IPD (cm)/value": 6.4,
"customscript/depthmap.py/txt2img/IPD (cm)/minimum": 5,
"customscript/depthmap.py/txt2img/IPD (cm)/maximum": 7.5,
"customscript/depthmap.py/txt2img/IPD (cm)/step": 0.1,
"customscript/depthmap.py/txt2img/Screen Width (cm)/visible": true,
"customscript/depthmap.py/txt2img/Screen Width (cm)/value": 38.5,
"customscript/depthmap.py/txt2img/Screen Width (cm)/minimum": 20,
"customscript/depthmap.py/txt2img/Screen Width (cm)/maximum": 100,
"customscript/depthmap.py/txt2img/Screen Width (cm)/step": 0.5,
"customscript/depthmap.py/txt2img/Balance between eyes/visible": true,
"customscript/depthmap.py/txt2img/Balance between eyes/value": 0.0,
"customscript/depthmap.py/txt2img/Balance between eyes/minimum": -1.0,
"customscript/depthmap.py/txt2img/Balance between eyes/maximum": 1.0,
"customscript/depthmap.py/txt2img/Balance between eyes/step": 0.05,
"customscript/depthmap.py/img2img/Compute on/visible": true,
"customscript/depthmap.py/img2img/Compute on/value": "GPU",
"customscript/depthmap.py/img2img/Net width/visible": true,
"customscript/depthmap.py/img2img/Net width/value": 384,
"customscript/depthmap.py/img2img/Net width/minimum": 64,
"customscript/depthmap.py/img2img/Net width/maximum": 2048,
"customscript/depthmap.py/img2img/Net width/step": 64,
"customscript/depthmap.py/img2img/Net height/visible": true,
"customscript/depthmap.py/img2img/Net height/value": 384,
"customscript/depthmap.py/img2img/Net height/minimum": 64,
"customscript/depthmap.py/img2img/Net height/maximum": 2048,
"customscript/depthmap.py/img2img/Net height/step": 64,
"customscript/depthmap.py/img2img/Match input size/visible": true,
"customscript/depthmap.py/img2img/Match input size/value": false,
"customscript/depthmap.py/img2img/BOOST (multi-resolution merging)/visible": true,
"customscript/depthmap.py/img2img/BOOST (multi-resolution merging)/value": true,
"customscript/depthmap.py/img2img/Invert DepthMap (black=near, white=far)/visible": true,
"customscript/depthmap.py/img2img/Invert DepthMap (black=near, white=far)/value": false,
"customscript/depthmap.py/img2img/Combine into one image./visible": true,
"customscript/depthmap.py/img2img/Combine into one image./value": true,
"customscript/depthmap.py/img2img/Combine axis/visible": true,
"customscript/depthmap.py/img2img/Combine axis/value": "Horizontal",
"customscript/depthmap.py/img2img/Save DepthMap/visible": true,
"customscript/depthmap.py/img2img/Save DepthMap/value": true,
"customscript/depthmap.py/img2img/Show DepthMap/visible": true,
"customscript/depthmap.py/img2img/Show DepthMap/value": true,
"customscript/depthmap.py/img2img/Show HeatMap/visible": true,
"customscript/depthmap.py/img2img/Show HeatMap/value": false,
"customscript/depthmap.py/img2img/Generate Stereo side-by-side image/visible": true,
"customscript/depthmap.py/img2img/Generate Stereo side-by-side image/value": false,
"customscript/depthmap.py/img2img/Generate Stereo anaglyph image (red/cyan)/visible": true,
"customscript/depthmap.py/img2img/Generate Stereo anaglyph image (red/cyan)/value": false,
"customscript/depthmap.py/img2img/IPD (cm)/visible": true,
"customscript/depthmap.py/img2img/IPD (cm)/value": 6.4,
"customscript/depthmap.py/img2img/IPD (cm)/minimum": 5,
"customscript/depthmap.py/img2img/IPD (cm)/maximum": 7.5,
"customscript/depthmap.py/img2img/IPD (cm)/step": 0.1,
"customscript/depthmap.py/img2img/Screen Width (cm)/visible": true,
"customscript/depthmap.py/img2img/Screen Width (cm)/value": 38.5,
"customscript/depthmap.py/img2img/Screen Width (cm)/minimum": 20,
"customscript/depthmap.py/img2img/Screen Width (cm)/maximum": 100,
"customscript/depthmap.py/img2img/Screen Width (cm)/step": 0.5,
"customscript/depthmap.py/img2img/Balance between eyes/visible": true,
"customscript/depthmap.py/img2img/Balance between eyes/value": 0.0,
"customscript/depthmap.py/img2img/Balance between eyes/minimum": -1.0,
"customscript/depthmap.py/img2img/Balance between eyes/maximum": 1.0,
"customscript/depthmap.py/img2img/Balance between eyes/step": 0.05,
"txt2img/Hires. fix/visible": true,
"txt2img/Hires. fix/value": false,
"txt2img/Upscale by/visible": true,
"txt2img/Upscale by/value": 2.0,
"txt2img/Upscale by/minimum": 1.0,
"txt2img/Upscale by/maximum": 4.0,
"txt2img/Upscale by/step": 0.05,
"img2img/Mask source/visible": true,
"img2img/Mask source/value": "Draw mask",
"img2img/Inpaint area/visible": true,
"img2img/Inpaint area/value": "Whole picture",
"img2img/Only masked padding, pixels/visible": true,
"img2img/Only masked padding, pixels/value": 32,
"img2img/Only masked padding, pixels/minimum": 0,
"img2img/Only masked padding, pixels/maximum": 256,
"img2img/Only masked padding, pixels/step": 4,
"customscript/depthmap.py/txt2img/Match input size (size is ignored when using boost)/visible": true,
"customscript/depthmap.py/txt2img/Match input size (size is ignored when using boost)/value": false,
"customscript/depthmap.py/txt2img/Clip and renormalize/visible": true,
"customscript/depthmap.py/txt2img/Clip and renormalize/value": false,
"customscript/depthmap.py/txt2img/Far clip/visible": true,
"customscript/depthmap.py/txt2img/Far clip/value": 0,
"customscript/depthmap.py/txt2img/Far clip/minimum": 0,
"customscript/depthmap.py/txt2img/Far clip/maximum": 1,
"customscript/depthmap.py/txt2img/Far clip/step": 0.001,
"customscript/depthmap.py/txt2img/Near clip/visible": true,
"customscript/depthmap.py/txt2img/Near clip/value": 1,
"customscript/depthmap.py/txt2img/Near clip/minimum": 0,
"customscript/depthmap.py/txt2img/Near clip/maximum": 1,
"customscript/depthmap.py/txt2img/Near clip/step": 0.001,
"customscript/depthmap.py/txt2img/Divergence (3D effect)/visible": true,
"customscript/depthmap.py/txt2img/Divergence (3D effect)/value": 2.5,
"customscript/depthmap.py/txt2img/Divergence (3D effect)/minimum": 0.05,
"customscript/depthmap.py/txt2img/Divergence (3D effect)/maximum": 10.005,
"customscript/depthmap.py/txt2img/Divergence (3D effect)/step": 0.01,
"customscript/depthmap.py/txt2img/Generate 3D inpainted mesh. (Slooooooooow)/value": false,
"customscript/depthmap.py/img2img/Match input size (size is ignored when using boost)/visible": true,
"customscript/depthmap.py/img2img/Match input size (size is ignored when using boost)/value": false,
"customscript/depthmap.py/img2img/Clip and renormalize/visible": true,
"customscript/depthmap.py/img2img/Clip and renormalize/value": false,
"customscript/depthmap.py/img2img/Far clip/visible": true,
"customscript/depthmap.py/img2img/Far clip/value": 0,
"customscript/depthmap.py/img2img/Far clip/minimum": 0,
"customscript/depthmap.py/img2img/Far clip/maximum": 1,