Spaces:
Runtime error
Runtime error
File size: 167,392 Bytes
17a16a3 e18b990 17a16a3 e18b990 17a16a3 5331dcd e18b990 5331dcd e18b990 5331dcd e18b990 cbfe4b5 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 |
{
"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": 512,
"txt2img/Width/minimum": 64,
"txt2img/Width/maximum": 2048,
"txt2img/Width/step": 64,
"txt2img/Height/visible": true,
"txt2img/Height/value": 512,
"txt2img/Height/minimum": 64,
"txt2img/Height/maximum": 2048,
"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": 1024,
"txt2img/Firstpass width/step": 64,
"txt2img/Firstpass height/visible": true,
"txt2img/Firstpass height/value": 0,
"txt2img/Firstpass height/minimum": 0,
"txt2img/Firstpass height/maximum": 1024,
"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": 100,
"txt2img/Batch count/step": 1,
"txt2img/Batch size/visible": true,
"txt2img/Batch size/value": 1,
"txt2img/Batch size/minimum": 1,
"txt2img/Batch size/maximum": 8,
"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": 2048,
"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": 2048,
"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 transparency/value": 0,
"img2img/Mask transparency/minimum": 0,
"img2img/Mask transparency/maximum": 100,
"img2img/Mask transparency/step": 1,
"img2img/Mask mode/visible": true,
"img2img/Mask mode/value": "Draw mask",
"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": 512,
"img2img/Width/minimum": 64,
"img2img/Width/maximum": 2048,
"img2img/Width/step": 64,
"img2img/Height/visible": true,
"img2img/Height/value": 512,
"img2img/Height/minimum": 64,
"img2img/Height/maximum": 2048,
"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": 100,
"img2img/Batch count/step": 1,
"img2img/Batch size/visible": true,
"img2img/Batch size/value": 1,
"img2img/Batch size/minimum": 1,
"img2img/Batch size/maximum": 8,
"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": 2048,
"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": 2048,
"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,
"txt2img/Styles/visible": true,
"txt2img/Styles/value": [],
"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/Hires. fix/visible": true,
"txt2img/Hires. fix/value": false,
"txt2img/Upscaler/visible": true,
"txt2img/Upscaler/value": "Latent",
"txt2img/Hires steps/visible": true,
"txt2img/Hires steps/value": 0,
"txt2img/Hires steps/minimum": 0,
"txt2img/Hires steps/maximum": 150,
"txt2img/Hires steps/step": 1,
"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,
"txt2img/Resize width to/visible": true,
"txt2img/Resize width to/value": 0,
"txt2img/Resize width to/minimum": 0,
"txt2img/Resize width to/maximum": 2048,
"txt2img/Resize width to/step": 8,
"txt2img/Resize height to/visible": true,
"txt2img/Resize height to/value": 0,
"txt2img/Resize height to/minimum": 0,
"txt2img/Resize height to/maximum": 2048,
"txt2img/Resize height to/step": 8,
"txt2img/Override settings/value": null,
"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/Max generations (0 = all combinations - the batch count value is ignored)/visible": true,
"customscript/dynamic_prompting.py/txt2img/Max generations (0 = all combinations - the batch count value is ignored)/value": 0,
"customscript/dynamic_prompting.py/txt2img/Max generations (0 = all combinations - the batch count value is ignored)/minimum": 0,
"customscript/dynamic_prompting.py/txt2img/Max generations (0 = all combinations - the batch count value is ignored)/maximum": 1000,
"customscript/dynamic_prompting.py/txt2img/Max generations (0 = all combinations - the batch count value is ignored)/step": 1,
"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": 1,
"customscript/dynamic_prompting.py/txt2img/Combinatorial batches/maximum": 10,
"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/Magic prompt model/visible": true,
"customscript/dynamic_prompting.py/txt2img/Magic prompt model/value": "Gustavosta/MagicPrompt-Stable-Diffusion",
"customscript/dynamic_prompting.py/txt2img/Magic prompt blocklist regex/visible": true,
"customscript/dynamic_prompting.py/txt2img/Magic prompt blocklist regex/value": "",
"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/Minimum attention/visible": true,
"customscript/dynamic_prompting.py/txt2img/Minimum attention/value": 1.1,
"customscript/dynamic_prompting.py/txt2img/Minimum attention/minimum": -1,
"customscript/dynamic_prompting.py/txt2img/Minimum attention/maximum": 2,
"customscript/dynamic_prompting.py/txt2img/Minimum attention/step": 0.1,
"customscript/dynamic_prompting.py/txt2img/Maximum attention/visible": true,
"customscript/dynamic_prompting.py/txt2img/Maximum attention/value": 1.5,
"customscript/dynamic_prompting.py/txt2img/Maximum attention/minimum": -1,
"customscript/dynamic_prompting.py/txt2img/Maximum attention/maximum": 2,
"customscript/dynamic_prompting.py/txt2img/Maximum attention/step": 0.1,
"customscript/dynamic_prompting.py/txt2img/Don't apply to negative prompts/visible": true,
"customscript/dynamic_prompting.py/txt2img/Don't apply to negative prompts/value": true,
"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/Fixed seed/visible": true,
"customscript/dynamic_prompting.py/txt2img/Fixed seed/value": false,
"txt2img/Write raw prompt to image/value": false,
"customscript/dynamic_prompting.py/txt2img/Don't generate images/visible": true,
"customscript/dynamic_prompting.py/txt2img/Don't generate images/value": false,
"txt2img/Write prompts to file/value": false,
"customscript/additional_networks.py/txt2img/Enable/visible": true,
"customscript/additional_networks.py/txt2img/Enable/value": false,
"customscript/additional_networks.py/txt2img/Separate UNet/Text Encoder weights/visible": true,
"customscript/additional_networks.py/txt2img/Separate UNet/Text Encoder weights/value": false,
"customscript/additional_networks.py/txt2img/Network module 1/visible": true,
"customscript/additional_networks.py/txt2img/Network module 1/value": "LoRA",
"customscript/additional_networks.py/txt2img/Model 1/visible": true,
"customscript/additional_networks.py/txt2img/Model 1/value": "None",
"txt2img/Weight 1/visible": true,
"txt2img/Weight 1/value": 1.0,
"txt2img/Weight 1/minimum": -1.0,
"txt2img/Weight 1/maximum": 2.0,
"txt2img/Weight 1/step": 0.05,
"customscript/additional_networks.py/txt2img/UNet Weight 1/value": 1.0,
"customscript/additional_networks.py/txt2img/UNet Weight 1/minimum": -1.0,
"customscript/additional_networks.py/txt2img/UNet Weight 1/maximum": 2.0,
"customscript/additional_networks.py/txt2img/UNet Weight 1/step": 0.05,
"customscript/additional_networks.py/txt2img/TEnc Weight 1/value": 1.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 1/minimum": -1.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 1/maximum": 2.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 1/step": 0.05,
"customscript/additional_networks.py/txt2img/Network module 2/visible": true,
"customscript/additional_networks.py/txt2img/Network module 2/value": "LoRA",
"customscript/additional_networks.py/txt2img/Model 2/visible": true,
"customscript/additional_networks.py/txt2img/Model 2/value": "None",
"txt2img/Weight 2/visible": true,
"txt2img/Weight 2/value": 1.0,
"txt2img/Weight 2/minimum": -1.0,
"txt2img/Weight 2/maximum": 2.0,
"txt2img/Weight 2/step": 0.05,
"customscript/additional_networks.py/txt2img/UNet Weight 2/value": 1.0,
"customscript/additional_networks.py/txt2img/UNet Weight 2/minimum": -1.0,
"customscript/additional_networks.py/txt2img/UNet Weight 2/maximum": 2.0,
"customscript/additional_networks.py/txt2img/UNet Weight 2/step": 0.05,
"customscript/additional_networks.py/txt2img/TEnc Weight 2/value": 1.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 2/minimum": -1.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 2/maximum": 2.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 2/step": 0.05,
"customscript/additional_networks.py/txt2img/Network module 3/visible": true,
"customscript/additional_networks.py/txt2img/Network module 3/value": "LoRA",
"customscript/additional_networks.py/txt2img/Model 3/visible": true,
"customscript/additional_networks.py/txt2img/Model 3/value": "None",
"txt2img/Weight 3/visible": true,
"txt2img/Weight 3/value": 1.0,
"txt2img/Weight 3/minimum": -1.0,
"txt2img/Weight 3/maximum": 2.0,
"txt2img/Weight 3/step": 0.05,
"customscript/additional_networks.py/txt2img/UNet Weight 3/value": 1.0,
"customscript/additional_networks.py/txt2img/UNet Weight 3/minimum": -1.0,
"customscript/additional_networks.py/txt2img/UNet Weight 3/maximum": 2.0,
"customscript/additional_networks.py/txt2img/UNet Weight 3/step": 0.05,
"customscript/additional_networks.py/txt2img/TEnc Weight 3/value": 1.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 3/minimum": -1.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 3/maximum": 2.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 3/step": 0.05,
"customscript/additional_networks.py/txt2img/Network module 4/visible": true,
"customscript/additional_networks.py/txt2img/Network module 4/value": "LoRA",
"customscript/additional_networks.py/txt2img/Model 4/visible": true,
"customscript/additional_networks.py/txt2img/Model 4/value": "None",
"txt2img/Weight 4/visible": true,
"txt2img/Weight 4/value": 1.0,
"txt2img/Weight 4/minimum": -1.0,
"txt2img/Weight 4/maximum": 2.0,
"txt2img/Weight 4/step": 0.05,
"customscript/additional_networks.py/txt2img/UNet Weight 4/value": 1.0,
"customscript/additional_networks.py/txt2img/UNet Weight 4/minimum": -1.0,
"customscript/additional_networks.py/txt2img/UNet Weight 4/maximum": 2.0,
"customscript/additional_networks.py/txt2img/UNet Weight 4/step": 0.05,
"customscript/additional_networks.py/txt2img/TEnc Weight 4/value": 1.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 4/minimum": -1.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 4/maximum": 2.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 4/step": 0.05,
"customscript/additional_networks.py/txt2img/Network module 5/visible": true,
"customscript/additional_networks.py/txt2img/Network module 5/value": "LoRA",
"customscript/additional_networks.py/txt2img/Model 5/visible": true,
"customscript/additional_networks.py/txt2img/Model 5/value": "None",
"txt2img/Weight 5/visible": true,
"txt2img/Weight 5/value": 1.0,
"txt2img/Weight 5/minimum": -1.0,
"txt2img/Weight 5/maximum": 2.0,
"txt2img/Weight 5/step": 0.05,
"customscript/additional_networks.py/txt2img/UNet Weight 5/value": 1.0,
"customscript/additional_networks.py/txt2img/UNet Weight 5/minimum": -1.0,
"customscript/additional_networks.py/txt2img/UNet Weight 5/maximum": 2.0,
"customscript/additional_networks.py/txt2img/UNet Weight 5/step": 0.05,
"customscript/additional_networks.py/txt2img/TEnc Weight 5/value": 1.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 5/minimum": -1.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 5/maximum": 2.0,
"customscript/additional_networks.py/txt2img/TEnc Weight 5/step": 0.05,
"customscript/controlnet.py/txt2img/Enable/visible": true,
"customscript/controlnet.py/txt2img/Enable/value": false,
"customscript/controlnet.py/txt2img/Invert Input Color/visible": true,
"customscript/controlnet.py/txt2img/Invert Input Color/value": false,
"customscript/controlnet.py/txt2img/RGB to BGR/visible": true,
"customscript/controlnet.py/txt2img/RGB to BGR/value": false,
"customscript/controlnet.py/txt2img/Low VRAM/visible": true,
"customscript/controlnet.py/txt2img/Low VRAM/value": false,
"customscript/controlnet.py/txt2img/Guess Mode/visible": true,
"customscript/controlnet.py/txt2img/Guess Mode/value": false,
"customscript/controlnet.py/txt2img/Preprocessor/visible": true,
"customscript/controlnet.py/txt2img/Preprocessor/value": "none",
"customscript/controlnet.py/txt2img/Model/visible": true,
"customscript/controlnet.py/txt2img/Model/value": "None",
"customscript/controlnet.py/txt2img/Weight/visible": true,
"customscript/controlnet.py/txt2img/Weight/value": 1.0,
"customscript/controlnet.py/txt2img/Weight/minimum": 0.0,
"customscript/controlnet.py/txt2img/Weight/maximum": 2.0,
"customscript/controlnet.py/txt2img/Weight/step": 0.05,
"customscript/controlnet.py/txt2img/Guidance Start (T)/visible": true,
"customscript/controlnet.py/txt2img/Guidance Start (T)/value": 0.0,
"customscript/controlnet.py/txt2img/Guidance Start (T)/minimum": 0.0,
"customscript/controlnet.py/txt2img/Guidance Start (T)/maximum": 1.0,
"customscript/controlnet.py/txt2img/Guidance Start (T)/step": 0.01,
"customscript/controlnet.py/txt2img/Guidance End (T)/visible": true,
"customscript/controlnet.py/txt2img/Guidance End (T)/value": 1.0,
"customscript/controlnet.py/txt2img/Guidance End (T)/minimum": 0.0,
"customscript/controlnet.py/txt2img/Guidance End (T)/maximum": 1.0,
"customscript/controlnet.py/txt2img/Guidance End (T)/step": 0.01,
"customscript/controlnet.py/txt2img/Annotator resolution/visible": true,
"customscript/controlnet.py/txt2img/Annotator resolution/value": 64,
"customscript/controlnet.py/txt2img/Annotator resolution/minimum": 64,
"customscript/controlnet.py/txt2img/Annotator resolution/maximum": 2048,
"customscript/controlnet.py/txt2img/Annotator resolution/step": 10,
"customscript/controlnet.py/txt2img/Threshold A/visible": true,
"customscript/controlnet.py/txt2img/Threshold A/value": 64,
"customscript/controlnet.py/txt2img/Threshold A/minimum": 64,
"customscript/controlnet.py/txt2img/Threshold A/maximum": 1024,
"customscript/controlnet.py/txt2img/Threshold A/step": 1,
"customscript/controlnet.py/txt2img/Threshold B/visible": true,
"customscript/controlnet.py/txt2img/Threshold B/value": 64,
"customscript/controlnet.py/txt2img/Threshold B/minimum": 64,
"customscript/controlnet.py/txt2img/Threshold B/maximum": 1024,
"customscript/controlnet.py/txt2img/Threshold B/step": 1,
"customscript/controlnet.py/txt2img/Resize Mode/visible": true,
"customscript/controlnet.py/txt2img/Resize Mode/value": "Scale to Fit (Inner Fit)",
"txt2img/Canvas Width/visible": true,
"txt2img/Canvas Width/value": 512,
"txt2img/Canvas Width/minimum": 256,
"txt2img/Canvas Width/maximum": 1024,
"txt2img/Canvas Width/step": 64,
"txt2img/Canvas Height/visible": true,
"txt2img/Canvas Height/value": 512,
"txt2img/Canvas Height/minimum": 256,
"txt2img/Canvas Height/maximum": 1024,
"txt2img/Canvas Height/step": 64,
"customscript/cutoff.py/txt2img/Enabled/visible": true,
"customscript/cutoff.py/txt2img/Enabled/value": false,
"customscript/cutoff.py/txt2img/Target tokens (comma separated)/visible": true,
"customscript/cutoff.py/txt2img/Target tokens (comma separated)/value": "",
"customscript/cutoff.py/txt2img/Weight/visible": true,
"customscript/cutoff.py/txt2img/Weight/value": 0.5,
"customscript/cutoff.py/txt2img/Weight/minimum": -1.0,
"customscript/cutoff.py/txt2img/Weight/maximum": 2.0,
"customscript/cutoff.py/txt2img/Weight/step": 0.01,
"customscript/cutoff.py/txt2img/Disable for Negative prompt./visible": true,
"customscript/cutoff.py/txt2img/Disable for Negative prompt./value": true,
"customscript/cutoff.py/txt2img/Cutoff strongly./visible": true,
"customscript/cutoff.py/txt2img/Cutoff strongly./value": false,
"customscript/cutoff.py/txt2img/Padding token (ID or single token)/visible": true,
"customscript/cutoff.py/txt2img/Padding token (ID or single token)/value": "",
"customscript/cutoff.py/txt2img/Interpolation method/visible": true,
"customscript/cutoff.py/txt2img/Interpolation method/value": "Lerp",
"customscript/cutoff.py/txt2img/Debug log/visible": true,
"customscript/cutoff.py/txt2img/Debug log/value": false,
"customscript/llul.py/txt2img/Enabled/visible": true,
"customscript/llul.py/txt2img/Enabled/value": false,
"customscript/llul.py/txt2img/Multiplication (2^N)/visible": true,
"customscript/llul.py/txt2img/Multiplication (2^N)/value": 1,
"customscript/llul.py/txt2img/Multiplication (2^N)/minimum": 1,
"customscript/llul.py/txt2img/Multiplication (2^N)/maximum": 5,
"customscript/llul.py/txt2img/Multiplication (2^N)/step": 1,
"customscript/llul.py/txt2img/Weight/visible": true,
"customscript/llul.py/txt2img/Weight/value": 0.15,
"customscript/llul.py/txt2img/Weight/minimum": -1,
"customscript/llul.py/txt2img/Weight/maximum": 2,
"customscript/llul.py/txt2img/Weight/step": 0.01,
"customscript/llul.py/txt2img/Force convert half to float on interpolation (for some platforms)/visible": true,
"customscript/llul.py/txt2img/Force convert half to float on interpolation (for some platforms)/value": false,
"customscript/llul.py/txt2img/I know what I am doing./visible": true,
"customscript/llul.py/txt2img/I know what I am doing./value": false,
"customscript/llul.py/txt2img/Layers/visible": true,
"customscript/llul.py/txt2img/Layers/value": "OUT",
"customscript/llul.py/txt2img/Start steps/visible": true,
"customscript/llul.py/txt2img/Start steps/value": 5,
"customscript/llul.py/txt2img/Start steps/minimum": 1,
"customscript/llul.py/txt2img/Start steps/maximum": 300,
"customscript/llul.py/txt2img/Start steps/step": 1,
"customscript/llul.py/txt2img/Max steps/visible": true,
"customscript/llul.py/txt2img/Max steps/value": 0,
"customscript/llul.py/txt2img/Max steps/minimum": 0,
"customscript/llul.py/txt2img/Max steps/maximum": 300,
"customscript/llul.py/txt2img/Max steps/step": 1,
"customscript/llul.py/txt2img/Upscaling/visible": true,
"customscript/llul.py/txt2img/Upscaling/value": "Bilinear",
"customscript/llul.py/txt2img/Enable AA for Upscaling./visible": true,
"customscript/llul.py/txt2img/Enable AA for Upscaling./value": false,
"customscript/llul.py/txt2img/Downscaling/visible": true,
"customscript/llul.py/txt2img/Downscaling/value": "Pooling Max",
"customscript/llul.py/txt2img/Enable AA for Downscaling./visible": true,
"customscript/llul.py/txt2img/Enable AA for Downscaling./value": false,
"customscript/llul.py/txt2img/interpolation method/visible": true,
"customscript/llul.py/txt2img/interpolation method/value": "Lerp",
"customscript/custom_code.py/txt2img/Python code/visible": true,
"customscript/custom_code.py/txt2img/Python code/value": "",
"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/txt2img/Select prompt/visible": true,
"customscript/prompt_matrix.py/txt2img/Select prompt/value": "positive",
"customscript/prompt_matrix.py/txt2img/Select joining char/visible": true,
"customscript/prompt_matrix.py/txt2img/Select joining char/value": "comma",
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/visible": true,
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/value": 0,
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/minimum": 0,
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/maximum": 500,
"customscript/prompt_matrix.py/txt2img/Grid margins (px)/step": 2,
"customscript/xyz_grid.py/txt2img/X type/visible": true,
"customscript/xyz_grid.py/txt2img/X type/value": "Seed",
"customscript/xyz_grid.py/txt2img/X values/visible": true,
"customscript/xyz_grid.py/txt2img/X values/value": "",
"customscript/xyz_grid.py/txt2img/Y type/visible": true,
"customscript/xyz_grid.py/txt2img/Y type/value": "Nothing",
"customscript/xyz_grid.py/txt2img/Y values/visible": true,
"customscript/xyz_grid.py/txt2img/Y values/value": "",
"customscript/xyz_grid.py/txt2img/Z type/visible": true,
"customscript/xyz_grid.py/txt2img/Z type/value": "Nothing",
"customscript/xyz_grid.py/txt2img/Z values/visible": true,
"customscript/xyz_grid.py/txt2img/Z values/value": "",
"customscript/xyz_grid.py/txt2img/Draw legend/visible": true,
"customscript/xyz_grid.py/txt2img/Draw legend/value": true,
"customscript/xyz_grid.py/txt2img/Keep -1 for seeds/visible": true,
"customscript/xyz_grid.py/txt2img/Keep -1 for seeds/value": false,
"customscript/xyz_grid.py/txt2img/Include Sub Images/visible": true,
"customscript/xyz_grid.py/txt2img/Include Sub Images/value": false,
"customscript/xyz_grid.py/txt2img/Include Sub Grids/visible": true,
"customscript/xyz_grid.py/txt2img/Include Sub Grids/value": false,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/visible": true,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/value": 0,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/minimum": 0,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/maximum": 500,
"customscript/xyz_grid.py/txt2img/Grid margins (px)/step": 2,
"customscript/movie2movie.py/txt2img/Duration/visible": true,
"customscript/movie2movie.py/txt2img/Duration/value": 50.0,
"customscript/movie2movie.py/txt2img/Duration/minimum": 10.0,
"customscript/movie2movie.py/txt2img/Duration/maximum": 200.0,
"customscript/movie2movie.py/txt2img/Duration/step": 10,
"customscript/shift_attention.py/txt2img/Steps (minimum)/visible": true,
"customscript/shift_attention.py/txt2img/Steps (minimum)/value": 10.0,
"customscript/shift_attention.py/txt2img/Frames per second (0 to disable video)/visible": true,
"customscript/shift_attention.py/txt2img/Frames per second (0 to disable video)/value": 30.0,
"customscript/shift_attention.py/txt2img/Number of frames for lead in/out/visible": true,
"customscript/shift_attention.py/txt2img/Number of frames for lead in/out/value": 0.0,
"customscript/shift_attention.py/txt2img/SSIM threshold (1.0=exact copy)/visible": true,
"customscript/shift_attention.py/txt2img/SSIM threshold (1.0=exact copy)/value": 0.0,
"customscript/shift_attention.py/txt2img/SSIM threshold (1.0=exact copy)/minimum": 0.0,
"customscript/shift_attention.py/txt2img/SSIM threshold (1.0=exact copy)/maximum": 1.0,
"customscript/shift_attention.py/txt2img/SSIM threshold (1.0=exact copy)/step": 0.01,
"customscript/shift_attention.py/txt2img/SSIM CenterCrop% (0 to disable)/visible": true,
"customscript/shift_attention.py/txt2img/SSIM CenterCrop% (0 to disable)/value": 0,
"customscript/shift_attention.py/txt2img/SSIM CenterCrop% (0 to disable)/minimum": 0,
"customscript/shift_attention.py/txt2img/SSIM CenterCrop% (0 to disable)/maximum": 100,
"customscript/shift_attention.py/txt2img/SSIM CenterCrop% (0 to disable)/step": 1,
"customscript/shift_attention.py/txt2img/RIFE passes/visible": true,
"customscript/shift_attention.py/txt2img/RIFE passes/value": 0.0,
"customscript/shift_attention.py/txt2img/Drop original frames/visible": true,
"customscript/shift_attention.py/txt2img/Drop original frames/value": false,
"customscript/shift_attention.py/txt2img/Upscaler/visible": true,
"customscript/shift_attention.py/txt2img/Upscaler/value": "Lanczos",
"customscript/shift_attention.py/txt2img/Upscale ratio/visible": true,
"customscript/shift_attention.py/txt2img/Upscale ratio/value": 1.0,
"customscript/shift_attention.py/txt2img/Upscale ratio/minimum": 0.0,
"customscript/shift_attention.py/txt2img/Upscale ratio/maximum": 8.0,
"customscript/shift_attention.py/txt2img/Upscale ratio/step": 0.1,
"customscript/shift_attention.py/txt2img/SSIM minimum step/visible": true,
"customscript/shift_attention.py/txt2img/SSIM minimum step/value": 0.0001,
"customscript/shift_attention.py/txt2img/Desired min SSIM threshold (% of threshold)/visible": true,
"customscript/shift_attention.py/txt2img/Desired min SSIM threshold (% of threshold)/value": 75,
"customscript/shift_attention.py/txt2img/Desired min SSIM threshold (% of threshold)/minimum": 0,
"customscript/shift_attention.py/txt2img/Desired min SSIM threshold (% of threshold)/maximum": 100,
"customscript/shift_attention.py/txt2img/Desired min SSIM threshold (% of threshold)/step": 1,
"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/main.py/txt2img/Model/visible": true,
"customscript/main.py/txt2img/Model/value": "Random",
"customscript/main.py/txt2img/NSFW/visible": true,
"customscript/main.py/txt2img/NSFW/value": false,
"customscript/main.py/txt2img/Share with LAION/visible": true,
"customscript/main.py/txt2img/Share with LAION/value": false,
"customscript/main.py/txt2img/Seed variation/visible": true,
"customscript/main.py/txt2img/Seed variation/value": 1,
"customscript/main.py/txt2img/Seed variation/minimum": 1,
"customscript/main.py/txt2img/Seed variation/maximum": 1000,
"customscript/main.py/txt2img/Seed variation/step": 1,
"customscript/main.py/txt2img/Post processing #1/visible": true,
"customscript/main.py/txt2img/Post processing #1/value": "None",
"customscript/main.py/txt2img/Post processing #2/visible": true,
"customscript/main.py/txt2img/Post processing #2/value": "None",
"customscript/main.py/txt2img/Post processing #3/visible": true,
"customscript/main.py/txt2img/Post processing #3/value": "None",
"img2img/Styles/visible": true,
"img2img/Styles/value": [],
"img2img/Inpaint batch mask directory (required for inpaint batch processing only)/visible": true,
"img2img/Inpaint batch mask directory (required for inpaint batch processing only)/value": "",
"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,
"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/Image CFG Scale/value": 1.5,
"img2img/Image CFG Scale/minimum": 0,
"img2img/Image CFG Scale/maximum": 3.0,
"img2img/Image CFG Scale/step": 0.05,
"img2img/Override settings/value": null,
"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/Max generations (0 = all combinations - the batch count value is ignored)/visible": true,
"customscript/dynamic_prompting.py/img2img/Max generations (0 = all combinations - the batch count value is ignored)/value": 0,
"customscript/dynamic_prompting.py/img2img/Max generations (0 = all combinations - the batch count value is ignored)/minimum": 0,
"customscript/dynamic_prompting.py/img2img/Max generations (0 = all combinations - the batch count value is ignored)/maximum": 1000,
"customscript/dynamic_prompting.py/img2img/Max generations (0 = all combinations - the batch count value is ignored)/step": 1,
"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": 1,
"customscript/dynamic_prompting.py/img2img/Combinatorial batches/maximum": 10,
"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/Magic prompt model/visible": true,
"customscript/dynamic_prompting.py/img2img/Magic prompt model/value": "Gustavosta/MagicPrompt-Stable-Diffusion",
"customscript/dynamic_prompting.py/img2img/Magic prompt blocklist regex/visible": true,
"customscript/dynamic_prompting.py/img2img/Magic prompt blocklist regex/value": "",
"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/Minimum attention/visible": true,
"customscript/dynamic_prompting.py/img2img/Minimum attention/value": 1.1,
"customscript/dynamic_prompting.py/img2img/Minimum attention/minimum": -1,
"customscript/dynamic_prompting.py/img2img/Minimum attention/maximum": 2,
"customscript/dynamic_prompting.py/img2img/Minimum attention/step": 0.1,
"customscript/dynamic_prompting.py/img2img/Maximum attention/visible": true,
"customscript/dynamic_prompting.py/img2img/Maximum attention/value": 1.5,
"customscript/dynamic_prompting.py/img2img/Maximum attention/minimum": -1,
"customscript/dynamic_prompting.py/img2img/Maximum attention/maximum": 2,
"customscript/dynamic_prompting.py/img2img/Maximum attention/step": 0.1,
"customscript/dynamic_prompting.py/img2img/Don't apply to negative prompts/visible": true,
"customscript/dynamic_prompting.py/img2img/Don't apply to negative prompts/value": true,
"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/Fixed seed/visible": true,
"customscript/dynamic_prompting.py/img2img/Fixed seed/value": false,
"img2img/Write raw prompt to image/value": false,
"customscript/dynamic_prompting.py/img2img/Don't generate images/visible": true,
"customscript/dynamic_prompting.py/img2img/Don't generate images/value": false,
"img2img/Write prompts to file/value": false,
"customscript/additional_networks.py/img2img/Enable/visible": true,
"customscript/additional_networks.py/img2img/Enable/value": false,
"customscript/additional_networks.py/img2img/Separate UNet/Text Encoder weights/visible": true,
"customscript/additional_networks.py/img2img/Separate UNet/Text Encoder weights/value": false,
"customscript/additional_networks.py/img2img/Network module 1/visible": true,
"customscript/additional_networks.py/img2img/Network module 1/value": "LoRA",
"customscript/additional_networks.py/img2img/Model 1/visible": true,
"customscript/additional_networks.py/img2img/Model 1/value": "None",
"img2img/Weight 1/visible": true,
"img2img/Weight 1/value": 1.0,
"img2img/Weight 1/minimum": -1.0,
"img2img/Weight 1/maximum": 2.0,
"img2img/Weight 1/step": 0.05,
"customscript/additional_networks.py/img2img/UNet Weight 1/value": 1.0,
"customscript/additional_networks.py/img2img/UNet Weight 1/minimum": -1.0,
"customscript/additional_networks.py/img2img/UNet Weight 1/maximum": 2.0,
"customscript/additional_networks.py/img2img/UNet Weight 1/step": 0.05,
"customscript/additional_networks.py/img2img/TEnc Weight 1/value": 1.0,
"customscript/additional_networks.py/img2img/TEnc Weight 1/minimum": -1.0,
"customscript/additional_networks.py/img2img/TEnc Weight 1/maximum": 2.0,
"customscript/additional_networks.py/img2img/TEnc Weight 1/step": 0.05,
"customscript/additional_networks.py/img2img/Network module 2/visible": true,
"customscript/additional_networks.py/img2img/Network module 2/value": "LoRA",
"customscript/additional_networks.py/img2img/Model 2/visible": true,
"customscript/additional_networks.py/img2img/Model 2/value": "None",
"img2img/Weight 2/visible": true,
"img2img/Weight 2/value": 1.0,
"img2img/Weight 2/minimum": -1.0,
"img2img/Weight 2/maximum": 2.0,
"img2img/Weight 2/step": 0.05,
"customscript/additional_networks.py/img2img/UNet Weight 2/value": 1.0,
"customscript/additional_networks.py/img2img/UNet Weight 2/minimum": -1.0,
"customscript/additional_networks.py/img2img/UNet Weight 2/maximum": 2.0,
"customscript/additional_networks.py/img2img/UNet Weight 2/step": 0.05,
"customscript/additional_networks.py/img2img/TEnc Weight 2/value": 1.0,
"customscript/additional_networks.py/img2img/TEnc Weight 2/minimum": -1.0,
"customscript/additional_networks.py/img2img/TEnc Weight 2/maximum": 2.0,
"customscript/additional_networks.py/img2img/TEnc Weight 2/step": 0.05,
"customscript/additional_networks.py/img2img/Network module 3/visible": true,
"customscript/additional_networks.py/img2img/Network module 3/value": "LoRA",
"customscript/additional_networks.py/img2img/Model 3/visible": true,
"customscript/additional_networks.py/img2img/Model 3/value": "None",
"img2img/Weight 3/visible": true,
"img2img/Weight 3/value": 1.0,
"img2img/Weight 3/minimum": -1.0,
"img2img/Weight 3/maximum": 2.0,
"img2img/Weight 3/step": 0.05,
"customscript/additional_networks.py/img2img/UNet Weight 3/value": 1.0,
"customscript/additional_networks.py/img2img/UNet Weight 3/minimum": -1.0,
"customscript/additional_networks.py/img2img/UNet Weight 3/maximum": 2.0,
"customscript/additional_networks.py/img2img/UNet Weight 3/step": 0.05,
"customscript/additional_networks.py/img2img/TEnc Weight 3/value": 1.0,
"customscript/additional_networks.py/img2img/TEnc Weight 3/minimum": -1.0,
"customscript/additional_networks.py/img2img/TEnc Weight 3/maximum": 2.0,
"customscript/additional_networks.py/img2img/TEnc Weight 3/step": 0.05,
"customscript/additional_networks.py/img2img/Network module 4/visible": true,
"customscript/additional_networks.py/img2img/Network module 4/value": "LoRA",
"customscript/additional_networks.py/img2img/Model 4/visible": true,
"customscript/additional_networks.py/img2img/Model 4/value": "None",
"img2img/Weight 4/visible": true,
"img2img/Weight 4/value": 1.0,
"img2img/Weight 4/minimum": -1.0,
"img2img/Weight 4/maximum": 2.0,
"img2img/Weight 4/step": 0.05,
"customscript/additional_networks.py/img2img/UNet Weight 4/value": 1.0,
"customscript/additional_networks.py/img2img/UNet Weight 4/minimum": -1.0,
"customscript/additional_networks.py/img2img/UNet Weight 4/maximum": 2.0,
"customscript/additional_networks.py/img2img/UNet Weight 4/step": 0.05,
"customscript/additional_networks.py/img2img/TEnc Weight 4/value": 1.0,
"customscript/additional_networks.py/img2img/TEnc Weight 4/minimum": -1.0,
"customscript/additional_networks.py/img2img/TEnc Weight 4/maximum": 2.0,
"customscript/additional_networks.py/img2img/TEnc Weight 4/step": 0.05,
"customscript/additional_networks.py/img2img/Network module 5/visible": true,
"customscript/additional_networks.py/img2img/Network module 5/value": "LoRA",
"customscript/additional_networks.py/img2img/Model 5/visible": true,
"customscript/additional_networks.py/img2img/Model 5/value": "None",
"img2img/Weight 5/visible": true,
"img2img/Weight 5/value": 1.0,
"img2img/Weight 5/minimum": -1.0,
"img2img/Weight 5/maximum": 2.0,
"img2img/Weight 5/step": 0.05,
"customscript/additional_networks.py/img2img/UNet Weight 5/value": 1.0,
"customscript/additional_networks.py/img2img/UNet Weight 5/minimum": -1.0,
"customscript/additional_networks.py/img2img/UNet Weight 5/maximum": 2.0,
"customscript/additional_networks.py/img2img/UNet Weight 5/step": 0.05,
"customscript/additional_networks.py/img2img/TEnc Weight 5/value": 1.0,
"customscript/additional_networks.py/img2img/TEnc Weight 5/minimum": -1.0,
"customscript/additional_networks.py/img2img/TEnc Weight 5/maximum": 2.0,
"customscript/additional_networks.py/img2img/TEnc Weight 5/step": 0.05,
"customscript/controlnet.py/img2img/Enable/visible": true,
"customscript/controlnet.py/img2img/Enable/value": false,
"customscript/controlnet.py/img2img/Invert Input Color/visible": true,
"customscript/controlnet.py/img2img/Invert Input Color/value": false,
"customscript/controlnet.py/img2img/RGB to BGR/visible": true,
"customscript/controlnet.py/img2img/RGB to BGR/value": false,
"customscript/controlnet.py/img2img/Low VRAM/visible": true,
"customscript/controlnet.py/img2img/Low VRAM/value": false,
"customscript/controlnet.py/img2img/Guess Mode/visible": true,
"customscript/controlnet.py/img2img/Guess Mode/value": false,
"customscript/controlnet.py/img2img/Preprocessor/visible": true,
"customscript/controlnet.py/img2img/Preprocessor/value": "none",
"customscript/controlnet.py/img2img/Model/visible": true,
"customscript/controlnet.py/img2img/Model/value": "None",
"customscript/controlnet.py/img2img/Weight/visible": true,
"customscript/controlnet.py/img2img/Weight/value": 1.0,
"customscript/controlnet.py/img2img/Weight/minimum": 0.0,
"customscript/controlnet.py/img2img/Weight/maximum": 2.0,
"customscript/controlnet.py/img2img/Weight/step": 0.05,
"customscript/controlnet.py/img2img/Guidance Start (T)/visible": true,
"customscript/controlnet.py/img2img/Guidance Start (T)/value": 0.0,
"customscript/controlnet.py/img2img/Guidance Start (T)/minimum": 0.0,
"customscript/controlnet.py/img2img/Guidance Start (T)/maximum": 1.0,
"customscript/controlnet.py/img2img/Guidance Start (T)/step": 0.01,
"customscript/controlnet.py/img2img/Guidance End (T)/visible": true,
"customscript/controlnet.py/img2img/Guidance End (T)/value": 1.0,
"customscript/controlnet.py/img2img/Guidance End (T)/minimum": 0.0,
"customscript/controlnet.py/img2img/Guidance End (T)/maximum": 1.0,
"customscript/controlnet.py/img2img/Guidance End (T)/step": 0.01,
"customscript/controlnet.py/img2img/Annotator resolution/visible": true,
"customscript/controlnet.py/img2img/Annotator resolution/value": 64,
"customscript/controlnet.py/img2img/Annotator resolution/minimum": 64,
"customscript/controlnet.py/img2img/Annotator resolution/maximum": 2048,
"customscript/controlnet.py/img2img/Annotator resolution/step": 10,
"customscript/controlnet.py/img2img/Threshold A/visible": true,
"customscript/controlnet.py/img2img/Threshold A/value": 64,
"customscript/controlnet.py/img2img/Threshold A/minimum": 64,
"customscript/controlnet.py/img2img/Threshold A/maximum": 1024,
"customscript/controlnet.py/img2img/Threshold A/step": 1,
"customscript/controlnet.py/img2img/Threshold B/visible": true,
"customscript/controlnet.py/img2img/Threshold B/value": 64,
"customscript/controlnet.py/img2img/Threshold B/minimum": 64,
"customscript/controlnet.py/img2img/Threshold B/maximum": 1024,
"customscript/controlnet.py/img2img/Threshold B/step": 1,
"customscript/controlnet.py/img2img/Resize Mode/visible": true,
"customscript/controlnet.py/img2img/Resize Mode/value": "Scale to Fit (Inner Fit)",
"img2img/Canvas Width/visible": true,
"img2img/Canvas Width/value": 512,
"img2img/Canvas Width/minimum": 256,
"img2img/Canvas Width/maximum": 1024,
"img2img/Canvas Width/step": 64,
"img2img/Canvas Height/visible": true,
"img2img/Canvas Height/value": 512,
"img2img/Canvas Height/minimum": 256,
"img2img/Canvas Height/maximum": 1024,
"img2img/Canvas Height/step": 64,
"customscript/cutoff.py/img2img/Enabled/visible": true,
"customscript/cutoff.py/img2img/Enabled/value": false,
"customscript/cutoff.py/img2img/Target tokens (comma separated)/visible": true,
"customscript/cutoff.py/img2img/Target tokens (comma separated)/value": "",
"customscript/cutoff.py/img2img/Weight/visible": true,
"customscript/cutoff.py/img2img/Weight/value": 0.5,
"customscript/cutoff.py/img2img/Weight/minimum": -1.0,
"customscript/cutoff.py/img2img/Weight/maximum": 2.0,
"customscript/cutoff.py/img2img/Weight/step": 0.01,
"customscript/cutoff.py/img2img/Disable for Negative prompt./visible": true,
"customscript/cutoff.py/img2img/Disable for Negative prompt./value": true,
"customscript/cutoff.py/img2img/Cutoff strongly./visible": true,
"customscript/cutoff.py/img2img/Cutoff strongly./value": false,
"customscript/cutoff.py/img2img/Padding token (ID or single token)/visible": true,
"customscript/cutoff.py/img2img/Padding token (ID or single token)/value": "",
"customscript/cutoff.py/img2img/Interpolation method/visible": true,
"customscript/cutoff.py/img2img/Interpolation method/value": "Lerp",
"customscript/cutoff.py/img2img/Debug log/visible": true,
"customscript/cutoff.py/img2img/Debug log/value": false,
"customscript/llul.py/img2img/Enabled/visible": true,
"customscript/llul.py/img2img/Enabled/value": false,
"customscript/llul.py/img2img/Multiplication (2^N)/visible": true,
"customscript/llul.py/img2img/Multiplication (2^N)/value": 1,
"customscript/llul.py/img2img/Multiplication (2^N)/minimum": 1,
"customscript/llul.py/img2img/Multiplication (2^N)/maximum": 5,
"customscript/llul.py/img2img/Multiplication (2^N)/step": 1,
"customscript/llul.py/img2img/Weight/visible": true,
"customscript/llul.py/img2img/Weight/value": 0.15,
"customscript/llul.py/img2img/Weight/minimum": -1,
"customscript/llul.py/img2img/Weight/maximum": 2,
"customscript/llul.py/img2img/Weight/step": 0.01,
"customscript/llul.py/img2img/Force convert half to float on interpolation (for some platforms)/visible": true,
"customscript/llul.py/img2img/Force convert half to float on interpolation (for some platforms)/value": false,
"customscript/llul.py/img2img/I know what I am doing./visible": true,
"customscript/llul.py/img2img/I know what I am doing./value": false,
"customscript/llul.py/img2img/Layers/visible": true,
"customscript/llul.py/img2img/Layers/value": "OUT",
"customscript/llul.py/img2img/Start steps/visible": true,
"customscript/llul.py/img2img/Start steps/value": 5,
"customscript/llul.py/img2img/Start steps/minimum": 1,
"customscript/llul.py/img2img/Start steps/maximum": 300,
"customscript/llul.py/img2img/Start steps/step": 1,
"customscript/llul.py/img2img/Max steps/visible": true,
"customscript/llul.py/img2img/Max steps/value": 0,
"customscript/llul.py/img2img/Max steps/minimum": 0,
"customscript/llul.py/img2img/Max steps/maximum": 300,
"customscript/llul.py/img2img/Max steps/step": 1,
"customscript/llul.py/img2img/Upscaling/visible": true,
"customscript/llul.py/img2img/Upscaling/value": "Bilinear",
"customscript/llul.py/img2img/Enable AA for Upscaling./visible": true,
"customscript/llul.py/img2img/Enable AA for Upscaling./value": false,
"customscript/llul.py/img2img/Downscaling/visible": true,
"customscript/llul.py/img2img/Downscaling/value": "Pooling Max",
"customscript/llul.py/img2img/Enable AA for Downscaling./visible": true,
"customscript/llul.py/img2img/Enable AA for Downscaling./value": false,
"customscript/llul.py/img2img/interpolation method/visible": true,
"customscript/llul.py/img2img/interpolation method/value": "Lerp",
"customscript/custom_code.py/img2img/Python code/visible": true,
"customscript/custom_code.py/img2img/Python code/value": "",
"customscript/loopback.py/img2img/Append interrogated prompt at each iteration/visible": true,
"customscript/loopback.py/img2img/Append interrogated prompt at each iteration/value": "None",
"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/prompt_matrix.py/img2img/Select prompt/visible": true,
"customscript/prompt_matrix.py/img2img/Select prompt/value": "positive",
"customscript/prompt_matrix.py/img2img/Select joining char/visible": true,
"customscript/prompt_matrix.py/img2img/Select joining char/value": "comma",
"customscript/prompt_matrix.py/img2img/Grid margins (px)/visible": true,
"customscript/prompt_matrix.py/img2img/Grid margins (px)/value": 0,
"customscript/prompt_matrix.py/img2img/Grid margins (px)/minimum": 0,
"customscript/prompt_matrix.py/img2img/Grid margins (px)/maximum": 500,
"customscript/prompt_matrix.py/img2img/Grid margins (px)/step": 2,
"customscript/sd_upscale.py/img2img/Scale Factor/visible": true,
"customscript/sd_upscale.py/img2img/Scale Factor/value": 2.0,
"customscript/sd_upscale.py/img2img/Scale Factor/minimum": 1.0,
"customscript/sd_upscale.py/img2img/Scale Factor/maximum": 4.0,
"customscript/sd_upscale.py/img2img/Scale Factor/step": 0.05,
"customscript/xyz_grid.py/img2img/X type/visible": true,
"customscript/xyz_grid.py/img2img/X type/value": "Seed",
"customscript/xyz_grid.py/img2img/X values/visible": true,
"customscript/xyz_grid.py/img2img/X values/value": "",
"customscript/xyz_grid.py/img2img/Y type/visible": true,
"customscript/xyz_grid.py/img2img/Y type/value": "Nothing",
"customscript/xyz_grid.py/img2img/Y values/visible": true,
"customscript/xyz_grid.py/img2img/Y values/value": "",
"customscript/xyz_grid.py/img2img/Z type/visible": true,
"customscript/xyz_grid.py/img2img/Z type/value": "Nothing",
"customscript/xyz_grid.py/img2img/Z values/visible": true,
"customscript/xyz_grid.py/img2img/Z values/value": "",
"customscript/xyz_grid.py/img2img/Draw legend/visible": true,
"customscript/xyz_grid.py/img2img/Draw legend/value": true,
"customscript/xyz_grid.py/img2img/Keep -1 for seeds/visible": true,
"customscript/xyz_grid.py/img2img/Keep -1 for seeds/value": false,
"customscript/xyz_grid.py/img2img/Include Sub Images/visible": true,
"customscript/xyz_grid.py/img2img/Include Sub Images/value": false,
"customscript/xyz_grid.py/img2img/Include Sub Grids/visible": true,
"customscript/xyz_grid.py/img2img/Include Sub Grids/value": false,
"customscript/xyz_grid.py/img2img/Grid margins (px)/visible": true,
"customscript/xyz_grid.py/img2img/Grid margins (px)/value": 0,
"customscript/xyz_grid.py/img2img/Grid margins (px)/minimum": 0,
"customscript/xyz_grid.py/img2img/Grid margins (px)/maximum": 500,
"customscript/xyz_grid.py/img2img/Grid margins (px)/step": 2,
"customscript/movie2movie.py/img2img/Duration/visible": true,
"customscript/movie2movie.py/img2img/Duration/value": 50.0,
"customscript/movie2movie.py/img2img/Duration/minimum": 10.0,
"customscript/movie2movie.py/img2img/Duration/maximum": 200.0,
"customscript/movie2movie.py/img2img/Duration/step": 10,
"customscript/shift_attention.py/img2img/Steps (minimum)/visible": true,
"customscript/shift_attention.py/img2img/Steps (minimum)/value": 10.0,
"customscript/shift_attention.py/img2img/Frames per second (0 to disable video)/visible": true,
"customscript/shift_attention.py/img2img/Frames per second (0 to disable video)/value": 30.0,
"customscript/shift_attention.py/img2img/Number of frames for lead in/out/visible": true,
"customscript/shift_attention.py/img2img/Number of frames for lead in/out/value": 0.0,
"customscript/shift_attention.py/img2img/SSIM threshold (1.0=exact copy)/visible": true,
"customscript/shift_attention.py/img2img/SSIM threshold (1.0=exact copy)/value": 0.0,
"customscript/shift_attention.py/img2img/SSIM threshold (1.0=exact copy)/minimum": 0.0,
"customscript/shift_attention.py/img2img/SSIM threshold (1.0=exact copy)/maximum": 1.0,
"customscript/shift_attention.py/img2img/SSIM threshold (1.0=exact copy)/step": 0.01,
"customscript/shift_attention.py/img2img/SSIM CenterCrop% (0 to disable)/visible": true,
"customscript/shift_attention.py/img2img/SSIM CenterCrop% (0 to disable)/value": 0,
"customscript/shift_attention.py/img2img/SSIM CenterCrop% (0 to disable)/minimum": 0,
"customscript/shift_attention.py/img2img/SSIM CenterCrop% (0 to disable)/maximum": 100,
"customscript/shift_attention.py/img2img/SSIM CenterCrop% (0 to disable)/step": 1,
"customscript/shift_attention.py/img2img/RIFE passes/visible": true,
"customscript/shift_attention.py/img2img/RIFE passes/value": 0.0,
"customscript/shift_attention.py/img2img/Drop original frames/visible": true,
"customscript/shift_attention.py/img2img/Drop original frames/value": false,
"customscript/shift_attention.py/img2img/Upscaler/visible": true,
"customscript/shift_attention.py/img2img/Upscaler/value": "Lanczos",
"customscript/shift_attention.py/img2img/Upscale ratio/visible": true,
"customscript/shift_attention.py/img2img/Upscale ratio/value": 1.0,
"customscript/shift_attention.py/img2img/Upscale ratio/minimum": 0.0,
"customscript/shift_attention.py/img2img/Upscale ratio/maximum": 8.0,
"customscript/shift_attention.py/img2img/Upscale ratio/step": 0.1,
"customscript/shift_attention.py/img2img/SSIM minimum step/visible": true,
"customscript/shift_attention.py/img2img/SSIM minimum step/value": 0.0001,
"customscript/shift_attention.py/img2img/Desired min SSIM threshold (% of threshold)/visible": true,
"customscript/shift_attention.py/img2img/Desired min SSIM threshold (% of threshold)/value": 75,
"customscript/shift_attention.py/img2img/Desired min SSIM threshold (% of threshold)/minimum": 0,
"customscript/shift_attention.py/img2img/Desired min SSIM threshold (% of threshold)/maximum": 100,
"customscript/shift_attention.py/img2img/Desired min SSIM threshold (% of threshold)/step": 1,
"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/main.py/img2img/Model/visible": true,
"customscript/main.py/img2img/Model/value": "Random",
"customscript/main.py/img2img/NSFW/visible": true,
"customscript/main.py/img2img/NSFW/value": false,
"customscript/main.py/img2img/Share with LAION/visible": true,
"customscript/main.py/img2img/Share with LAION/value": false,
"customscript/main.py/img2img/Seed variation/visible": true,
"customscript/main.py/img2img/Seed variation/value": 1,
"customscript/main.py/img2img/Seed variation/minimum": 1,
"customscript/main.py/img2img/Seed variation/maximum": 1000,
"customscript/main.py/img2img/Seed variation/step": 1,
"customscript/main.py/img2img/Post processing #1/visible": true,
"customscript/main.py/img2img/Post processing #1/value": "None",
"customscript/main.py/img2img/Post processing #2/visible": true,
"customscript/main.py/img2img/Post processing #2/value": "None",
"customscript/main.py/img2img/Post processing #3/visible": true,
"customscript/main.py/img2img/Post processing #3/value": "None",
"customscript/postprocessing_upscale.py/extras/Resize/visible": true,
"customscript/postprocessing_upscale.py/extras/Resize/value": 4,
"customscript/postprocessing_upscale.py/extras/Resize/minimum": 1.0,
"customscript/postprocessing_upscale.py/extras/Resize/maximum": 8.0,
"customscript/postprocessing_upscale.py/extras/Resize/step": 0.05,
"customscript/postprocessing_upscale.py/extras/Width/visible": true,
"customscript/postprocessing_upscale.py/extras/Width/value": 512,
"customscript/postprocessing_upscale.py/extras/Height/visible": true,
"customscript/postprocessing_upscale.py/extras/Height/value": 512,
"customscript/postprocessing_upscale.py/extras/Crop to fit/visible": true,
"customscript/postprocessing_upscale.py/extras/Crop to fit/value": true,
"customscript/postprocessing_upscale.py/extras/Upscaler 1/visible": true,
"customscript/postprocessing_upscale.py/extras/Upscaler 1/value": "None",
"customscript/postprocessing_upscale.py/extras/Upscaler 2/visible": true,
"customscript/postprocessing_upscale.py/extras/Upscaler 2/value": "None",
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/visible": true,
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/value": 0.0,
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/minimum": 0.0,
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/maximum": 1.0,
"customscript/postprocessing_upscale.py/extras/Upscaler 2 visibility/step": 0.001,
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/visible": true,
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/value": 0,
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/minimum": 0.0,
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/maximum": 1.0,
"customscript/postprocessing_gfpgan.py/extras/GFPGAN visibility/step": 0.001,
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/visible": true,
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/value": 0,
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/minimum": 0.0,
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/maximum": 1.0,
"customscript/postprocessing_codeformer.py/extras/CodeFormer visibility/step": 0.001,
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/visible": true,
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/value": 0,
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/minimum": 0.0,
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/maximum": 1.0,
"customscript/postprocessing_codeformer.py/extras/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/step": 0.001,
"modelmerger/Primary model (A)/visible": true,
"modelmerger/Primary model (A)/value": null,
"modelmerger/Secondary model (B)/visible": true,
"modelmerger/Secondary model (B)/value": null,
"modelmerger/Tertiary model (C)/visible": true,
"modelmerger/Tertiary model (C)/value": null,
"modelmerger/Copy config from/visible": true,
"modelmerger/Copy config from/value": "A, B or C",
"modelmerger/Bake in VAE/visible": true,
"modelmerger/Bake in VAE/value": "None",
"modelmerger/Discard weights with matching name/visible": true,
"modelmerger/Discard weights with matching name/value": "",
"train/Name/visible": true,
"train/Name/value": "",
"train/Initialization text/visible": true,
"train/Initialization text/value": "*",
"train/Number of vectors per token/visible": true,
"train/Number of vectors per token/value": 1,
"train/Number of vectors per token/minimum": 1,
"train/Number of vectors per token/maximum": 75,
"train/Number of vectors per token/step": 1,
"train/Overwrite Old Embedding/visible": true,
"train/Overwrite Old Embedding/value": false,
"train/Enter hypernetwork layer structure/visible": true,
"train/Enter hypernetwork layer structure/value": "1, 2, 1",
"train/Select activation function of hypernetwork. Recommended : Swish / Linear(none)/visible": true,
"train/Select activation function of hypernetwork. Recommended : Swish / Linear(none)/value": "linear",
"train/Select Layer weights initialization. Recommended: Kaiming for relu-like, Xavier for sigmoid-like, Normal otherwise/visible": true,
"train/Select Layer weights initialization. Recommended: Kaiming for relu-like, Xavier for sigmoid-like, Normal otherwise/value": "Normal",
"train/Add layer normalization/visible": true,
"train/Add layer normalization/value": false,
"train/Use dropout/visible": true,
"train/Use dropout/value": false,
"train/Enter hypernetwork Dropout structure (or empty). Recommended : 0~0.35 incrementing sequence: 0, 0.05, 0.15/visible": true,
"train/Enter hypernetwork Dropout structure (or empty). Recommended : 0~0.35 incrementing sequence: 0, 0.05, 0.15/value": "0, 0, 0",
"train/Overwrite Old Hypernetwork/visible": true,
"train/Overwrite Old Hypernetwork/value": false,
"train/Source directory/visible": true,
"train/Source directory/value": "",
"train/Destination directory/visible": true,
"train/Destination directory/value": "",
"train/Width/visible": true,
"train/Width/value": 512,
"train/Width/minimum": 64,
"train/Width/maximum": 2048,
"train/Width/step": 8,
"train/Height/visible": true,
"train/Height/value": 512,
"train/Height/minimum": 64,
"train/Height/maximum": 2048,
"train/Height/step": 8,
"train/Existing Caption txt Action/visible": true,
"train/Existing Caption txt Action/value": "ignore",
"train/Create flipped copies/visible": true,
"train/Create flipped copies/value": false,
"train/Split oversized images/visible": true,
"train/Split oversized images/value": false,
"train/Auto focal point crop/visible": true,
"train/Auto focal point crop/value": false,
"train/Auto-sized crop/visible": true,
"train/Auto-sized crop/value": false,
"train/Use BLIP for caption/visible": true,
"train/Use BLIP for caption/value": false,
"train/Use deepbooru for caption/visible": true,
"train/Use deepbooru for caption/value": false,
"train/Split image threshold/visible": true,
"train/Split image threshold/value": 0.5,
"train/Split image threshold/minimum": 0.0,
"train/Split image threshold/maximum": 1.0,
"train/Split image threshold/step": 0.05,
"train/Split image overlap ratio/visible": true,
"train/Split image overlap ratio/value": 0.2,
"train/Split image overlap ratio/minimum": 0.0,
"train/Split image overlap ratio/maximum": 0.9,
"train/Split image overlap ratio/step": 0.05,
"train/Focal point face weight/visible": true,
"train/Focal point face weight/value": 0.9,
"train/Focal point face weight/minimum": 0.0,
"train/Focal point face weight/maximum": 1.0,
"train/Focal point face weight/step": 0.05,
"train/Focal point entropy weight/visible": true,
"train/Focal point entropy weight/value": 0.15,
"train/Focal point entropy weight/minimum": 0.0,
"train/Focal point entropy weight/maximum": 1.0,
"train/Focal point entropy weight/step": 0.05,
"train/Focal point edges weight/visible": true,
"train/Focal point edges weight/value": 0.5,
"train/Focal point edges weight/minimum": 0.0,
"train/Focal point edges weight/maximum": 1.0,
"train/Focal point edges weight/step": 0.05,
"train/Create debug image/visible": true,
"train/Create debug image/value": false,
"train/Dimension lower bound/visible": true,
"train/Dimension lower bound/value": 384,
"train/Dimension lower bound/minimum": 64,
"train/Dimension lower bound/maximum": 2048,
"train/Dimension lower bound/step": 8,
"train/Dimension upper bound/visible": true,
"train/Dimension upper bound/value": 768,
"train/Dimension upper bound/minimum": 64,
"train/Dimension upper bound/maximum": 2048,
"train/Dimension upper bound/step": 8,
"train/Area lower bound/visible": true,
"train/Area lower bound/value": 4096,
"train/Area lower bound/minimum": 4096,
"train/Area lower bound/maximum": 4194304,
"train/Area lower bound/step": 1,
"train/Area upper bound/visible": true,
"train/Area upper bound/value": 409600,
"train/Area upper bound/minimum": 4096,
"train/Area upper bound/maximum": 4194304,
"train/Area upper bound/step": 1,
"train/Resizing objective/visible": true,
"train/Resizing objective/value": "Maximize area",
"train/Error threshold/visible": true,
"train/Error threshold/value": 0.1,
"train/Error threshold/minimum": 0,
"train/Error threshold/maximum": 1,
"train/Error threshold/step": 0.01,
"train/Embedding/visible": true,
"train/Embedding/value": null,
"train/Hypernetwork/visible": true,
"train/Hypernetwork/value": null,
"train/Embedding Learning rate/visible": true,
"train/Embedding Learning rate/value": "0.005",
"train/Hypernetwork Learning rate/visible": true,
"train/Hypernetwork Learning rate/value": "0.00001",
"train/Gradient Clipping/visible": true,
"train/Gradient Clipping/value": "disabled",
"train/Batch size/visible": true,
"train/Batch size/value": 1,
"train/Gradient accumulation steps/visible": true,
"train/Gradient accumulation steps/value": 1,
"train/Dataset directory/visible": true,
"train/Dataset directory/value": "",
"train/Log directory/visible": true,
"train/Log directory/value": "textual_inversion",
"train/Prompt template/visible": true,
"train/Prompt template/value": "style_filewords.txt",
"train/Do not resize images/visible": true,
"train/Do not resize images/value": false,
"train/Max steps/visible": true,
"train/Max steps/value": 100000,
"train/Save an image to log directory every N steps, 0 to disable/visible": true,
"train/Save an image to log directory every N steps, 0 to disable/value": 500,
"train/Save a copy of embedding to log directory every N steps, 0 to disable/visible": true,
"train/Save a copy of embedding to log directory every N steps, 0 to disable/value": 500,
"train/Use PNG alpha channel as loss weight/visible": true,
"train/Use PNG alpha channel as loss weight/value": false,
"train/Save images with embedding in PNG chunks/visible": true,
"train/Save images with embedding in PNG chunks/value": true,
"train/Read parameters (prompt, etc...) from txt2img tab when making previews/visible": true,
"train/Read parameters (prompt, etc...) from txt2img tab when making previews/value": false,
"train/Shuffle tags by ',' when creating prompts./visible": true,
"train/Shuffle tags by ',' when creating prompts./value": false,
"train/Drop out tags when creating prompts./visible": true,
"train/Drop out tags when creating prompts./value": 0,
"train/Drop out tags when creating prompts./minimum": 0,
"train/Drop out tags when creating prompts./maximum": 1,
"train/Drop out tags when creating prompts./step": 0.1,
"train/Choose latent sampling method/visible": true,
"train/Choose latent sampling method/value": "once",
"customscript/postprocessing_codeformer.py/txt2img/CodeFormer visibility/visible": true,
"customscript/postprocessing_codeformer.py/txt2img/CodeFormer visibility/value": 0,
"customscript/postprocessing_codeformer.py/txt2img/CodeFormer visibility/minimum": 0.0,
"customscript/postprocessing_codeformer.py/txt2img/CodeFormer visibility/maximum": 1.0,
"customscript/postprocessing_codeformer.py/txt2img/CodeFormer visibility/step": 0.001,
"customscript/postprocessing_codeformer.py/txt2img/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/visible": true,
"customscript/postprocessing_codeformer.py/txt2img/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/value": 0,
"customscript/postprocessing_codeformer.py/txt2img/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/minimum": 0.0,
"customscript/postprocessing_codeformer.py/txt2img/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/maximum": 1.0,
"customscript/postprocessing_codeformer.py/txt2img/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/step": 0.001,
"customscript/postprocessing_gfpgan.py/txt2img/GFPGAN visibility/visible": true,
"customscript/postprocessing_gfpgan.py/txt2img/GFPGAN visibility/value": 0,
"customscript/postprocessing_gfpgan.py/txt2img/GFPGAN visibility/minimum": 0.0,
"customscript/postprocessing_gfpgan.py/txt2img/GFPGAN visibility/maximum": 1.0,
"customscript/postprocessing_gfpgan.py/txt2img/GFPGAN visibility/step": 0.001,
"txt2img/Input Directory/visible": true,
"txt2img/Input Directory/value": "",
"txt2img/New Canvas Width/visible": true,
"txt2img/New Canvas Width/value": 512,
"txt2img/New Canvas Width/minimum": 256,
"txt2img/New Canvas Width/maximum": 1024,
"txt2img/New Canvas Width/step": 64,
"txt2img/New Canvas Height/visible": true,
"txt2img/New Canvas Height/value": 512,
"txt2img/New Canvas Height/minimum": 256,
"txt2img/New Canvas Height/maximum": 1024,
"txt2img/New Canvas Height/step": 64,
"txt2img/Enable/visible": true,
"txt2img/Enable/value": false,
"txt2img/Low VRAM/visible": true,
"txt2img/Low VRAM/value": false,
"txt2img/Pixel Perfect/visible": true,
"txt2img/Pixel Perfect/value": false,
"txt2img/Allow Preview/visible": true,
"txt2img/Allow Preview/value": false,
"txt2img/Control Type/visible": true,
"txt2img/Control Type/value": "All",
"txt2img/Preprocessor/visible": true,
"txt2img/Preprocessor/value": "none",
"txt2img/Model/visible": true,
"txt2img/Model/value": "None",
"txt2img/Control Weight/visible": true,
"txt2img/Control Weight/value": 1.0,
"txt2img/Control Weight/minimum": 0.0,
"txt2img/Control Weight/maximum": 2.0,
"txt2img/Control Weight/step": 0.05,
"txt2img/Starting Control Step/visible": true,
"txt2img/Starting Control Step/value": 0.0,
"txt2img/Starting Control Step/minimum": 0.0,
"txt2img/Starting Control Step/maximum": 1.0,
"txt2img/Starting Control Step/step": 0.01,
"txt2img/Ending Control Step/visible": true,
"txt2img/Ending Control Step/value": 1.0,
"txt2img/Ending Control Step/minimum": 0.0,
"txt2img/Ending Control Step/maximum": 1.0,
"txt2img/Ending Control Step/step": 0.01,
"txt2img/Preprocessor resolution/value": 512,
"txt2img/Preprocessor resolution/minimum": 64,
"txt2img/Preprocessor resolution/maximum": 2048,
"txt2img/Preprocessor resolution/step": 10,
"txt2img/Threshold A/value": 64,
"txt2img/Threshold A/minimum": 64,
"txt2img/Threshold A/maximum": 1024,
"txt2img/Threshold A/step": 1,
"txt2img/Threshold B/value": 64,
"txt2img/Threshold B/minimum": 64,
"txt2img/Threshold B/maximum": 1024,
"txt2img/Threshold B/step": 1,
"txt2img/Control Mode/visible": true,
"txt2img/Control Mode/value": "Balanced",
"txt2img/Resize Mode/visible": true,
"txt2img/Resize Mode/value": "Crop and Resize",
"txt2img/[Loopback] Automatically send generated images to this ControlNet unit/visible": true,
"txt2img/[Loopback] Automatically send generated images to this ControlNet unit/value": false,
"customscript/anti-burn.py/txt2img/Enable Anti Burn (and everything)/visible": true,
"customscript/anti-burn.py/txt2img/Enable Anti Burn (and everything)/value": false,
"customscript/anti-burn.py/txt2img/Store all steps of inference also (slow!)/visible": true,
"customscript/anti-burn.py/txt2img/Store all steps of inference also (slow!)/value": false,
"customscript/anti-burn.py/txt2img/Revert to buggy half-steps (not recommended)/visible": true,
"customscript/anti-burn.py/txt2img/Revert to buggy half-steps (not recommended)/value": false,
"customscript/anti-burn.py/txt2img/Count of final steps to average together:/visible": true,
"customscript/anti-burn.py/txt2img/Count of final steps to average together:/value": 3,
"customscript/anti-burn.py/txt2img/Count of final steps to average together:/minimum": 1,
"customscript/anti-burn.py/txt2img/Count of final steps to average together:/maximum": 64,
"customscript/anti-burn.py/txt2img/Count of final steps to average together:/step": 1,
"customscript/anti-burn.py/txt2img/Skip this many very last steps: /visible": true,
"customscript/anti-burn.py/txt2img/Skip this many very last steps: /value": 0,
"customscript/anti-burn.py/txt2img/Skip this many very last steps: /minimum": 0,
"customscript/anti-burn.py/txt2img/Skip this many very last steps: /maximum": 24,
"customscript/anti-burn.py/txt2img/Skip this many very last steps: /step": 1,
"customscript/anti-burn.py/txt2img/Stop first pass of highres.fix after this step number (0 to disable)/visible": true,
"customscript/anti-burn.py/txt2img/Stop first pass of highres.fix after this step number (0 to disable)/value": 0,
"customscript/anti-burn.py/txt2img/Stop first pass of highres.fix after this step number (0 to disable)/minimum": 0,
"customscript/anti-burn.py/txt2img/Stop first pass of highres.fix after this step number (0 to disable)/maximum": 80,
"customscript/anti-burn.py/txt2img/Stop first pass of highres.fix after this step number (0 to disable)/step": 1,
"customscript/anti-burn.py/txt2img/Debug Anti Burn (output checked pattern 2\u00d72 with averaged 2,3 cells overlay)/visible": true,
"customscript/anti-burn.py/txt2img/Debug Anti Burn (output checked pattern 2\u00d72 with averaged 2,3 cells overlay)/value": false,
"customscript/anti-burn.py/txt2img/Brute-force mode (create Count\u00d7Skip separate images) /visible": true,
"customscript/anti-burn.py/txt2img/Brute-force mode (create Count\u00d7Skip separate images) /value": false,
"customscript/StylePile.py/txt2img/Conceptually/visible": true,
"customscript/StylePile.py/txt2img/Conceptually/value": "Not set",
"customscript/StylePile.py/txt2img/Image type/visible": true,
"customscript/StylePile.py/txt2img/Image type/value": "Not set",
"customscript/StylePile.py/txt2img/Direction/visible": true,
"customscript/StylePile.py/txt2img/Direction/value": "Not set",
"customscript/StylePile.py/txt2img/Mood/visible": true,
"customscript/StylePile.py/txt2img/Mood/value": "Not set",
"customscript/StylePile.py/txt2img/Colors/visible": true,
"customscript/StylePile.py/txt2img/Colors/value": "Not set",
"customscript/StylePile.py/txt2img/Set batch count to prompt count/visible": true,
"customscript/StylePile.py/txt2img/Set batch count to prompt count/value": true,
"customscript/StylePile.py/txt2img/Increase seed with batch size/visible": true,
"customscript/StylePile.py/txt2img/Increase seed with batch size/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/Style influence (incomplete)/visible": true,
"customscript/StylePile.py/txt2img/Style influence (incomplete)/value": "None",
"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/Artist/visible": true,
"customscript/StylePile.py/txt2img/Artist/value": "Not set",
"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/StylePile.py/txt2img/Art movement/visible": true,
"customscript/StylePile.py/txt2img/Art movement/value": "Not set",
"txt2img/Adjust strength/visible": true,
"txt2img/Adjust strength/value": "",
"txt2img/Strength/visible": true,
"txt2img/Strength/value": 1.3,
"txt2img/Strength/minimum": 0.1,
"txt2img/Strength/maximum": 2.0,
"txt2img/Strength/step": 0.1,
"txt2img/Morph from/visible": true,
"txt2img/Morph from/value": "",
"txt2img/Morph to/visible": true,
"txt2img/Morph to/value": "",
"txt2img/Starting point/visible": true,
"txt2img/Starting point/value": 0.5,
"txt2img/Starting point/minimum": 0.05,
"txt2img/Starting point/maximum": 0.95,
"txt2img/Starting point/step": 0.05,
"txt2img/Bounce from/visible": true,
"txt2img/Bounce from/value": "",
"txt2img/Bounce to/visible": true,
"txt2img/Bounce to/value": "",
"customscript/movie2movie.py/txt2img/Save preprocessed/visible": true,
"customscript/movie2movie.py/txt2img/Save preprocessed/value": false,
"img2img/Controlnet input directory/visible": true,
"img2img/Controlnet input directory/value": "",
"customscript/postprocessing_codeformer.py/img2img/CodeFormer visibility/visible": true,
"customscript/postprocessing_codeformer.py/img2img/CodeFormer visibility/value": 0,
"customscript/postprocessing_codeformer.py/img2img/CodeFormer visibility/minimum": 0.0,
"customscript/postprocessing_codeformer.py/img2img/CodeFormer visibility/maximum": 1.0,
"customscript/postprocessing_codeformer.py/img2img/CodeFormer visibility/step": 0.001,
"customscript/postprocessing_codeformer.py/img2img/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/visible": true,
"customscript/postprocessing_codeformer.py/img2img/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/value": 0,
"customscript/postprocessing_codeformer.py/img2img/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/minimum": 0.0,
"customscript/postprocessing_codeformer.py/img2img/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/maximum": 1.0,
"customscript/postprocessing_codeformer.py/img2img/CodeFormer weight (0 = maximum effect, 1 = minimum effect)/step": 0.001,
"customscript/postprocessing_gfpgan.py/img2img/GFPGAN visibility/visible": true,
"customscript/postprocessing_gfpgan.py/img2img/GFPGAN visibility/value": 0,
"customscript/postprocessing_gfpgan.py/img2img/GFPGAN visibility/minimum": 0.0,
"customscript/postprocessing_gfpgan.py/img2img/GFPGAN visibility/maximum": 1.0,
"customscript/postprocessing_gfpgan.py/img2img/GFPGAN visibility/step": 0.001,
"img2img/Input Directory/visible": true,
"img2img/Input Directory/value": "",
"img2img/New Canvas Width/visible": true,
"img2img/New Canvas Width/value": 512,
"img2img/New Canvas Width/minimum": 256,
"img2img/New Canvas Width/maximum": 1024,
"img2img/New Canvas Width/step": 64,
"img2img/New Canvas Height/visible": true,
"img2img/New Canvas Height/value": 512,
"img2img/New Canvas Height/minimum": 256,
"img2img/New Canvas Height/maximum": 1024,
"img2img/New Canvas Height/step": 64,
"img2img/Enable/visible": true,
"img2img/Enable/value": false,
"img2img/Low VRAM/visible": true,
"img2img/Low VRAM/value": false,
"img2img/Pixel Perfect/visible": true,
"img2img/Pixel Perfect/value": false,
"img2img/Allow Preview/visible": true,
"img2img/Allow Preview/value": false,
"img2img/Control Type/visible": true,
"img2img/Control Type/value": "All",
"img2img/Preprocessor/visible": true,
"img2img/Preprocessor/value": "none",
"img2img/Model/visible": true,
"img2img/Model/value": "None",
"img2img/Control Weight/visible": true,
"img2img/Control Weight/value": 1.0,
"img2img/Control Weight/minimum": 0.0,
"img2img/Control Weight/maximum": 2.0,
"img2img/Control Weight/step": 0.05,
"img2img/Starting Control Step/visible": true,
"img2img/Starting Control Step/value": 0.0,
"img2img/Starting Control Step/minimum": 0.0,
"img2img/Starting Control Step/maximum": 1.0,
"img2img/Starting Control Step/step": 0.01,
"img2img/Ending Control Step/visible": true,
"img2img/Ending Control Step/value": 1.0,
"img2img/Ending Control Step/minimum": 0.0,
"img2img/Ending Control Step/maximum": 1.0,
"img2img/Ending Control Step/step": 0.01,
"img2img/Preprocessor resolution/value": 512,
"img2img/Preprocessor resolution/minimum": 64,
"img2img/Preprocessor resolution/maximum": 2048,
"img2img/Preprocessor resolution/step": 10,
"img2img/Threshold A/value": 64,
"img2img/Threshold A/minimum": 64,
"img2img/Threshold A/maximum": 1024,
"img2img/Threshold A/step": 1,
"img2img/Threshold B/value": 64,
"img2img/Threshold B/minimum": 64,
"img2img/Threshold B/maximum": 1024,
"img2img/Threshold B/step": 1,
"img2img/Control Mode/visible": true,
"img2img/Control Mode/value": "Balanced",
"img2img/Resize Mode/visible": true,
"img2img/Resize Mode/value": "Crop and Resize",
"img2img/[Loopback] Automatically send generated images to this ControlNet unit/visible": true,
"img2img/[Loopback] Automatically send generated images to this ControlNet unit/value": false,
"customscript/anti-burn.py/img2img/Enable Anti Burn (and everything)/visible": true,
"customscript/anti-burn.py/img2img/Enable Anti Burn (and everything)/value": false,
"customscript/anti-burn.py/img2img/Store all steps of inference also (slow!)/visible": true,
"customscript/anti-burn.py/img2img/Store all steps of inference also (slow!)/value": false,
"customscript/anti-burn.py/img2img/Revert to buggy half-steps (not recommended)/visible": true,
"customscript/anti-burn.py/img2img/Revert to buggy half-steps (not recommended)/value": false,
"customscript/anti-burn.py/img2img/Count of final steps to average together:/visible": true,
"customscript/anti-burn.py/img2img/Count of final steps to average together:/value": 3,
"customscript/anti-burn.py/img2img/Count of final steps to average together:/minimum": 1,
"customscript/anti-burn.py/img2img/Count of final steps to average together:/maximum": 64,
"customscript/anti-burn.py/img2img/Count of final steps to average together:/step": 1,
"customscript/anti-burn.py/img2img/Skip this many very last steps: /visible": true,
"customscript/anti-burn.py/img2img/Skip this many very last steps: /value": 0,
"customscript/anti-burn.py/img2img/Skip this many very last steps: /minimum": 0,
"customscript/anti-burn.py/img2img/Skip this many very last steps: /maximum": 24,
"customscript/anti-burn.py/img2img/Skip this many very last steps: /step": 1,
"customscript/anti-burn.py/img2img/Stop first pass of highres.fix after this step number (0 to disable)/visible": true,
"customscript/anti-burn.py/img2img/Stop first pass of highres.fix after this step number (0 to disable)/value": 0,
"customscript/anti-burn.py/img2img/Stop first pass of highres.fix after this step number (0 to disable)/minimum": 0,
"customscript/anti-burn.py/img2img/Stop first pass of highres.fix after this step number (0 to disable)/maximum": 80,
"customscript/anti-burn.py/img2img/Stop first pass of highres.fix after this step number (0 to disable)/step": 1,
"customscript/anti-burn.py/img2img/Debug Anti Burn (output checked pattern 2\u00d72 with averaged 2,3 cells overlay)/visible": true,
"customscript/anti-burn.py/img2img/Debug Anti Burn (output checked pattern 2\u00d72 with averaged 2,3 cells overlay)/value": false,
"customscript/anti-burn.py/img2img/Brute-force mode (create Count\u00d7Skip separate images) /visible": true,
"customscript/anti-burn.py/img2img/Brute-force mode (create Count\u00d7Skip separate images) /value": false,
"customscript/StylePile.py/img2img/Conceptually/visible": true,
"customscript/StylePile.py/img2img/Conceptually/value": "Not set",
"customscript/StylePile.py/img2img/Image type/visible": true,
"customscript/StylePile.py/img2img/Image type/value": "Not set",
"customscript/StylePile.py/img2img/Direction/visible": true,
"customscript/StylePile.py/img2img/Direction/value": "Not set",
"customscript/StylePile.py/img2img/Mood/visible": true,
"customscript/StylePile.py/img2img/Mood/value": "Not set",
"customscript/StylePile.py/img2img/Colors/visible": true,
"customscript/StylePile.py/img2img/Colors/value": "Not set",
"customscript/StylePile.py/img2img/Set batch count to prompt count/visible": true,
"customscript/StylePile.py/img2img/Set batch count to prompt count/value": true,
"customscript/StylePile.py/img2img/Increase seed with batch size/visible": true,
"customscript/StylePile.py/img2img/Increase seed with batch size/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/Style influence (incomplete)/visible": true,
"customscript/StylePile.py/img2img/Style influence (incomplete)/value": "None",
"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/Artist/visible": true,
"customscript/StylePile.py/img2img/Artist/value": "Not set",
"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/StylePile.py/img2img/Art movement/visible": true,
"customscript/StylePile.py/img2img/Art movement/value": "Not set",
"img2img/Adjust strength/visible": true,
"img2img/Adjust strength/value": "",
"img2img/Strength/visible": true,
"img2img/Strength/value": 1.3,
"img2img/Strength/minimum": 0.1,
"img2img/Strength/maximum": 2.0,
"img2img/Strength/step": 0.1,
"img2img/Morph from/visible": true,
"img2img/Morph from/value": "",
"img2img/Morph to/visible": true,
"img2img/Morph to/value": "",
"img2img/Starting point/visible": true,
"img2img/Starting point/value": 0.5,
"img2img/Starting point/minimum": 0.05,
"img2img/Starting point/maximum": 0.95,
"img2img/Starting point/step": 0.05,
"img2img/Bounce from/visible": true,
"img2img/Bounce from/value": "",
"img2img/Bounce to/visible": true,
"img2img/Bounce to/value": "",
"customscript/movie2movie.py/img2img/Save preprocessed/visible": true,
"customscript/movie2movie.py/img2img/Save preprocessed/value": false,
"txt2img/Interrupt/visible": true,
"txt2img/Skip/visible": true,
"txt2img/Generate/visible": true,
"txt2img/\u2199\ufe0f/visible": true,
"txt2img/\ud83d\uddd1\ufe0f/visible": true,
"txt2img/\ud83c\udfb4/visible": true,
"txt2img/\ud83d\udccb/visible": true,
"txt2img/\ud83d\udcbe/visible": true,
"txt2img/\ud83d\udd04/visible": true,
"txt2img/Tabs@txt2img_extra_tabs/selected": null,
"txt2img/Description/visible": true,
"txt2img/Description/value": "",
"txt2img/Cancel/visible": true,
"txt2img/Replace preview/visible": true,
"txt2img/Save/visible": true,
"txt2img/Stable Diffusion version/visible": true,
"txt2img/Stable Diffusion version/value": "Unknown",
"txt2img/Activation text/visible": true,
"txt2img/Activation text/value": "",
"txt2img/Preferred weight/visible": true,
"txt2img/Preferred weight/value": 0.0,
"txt2img/Preferred weight/minimum": 0.0,
"txt2img/Preferred weight/maximum": 2.0,
"txt2img/Preferred weight/step": 0.01,
"txt2img/Random prompt/visible": true,
"txt2img/Random prompt/value": "",
"txt2img/\u2195\ufe0f/visible": true,
"txt2img/Refresh/visible": true,
"txt2img/Hires sampling method/visible": true,
"txt2img/Hires sampling method/value": "Use same sampler",
"txt2img/Hires prompt/visible": true,
"txt2img/Hires prompt/value": "",
"txt2img/Hires negative prompt/visible": true,
"txt2img/Hires negative prompt/value": "",
"txt2img/Switch dims/visible": true,
"txt2img/Random seed/visible": true,
"txt2img/Reuse seed/visible": true,
"txt2img/\ud83c\udfb2\ufe0f/visible": true,
"txt2img/\u267b\ufe0f/visible": true,
"customscript/wildcard_recursive.py/txt2img/UmiAI enabled/visible": true,
"customscript/wildcard_recursive.py/txt2img/UmiAI enabled/value": true,
"customscript/wildcard_recursive.py/txt2img/Verbose logging/visible": true,
"customscript/wildcard_recursive.py/txt2img/Verbose logging/value": false,
"customscript/wildcard_recursive.py/txt2img/Cache files/visible": true,
"customscript/wildcard_recursive.py/txt2img/Cache files/value": true,
"customscript/wildcard_recursive.py/txt2img/Ignore folders/visible": true,
"customscript/wildcard_recursive.py/txt2img/Ignore folders/value": true,
"customscript/wildcard_recursive.py/txt2img/Same prompt in batch/visible": true,
"customscript/wildcard_recursive.py/txt2img/Same prompt in batch/value": false,
"customscript/wildcard_recursive.py/txt2img/**negative keywords**/visible": true,
"customscript/wildcard_recursive.py/txt2img/**negative keywords**/value": true,
"customscript/wildcard_recursive.py/txt2img/Static wildcards/visible": true,
"customscript/wildcard_recursive.py/txt2img/Static wildcards/value": false,
"customscript/!adetailer.py/txt2img/Enable ADetailer/visible": true,
"customscript/!adetailer.py/txt2img/Enable ADetailer/value": false,
"txt2img/ADetailer model/visible": true,
"txt2img/ADetailer model/value": "face_yolov8n.pt",
"txt2img/ad_prompt/visible": true,
"txt2img/ad_prompt/value": "",
"txt2img/ad_negative_prompt/visible": true,
"txt2img/ad_negative_prompt/value": "",
"txt2img/Detection model confidence threshold/visible": true,
"txt2img/Detection model confidence threshold/value": 0.3,
"txt2img/Detection model confidence threshold/minimum": 0.0,
"txt2img/Detection model confidence threshold/maximum": 1.0,
"txt2img/Detection model confidence threshold/step": 0.01,
"txt2img/Mask min area ratio/visible": true,
"txt2img/Mask min area ratio/value": 0.0,
"txt2img/Mask min area ratio/minimum": 0.0,
"txt2img/Mask min area ratio/maximum": 1.0,
"txt2img/Mask min area ratio/step": 0.001,
"txt2img/Mask max area ratio/visible": true,
"txt2img/Mask max area ratio/value": 1.0,
"txt2img/Mask max area ratio/minimum": 0.0,
"txt2img/Mask max area ratio/maximum": 1.0,
"txt2img/Mask max area ratio/step": 0.001,
"txt2img/Mask x(\u2192) offset/visible": true,
"txt2img/Mask x(\u2192) offset/value": 0,
"txt2img/Mask x(\u2192) offset/minimum": -200,
"txt2img/Mask x(\u2192) offset/maximum": 200,
"txt2img/Mask x(\u2192) offset/step": 1,
"txt2img/Mask y(\u2191) offset/visible": true,
"txt2img/Mask y(\u2191) offset/value": 0,
"txt2img/Mask y(\u2191) offset/minimum": -200,
"txt2img/Mask y(\u2191) offset/maximum": 200,
"txt2img/Mask y(\u2191) offset/step": 1,
"txt2img/Mask erosion (-) / dilation (+)/visible": true,
"txt2img/Mask erosion (-) / dilation (+)/value": 4,
"txt2img/Mask erosion (-) / dilation (+)/minimum": -128,
"txt2img/Mask erosion (-) / dilation (+)/maximum": 128,
"txt2img/Mask erosion (-) / dilation (+)/step": 4,
"txt2img/Mask merge mode/visible": true,
"txt2img/Mask merge mode/value": "None",
"txt2img/Inpaint mask blur/visible": true,
"txt2img/Inpaint mask blur/value": 4,
"txt2img/Inpaint mask blur/minimum": 0,
"txt2img/Inpaint mask blur/maximum": 64,
"txt2img/Inpaint mask blur/step": 1,
"txt2img/Inpaint denoising strength/visible": true,
"txt2img/Inpaint denoising strength/value": 0.4,
"txt2img/Inpaint denoising strength/minimum": 0.0,
"txt2img/Inpaint denoising strength/maximum": 1.0,
"txt2img/Inpaint denoising strength/step": 0.01,
"txt2img/Inpaint only masked/visible": true,
"txt2img/Inpaint only masked/value": true,
"txt2img/Inpaint only masked padding, pixels/visible": true,
"txt2img/Inpaint only masked padding, pixels/value": 32,
"txt2img/Inpaint only masked padding, pixels/minimum": 0,
"txt2img/Inpaint only masked padding, pixels/maximum": 256,
"txt2img/Inpaint only masked padding, pixels/step": 4,
"txt2img/Use separate width/height/visible": true,
"txt2img/Use separate width/height/value": false,
"txt2img/inpaint width/visible": true,
"txt2img/inpaint width/value": 512,
"txt2img/inpaint width/minimum": 64,
"txt2img/inpaint width/maximum": 2048,
"txt2img/inpaint width/step": 4,
"txt2img/inpaint height/visible": true,
"txt2img/inpaint height/value": 512,
"txt2img/inpaint height/minimum": 64,
"txt2img/inpaint height/maximum": 2048,
"txt2img/inpaint height/step": 4,
"txt2img/Use separate steps/visible": true,
"txt2img/Use separate steps/value": false,
"txt2img/ADetailer steps/visible": true,
"txt2img/ADetailer steps/value": 28,
"txt2img/ADetailer steps/minimum": 1,
"txt2img/ADetailer steps/maximum": 150,
"txt2img/ADetailer steps/step": 1,
"txt2img/Use separate CFG scale/visible": true,
"txt2img/Use separate CFG scale/value": false,
"txt2img/ADetailer CFG scale/visible": true,
"txt2img/ADetailer CFG scale/value": 7.0,
"txt2img/ADetailer CFG scale/minimum": 0.0,
"txt2img/ADetailer CFG scale/maximum": 30.0,
"txt2img/ADetailer CFG scale/step": 0.5,
"txt2img/Use separate sampler/visible": true,
"txt2img/Use separate sampler/value": false,
"txt2img/ADetailer sampler/visible": true,
"txt2img/ADetailer sampler/value": "Euler a",
"txt2img/Use separate noise multiplier/visible": true,
"txt2img/Use separate noise multiplier/value": false,
"txt2img/Noise multiplier for img2img/visible": true,
"txt2img/Noise multiplier for img2img/value": 1.0,
"txt2img/Noise multiplier for img2img/minimum": 0.5,
"txt2img/Noise multiplier for img2img/maximum": 1.5,
"txt2img/Noise multiplier for img2img/step": 0.01,
"txt2img/Restore faces after ADetailer/visible": true,
"txt2img/Restore faces after ADetailer/value": false,
"txt2img/ControlNet model/visible": true,
"txt2img/ControlNet model/value": "None",
"txt2img/ControlNet module/value": "inpaint_global_harmonious",
"txt2img/ControlNet weight/visible": true,
"txt2img/ControlNet weight/value": 1.0,
"txt2img/ControlNet weight/minimum": 0.0,
"txt2img/ControlNet weight/maximum": 1.0,
"txt2img/ControlNet weight/step": 0.01,
"txt2img/ControlNet guidance start/visible": true,
"txt2img/ControlNet guidance start/value": 0.0,
"txt2img/ControlNet guidance start/minimum": 0.0,
"txt2img/ControlNet guidance start/maximum": 1.0,
"txt2img/ControlNet guidance start/step": 0.01,
"txt2img/ControlNet guidance end/visible": true,
"txt2img/ControlNet guidance end/value": 1.0,
"txt2img/ControlNet guidance end/minimum": 0.0,
"txt2img/ControlNet guidance end/maximum": 1.0,
"txt2img/ControlNet guidance end/step": 0.01,
"txt2img/ADetailer model 2nd/visible": true,
"txt2img/ADetailer model 2nd/value": "None",
"txt2img/ad_prompt 2nd/visible": true,
"txt2img/ad_prompt 2nd/value": "",
"txt2img/ad_negative_prompt 2nd/visible": true,
"txt2img/ad_negative_prompt 2nd/value": "",
"txt2img/Detection model confidence threshold 2nd/visible": true,
"txt2img/Detection model confidence threshold 2nd/value": 0.3,
"txt2img/Detection model confidence threshold 2nd/minimum": 0.0,
"txt2img/Detection model confidence threshold 2nd/maximum": 1.0,
"txt2img/Detection model confidence threshold 2nd/step": 0.01,
"txt2img/Mask min area ratio 2nd/visible": true,
"txt2img/Mask min area ratio 2nd/value": 0.0,
"txt2img/Mask min area ratio 2nd/minimum": 0.0,
"txt2img/Mask min area ratio 2nd/maximum": 1.0,
"txt2img/Mask min area ratio 2nd/step": 0.001,
"txt2img/Mask max area ratio 2nd/visible": true,
"txt2img/Mask max area ratio 2nd/value": 1.0,
"txt2img/Mask max area ratio 2nd/minimum": 0.0,
"txt2img/Mask max area ratio 2nd/maximum": 1.0,
"txt2img/Mask max area ratio 2nd/step": 0.001,
"txt2img/Mask x(\u2192) offset 2nd/visible": true,
"txt2img/Mask x(\u2192) offset 2nd/value": 0,
"txt2img/Mask x(\u2192) offset 2nd/minimum": -200,
"txt2img/Mask x(\u2192) offset 2nd/maximum": 200,
"txt2img/Mask x(\u2192) offset 2nd/step": 1,
"txt2img/Mask y(\u2191) offset 2nd/visible": true,
"txt2img/Mask y(\u2191) offset 2nd/value": 0,
"txt2img/Mask y(\u2191) offset 2nd/minimum": -200,
"txt2img/Mask y(\u2191) offset 2nd/maximum": 200,
"txt2img/Mask y(\u2191) offset 2nd/step": 1,
"txt2img/Mask erosion (-) / dilation (+) 2nd/visible": true,
"txt2img/Mask erosion (-) / dilation (+) 2nd/value": 4,
"txt2img/Mask erosion (-) / dilation (+) 2nd/minimum": -128,
"txt2img/Mask erosion (-) / dilation (+) 2nd/maximum": 128,
"txt2img/Mask erosion (-) / dilation (+) 2nd/step": 4,
"txt2img/Mask merge mode 2nd/visible": true,
"txt2img/Mask merge mode 2nd/value": "None",
"txt2img/Inpaint mask blur 2nd/visible": true,
"txt2img/Inpaint mask blur 2nd/value": 4,
"txt2img/Inpaint mask blur 2nd/minimum": 0,
"txt2img/Inpaint mask blur 2nd/maximum": 64,
"txt2img/Inpaint mask blur 2nd/step": 1,
"txt2img/Inpaint denoising strength 2nd/visible": true,
"txt2img/Inpaint denoising strength 2nd/value": 0.4,
"txt2img/Inpaint denoising strength 2nd/minimum": 0.0,
"txt2img/Inpaint denoising strength 2nd/maximum": 1.0,
"txt2img/Inpaint denoising strength 2nd/step": 0.01,
"txt2img/Inpaint only masked 2nd/visible": true,
"txt2img/Inpaint only masked 2nd/value": true,
"txt2img/Inpaint only masked padding, pixels 2nd/visible": true,
"txt2img/Inpaint only masked padding, pixels 2nd/value": 32,
"txt2img/Inpaint only masked padding, pixels 2nd/minimum": 0,
"txt2img/Inpaint only masked padding, pixels 2nd/maximum": 256,
"txt2img/Inpaint only masked padding, pixels 2nd/step": 4,
"txt2img/Use separate width/height 2nd/visible": true,
"txt2img/Use separate width/height 2nd/value": false,
"txt2img/inpaint width 2nd/visible": true,
"txt2img/inpaint width 2nd/value": 512,
"txt2img/inpaint width 2nd/minimum": 64,
"txt2img/inpaint width 2nd/maximum": 2048,
"txt2img/inpaint width 2nd/step": 4,
"txt2img/inpaint height 2nd/visible": true,
"txt2img/inpaint height 2nd/value": 512,
"txt2img/inpaint height 2nd/minimum": 64,
"txt2img/inpaint height 2nd/maximum": 2048,
"txt2img/inpaint height 2nd/step": 4,
"txt2img/Use separate steps 2nd/visible": true,
"txt2img/Use separate steps 2nd/value": false,
"txt2img/ADetailer steps 2nd/visible": true,
"txt2img/ADetailer steps 2nd/value": 28,
"txt2img/ADetailer steps 2nd/minimum": 1,
"txt2img/ADetailer steps 2nd/maximum": 150,
"txt2img/ADetailer steps 2nd/step": 1,
"txt2img/Use separate CFG scale 2nd/visible": true,
"txt2img/Use separate CFG scale 2nd/value": false,
"txt2img/ADetailer CFG scale 2nd/visible": true,
"txt2img/ADetailer CFG scale 2nd/value": 7.0,
"txt2img/ADetailer CFG scale 2nd/minimum": 0.0,
"txt2img/ADetailer CFG scale 2nd/maximum": 30.0,
"txt2img/ADetailer CFG scale 2nd/step": 0.5,
"txt2img/Use separate sampler 2nd/visible": true,
"txt2img/Use separate sampler 2nd/value": false,
"txt2img/ADetailer sampler 2nd/visible": true,
"txt2img/ADetailer sampler 2nd/value": "Euler a",
"txt2img/Use separate noise multiplier 2nd/visible": true,
"txt2img/Use separate noise multiplier 2nd/value": false,
"txt2img/Noise multiplier for img2img 2nd/visible": true,
"txt2img/Noise multiplier for img2img 2nd/value": 1.0,
"txt2img/Noise multiplier for img2img 2nd/minimum": 0.5,
"txt2img/Noise multiplier for img2img 2nd/maximum": 1.5,
"txt2img/Noise multiplier for img2img 2nd/step": 0.01,
"txt2img/Restore faces after ADetailer 2nd/visible": true,
"txt2img/Restore faces after ADetailer 2nd/value": false,
"txt2img/ControlNet model 2nd/visible": true,
"txt2img/ControlNet model 2nd/value": "None",
"txt2img/ControlNet module 2nd/value": "inpaint_global_harmonious",
"txt2img/ControlNet weight 2nd/visible": true,
"txt2img/ControlNet weight 2nd/value": 1.0,
"txt2img/ControlNet weight 2nd/minimum": 0.0,
"txt2img/ControlNet weight 2nd/maximum": 1.0,
"txt2img/ControlNet weight 2nd/step": 0.01,
"txt2img/ControlNet guidance start 2nd/visible": true,
"txt2img/ControlNet guidance start 2nd/value": 0.0,
"txt2img/ControlNet guidance start 2nd/minimum": 0.0,
"txt2img/ControlNet guidance start 2nd/maximum": 1.0,
"txt2img/ControlNet guidance start 2nd/step": 0.01,
"txt2img/ControlNet guidance end 2nd/visible": true,
"txt2img/ControlNet guidance end 2nd/value": 1.0,
"txt2img/ControlNet guidance end 2nd/minimum": 0.0,
"txt2img/ControlNet guidance end 2nd/maximum": 1.0,
"txt2img/ControlNet guidance end 2nd/step": 0.01,
"txt2img/\ud83d\udcdd/visible": true,
"customscript/additional_networks.py/txt2img/Refresh models/visible": true,
"txt2img/Create New Canvas/visible": true,
"txt2img/Run/visible": true,
"customscript/custom_code.py/txt2img/Indent level/visible": true,
"customscript/custom_code.py/txt2img/Indent level/value": 2,
"txt2img/Swap X/Y axes/visible": true,
"txt2img/Swap Y/Z axes/visible": true,
"txt2img/Swap X/Z axes/visible": true,
"txt2img/Insert default prompt/visible": true,
"txt2img/Inspire me, StylePile/visible": true,
"txt2img/Insert/visible": true,
"txt2img/\ud83d\udcc2/visible": true,
"txt2img/Zip/visible": true,
"txt2img/Send to img2img/visible": true,
"txt2img/Send to inpaint/visible": true,
"txt2img/Send to extras/visible": true,
"txt2img/Pano \ud83c\udf10/visible": true,
"txt2img/Pano \ud83e\uddca/visible": true,
"img2img/Interrogate\nCLIP/visible": true,
"img2img/Interrogate\nDeepBooru/visible": true,
"img2img/Interrupt/visible": true,
"img2img/Skip/visible": true,
"img2img/Generate/visible": true,
"img2img/\u2199\ufe0f/visible": true,
"img2img/\ud83d\uddd1\ufe0f/visible": true,
"img2img/\ud83c\udfb4/visible": true,
"img2img/\ud83d\udccb/visible": true,
"img2img/\ud83d\udcbe/visible": true,
"img2img/\ud83d\udd04/visible": true,
"img2img/Tabs@img2img_extra_tabs/selected": null,
"img2img/Description/visible": true,
"img2img/Description/value": "",
"img2img/Cancel/visible": true,
"img2img/Replace preview/visible": true,
"img2img/Save/visible": true,
"img2img/Stable Diffusion version/visible": true,
"img2img/Stable Diffusion version/value": "Unknown",
"img2img/Activation text/visible": true,
"img2img/Activation text/value": "",
"img2img/Preferred weight/visible": true,
"img2img/Preferred weight/value": 0.0,
"img2img/Preferred weight/minimum": 0.0,
"img2img/Preferred weight/maximum": 2.0,
"img2img/Preferred weight/step": 0.01,
"img2img/Random prompt/visible": true,
"img2img/Random prompt/value": "",
"img2img/\u2195\ufe0f/visible": true,
"img2img/Refresh/visible": true,
"img2img/Tabs@mode_img2img/selected": null,
"img2img/img2img/visible": true,
"img2img/sketch/visible": true,
"img2img/inpaint/visible": true,
"img2img/inpaint sketch/visible": true,
"img2img/Append png info to prompts/visible": true,
"img2img/Append png info to prompts/value": false,
"img2img/PNG info directory/visible": true,
"img2img/PNG info directory/value": "",
"img2img/\u21c5/visible": true,
"img2img/\ud83d\udcd0/visible": true,
"img2img/Scale/visible": true,
"img2img/Scale/value": 1.0,
"img2img/Scale/minimum": 0.05,
"img2img/Scale/maximum": 4.0,
"img2img/Scale/step": 0.05,
"img2img/Unused/visible": true,
"img2img/Unused/value": 0,
"img2img/Unused/minimum": 0,
"img2img/Unused/maximum": 100,
"img2img/Unused/step": 1,
"img2img/Random seed/visible": true,
"img2img/Reuse seed/visible": true,
"img2img/\ud83c\udfb2\ufe0f/visible": true,
"img2img/\u267b\ufe0f/visible": true,
"customscript/wildcard_recursive.py/img2img/UmiAI enabled/visible": true,
"customscript/wildcard_recursive.py/img2img/UmiAI enabled/value": true,
"customscript/wildcard_recursive.py/img2img/Verbose logging/visible": true,
"customscript/wildcard_recursive.py/img2img/Verbose logging/value": false,
"customscript/wildcard_recursive.py/img2img/Cache files/visible": true,
"customscript/wildcard_recursive.py/img2img/Cache files/value": true,
"customscript/wildcard_recursive.py/img2img/Ignore folders/visible": true,
"customscript/wildcard_recursive.py/img2img/Ignore folders/value": true,
"customscript/wildcard_recursive.py/img2img/Same prompt in batch/visible": true,
"customscript/wildcard_recursive.py/img2img/Same prompt in batch/value": false,
"customscript/wildcard_recursive.py/img2img/**negative keywords**/visible": true,
"customscript/wildcard_recursive.py/img2img/**negative keywords**/value": true,
"customscript/wildcard_recursive.py/img2img/Static wildcards/visible": true,
"customscript/wildcard_recursive.py/img2img/Static wildcards/value": false,
"customscript/!adetailer.py/img2img/Enable ADetailer/visible": true,
"customscript/!adetailer.py/img2img/Enable ADetailer/value": false,
"img2img/ADetailer model/visible": true,
"img2img/ADetailer model/value": "face_yolov8n.pt",
"img2img/ad_prompt/visible": true,
"img2img/ad_prompt/value": "",
"img2img/ad_negative_prompt/visible": true,
"img2img/ad_negative_prompt/value": "",
"img2img/Detection model confidence threshold/visible": true,
"img2img/Detection model confidence threshold/value": 0.3,
"img2img/Detection model confidence threshold/minimum": 0.0,
"img2img/Detection model confidence threshold/maximum": 1.0,
"img2img/Detection model confidence threshold/step": 0.01,
"img2img/Mask min area ratio/visible": true,
"img2img/Mask min area ratio/value": 0.0,
"img2img/Mask min area ratio/minimum": 0.0,
"img2img/Mask min area ratio/maximum": 1.0,
"img2img/Mask min area ratio/step": 0.001,
"img2img/Mask max area ratio/visible": true,
"img2img/Mask max area ratio/value": 1.0,
"img2img/Mask max area ratio/minimum": 0.0,
"img2img/Mask max area ratio/maximum": 1.0,
"img2img/Mask max area ratio/step": 0.001,
"img2img/Mask x(\u2192) offset/visible": true,
"img2img/Mask x(\u2192) offset/value": 0,
"img2img/Mask x(\u2192) offset/minimum": -200,
"img2img/Mask x(\u2192) offset/maximum": 200,
"img2img/Mask x(\u2192) offset/step": 1,
"img2img/Mask y(\u2191) offset/visible": true,
"img2img/Mask y(\u2191) offset/value": 0,
"img2img/Mask y(\u2191) offset/minimum": -200,
"img2img/Mask y(\u2191) offset/maximum": 200,
"img2img/Mask y(\u2191) offset/step": 1,
"img2img/Mask erosion (-) / dilation (+)/visible": true,
"img2img/Mask erosion (-) / dilation (+)/value": 4,
"img2img/Mask erosion (-) / dilation (+)/minimum": -128,
"img2img/Mask erosion (-) / dilation (+)/maximum": 128,
"img2img/Mask erosion (-) / dilation (+)/step": 4,
"img2img/Mask merge mode/visible": true,
"img2img/Mask merge mode/value": "None",
"img2img/Inpaint mask blur/visible": true,
"img2img/Inpaint mask blur/value": 4,
"img2img/Inpaint mask blur/minimum": 0,
"img2img/Inpaint mask blur/maximum": 64,
"img2img/Inpaint mask blur/step": 1,
"img2img/Inpaint denoising strength/visible": true,
"img2img/Inpaint denoising strength/value": 0.4,
"img2img/Inpaint denoising strength/minimum": 0.0,
"img2img/Inpaint denoising strength/maximum": 1.0,
"img2img/Inpaint denoising strength/step": 0.01,
"img2img/Inpaint only masked/visible": true,
"img2img/Inpaint only masked/value": true,
"img2img/Inpaint only masked padding, pixels/visible": true,
"img2img/Inpaint only masked padding, pixels/value": 32,
"img2img/Inpaint only masked padding, pixels/minimum": 0,
"img2img/Inpaint only masked padding, pixels/maximum": 256,
"img2img/Inpaint only masked padding, pixels/step": 4,
"img2img/Use separate width/height/visible": true,
"img2img/Use separate width/height/value": false,
"img2img/inpaint width/visible": true,
"img2img/inpaint width/value": 512,
"img2img/inpaint width/minimum": 64,
"img2img/inpaint width/maximum": 2048,
"img2img/inpaint width/step": 4,
"img2img/inpaint height/visible": true,
"img2img/inpaint height/value": 512,
"img2img/inpaint height/minimum": 64,
"img2img/inpaint height/maximum": 2048,
"img2img/inpaint height/step": 4,
"img2img/Use separate steps/visible": true,
"img2img/Use separate steps/value": false,
"img2img/ADetailer steps/visible": true,
"img2img/ADetailer steps/value": 28,
"img2img/ADetailer steps/minimum": 1,
"img2img/ADetailer steps/maximum": 150,
"img2img/ADetailer steps/step": 1,
"img2img/Use separate CFG scale/visible": true,
"img2img/Use separate CFG scale/value": false,
"img2img/ADetailer CFG scale/visible": true,
"img2img/ADetailer CFG scale/value": 7.0,
"img2img/ADetailer CFG scale/minimum": 0.0,
"img2img/ADetailer CFG scale/maximum": 30.0,
"img2img/ADetailer CFG scale/step": 0.5,
"img2img/Use separate sampler/visible": true,
"img2img/Use separate sampler/value": false,
"img2img/ADetailer sampler/visible": true,
"img2img/ADetailer sampler/value": "Euler a",
"img2img/Use separate noise multiplier/visible": true,
"img2img/Use separate noise multiplier/value": false,
"img2img/Noise multiplier for img2img/visible": true,
"img2img/Noise multiplier for img2img/value": 1.0,
"img2img/Noise multiplier for img2img/minimum": 0.5,
"img2img/Noise multiplier for img2img/maximum": 1.5,
"img2img/Noise multiplier for img2img/step": 0.01,
"img2img/Restore faces after ADetailer/visible": true,
"img2img/Restore faces after ADetailer/value": false,
"img2img/ControlNet model/visible": true,
"img2img/ControlNet model/value": "None",
"img2img/ControlNet module/value": "inpaint_global_harmonious",
"img2img/ControlNet weight/visible": true,
"img2img/ControlNet weight/value": 1.0,
"img2img/ControlNet weight/minimum": 0.0,
"img2img/ControlNet weight/maximum": 1.0,
"img2img/ControlNet weight/step": 0.01,
"img2img/ControlNet guidance start/visible": true,
"img2img/ControlNet guidance start/value": 0.0,
"img2img/ControlNet guidance start/minimum": 0.0,
"img2img/ControlNet guidance start/maximum": 1.0,
"img2img/ControlNet guidance start/step": 0.01,
"img2img/ControlNet guidance end/visible": true,
"img2img/ControlNet guidance end/value": 1.0,
"img2img/ControlNet guidance end/minimum": 0.0,
"img2img/ControlNet guidance end/maximum": 1.0,
"img2img/ControlNet guidance end/step": 0.01,
"img2img/ADetailer model 2nd/visible": true,
"img2img/ADetailer model 2nd/value": "None",
"img2img/ad_prompt 2nd/visible": true,
"img2img/ad_prompt 2nd/value": "",
"img2img/ad_negative_prompt 2nd/visible": true,
"img2img/ad_negative_prompt 2nd/value": "",
"img2img/Detection model confidence threshold 2nd/visible": true,
"img2img/Detection model confidence threshold 2nd/value": 0.3,
"img2img/Detection model confidence threshold 2nd/minimum": 0.0,
"img2img/Detection model confidence threshold 2nd/maximum": 1.0,
"img2img/Detection model confidence threshold 2nd/step": 0.01,
"img2img/Mask min area ratio 2nd/visible": true,
"img2img/Mask min area ratio 2nd/value": 0.0,
"img2img/Mask min area ratio 2nd/minimum": 0.0,
"img2img/Mask min area ratio 2nd/maximum": 1.0,
"img2img/Mask min area ratio 2nd/step": 0.001,
"img2img/Mask max area ratio 2nd/visible": true,
"img2img/Mask max area ratio 2nd/value": 1.0,
"img2img/Mask max area ratio 2nd/minimum": 0.0,
"img2img/Mask max area ratio 2nd/maximum": 1.0,
"img2img/Mask max area ratio 2nd/step": 0.001,
"img2img/Mask x(\u2192) offset 2nd/visible": true,
"img2img/Mask x(\u2192) offset 2nd/value": 0,
"img2img/Mask x(\u2192) offset 2nd/minimum": -200,
"img2img/Mask x(\u2192) offset 2nd/maximum": 200,
"img2img/Mask x(\u2192) offset 2nd/step": 1,
"img2img/Mask y(\u2191) offset 2nd/visible": true,
"img2img/Mask y(\u2191) offset 2nd/value": 0,
"img2img/Mask y(\u2191) offset 2nd/minimum": -200,
"img2img/Mask y(\u2191) offset 2nd/maximum": 200,
"img2img/Mask y(\u2191) offset 2nd/step": 1,
"img2img/Mask erosion (-) / dilation (+) 2nd/visible": true,
"img2img/Mask erosion (-) / dilation (+) 2nd/value": 4,
"img2img/Mask erosion (-) / dilation (+) 2nd/minimum": -128,
"img2img/Mask erosion (-) / dilation (+) 2nd/maximum": 128,
"img2img/Mask erosion (-) / dilation (+) 2nd/step": 4,
"img2img/Mask merge mode 2nd/visible": true,
"img2img/Mask merge mode 2nd/value": "None",
"img2img/Inpaint mask blur 2nd/visible": true,
"img2img/Inpaint mask blur 2nd/value": 4,
"img2img/Inpaint mask blur 2nd/minimum": 0,
"img2img/Inpaint mask blur 2nd/maximum": 64,
"img2img/Inpaint mask blur 2nd/step": 1,
"img2img/Inpaint denoising strength 2nd/visible": true,
"img2img/Inpaint denoising strength 2nd/value": 0.4,
"img2img/Inpaint denoising strength 2nd/minimum": 0.0,
"img2img/Inpaint denoising strength 2nd/maximum": 1.0,
"img2img/Inpaint denoising strength 2nd/step": 0.01,
"img2img/Inpaint only masked 2nd/visible": true,
"img2img/Inpaint only masked 2nd/value": true,
"img2img/Inpaint only masked padding, pixels 2nd/visible": true,
"img2img/Inpaint only masked padding, pixels 2nd/value": 32,
"img2img/Inpaint only masked padding, pixels 2nd/minimum": 0,
"img2img/Inpaint only masked padding, pixels 2nd/maximum": 256,
"img2img/Inpaint only masked padding, pixels 2nd/step": 4,
"img2img/Use separate width/height 2nd/visible": true,
"img2img/Use separate width/height 2nd/value": false,
"img2img/inpaint width 2nd/visible": true,
"img2img/inpaint width 2nd/value": 512,
"img2img/inpaint width 2nd/minimum": 64,
"img2img/inpaint width 2nd/maximum": 2048,
"img2img/inpaint width 2nd/step": 4,
"img2img/inpaint height 2nd/visible": true,
"img2img/inpaint height 2nd/value": 512,
"img2img/inpaint height 2nd/minimum": 64,
"img2img/inpaint height 2nd/maximum": 2048,
"img2img/inpaint height 2nd/step": 4,
"img2img/Use separate steps 2nd/visible": true,
"img2img/Use separate steps 2nd/value": false,
"img2img/ADetailer steps 2nd/visible": true,
"img2img/ADetailer steps 2nd/value": 28,
"img2img/ADetailer steps 2nd/minimum": 1,
"img2img/ADetailer steps 2nd/maximum": 150,
"img2img/ADetailer steps 2nd/step": 1,
"img2img/Use separate CFG scale 2nd/visible": true,
"img2img/Use separate CFG scale 2nd/value": false,
"img2img/ADetailer CFG scale 2nd/visible": true,
"img2img/ADetailer CFG scale 2nd/value": 7.0,
"img2img/ADetailer CFG scale 2nd/minimum": 0.0,
"img2img/ADetailer CFG scale 2nd/maximum": 30.0,
"img2img/ADetailer CFG scale 2nd/step": 0.5,
"img2img/Use separate sampler 2nd/visible": true,
"img2img/Use separate sampler 2nd/value": false,
"img2img/ADetailer sampler 2nd/visible": true,
"img2img/ADetailer sampler 2nd/value": "Euler a",
"img2img/Use separate noise multiplier 2nd/visible": true,
"img2img/Use separate noise multiplier 2nd/value": false,
"img2img/Noise multiplier for img2img 2nd/visible": true,
"img2img/Noise multiplier for img2img 2nd/value": 1.0,
"img2img/Noise multiplier for img2img 2nd/minimum": 0.5,
"img2img/Noise multiplier for img2img 2nd/maximum": 1.5,
"img2img/Noise multiplier for img2img 2nd/step": 0.01,
"img2img/Restore faces after ADetailer 2nd/visible": true,
"img2img/Restore faces after ADetailer 2nd/value": false,
"img2img/ControlNet model 2nd/visible": true,
"img2img/ControlNet model 2nd/value": "None",
"img2img/ControlNet module 2nd/value": "inpaint_global_harmonious",
"img2img/ControlNet weight 2nd/visible": true,
"img2img/ControlNet weight 2nd/value": 1.0,
"img2img/ControlNet weight 2nd/minimum": 0.0,
"img2img/ControlNet weight 2nd/maximum": 1.0,
"img2img/ControlNet weight 2nd/step": 0.01,
"img2img/ControlNet guidance start 2nd/visible": true,
"img2img/ControlNet guidance start 2nd/value": 0.0,
"img2img/ControlNet guidance start 2nd/minimum": 0.0,
"img2img/ControlNet guidance start 2nd/maximum": 1.0,
"img2img/ControlNet guidance start 2nd/step": 0.01,
"img2img/ControlNet guidance end 2nd/visible": true,
"img2img/ControlNet guidance end 2nd/value": 1.0,
"img2img/ControlNet guidance end 2nd/minimum": 0.0,
"img2img/ControlNet guidance end 2nd/maximum": 1.0,
"img2img/ControlNet guidance end 2nd/step": 0.01,
"img2img/\ud83d\udcdd/visible": true,
"customscript/additional_networks.py/img2img/Refresh models/visible": true,
"img2img/Create New Canvas/visible": true,
"img2img/Run/visible": true,
"customscript/custom_code.py/img2img/Indent level/visible": true,
"customscript/custom_code.py/img2img/Indent level/value": 2,
"customscript/loopback.py/img2img/Final denoising strength/visible": true,
"customscript/loopback.py/img2img/Final denoising strength/value": 0.5,
"customscript/loopback.py/img2img/Final denoising strength/minimum": 0,
"customscript/loopback.py/img2img/Final denoising strength/maximum": 1,
"customscript/loopback.py/img2img/Final denoising strength/step": 0.01,
"customscript/loopback.py/img2img/Denoising strength curve/visible": true,
"customscript/loopback.py/img2img/Denoising strength curve/value": "Linear",
"img2img/Swap X/Y axes/visible": true,
"img2img/Swap Y/Z axes/visible": true,
"img2img/Swap X/Z axes/visible": true,
"img2img/Insert/visible": true,
"img2img/\ud83d\udcc2/visible": true,
"img2img/Zip/visible": true,
"img2img/Send to img2img/visible": true,
"img2img/Send to inpaint/visible": true,
"img2img/Send to extras/visible": true,
"img2img/Pano \ud83c\udf10/visible": true,
"img2img/Pano \ud83e\uddca/visible": true,
"extras/Tabs@mode_extras/selected": null,
"extras/Generate/visible": true,
"extras/Tabs@extras_resize_mode/selected": null,
"customscript/postprocessing_upscale.py/extras/Width/minimum": 64,
"customscript/postprocessing_upscale.py/extras/Width/maximum": 2048,
"customscript/postprocessing_upscale.py/extras/Width/step": 8,
"customscript/postprocessing_upscale.py/extras/Height/minimum": 64,
"customscript/postprocessing_upscale.py/extras/Height/maximum": 2048,
"customscript/postprocessing_upscale.py/extras/Height/step": 8,
"extras/\u21c5/visible": true,
"extras/\ud83d\udcc2/visible": true,
"extras/Send to img2img/visible": true,
"extras/Send to inpaint/visible": true,
"extras/Send to extras/visible": true,
"extras/Pano \ud83c\udf10/visible": true,
"extras/Pano \ud83e\uddca/visible": true,
"pnginfo/Send to txt2img/visible": true,
"pnginfo/Send to img2img/visible": true,
"pnginfo/Send to inpaint/visible": true,
"pnginfo/Send to extras/visible": true,
"modelmerger/\ud83d\udd04/visible": true,
"modelmerger/Save metadata (.safetensors only)/visible": true,
"modelmerger/Save metadata (.safetensors only)/value": true,
"modelmerger/Merge/visible": true,
"train/Tabs@train_tabs/selected": null,
"train/Create embedding/visible": true,
"train/Create hypernetwork/visible": true,
"train/Keep original size/visible": true,
"train/Keep original size/value": false,
"train/Interrupt/visible": true,
"train/Preprocess/visible": true,
"train/\ud83d\udd04/visible": true,
"train/Train Embedding/visible": true,
"train/Train Hypernetwork/visible": true,
"civitai_helper/Download Max Size Preview/visible": true,
"civitai_helper/Download Max Size Preview/value": true,
"civitai_helper/Skip NSFW Preview Images/visible": true,
"civitai_helper/Skip NSFW Preview Images/value": false,
"civitai_helper/Scan/visible": true,
"civitai_helper/Model Type/visible": true,
"civitai_helper/Model Type/value": "ckp",
"civitai_helper/Only Show Models have no Info/visible": true,
"civitai_helper/Only Show Models have no Info/value": false,
"civitai_helper/Model/visible": true,
"civitai_helper/Model/value": "ckp",
"civitai_helper/Civitai URL/visible": true,
"civitai_helper/Civitai URL/value": "",
"civitai_helper/Get Model Info from Civitai/visible": true,
"civitai_helper/1. Get Model Info by Civitai Url/visible": true,
"civitai_helper/Model Name/visible": true,
"civitai_helper/Model Name/value": "",
"civitai_helper/Sub-folder/visible": true,
"civitai_helper/Sub-folder/value": "",
"civitai_helper/Model Version/visible": true,
"civitai_helper/Model Version/value": "",
"civitai_helper/Download All files/visible": true,
"civitai_helper/Download All files/value": false,
"civitai_helper/3. Download Model/visible": true,
"civitai_helper/Check New Version from Civitai/visible": true,
"civitai_helper/Open Url At Client Side/visible": true,
"civitai_helper/Open Url At Client Side/value": true,
"civitai_helper/Always Display Buttons/visible": true,
"civitai_helper/Always Display Buttons/value": false,
"civitai_helper/Show Button On Thumb Mode/visible": true,
"civitai_helper/Show Button On Thumb Mode/value": true,
"civitai_helper/Proxy/visible": true,
"civitai_helper/Proxy/value": "",
"civitai_helper/Save Setting/visible": true,
"civitai_helper/Request Msg From Js/value": "",
"civitai_helper/Response Msg From Python/value": "",
"batchlinks/Stretch UI/visible": true,
"batchlinks/Stretch UI/value": false,
"batchlinks/Hide Help/visible": true,
"batchlinks/Hide Help/value": false,
"batchlinks/Links/visible": true,
"batchlinks/Links/value": "",
"batchlinks/Log/visible": true,
"batchlinks/Log/value": "",
"batchlinks/Turn On Logging/visible": true,
"batchlinks/Output/visible": true,
"batchlinks/Output/value": "",
"batchlinks/Download method/visible": true,
"batchlinks/Download method/value": "gdown",
"batchlinks/CivitAI Preferred Model Type/visible": true,
"batchlinks/CivitAI Preferred Model Type/value": "safetensors",
"batchlinks/Model Precision/visible": true,
"batchlinks/Model Precision/value": "fp16",
"batchlinks/Also Download VAE/visible": true,
"batchlinks/Also Download VAE/value": true,
"batchlinks/Download All!/visible": true,
"batchlinks/Cancel/visible": true,
"batchlinks/Copy from Pastebin/visible": true,
"additional_networks/Model path filter/visible": true,
"additional_networks/Model path filter/value": "",
"additional_networks/Network module/visible": true,
"additional_networks/Network module/value": "LoRA",
"additional_networks/Model/visible": true,
"additional_networks/Model/value": "None",
"additional_networks/\ud83d\udd04/visible": true,
"additional_networks/Model hash/visible": true,
"additional_networks/Model hash/value": "",
"additional_networks/Legacy hash/visible": true,
"additional_networks/Legacy hash/value": "",
"additional_networks/Model path/visible": true,
"additional_networks/Model path/value": "",
"additional_networks/\ud83d\udcc2/visible": true,
"additional_networks/1\ufe0f\u20e3/visible": true,
"additional_networks/2\ufe0f\u20e3/visible": true,
"additional_networks/3\ufe0f\u20e3/visible": true,
"additional_networks/4\ufe0f\u20e3/visible": true,
"additional_networks/5\ufe0f\u20e3/visible": true,
"additional_networks/Containing directory/visible": true,
"additional_networks/Containing directory/value": "",
"additional_networks/Only copy to models with same session ID/visible": true,
"additional_networks/Only copy to models with same session ID/value": true,
"additional_networks/Only copy to models with no metadata/visible": true,
"additional_networks/Only copy to models with no metadata/value": true,
"additional_networks/Copy Metadata/visible": true,
"additional_networks/Name/visible": true,
"additional_networks/Name/value": "",
"additional_networks/Author/visible": true,
"additional_networks/Author/value": "",
"additional_networks/Keywords/visible": true,
"additional_networks/Keywords/value": "",
"additional_networks/Description/visible": true,
"additional_networks/Description/value": "",
"additional_networks/Source/visible": true,
"additional_networks/Source/value": "",
"additional_networks/Rating/visible": true,
"additional_networks/Rating/value": 0,
"additional_networks/Rating/minimum": 0,
"additional_networks/Rating/maximum": 10,
"additional_networks/Rating/step": 1,
"additional_networks/Tags/visible": true,
"additional_networks/Tags/value": "",
"additional_networks/Editing Enabled/visible": true,
"additional_networks/Editing Enabled/value": false,
"additional_networks/Save Metadata/visible": true,
"additional_networks/Send to txt2img/visible": true,
"additional_networks/Send to img2img/visible": true,
"additional_networks/Send to inpaint/visible": true,
"additional_networks/Send to extras/visible": true,
"additional_networks/Generate Info/visible": true,
"additional_networks/Generate Info/value": "",
"supermerger/Load settings from:/visible": true,
"supermerger/merged model ID (-1 for last)/visible": true,
"supermerger/merged model ID (-1 for last)/value": "-1",
"supermerger/Model A/visible": true,
"supermerger/Model A/value": null,
"supermerger/\ud83d\udd04/visible": true,
"supermerger/Model B/visible": true,
"supermerger/Model B/value": null,
"supermerger/Model C/visible": true,
"supermerger/Model C/value": null,
"supermerger/Merge Mode/visible": true,
"supermerger/Merge Mode/value": "Weight sum:A*(1-alpha)+B*alpha",
"supermerger/Calcutation Mode/visible": true,
"supermerger/Calcutation Mode/value": "normal",
"supermerger/use MBW/visible": true,
"supermerger/use MBW/value": false,
"supermerger/alpha/visible": true,
"supermerger/alpha/value": 0.5,
"supermerger/alpha/minimum": -1.0,
"supermerger/alpha/maximum": 2,
"supermerger/alpha/step": 0.001,
"supermerger/beta/visible": true,
"supermerger/beta/value": 0.25,
"supermerger/beta/minimum": -1.0,
"supermerger/beta/maximum": 2,
"supermerger/beta/step": 0.001,
"supermerger/Custom Name (Optional)/visible": true,
"supermerger/Custom Name (Optional)/value": "",
"supermerger/Bake in VAE/visible": true,
"supermerger/Bake in VAE/value": "None",
"supermerger/Merge!/visible": true,
"supermerger/Merge&Gen/visible": true,
"supermerger/Gen/visible": true,
"supermerger/Stop/visible": true,
"supermerger/prompt/visible": true,
"supermerger/prompt/value": "",
"supermerger/neg_prompt/visible": true,
"supermerger/neg_prompt/value": "",
"supermerger/Sampling method/visible": true,
"supermerger/Sampling method/value": " ",
"supermerger/Steps/visible": true,
"supermerger/Steps/value": 0,
"supermerger/Steps/minimum": 0.0,
"supermerger/Steps/maximum": 150,
"supermerger/Steps/step": 1,
"supermerger/CFG scale/visible": true,
"supermerger/CFG scale/value": 0,
"supermerger/CFG scale/minimum": 0.0,
"supermerger/CFG scale/maximum": 30,
"supermerger/CFG scale/step": 0.5,
"supermerger/Width/visible": true,
"supermerger/Width/value": 0,
"supermerger/Width/minimum": 0,
"supermerger/Width/maximum": 2048,
"supermerger/Width/step": 8,
"supermerger/Height/visible": true,
"supermerger/Height/value": 0,
"supermerger/Height/minimum": 0,
"supermerger/Height/maximum": 2048,
"supermerger/Height/step": 8,
"supermerger/Seed/visible": true,
"supermerger/Seed/value": 0.0,
"supermerger/Batch size/visible": true,
"supermerger/Batch size/value": 1,
"supermerger/Batch size/minimum": 0,
"supermerger/Batch size/maximum": 8,
"supermerger/Batch size/step": 1,
"supermerger/Upscaler/visible": true,
"supermerger/Upscaler/value": "Latent",
"supermerger/Hires steps/visible": true,
"supermerger/Hires steps/value": 0,
"supermerger/Hires steps/minimum": 0,
"supermerger/Hires steps/maximum": 150,
"supermerger/Hires steps/step": 1,
"supermerger/Denoising strength/visible": true,
"supermerger/Denoising strength/value": 0.7,
"supermerger/Denoising strength/minimum": 0.0,
"supermerger/Denoising strength/maximum": 1.0,
"supermerger/Denoising strength/step": 0.01,
"supermerger/Upscale by/visible": true,
"supermerger/Upscale by/value": 2.0,
"supermerger/Upscale by/minimum": 1.0,
"supermerger/Upscale by/maximum": 4.0,
"supermerger/Upscale by/step": 0.05,
"supermerger/set to default/visible": true,
"supermerger/reset default/visible": true,
"supermerger/reset current/visible": true,
"supermerger/Blocks:Element:Ratio,Blocks:Element:Ratio,.../visible": true,
"supermerger/Blocks:Element:Ratio,Blocks:Element:Ratio,.../value": "",
"supermerger/Adjust(IN,OUT,contrast,colors,colors,colors) 0,0,0,0,0,0,0/visible": true,
"supermerger/Adjust(IN,OUT,contrast,colors,colors,colors) 0,0,0,0,0,0,0/value": "",
"supermerger/X type/visible": true,
"supermerger/X type/value": "alpha",
"supermerger/number of -1/visible": true,
"supermerger/number of -1/value": 3.0,
"supermerger/Sequential Merge Parameters/visible": true,
"supermerger/Sequential Merge Parameters/value": "0.25,0.5,0.75",
"supermerger/Y type/visible": true,
"supermerger/Y type/value": "none",
"supermerger/Y grid (Disabled if blank)/value": "",
"supermerger/Z type/visible": true,
"supermerger/Z type/value": "none",
"supermerger/Z grid (Disabled if blank)/value": "",
"supermerger/Sequential XY Merge and Generation/visible": true,
"supermerger/Stop XY/visible": true,
"supermerger/Reserve XY Plot/visible": true,
"supermerger/Current Model/visible": true,
"supermerger/Current Model/value": "",
"supermerger/Message/visible": true,
"supermerger/Message/value": "",
"supermerger/\ud83d\udcc2/visible": true,
"supermerger/Save/visible": true,
"supermerger/Zip/visible": true,
"supermerger/Send to img2img/visible": true,
"supermerger/Send to inpaint/visible": true,
"supermerger/Send to extras/visible": true,
"supermerger/Pano \ud83c\udf10/visible": true,
"supermerger/Pano \ud83e\uddca/visible": true,
"supermerger/Random Mode/visible": true,
"supermerger/Random Mode/value": "off",
"supermerger/Seed for Random Ratio/visible": true,
"supermerger/Seed for Random Ratio/value": -1.0,
"supermerger/Round/visible": true,
"supermerger/Round/value": 3.0,
"supermerger/Num of challenge/visible": true,
"supermerger/Num of challenge/value": 1.0,
"supermerger/custom/visible": true,
"supermerger/custom/value": "U,0,0,0,0,0,0,0,0,0,0,0,0,R,R,R,R,R,R,R,R,R,R,R,R,R",
"supermerger/Upper limit for X/visible": true,
"supermerger/Upper limit for X/value": "1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1",
"supermerger/Lower limit for X/visible": true,
"supermerger/Lower limit for X/value": "0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
"supermerger/Run Rand/visible": true,
"supermerger//visible": true,
"supermerger//value": "",
"supermerger/Add to Sequence X/visible": true,
"supermerger/Add to Sequence Y/visible": true,
"supermerger/set to alpha/visible": true,
"supermerger/read from alpha/visible": true,
"supermerger/set to beta/visible": true,
"supermerger/read from beta/visible": true,
"supermerger/set to X/visible": true,
"supermerger/weights for alpha: base alpha,IN00,IN02,...IN11,M00,OUT00,...,OUT11/visible": true,
"supermerger/weights for alpha: base alpha,IN00,IN02,...IN11,M00,OUT00,...,OUT11/value": "0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5",
"supermerger/weights for beta: base beta,IN00,IN02,...IN11,M00,OUT00,...,OUT11/visible": true,
"supermerger/weights for beta: base beta,IN00,IN02,...IN11,M00,OUT00,...,OUT11/value": "0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2",
"supermerger/Load preset/visible": true,
"supermerger/Load preset/value": null,
"supermerger/type/visible": true,
"supermerger/type/value": "1.X or 2.X",
"supermerger/Load Romdom preset/visible": true,
"supermerger/Load Romdom preset/value": null,
"supermerger/for/visible": true,
"supermerger/for/value": "none",
"supermerger/Base/visible": true,
"supermerger/Base/value": 0.5,
"supermerger/Base/minimum": 0,
"supermerger/Base/maximum": 1,
"supermerger/Base/step": 0.0001,
"supermerger/IN00/visible": true,
"supermerger/IN00/value": 0.5,
"supermerger/IN00/minimum": 0,
"supermerger/IN00/maximum": 1,
"supermerger/IN00/step": 0.0001,
"supermerger/IN01/visible": true,
"supermerger/IN01/value": 0.5,
"supermerger/IN01/minimum": 0,
"supermerger/IN01/maximum": 1,
"supermerger/IN01/step": 0.0001,
"supermerger/IN02/visible": true,
"supermerger/IN02/value": 0.5,
"supermerger/IN02/minimum": 0,
"supermerger/IN02/maximum": 1,
"supermerger/IN02/step": 0.0001,
"supermerger/IN03/visible": true,
"supermerger/IN03/value": 0.5,
"supermerger/IN03/minimum": 0,
"supermerger/IN03/maximum": 1,
"supermerger/IN03/step": 0.0001,
"supermerger/IN04/visible": true,
"supermerger/IN04/value": 0.5,
"supermerger/IN04/minimum": 0,
"supermerger/IN04/maximum": 1,
"supermerger/IN04/step": 0.0001,
"supermerger/IN05/visible": true,
"supermerger/IN05/value": 0.5,
"supermerger/IN05/minimum": 0,
"supermerger/IN05/maximum": 1,
"supermerger/IN05/step": 0.0001,
"supermerger/IN06/visible": true,
"supermerger/IN06/value": 0.5,
"supermerger/IN06/minimum": 0,
"supermerger/IN06/maximum": 1,
"supermerger/IN06/step": 0.0001,
"supermerger/IN07/visible": true,
"supermerger/IN07/value": 0.5,
"supermerger/IN07/minimum": 0,
"supermerger/IN07/maximum": 1,
"supermerger/IN07/step": 0.0001,
"supermerger/IN08/visible": true,
"supermerger/IN08/value": 0.5,
"supermerger/IN08/minimum": 0,
"supermerger/IN08/maximum": 1,
"supermerger/IN08/step": 0.0001,
"supermerger/IN09/visible": true,
"supermerger/IN09/value": 0.5,
"supermerger/IN09/minimum": 0,
"supermerger/IN09/maximum": 1,
"supermerger/IN09/step": 0.0001,
"supermerger/IN10/visible": true,
"supermerger/IN10/value": 0.5,
"supermerger/IN10/minimum": 0,
"supermerger/IN10/maximum": 1,
"supermerger/IN10/step": 0.0001,
"supermerger/IN11/visible": true,
"supermerger/IN11/value": 0.5,
"supermerger/IN11/minimum": 0,
"supermerger/IN11/maximum": 1,
"supermerger/IN11/step": 0.0001,
"supermerger/M00/visible": true,
"supermerger/M00/value": 0.5,
"supermerger/M00/minimum": 0,
"supermerger/M00/maximum": 1,
"supermerger/M00/step": 0.0001,
"supermerger/OUT11/visible": true,
"supermerger/OUT11/value": 0.5,
"supermerger/OUT11/minimum": 0,
"supermerger/OUT11/maximum": 1,
"supermerger/OUT11/step": 0.0001,
"supermerger/OUT10/visible": true,
"supermerger/OUT10/value": 0.5,
"supermerger/OUT10/minimum": 0,
"supermerger/OUT10/maximum": 1,
"supermerger/OUT10/step": 0.0001,
"supermerger/OUT09/visible": true,
"supermerger/OUT09/value": 0.5,
"supermerger/OUT09/minimum": 0,
"supermerger/OUT09/maximum": 1,
"supermerger/OUT09/step": 0.0001,
"supermerger/OUT08/visible": true,
"supermerger/OUT08/value": 0.5,
"supermerger/OUT08/minimum": 0,
"supermerger/OUT08/maximum": 1,
"supermerger/OUT08/step": 0.0001,
"supermerger/OUT07/visible": true,
"supermerger/OUT07/value": 0.5,
"supermerger/OUT07/minimum": 0,
"supermerger/OUT07/maximum": 1,
"supermerger/OUT07/step": 0.0001,
"supermerger/OUT06/visible": true,
"supermerger/OUT06/value": 0.5,
"supermerger/OUT06/minimum": 0,
"supermerger/OUT06/maximum": 1,
"supermerger/OUT06/step": 0.0001,
"supermerger/OUT05/visible": true,
"supermerger/OUT05/value": 0.5,
"supermerger/OUT05/minimum": 0,
"supermerger/OUT05/maximum": 1,
"supermerger/OUT05/step": 0.0001,
"supermerger/OUT04/visible": true,
"supermerger/OUT04/value": 0.5,
"supermerger/OUT04/minimum": 0,
"supermerger/OUT04/maximum": 1,
"supermerger/OUT04/step": 0.0001,
"supermerger/OUT03/visible": true,
"supermerger/OUT03/value": 0.5,
"supermerger/OUT03/minimum": 0,
"supermerger/OUT03/maximum": 1,
"supermerger/OUT03/step": 0.0001,
"supermerger/OUT02/visible": true,
"supermerger/OUT02/value": 0.5,
"supermerger/OUT02/minimum": 0,
"supermerger/OUT02/maximum": 1,
"supermerger/OUT02/step": 0.0001,
"supermerger/OUT01/visible": true,
"supermerger/OUT01/value": 0.5,
"supermerger/OUT01/minimum": 0,
"supermerger/OUT01/maximum": 1,
"supermerger/OUT01/step": 0.0001,
"supermerger/OUT00/visible": true,
"supermerger/OUT00/value": 0.5,
"supermerger/OUT00/minimum": 0,
"supermerger/OUT00/maximum": 1,
"supermerger/OUT00/step": 0.0001,
"supermerger/Reload Presets/visible": true,
"supermerger/Reload Tags/visible": true,
"supermerger/Save Presets/visible": true,
"supermerger/Open TextEditor/visible": true,
"supermerger/available/visible": true,
"supermerger/available/value": "GRAD_V,GRAD_A,FLAT_25,FLAT_75,WRAP08,WRAP12,WRAP14,WRAP16,MID12_50,OUT07,OUT12,OUT12_5,RING08_SOFT,RING08_5,RING10_5,RING10_3,SMOOTHSTEP,REVERSE-SMOOTHSTEP,SMOOTHSTEP*2,R_SMOOTHSTEP*2,SMOOTHSTEP*3,R_SMOOTHSTEP*3,SMOOTHSTEP*4,R_SMOOTHSTEP*4,SMOOTHSTEP/2,R_SMOOTHSTEP/2,SMOOTHSTEP/3,R_SMOOTHSTEP/3,SMOOTHSTEP/4,R_SMOOTHSTEP/4,COSINE,REVERSE_COSINE,TRUE_CUBIC_HERMITE,TRUE_REVERSE_CUBIC_HERMITE,FAKE_CUBIC_HERMITE,FAKE_REVERSE_CUBIC_HERMITE,ALL_A,ALL_B,ALL_R,ALL_U,ALL_X",
"supermerger/Reloat List/visible": true,
"supermerger/Start XY plot/visible": true,
"supermerger/Delete list(-1 for all)/visible": true,
"supermerger/Delete num : /visible": true,
"supermerger/Delete num : /value": 1,
"supermerger/Current Cache/visible": true,
"supermerger/Current Cache/value": "",
"supermerger/Reload Cache List/visible": true,
"supermerger/unload model/visible": true,
"supermerger/Merge to Checkpoint/visible": true,
"supermerger/Make LoRA (alpha * A - beta * B)/visible": true,
"supermerger/Checkpoint A/visible": true,
"supermerger/Checkpoint A/value": null,
"supermerger/Checkpoint B/visible": true,
"supermerger/Checkpoint B/value": null,
"supermerger/Merge LoRAs/visible": true,
"supermerger/ alpha/visible": true,
"supermerger/ alpha/value": 1,
"supermerger/ alpha/minimum": -1.0,
"supermerger/ alpha/maximum": 2,
"supermerger/ alpha/step": 0.001,
"supermerger/ beta/visible": true,
"supermerger/ beta/value": 1,
"supermerger/ beta/minimum": -1.0,
"supermerger/ beta/maximum": 2,
"supermerger/ beta/step": 0.001,
"supermerger/save precision/visible": true,
"supermerger/save precision/value": "fp16",
"supermerger/remake dimension/visible": true,
"supermerger/remake dimension/value": "no",
"supermerger/filename(option)/visible": true,
"supermerger/filename(option)/value": "",
"supermerger/LoRAname1:ratio1:Blocks1,LoRAname2:ratio2:Blocks2,...(\":blocks\" is option, not necessary)/visible": true,
"supermerger/LoRAname1:ratio1:Blocks1,LoRAname2:ratio2:Blocks2,...(\":blocks\" is option, not necessary)/value": "",
"supermerger/calculate dimension of LoRAs(It may take a few minutes if there are many LoRAs)/visible": true,
"supermerger/update list/visible": true,
"supermerger/default LoRA multiplier/visible": true,
"supermerger/default LoRA multiplier/value": 1,
"supermerger/default LoRA multiplier/minimum": -1.0,
"supermerger/default LoRA multiplier/maximum": 2,
"supermerger/default LoRA multiplier/step": 0.1,
"supermerger/select all/visible": true,
"supermerger/deselect all/visible": true,
"supermerger/Analysis Mode/visible": true,
"supermerger/Analysis Mode/value": "ASimilarity",
"supermerger/Block method/visible": true,
"supermerger/Block method/value": "Mean",
"supermerger/Run Analysis/visible": true,
"supermerger/load_history/visible": true,
"supermerger/search/visible": true,
"supermerger/Search Mode/visible": true,
"supermerger/Search Mode/value": "or",
"supermerger/load keys/visible": true,
"supermerger/read metadata/visible": true,
"supermerger/read metadata/value": null,
"filer/Active Dir/visible": true,
"filer/Active Dir/value": "/app/stable-diffusion-webui/models/Stable-diffusion",
"filer/Backup Dir/visible": true,
"filer/Backup Dir/value": "",
"filer/Reload/visible": true,
"filer/Select All/visible": true,
"filer/Deselect All/visible": true,
"filer/Selected/visible": true,
"filer/Selected/value": "",
"filer/Make InvokeAI models.yaml/visible": true,
"filer/Calc SHA256/visible": true,
"filer/Copy/visible": true,
"filer/Move/visible": true,
"filer/Delete/visible": true,
"filer/Download/visible": true,
"filer/URL per line/visible": true,
"filer/URL per line/value": "",
"filer/Download to Active Dir/visible": true,
"filer/Loaded File/visible": true,
"filer/Loaded File/value": "",
"filer/Save/visible": true,
"filer/Action/visible": true,
"filer/Action/value": "Add First",
"filer/Input Directory/visible": true,
"filer/Input Directory/value": "",
"filer/Output Directory/visible": true,
"filer/Output Directory/value": "",
"filer/Convert/visible": true,
"filer/Target/visible": true,
"filer/Target/value": "Prompt",
"filer/Key/Replace Search/regex/visible": true,
"filer/Key/Replace Search/regex/value": "",
"filer/Value/Replacement String/visible": true,
"filer/Value/Replacement String/value": "",
"filer/Add line/visible": true,
"filer/Macro/visible": true,
"filer/Macro/value": "",
"filer/Load/visible": true,
"filer/Output WEBP Directory/visible": true,
"filer/Output WEBP Directory/value": "",
"filer/Apply generate settings/visible": true,
"filer/webp_quality/visible": true,
"filer/webp_quality/value": "90",
"filer/upscaler/visible": true,
"filer/upscaler/value": "R-ESRGAN 2x+",
"filer/upscaling_resize/visible": true,
"filer/upscaling_resize/value": "2",
"filer/upscaling_resize_w/visible": true,
"filer/upscaling_resize_w/value": "0",
"filer/upscaling_resize_h/visible": true,
"filer/upscaling_resize_h/value": "0",
"filer/upscaling_crop/visible": true,
"filer/upscaling_crop/value": "1",
"filer/imagefont_truetype/visible": true,
"filer/imagefont_truetype/value": "Arial.ttf",
"filer/imagefont_truetype_index/visible": true,
"filer/imagefont_truetype_index/value": "0",
"filer/imagefont_truetype_size/visible": true,
"filer/imagefont_truetype_size/value": "24",
"filer/draw_text_left/visible": true,
"filer/draw_text_left/value": "0",
"filer/draw_text_top/visible": true,
"filer/draw_text_top/value": "0",
"filer/draw_text_color/visible": true,
"filer/draw_text_color/value": "Black",
"filer/draw_text/visible": true,
"filer/draw_text/value": "",
"filer/Apply webp settings/visible": true,
"filer/Apply settings/visible": true,
"filer/Backup_Dir/visible": true,
"filer/Backup_Dir/value": "",
"filer/Backup_Checkpoints_Dir/visible": true,
"filer/Backup_Checkpoints_Dir/value": "",
"filer/Backup_Embeddings_Dir/visible": true,
"filer/Backup_Embeddings_Dir/value": "",
"filer/Backup_Dreambooths_Dir/visible": true,
"filer/Backup_Dreambooths_Dir/value": "",
"filer/Backup_Loras_Dir/visible": true,
"filer/Backup_Loras_Dir/value": "",
"filer/Backup_Hypernetworks_Dir/visible": true,
"filer/Backup_Hypernetworks_Dir/value": "",
"filer/Backup_Extensions_Dir/visible": true,
"filer/Backup_Extensions_Dir/value": "",
"filer/Backup_Images_Dir/visible": true,
"filer/Backup_Images_Dir/value": "",
"filer/Basic/visible": true,
"filer/Hashes/visible": true,
"filer/pip list/visible": true,
"filer/System Information/visible": true,
"filer/System Information/value": "",
"huggingface/Push Folder To \ud83e\udd17/visible": true,
"huggingface/Push File To \ud83e\udd17/visible": true,
"huggingface/run command/visible": true,
"checkpoint_toolkit/Source/visible": true,
"checkpoint_toolkit/Source/value": "3DMM_V12.safetensors",
"checkpoint_toolkit/Load/visible": true,
"checkpoint_toolkit/Refresh/visible": true,
"checkpoint_toolkit/Name/visible": true,
"checkpoint_toolkit/Name/value": "",
"checkpoint_toolkit/Precision/visible": true,
"checkpoint_toolkit/Precision/value": "FP16",
"checkpoint_toolkit/Save/visible": true,
"checkpoint_toolkit/Clear/visible": true,
"checkpoint_toolkit/Architecture/visible": true,
"checkpoint_toolkit/Architecture/value": null,
"checkpoint_toolkit/Class/visible": true,
"checkpoint_toolkit/Class/value": null,
"checkpoint_toolkit/Component/visible": true,
"checkpoint_toolkit/Component/value": null,
"checkpoint_toolkit/File/visible": true,
"checkpoint_toolkit/File/value": "3DMM_V12.safetensors",
"checkpoint_toolkit/Import/visible": true,
"checkpoint_toolkit/Export/visible": true,
"stable_horde_interrogation/Source image URL/visible": true,
"stable_horde_interrogation/Source image URL/value": "",
"stable_horde_interrogation/NSFW: Returns a true/false boolean depending on whether the image is displaying NSFW imagery or not/visible": true,
"stable_horde_interrogation/NSFW: Returns a true/false boolean depending on whether the image is displaying NSFW imagery or not/value": false,
"stable_horde_interrogation/Caption: Returns a string describing the image/visible": true,
"stable_horde_interrogation/Caption: Returns a string describing the image/value": false,
"stable_horde_interrogation/Interrogation: Returns a dictionary of key words best describing the image, with an accompanying confidence score/visible": true,
"stable_horde_interrogation/Interrogation: Returns a dictionary of key words best describing the image, with an accompanying confidence score/value": false,
"stable_horde_interrogation/Cancel/visible": true,
"stable_horde_interrogation/Interrogate/visible": true,
"stable_horde_settings/API endpoint/visible": true,
"stable_horde_settings/API endpoint/value": "",
"stable_horde_settings/API key/visible": true,
"stable_horde_settings/API key/value": "",
"stable_horde_settings/Show/visible": true,
"stable_horde_settings/Censor NSFW when NSFW is disabled/visible": true,
"stable_horde_settings/Censor NSFW when NSFW is disabled/value": false,
"stable_horde_settings/Only send requests to trusted workers/visible": true,
"stable_horde_settings/Only send requests to trusted workers/value": false,
"stable_horde_settings/Only send requests to these workers/visible": true,
"stable_horde_settings/Only send requests to these workers/value": "",
"stable_horde_settings/\u267b\ufe0f Reset settings/visible": true,
"stable_horde_settings/\ud83d\udd04 Reload settings/visible": true,
"stable_horde_settings/\ud83d\udcbe Apply settings/visible": true,
"webui/Tabs@tabs/selected": null
} |