File size: 46,288 Bytes
6dd15e9 |
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 |
{
"ss_num_train_images": 52,
"ss_color_aug": true,
"ss_num_batches_per_epoch": 6,
"ss_min_snr_gamma": null,
"ss_adaptive_noise_scale": null,
"ss_batch_size_per_device": 8,
"ss_bucket_no_upscale": true,
"ss_network_alpha": 4.0,
"ss_multires_noise_iterations": 10.0,
"modelspec.resolution": "512x512",
"ss_num_reg_images": 0,
"ss_ip_noise_gamma_random_strength": "False",
"ss_lr_warmup_steps": 0,
"ss_learning_rate": 0.0001,
"ss_steps": 400,
"ss_total_batch_size": 192,
"ss_lr_scheduler": "cosine",
"ss_num_epochs": 400,
"ss_unet_lr": 0.0001,
"sshs_model_hash": "be6f46946d19f862b9ec16b431214aa64f462c97bcffa5da49ce452131fc25aa",
"ss_zero_terminal_snr": true,
"ss_reg_dataset_dirs": {},
"ss_seed": 2910000596,
"modelspec.implementation": "https://github.com/Stability-AI/generative-models",
"modelspec.sai_model_spec": "1.0.0",
"ss_network_args": {
"preset": "full",
"conv_dim": "256",
"conv_alpha": "4",
"rank_dropout": "0",
"module_dropout": "0",
"use_tucker": "False",
"use_scalar": "False",
"rank_dropout_scale": "False",
"algo": "locon",
"train_norm": "False",
"block_dims": "8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8",
"block_alphas": "0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625,0.0625",
"dropout": 0.0
},
"ss_network_dim": 8.0,
"ss_sd_scripts_commit_hash": "71e2c91330a9d866ec05cdd10584bbb962896a99",
"ss_huber_c": "0.1",
"ss_sd_model_hash": "IsADirectory",
"ss_tag_frequency": {
"1_bdsm": {
"rating_explicit": 49,
"anal": 17,
"anal penetration": 13,
"anthro": 48,
"anthro on anthro": 21,
"anthro penetrated": 18,
"anthro penetrating": 14,
"anthro penetrating anthro": 14,
"assisted exposure": 1,
"backsack": 8,
"balls": 26,
"bdsm": 52,
"big breasts": 6,
"bodily fluids": 46,
"bondage": 42,
"bouncing breasts": 1,
"bound": 46,
"breasts": 18,
"clitoral hood": 6,
"clitoris": 6,
"clothed": 16,
"clothing": 29,
"collar": 18,
"countershading": 11,
"dewclaw hooves": 3,
"dialogue": 14,
"dominant": 21,
"dominant male": 14,
"dripping": 21,
"dripping pussy": 1,
"duo": 15,
"faceless character": 13,
"faceless male": 10,
"female": 26,
"female penetrated": 8,
"fur": 34,
"genital fluids": 41,
"genitals": 48,
"grin": 2,
"hooves": 11,
"leash": 9,
"leg spreader": 2,
"looking at viewer": 9,
"male": 39,
"male/female": 14,
"male penetrating": 21,
"male penetrating female": 8,
"muzzle \\(object\\)": 8,
"muzzled": 4,
"nipples": 15,
"panties": 4,
"panties down": 2,
"partially clothed": 9,
"penetration": 24,
"penile": 22,
"penile penetration": 16,
"penis": 37,
"penis in ass": 8,
"pink clothing": 3,
"pink panties": 1,
"pink underwear": 1,
"pussy": 21,
"questionable consent": 4,
"restraints": 24,
"sex": 30,
"smile": 11,
"spreader bar": 2,
"submissive": 33,
"submissive female": 14,
"surprise": 1,
"surprise buttsex": 1,
"surprised expression": 1,
"text": 25,
"underwear": 6,
"underwear down": 2,
"unguligrade": 11,
"vaginal fluids": 7,
"wall bondage": 1,
"wrists together": 3,
"wrong hole": 1,
"by loimu": 3,
"loimu \\(character\\)": 3,
"cervine": 4,
"deer": 11,
"english text": 20,
"anal juice": 1,
"animal genitalia": 19,
"aroused": 1,
"bar": 1,
"being watched": 10,
"blush": 24,
"body writing": 3,
"bondage gear": 3,
"bondage gloves": 2,
"chastity cage": 3,
"chastity cage only": 1,
"chastity device": 3,
"chastity device only": 1,
"compliment": 1,
"crowd": 4,
"easy access": 2,
"embarrassed": 1,
"erection": 22,
"free use": 7,
"glistening": 11,
"glistening fingers": 1,
"gloves": 4,
"group": 23,
"hair": 18,
"hair over eyes": 1,
"hand on penis": 2,
"handwear": 4,
"harness": 7,
"headgear": 2,
"headwear": 2,
"heart symbol": 12,
"humanoid genitalia": 14,
"humanoid penis": 13,
"humiliation": 4,
"imminent anal": 4,
"kneeling": 6,
"leash pull": 3,
"looking at another": 15,
"male/male": 21,
"marker": 2,
"nude": 35,
"party": 5,
"party favor": 2,
"paw gloves": 1,
"penis through fly": 1,
"penis through underwear": 1,
"penis through zipper": 1,
"penis tip": 3,
"petplay": 1,
"poking out": 1,
"praise": 2,
"precum": 6,
"precum string": 2,
"presenting partner": 1,
"profanity": 2,
"public": 12,
"public humiliation": 4,
"public use": 16,
"raised tail": 8,
"roleplay": 1,
"shaking": 6,
"sheath": 9,
"sheath cage": 2,
"solo focus": 10,
"speech bubble": 12,
"submissive male": 19,
"tail": 30,
"tail grab": 2,
"trembling": 4,
"writing on butt": 2,
"writing on thigh": 1,
"zipper underwear": 1,
"by braeburned": 11,
"feline": 4,
"wolf": 11,
"anus": 21,
"areola": 11,
"arms above head": 3,
"arms tied": 6,
"bedroom eyes": 3,
"big butt": 5,
"butt": 28,
"chest tuft": 2,
"feet": 32,
"folded": 2,
"front view": 4,
"half-closed eyes": 6,
"inside": 11,
"legs tied": 11,
"legs up": 6,
"lying": 15,
"narrowed eyes": 10,
"navel": 9,
"on back": 10,
"pink areola": 4,
"pink body": 2,
"pink nipples": 6,
"pink pussy": 7,
"plump labia": 2,
"presenting": 9,
"presenting pussy": 5,
"purple eyes": 2,
"rope": 19,
"seductive": 4,
"solo": 13,
"spread legs": 14,
"spreading": 16,
"sweat": 7,
"thick thighs": 5,
"tuft": 8,
"wide open": 1,
"by pinkaxolotl": 1,
"palworld": 1,
"pocketpair": 1,
"lovander": 1,
"pal \\(species\\)": 1,
"scalie": 8,
"artist name": 3,
"digital media \\(artwork\\)": 29,
"5 fingers": 8,
"abs": 6,
"accessory": 2,
"anthro penetrating female": 1,
"antlers": 7,
"arm support": 1,
"athletic": 2,
"athletic anthro": 2,
"athletic female": 2,
"bed": 5,
"bedding": 3,
"bedroom": 1,
"bell": 2,
"bell harness": 1,
"biceps": 2,
"biped": 15,
"brown body": 7,
"brown eyes": 3,
"brown fur": 6,
"brown nose": 1,
"cheek tuft": 1,
"chest grab": 1,
"claws": 21,
"countershade torso": 4,
"crossgender": 1,
"curtains": 3,
"day": 4,
"deer ears": 1,
"deltoids": 1,
"dominant anthro": 2,
"extended arm": 1,
"eyebrows": 6,
"faceless female": 1,
"facial tuft": 1,
"female on bottom": 3,
"female pov": 1,
"finger claws": 3,
"fingers": 12,
"first person view": 4,
"fluffy": 5,
"from front position": 5,
"furniture": 14,
"glistening eyes": 1,
"glistening nose": 1,
"grey body": 11,
"grey fur": 10,
"hairless": 1,
"halter": 1,
"halter top": 1,
"hand on abs": 1,
"hand on another's chest": 1,
"hand on chest": 1,
"holding leash": 1,
"holding object": 3,
"holidays": 2,
"horn": 11,
"humanoid pussy": 2,
"inner ear fluff": 4,
"leashed top": 1,
"looking at partner": 1,
"lust": 1,
"lying on bed": 1,
"male focus": 2,
"male on top": 5,
"missionary position": 1,
"monotone body": 1,
"monotone fur": 1,
"mostly nude": 5,
"mtf crossgender": 1,
"multicolored body": 13,
"multicolored fur": 12,
"muscular": 4,
"muscular anthro": 1,
"muscular male": 3,
"muscular sub": 1,
"muscular top": 1,
"naughty face": 1,
"on bed": 3,
"on bottom": 6,
"on front": 3,
"on top": 6,
"open mouth": 15,
"pecs": 3,
"penetrated pov": 1,
"penis in pussy": 6,
"pink penis": 6,
"predator/prey": 5,
"receiving pov": 1,
"red leash": 1,
"requesting": 1,
"submissive anthro": 6,
"submissive pov": 2,
"talking to another": 1,
"talking to partner": 1,
"talking to viewer": 2,
"teeth": 11,
"teeth showing": 1,
"torso grab": 1,
"triceps": 1,
"two tone body": 8,
"two tone fur": 8,
"vaginal": 8,
"vaginal penetration": 8,
"vein": 8,
"veiny penis": 5,
"white body": 20,
"white fur": 16,
"by riska \\(artist\\)": 2,
"beastars": 1,
"christmas": 2,
"legoshi \\(beastars\\)": 1,
"louis \\(beastars\\)": 1,
"red deer": 1,
"tag panic": 4,
"url": 5,
"4 toes": 15,
"abandonment play": 1,
"after orgasm torture": 1,
"animal penis": 17,
"armwear": 3,
"ball gag": 9,
"black armwear": 2,
"black clothing": 2,
"black legwear": 2,
"blindfold": 4,
"blue bottomwear": 1,
"blue clothing": 1,
"blue pants": 1,
"bottomwear": 8,
"brown hair": 3,
"brown pawpads": 1,
"buttplug": 4,
"container": 5,
"corset": 1,
"crossdressing": 2,
"cum": 31,
"cum collecting": 1,
"cum in container": 3,
"cum quota": 1,
"cum slave": 1,
"curled hair": 1,
"curling toes": 4,
"dark room": 1,
"dominant female": 3,
"ejaculation": 14,
"footwear": 4,
"forced": 17,
"forced ejaculation": 1,
"forced orgasm": 3,
"frogtied": 2,
"gag": 10,
"gagged": 7,
"gentle femdom": 1,
"girly": 7,
"good boy": 1,
"hands above head": 1,
"hands tied": 9,
"harness ball gag": 2,
"harness gag": 2,
"helpless": 2,
"left alone": 1,
"legwear": 7,
"lingerie": 1,
"long hair": 2,
"looking pleasured": 15,
"machine": 2,
"male penetrated": 13,
"milking machine": 1,
"orgasm": 14,
"overstimulation": 3,
"pants": 4,
"pawpads": 14,
"paws": 17,
"penis milking": 1,
"penis milking machine": 1,
"pink shirt": 1,
"pink topwear": 1,
"plug \\(sex toy\\)": 4,
"restrained": 16,
"rope bondage": 13,
"sex toy": 8,
"shelf": 1,
"shirt": 4,
"sitting": 5,
"snarling": 1,
"squirming": 1,
"standing": 4,
"stockings": 4,
"struggling": 1,
"toeless footwear": 1,
"toeless legwear": 1,
"toeless stockings": 1,
"toes": 24,
"topwear": 12,
"white hair": 3,
"wrists tied": 2,
"by ruaidri": 4,
"chest freezer \\(ruaidri\\)": 1,
"cinnamon \\(ruaidri\\)": 1,
"dalian \\(sentharn\\)": 1,
"lagomorph": 3,
"leporid": 3,
"rabbit": 3,
"ambiguous gender": 3,
"angry": 5,
"big balls": 5,
"blue body": 5,
"blue fur": 3,
"blue perineum": 1,
"box bondage": 2,
"feral": 6,
"feral bondage": 1,
"imminent rape": 2,
"imminent sex": 7,
"looking back": 7,
"male/ambiguous": 2,
"perineum": 7,
"purple body": 3,
"purple fur": 2,
"rear view": 7,
"sex box": 2,
"tears": 4,
"trio": 7,
"yellow body": 4,
"yellow fur": 3,
"by dagasi": 1,
"espeon": 1,
"glaceon": 1,
"leafeon": 1,
"japanese text": 1,
"arm warmers": 2,
"ball slap": 1,
"big penis": 6,
"box": 1,
"breeding mount": 1,
"breeding mount use": 1,
"fully bound": 4,
"glistening body": 7,
"latex": 2,
"latex armwear": 1,
"latex clothing": 1,
"latex gloves": 1,
"latex handware": 1,
"latex handwear": 1,
"latex legwear": 1,
"latex stockings": 1,
"liquid": 1,
"male dominating male": 2,
"male penetrating male": 12,
"pink anus": 5,
"presenting hindquarters": 4,
"slap": 2,
"soles": 8,
"space": 1,
"spread butt": 2,
"sweatdrop": 2,
"sweaty genitalia": 1,
"thigh highs": 2,
"toe claws": 16,
"y anus": 1,
"by edjit": 1,
"lilo and stitch": 1,
"fan character": 1,
"ferlo": 1,
"keyne": 1,
"alien": 1,
"experiment \\(lilo and stitch\\)": 1,
"3 toes": 5,
"barefoot": 10,
"blep": 1,
"blue claws": 1,
"blue eyes": 8,
"blue pussy": 1,
"blue tongue": 1,
"brick wall": 1,
"chain": 5,
"chained": 3,
"collar only": 6,
"colored nails": 1,
"countershade feet": 2,
"cuff \\(restraint\\)": 7,
"cum from nose": 3,
"cum from pussy": 8,
"cum in nose": 4,
"cum in pussy": 13,
"cum inside": 28,
"cum on chest": 3,
"cum on face": 9,
"dungeon": 1,
"fantasy": 2,
"featureless chest": 1,
"feet above head": 1,
"flat chested": 1,
"flexible": 2,
"fucked silly": 7,
"green body": 1,
"hands behind head": 1,
"humor": 1,
"leaking cum": 14,
"legs above head": 1,
"legs behind head": 1,
"master": 1,
"mostly nude female": 1,
"nails": 1,
"pink tongue": 2,
"plantigrade": 3,
"prisoner": 2,
"red claws": 1,
"red eyes": 3,
"semi-anthro": 3,
"shackles": 5,
"short stack": 2,
"slave": 8,
"suspension": 3,
"suspension bondage": 1,
"take your pick": 1,
"tan body": 6,
"tongue": 17,
"tongue out": 11,
"wall \\(structure\\)": 2,
"by sorc": 1,
"kobold": 2,
"reptile": 6,
"black body": 6,
"black border": 4,
"black claws": 1,
"black fur": 6,
"border": 5,
"bottomless": 8,
"digitigrade": 16,
"duo focus": 6,
"half-erect": 1,
"huge penis": 2,
"hybrid genitalia": 2,
"hybrid penis": 2,
"knot": 9,
"larger anthro": 3,
"larger male": 6,
"lipsticking": 1,
"nervous": 2,
"outside": 7,
"penis size difference": 5,
"plant": 7,
"precum drip": 1,
"red body": 2,
"red fur": 1,
"red penis": 4,
"sheathed humanoid penis": 1,
"sign": 3,
"size difference": 12,
"smaller anthro": 2,
"smaller male": 9,
"swallowing": 1,
"t-shirt": 1,
"tree": 6,
"white claws": 2,
"yellow eyes": 2,
"yellow penis": 1,
"yellow tongue": 1,
"by zackary911": 6,
"patreon": 3,
"kelryn": 1,
"ferrin": 1,
"signature": 10,
"after rape": 1,
"after sex": 15,
"belly": 3,
"breeding slave": 2,
"chain leash": 1,
"crouching": 3,
"crying": 1,
"cum as food": 1,
"cum drip": 17,
"cum everywhere": 2,
"cum feeding": 1,
"cum in mouth": 6,
"cum on ground": 6,
"cum on penis": 7,
"cum string": 5,
"cumshot": 7,
"disembodied penis": 2,
"drinking": 1,
"drinking cum": 1,
"dripping from both ends": 1,
"erect nipples": 1,
"female focus": 3,
"force feeding": 1,
"hands behind back": 9,
"messy": 8,
"nude female": 7,
"oral invitation": 3,
"pregnant": 3,
"pregnant anthro": 1,
"pregnant female": 3,
"rape": 7,
"sex slave": 6,
"shackled": 2,
"simple background": 5,
"after orgasm": 2,
"after vaginal": 5,
"ankle cuffs": 2,
"belt buckle": 1,
"bondage chair": 1,
"bondage furniture": 1,
"book": 1,
"book stack": 1,
"book title": 1,
"breath": 4,
"breathing noises": 1,
"chair": 8,
"chair bondage": 2,
"cloven hooves": 5,
"dildo": 3,
"discarded clothing": 1,
"discarded sex toy": 2,
"doctor": 1,
"doctor's office": 1,
"drooling": 6,
"electric toothbrush": 1,
"excessive genital fluids": 9,
"excessive pussy juice": 1,
"gynecological chair": 1,
"happy": 1,
"medical": 1,
"miniskirt": 1,
"motion lines": 4,
"office": 1,
"onomatopoeia": 5,
"panting": 2,
"pink eyes": 1,
"pussy juice everywhere": 1,
"pussy juice on sex toy": 1,
"red ball gag": 1,
"restrained arms": 1,
"restrained legs": 1,
"saliva": 9,
"school uniform": 1,
"science": 1,
"scientific experiment": 1,
"shortened sound effect": 2,
"skirt": 1,
"small waist": 1,
"sound effect variant": 2,
"sound effects": 5,
"stack": 1,
"steam": 1,
"straps": 1,
"tan fur": 5,
"title": 1,
"toy selection": 1,
"uniform": 1,
"vowelless": 2,
"vowelless sound effect": 2,
"anatomically correct": 2,
"anatomically correct genitalia": 2,
"anatomically correct penis": 1,
"animal pussy": 1,
"anthro on feral": 3,
"ascot": 1,
"bandanna": 1,
"bestiality": 5,
"breeding stand": 1,
"cervical contact": 1,
"cervix": 1,
"cum in uterus": 1,
"cutaway": 1,
"dominant feral": 1,
"female on feral": 1,
"feral dominating anthro": 1,
"feral penetrating": 2,
"feral penetrating anthro": 2,
"from behind position": 10,
"fuck bench": 3,
"internal": 1,
"intraspecies": 1,
"intraspecies bestiality": 1,
"kerchief": 1,
"knotting": 1,
"larger female": 3,
"larger penetrated": 3,
"male dominating female": 1,
"male on anthro": 2,
"mounting": 5,
"neckerchief": 1,
"quadruped": 3,
"side view": 2,
"smaller feral": 1,
"smaller on top": 1,
"uterus": 1,
"vaginal knotting": 1,
"by xenoforge": 1,
"dizfoley": 1,
"border collie": 1,
"collie": 1,
"domestic dog": 7,
"herding dog": 2,
"pastoral dog": 2,
"sheepdog": 2,
"andromorph": 1,
"excessive cum": 8,
"fangs": 2,
"intersex": 1,
"nude andromorph": 1,
"nude anthro": 3,
"nude intersex": 1,
"orange body": 4,
"orange fur": 4,
"orange hair": 1,
"pink nose": 3,
"short hair": 3,
"stocks": 2,
"submissive andromorph": 1,
"submissive intersex": 1,
"by kilver": 1,
"ty hanson": 1,
"pantherine": 4,
"tiger": 1,
"full-length portrait": 1,
"lol comments": 1,
"portrait": 1,
"andromorph \\(lore\\)": 1,
"mammal": 1,
"piercing": 9,
"explicit": 1,
"canid": 1,
"canine": 1,
"nipple piercing": 2,
"ring piercing": 6,
"ear piercing": 6,
"ear ring": 3,
"canis": 1,
"navel piercing": 1,
"pussy juice": 1,
"facial piercing": 5,
"pussy piercing": 1,
"nipple chain": 2,
"digital media \\\\(artwork\\\\)": 1,
"nipple ring": 1,
"clitoris piercing": 1,
"genital piercing": 1,
"rope harness": 2,
"nose piercing": 4,
"by kade": 1,
"anal orgasm": 6,
"animal skin": 2,
"bisexual parallel sex": 1,
"both sexes in same situation": 2,
"breast grab": 1,
"cum in ass": 17,
"cum while penetrated": 5,
"defanged": 2,
"dominant prey": 3,
"fellatio": 5,
"fur \\(fabric\\)": 2,
"fur clothing": 3,
"group nudity": 3,
"group sex": 8,
"hand on breast": 1,
"implied snuff": 3,
"interspecies": 13,
"interspecies domination": 5,
"jewelry": 6,
"jewelry only": 1,
"leaking": 2,
"leaking precum": 1,
"male and female submissive": 1,
"necklace": 3,
"necklace only": 2,
"oral": 5,
"parallel sex": 1,
"predator penetrated": 2,
"prey dom predator sub": 2,
"prey penetrating": 2,
"prey penetrating predator": 2,
"revenge": 2,
"revenge sex": 1,
"role reversal": 2,
"scut tail": 2,
"short tail": 2,
"spitroast": 3,
"submissive predator": 4,
"tent": 1,
"tooth necklace": 2,
"tribal": 5,
"story": 2,
"story in description": 2,
"traditional media \\(artwork\\)": 2,
"computer": 1,
"cum from ass": 9,
"electronics": 4,
"gaping": 3,
"gaping anus": 3,
"headphones": 1,
"laptop": 1,
"lip piercing": 1,
"male anthro": 2,
"question mark": 1,
"whiskers": 1,
"winged arms": 1,
"wings": 4,
"sennheiser": 1,
"bat": 1,
"hyena": 3,
"beach": 1,
"beach umbrella": 1,
"boat": 1,
"bottomless male": 1,
"communal shower": 1,
"cooler": 1,
"cum on butt": 9,
"cum on leg": 7,
"parasol": 1,
"public nudity": 5,
"public shower": 1,
"sailing boat": 1,
"sailing watercraft": 1,
"seaside": 1,
"shower": 1,
"shower room": 1,
"swimming trunks": 1,
"swimwear": 1,
"vehicle": 1,
"watercraft": 1,
"tiderace \\(character\\)": 1,
"bound male": 2,
"chair position": 1,
"eyes closed": 4,
"forced partners": 1,
"holding melee weapon": 1,
"holding polearm": 1,
"holding spear": 1,
"holding weapon": 1,
"in heat": 1,
"loincloth": 3,
"melee weapon": 2,
"neck tuft": 1,
"on chair": 2,
"on lap": 1,
"polearm": 1,
"side boob": 1,
"spear": 1,
"tied to chair": 1,
"topless": 3,
"topless male": 1,
"weapon": 2,
"after oral": 2,
"after vaginal penetration": 3,
"cum from mouth": 2,
"cum in hair": 4,
"cum inflation": 5,
"cum on head": 1,
"cum on own penis": 3,
"cum on self": 4,
"cum on table": 1,
"cum on tongue": 3,
"cum splatter": 4,
"eyelashes": 3,
"green penis": 2,
"inflation": 5,
"one eye closed": 2,
"patreon logo": 1,
"pregnant sex": 2,
"presenting cream pie": 3,
"twitter logo": 1,
"unguligrade anthro": 3,
"by tofu froth": 2,
"activision": 2,
"spyro the dragon": 2,
"twitter": 1,
"elora": 2,
"faun \\(spyro\\)": 2,
"arched back": 2,
"balcony": 1,
"bent over": 4,
"bite": 1,
"biting lip": 1,
"biting own lip": 1,
"butt slap": 1,
"caught": 2,
"city": 1,
"clenched teeth": 4,
"clothed anthro": 1,
"clothed anthro nude anthro": 1,
"countershade face": 3,
"cum from spanking": 1,
"exhibitionism": 3,
"glistening clothing": 2,
"grey hair": 3,
"hands-free": 5,
"leaf": 2,
"markings": 6,
"nose ring": 3,
"public erection": 1,
"public exposure": 2,
"public sex": 3,
"self bite": 1,
"semi public": 1,
"septum piercing": 1,
"septum ring": 1,
"side butt": 1,
"spank marks": 2,
"spanking": 1,
"spots": 1,
"spotted body": 1,
"spotted fur": 1,
"standing doggystyle": 1,
"voyeur": 3,
"water": 1,
"by rajii": 1,
"akkla": 1,
"asinus": 1,
"donkey": 1,
"equid": 5,
"equine": 5,
"fox": 6,
"amber eyes": 1,
"back bow": 1,
"big bow": 1,
"black paws": 1,
"bound female": 3,
"bow \\(feature\\)": 1,
"bow in back": 1,
"bow ribbon": 1,
"christmas lights": 1,
"fluffy tail": 4,
"gift": 1,
"gift box": 1,
"gift wrapped": 1,
"looking back at viewer": 2,
"pillow": 3,
"ribbon bondage": 1,
"ribbons": 1,
"tail aside": 1,
"wide hips": 3,
"by photonoko": 1,
"arctic fox": 1,
"true fox": 2,
"digital painting \\(artwork\\)": 2,
"announcing orgasm": 1,
"blue pawpads": 1,
"competition": 1,
"dizzy": 1,
"dizzy eyes": 2,
"double penetration": 2,
"hand on butt": 3,
"hindpaw": 1,
"hogtied": 1,
"irrumatio": 1,
"looking down": 2,
"office chair": 1,
"oral penetration": 2,
"orgasm denial": 1,
"orgy": 1,
"party game": 1,
"queue": 2,
"sexual competition": 1,
"soft focus": 1,
"spin the bottom": 1,
"spiral eyes": 2,
"taking turns": 3,
"threesome": 2,
"throat swabbing": 1,
"riledyeen": 1,
"west \\(westt\\)": 1,
"striped hyena": 1,
"dated": 2,
"restricted palette": 1,
"assisted penetration": 1,
"assisted sex": 1,
"con badge": 1,
"convention": 1,
"convention room": 1,
"curled tail": 1,
"duct tape": 1,
"explicitly stated consent": 3,
"gangbang": 3,
"hotel": 2,
"jockstrap": 1,
"lanyard": 1,
"penile spines": 1,
"phone": 1,
"recording": 1,
"reverse gangbang": 2,
"service top": 3,
"submissive top": 2,
"tape": 1,
"shiba inu": 1,
"spitz": 2,
"cumshot in mouth": 1,
"kneeling oral position": 1,
"licking": 1,
"licking tip": 1,
"offscreen character": 1,
"penis in mouth": 2,
"penis on tongue": 1,
"tongue taco": 1,
"sochi \\(lynx\\)": 1,
"lynx": 1,
"tag \\(disambiguation\\)": 1,
"digital drawing \\(artwork\\)": 2,
"after kiss": 1,
"bisexual": 2,
"bottomwear down": 1,
"breast squish": 1,
"breasts frottage": 1,
"broken condom": 1,
"calf socks": 1,
"clothing aside": 2,
"condom": 4,
"female/female": 1,
"foot focus": 1,
"long socks": 1,
"male pov": 1,
"multicolored clothing": 1,
"multicolored footwear": 1,
"multicolored socks": 1,
"offscreen male": 1,
"panties aside": 1,
"pants down": 1,
"paws in socks": 1,
"pink footwear": 1,
"pink socks": 1,
"pussy juice string": 1,
"raised clothing": 1,
"raised shirt": 1,
"raised topwear": 1,
"removing condom": 2,
"sabotaged condom": 1,
"saliva string": 3,
"sexual barrier device": 4,
"socks": 2,
"squish": 2,
"two tone clothing": 1,
"two tone footwear": 1,
"two tone socks": 1,
"underwear aside": 1,
"by nelly63": 1,
"nitef \\(nelly63\\)": 1,
"shani \\(nelly63\\)": 1,
"virgina cowell": 1,
"domestic cat": 2,
"jackal": 1,
"watermark": 1,
"brother \\(lore\\)": 1,
"brother and sister \\(lore\\)": 1,
"incest \\(lore\\)": 1,
"sibling \\(lore\\)": 1,
"sister \\(lore\\)": 1,
"belt": 1,
"bulge": 3,
"captured": 3,
"cuffs to collar": 1,
"cum on belly": 2,
"cum on body": 3,
"defeat": 1,
"defeat sex": 1,
"defeated": 2,
"dominant human": 1,
"feral penetrated": 1,
"human on feral": 1,
"human penetrating": 1,
"human penetrating feral": 1,
"larger feral": 2,
"lock": 2,
"male on feral": 3,
"medieval": 1,
"membrane \\(anatomy\\)": 2,
"membranous wings": 2,
"one after another": 2,
"power play": 1,
"reins": 2,
"shorts": 1,
"small dom big sub": 3,
"smaller human": 1,
"submissive feral": 1,
"tail cuff": 1,
"by etheross": 1,
"mythology": 5,
"dragon": 2,
"horse": 2,
"human": 2,
"hand on belly": 1,
"heart eyes": 5,
"neckwear": 1,
"by woolrool": 1,
"senip": 1,
"australian shepherd": 1,
"2 toes": 1,
"3 fingers": 1,
"after penetration": 1,
"ambiguous penetrated": 1,
"bent over table": 1,
"corruption": 1,
"cum on balls": 3,
"cum on tail": 5,
"doggystyle": 2,
"glowing": 2,
"glowing eyes": 2,
"hacking": 1,
"hoodie": 1,
"light": 3,
"living sex toy": 1,
"male penetrating ambiguous": 1,
"on side": 2,
"open smile": 2,
"opening door": 1,
"perching position": 1,
"pull out": 2,
"robophilia": 1,
"screen": 1,
"screen face": 1,
"soul devouring eyes": 1,
"synthetic": 1,
"tail fetish": 1,
"tail play": 1,
"tail sex": 1,
"tailbutt": 1,
"translucent": 1,
"translucent body": 1,
"usb": 1,
"usb drive": 1,
"wire": 1,
"bondi \\(braeburned\\)": 1,
"hacked bondi \\(braeburned\\)": 1,
"marlow \\(shaggy geck\\)": 1,
"android": 1,
"eublepharid": 1,
"gecko": 1,
"gulonine": 1,
"kangaroo": 2,
"leopard gecko": 1,
"living sex doll": 1,
"lizard": 2,
"macropod": 2,
"marsupial": 2,
"mustelid": 1,
"musteline": 1,
"otter": 1,
"robot": 1,
"synth \\(vader-san\\)": 1,
"wolverine": 1,
"lighting": 1,
"black penis": 3,
"catch condom": 2,
"desert": 2,
"equine genitalia": 3,
"equine penis": 3,
"filled condom": 2,
"medial ring": 4,
"predator penetrating": 1,
"predator penetrating prey": 1,
"prey penetrated": 1,
"raceplay": 2,
"savanna": 2,
"striped \\(kink\\)": 2,
"stripes": 2,
"wearing condom": 2,
"wrist cuffs": 1,
"by slyus": 1,
"lion": 2,
"zebra": 2,
"beak": 1,
"black beak": 1,
"black nose": 4,
"blood": 1,
"bridle": 1,
"cum on feet": 3,
"cum pooling": 2,
"falconry hood": 1,
"feathered wings": 1,
"feathers": 1,
"feral penetrating male": 1,
"forced bestiality": 1,
"forest": 2,
"hood": 1,
"humanoid hands": 1,
"leg wound": 1,
"log": 1,
"male on bottom": 2,
"male penetrating anthro": 2,
"scratches": 1,
"smaller female": 2,
"white feathers": 1,
"wood": 2,
"yellow feathers": 1,
"avian": 1,
"gryphon": 1,
"mythological avian": 1,
"painting \\(artwork\\)": 1,
"watercolor \\(artwork\\)": 1,
"ambiguous penetration": 1,
"aphrodisiac": 1,
"aphrodisiac breath": 1,
"aphrodisiac gas": 1,
"big tail": 2,
"breath powers": 1,
"breathing": 1,
"cowgirl position": 2,
"long tail": 2,
"mastery position": 1,
"multiple orgasms": 2,
"pherokinesis": 1,
"pheromone breathing": 1,
"pheromones": 1,
"pink pawpads": 1,
"power bottom": 2,
"straddling": 1,
"tapering tail": 1,
"thick tail": 2,
"lucario": 2,
"salazzle": 1,
"4 fingers": 3,
"anal beads": 1,
"counting money": 1,
"exposed": 3,
"frown": 2,
"holding money": 1,
"money": 2,
"abdominal bulge": 1,
"arm grab": 1,
"arm pull": 1,
"big dom small sub": 4,
"body part in ass": 1,
"body part in mouth": 1,
"bold text": 1,
"bone collar tag": 1,
"collar tag": 1,
"conjoined speech bubble": 1,
"contour smear": 1,
"different sound effects": 1,
"distorted contour": 1,
"drip effect": 1,
"dripping speech bubble": 1,
"eyewear": 2,
"eyewear only": 2,
"fraternity": 1,
"glasses": 2,
"glasses askew": 1,
"glasses only": 2,
"heart after text": 1,
"jacket": 1,
"letterman jacket": 1,
"linked speech bubble": 1,
"motion outline": 1,
"prison guard position": 1,
"sex swing": 2,
"spurting": 1,
"spurting sound effect": 1,
"suspension bridge position": 1,
"talked about": 1,
"text emphasis": 1,
"text with heart": 1,
"verbal": 1,
"verbal domination": 1,
"vowelless vocalization": 1,
"wearing glasses": 2,
"doggylaw": 1,
"after anal": 5,
"attached sheath": 1,
"bell collar": 1,
"black balls": 2,
"black sheath": 1,
"bucket": 2,
"cum in bucket": 2,
"cum on perineum": 3,
"cum pool": 1,
"feet tied": 1,
"fly agaric": 1,
"fully sheathed": 2,
"fungus": 1,
"mushroom": 1,
"nature": 2,
"nature background": 2,
"outdoor nudity": 2,
"patreon username": 3,
"saggy balls": 1,
"underhoof": 1,
"vines": 1,
"white balls": 1,
"aki \\(zackary911\\)": 1,
"were": 2,
"werecanid": 2,
"werecanine": 1,
"werewolf": 1,
"ball size difference": 2,
"bareback": 1,
"cum expulsion": 2,
"cum fart": 2,
"cum on anus": 1,
"cum on arm": 1,
"cum on partner": 1,
"huge balls": 1,
"long penis": 1,
"padlock": 1,
"rough sex": 3,
"spikes": 2,
"spikes \\(anatomy\\)": 1,
"thick penis": 2,
"by sincastermon": 1,
"luca \\(sincastermon\\)": 1,
"ambiguous species": 1,
"after anal penetration": 1,
"ahegao": 2,
"anthro on bottom": 1,
"anthro on top": 1,
"cock ring": 1,
"cum on furniture": 1,
"cum on hoof": 1,
"eye roll": 4,
"glans": 4,
"penis accessory": 1,
"penis jewelry": 1,
"pink glans": 3,
"red balls": 1,
"red glans": 1,
"shallow penetration": 2,
"satyr": 1,
"actor": 1,
"backstage": 1,
"butt grab": 2,
"celebrity": 1,
"cum on chair": 1,
"facial hair": 1,
"food": 1,
"large penetration": 1,
"size play": 1,
"spread toes": 2,
"thought bubble": 1,
"unusual position": 1,
"cross fox": 1,
"red fox": 1,
"5 toes": 1,
"angry expression": 1,
"angry eyes": 1,
"angry sex": 2,
"ass up": 4,
"black anus": 1,
"black fingers": 1,
"black hooves": 2,
"black mane": 1,
"black mouth": 1,
"black muzzle": 1,
"black stripes": 1,
"black tail": 1,
"black tail tip": 1,
"blonde hair": 1,
"bodypaint": 1,
"bouncing balls": 1,
"butt size difference": 1,
"casual nudity": 1,
"dipstick tail": 3,
"dock \\(anatomy\\)": 1,
"equine anus": 1,
"flaccid": 2,
"forced anal": 1,
"foreskin": 1,
"glistening balls": 1,
"glistening butt": 1,
"glistening genitalia": 1,
"green eyes": 2,
"hand on head": 1,
"hands together": 1,
"humanoid feet": 1,
"larger prey": 1,
"laugh": 1,
"legs together": 1,
"male rape": 1,
"male raped": 1,
"male raping male": 1,
"mane": 2,
"multicolored mane": 1,
"nude male": 1,
"on ground": 1,
"outside sex": 1,
"pinned": 1,
"pinned to ground": 1,
"prey on top": 1,
"puffy anus": 1,
"realistic penis size": 1,
"red tattoo": 1,
"shocked": 1,
"shocked expression": 1,
"shocked face": 1,
"sky": 3,
"small penis": 1,
"smaller penetrated": 2,
"smaller pred": 1,
"social nudity": 1,
"striped body": 1,
"striped fur": 1,
"striped mane": 1,
"striped markings": 1,
"striped tail": 1,
"tail markings": 3,
"tan balls": 1,
"tattoo": 2,
"tree bondage": 1,
"tribal markings": 1,
"tribal tattoo": 2,
"two tone mane": 1,
"two tone tail": 2,
"unguligrade legs": 1,
"until they like it": 1,
"white ears": 1,
"white mane": 1,
"white stripes": 1,
"white tail": 3,
"white tattoo": 1,
"by mickey the retriever": 1,
"all fours": 2,
"big muscles": 1,
"brown balls": 1,
"building": 1,
"carpet": 1,
"cloud": 1,
"consensual cuckold": 1,
"cuckold": 1,
"cuckquean": 1,
"cum on breasts": 2,
"cum on muzzle": 1,
"digit ring": 1,
"eyeshadow": 1,
"female watching": 1,
"fingering": 1,
"fingering self": 1,
"fireplace": 1,
"gloves \\(marking\\)": 2,
"gold \\(metal\\)": 2,
"gold jewelry": 2,
"gold ring": 1,
"grabbing sheets": 1,
"grey pawpads": 1,
"grey tail": 2,
"hooved fingers": 1,
"leg markings": 2,
"makeup": 1,
"masturbation": 1,
"multicolored tail": 2,
"orange tail": 1,
"rear admiral position": 1,
"ring": 1,
"rug": 1,
"slim": 1,
"small breasts": 2,
"snout": 4,
"socks \\(marking\\)": 2,
"sunlight": 1,
"television": 1,
"two doms one sub": 1,
"vaginal fingering": 1,
"vaginal masturbation": 1,
"wedding ring": 1,
"white belly": 1,
"window": 1,
"by zaush": 1,
"elk": 1,
"husky": 1,
"nordic sled dog": 1,
"auction": 1,
"back groove": 1,
"banner": 1,
"bare breasts": 1,
"blue penis": 1,
"blue scales": 1,
"blue tail": 1,
"blue wings": 1,
"bottomwear aside": 1,
"bunting \\(banner\\)": 1,
"coin": 1,
"coin pouch": 1,
"crotch apron": 1,
"crotch lines": 1,
"currency amount": 2,
"dipstick ears": 1,
"for sale": 2,
"furgonomics": 1,
"g-string": 1,
"grey penis": 1,
"grey scales": 1,
"grey wings": 1,
"loincloth aside": 1,
"loincloth only": 1,
"magic item": 1,
"medium breasts": 1,
"midriff": 1,
"multicolored ears": 1,
"multicolored scales": 1,
"neck tied": 1,
"non-euclidean penetration": 1,
"non-euclidean sex": 1,
"number": 2,
"orange eyes": 1,
"orange nipples": 1,
"orange nose": 1,
"panties only": 1,
"penetrable sex toy": 1,
"pennant": 1,
"pennant banner": 1,
"portal": 1,
"portal fleshlight": 1,
"portal panties": 1,
"portal sex": 1,
"price": 2,
"scales": 1,
"slave auction": 1,
"slave market": 2,
"spines": 1,
"thigh gap": 1,
"thinking with portals": 1,
"tied to pole": 1,
"toeless \\(marking\\)": 1,
"two tone wings": 1,
"underwear only": 1,
"white scales": 1,
"by gewitter": 1,
"european mythology": 1,
"prisco": 1,
"tisalik": 1,
"zahlus": 1,
"aardwolf": 1,
"pit bull": 1,
"western dragon": 1,
"anus only": 1,
"back zipper": 1,
"balls outline": 1,
"big service top": 1,
"binder \\(restraint\\)": 1,
"bottle": 1,
"bound top": 1,
"bulge from behind": 1,
"butt zipper": 1,
"drunk": 1,
"erection under clothing": 1,
"fully clothed": 1,
"genital outline": 1,
"genitals through zipper": 1,
"involuntary penetration": 1,
"jumpsuit": 1,
"open clothing": 1,
"open crotch": 1,
"penis outline": 1,
"perched": 1,
"short male": 1,
"substance intoxication": 1,
"torn clothing": 2,
"unzipped jumpsuit": 1,
"zipper": 1,
"zipper jumpsuit": 1,
"guardians of the galaxy": 1,
"marvel": 1,
"orange bunny": 1,
"rocket raccoon": 1,
"procyonid": 1,
"raccoon": 1,
"briefs": 1,
"cross-eyed": 1,
"high-angle view": 1,
"knot in sheath": 1,
"tied to bed": 1,
"vibrator": 1,
"vibrator on penis": 1,
"barn": 1,
"big ball gag": 1,
"big flare": 1,
"blue hair": 1,
"cum waterfall": 1,
"feathering": 1,
"flared penis": 1,
"handcuffs": 1,
"metal cuffs": 1,
"oversized ball gag": 1,
"raised inner eyebrows": 1,
"realistic feral": 1,
"wooden horse \\(device\\)": 1,
"by sethpup": 1,
"atlas \\(jelomaus\\)": 1,
"seth \\(sethpup\\)": 1,
"bad end": 1,
"blush lines": 1,
"bubble": 1,
"chest scar": 1,
"crotch tuft": 1,
"cum bubble": 1,
"cum covered": 1,
"cum drenched": 1,
"cum on ear": 1,
"cum overflow": 1,
"defeated heroine": 1,
"degradation": 1,
"drooling tongue": 1,
"exposed breasts": 1,
"facial scar": 1,
"forced exposure": 2,
"game over": 1,
"gameplay mechanics": 1,
"pubes": 1,
"pussy ejaculation": 1,
"ring gag": 2,
"scar": 1,
"scars all over": 1,
"tail tied": 3,
"tail tuft": 1,
"tally marks": 2,
"toned female": 1,
"tongue hanging out": 1,
"videogame setting": 1,
"western tally marks": 2,
"by tsudamaku": 1,
"lakaiger": 1,
"worgen": 1,
"dipstick limbs": 1,
"flustered": 1,
"forest background": 1,
"grass": 1,
"shrub": 1,
"tail bondage": 2,
"trapped": 1,
"upside down": 1,
"bovid horn": 1,
"buttplug in ass": 1,
"buttplug insertion": 1,
"caprine horn": 1,
"dagger": 1,
"faceless ambiguous": 1,
"fixed dildo": 1,
"fixed toy": 1,
"huge hips": 1,
"object in ass": 1,
"plug insertion": 1,
"ram horn": 1,
"sandals": 1,
"sex toy in ass": 1,
"sex toy insertion": 1,
"strapped in toy": 1,
"piko \\(simplifypm\\)": 1,
"bed sheet": 1,
"butt squish": 1,
"fingerless gloves": 1,
"grey eyes": 1,
"holding own penis": 1,
"holding penis": 1,
"human on anthro": 1,
"impatient": 1,
"red sclera": 1,
"skindentation": 1,
"spread anus": 1,
"teasing": 1,
"helluva boss": 1,
"loona \\(helluva boss\\)": 1,
"demon": 1,
"hellhound": 1,
"black hair": 1,
"cum dumpster": 1,
"draining": 1,
"lube": 1,
"white border": 1,
"pepper \\(pepperfox\\)": 1,
"armchair": 1,
"command": 1,
"cute fangs": 1,
"genital focus": 1,
"giving orders": 1,
"leashed pov": 1,
"low-angle view": 1,
"muscular female": 1,
"musk": 1,
"oral request": 1,
"pantyhose": 1,
"purple hair": 1,
"pussy focus": 1,
"sitting on chair": 1,
"sniffing request": 1,
"spiked collar": 1,
"torn legwear": 1,
"torn pantyhose": 1,
"worm's-eye view": 1,
"by ultrabondagefairy": 1,
"ultra \\(ultrabondagefairy\\)": 1,
"capelet": 1,
"hands between legs": 1,
"hut": 1,
"moonlight": 1,
"night": 1,
"presenting anus": 1,
"shadow": 1,
"tail anus": 1,
"wood wall": 1,
"by maxmushroom": 1,
"overlord \\(series\\)": 1,
"crusch lulu": 1,
"lizardman": 1,
"lizardman \\(overlord\\)": 1
}
},
"modelspec.architecture": "stable-diffusion-xl-v1-base/lora",
"ss_bucket_info": {
"buckets": {
"0": {
"resolution": [
416,
608
],
"count": 7
},
"1": {
"resolution": [
448,
576
],
"count": 11
},
"2": {
"resolution": [
480,
544
],
"count": 4
},
"3": {
"resolution": [
512,
512
],
"count": 6
},
"4": {
"resolution": [
544,
480
],
"count": 4
},
"5": {
"resolution": [
576,
448
],
"count": 9
},
"6": {
"resolution": [
608,
416
],
"count": 7
},
"7": {
"resolution": [
640,
384
],
"count": 2
},
"8": {
"resolution": [
672,
384
],
"count": 2
}
},
"mean_img_ar_error": 0.03351486280732899
},
"ss_epoch": 400,
"modelspec.prediction_type": "epsilon",
"ss_base_model_version": "sdxl_base_v1-0",
"ss_training_comment": "None",
"ss_shuffle_caption": true,
"ss_min_bucket_reso": 256,
"modelspec.date": "2024-04-22T18:46:50",
"ss_resolution": "(512, 512)",
"ss_max_train_steps": 400,
"ss_caption_dropout_every_n_epochs": 0,
"ss_cache_latents": true,
"ss_v2": true,
"ss_dataset_dirs": {
"1_bdsm": {
"n_repeats": 1,
"img_count": 52
}
},
"ss_max_token_length": null,
"ss_new_sd_model_hash": "IsADirectory",
"ss_random_crop": true,
"ss_text_encoder_lr": 0.0001,
"ss_loss_type": "l2",
"ss_network_module": "lycoris.kohya",
"ss_gradient_accumulation_steps": 12,
"ss_optimizer": "torch.optim.adamw.AdamW",
"ss_multires_noise_discount": 0.1,
"ss_max_grad_norm": 1.0,
"ss_clip_skip": null,
"ss_mixed_precision": "fp16",
"ss_face_crop_aug_range": "None",
"ss_network_dropout": 0.0,
"ss_training_started_at": "2024-04-22 17:24:04.744658",
"ss_output_name": "bdsm",
"ss_max_bucket_reso": 1024,
"ss_huber_schedule": "snr",
"ss_caption_tag_dropout_rate": 0.0,
"modelspec.title": "bdsm",
"ss_noise_offset": null,
"ss_flip_aug": true,
"ss_sd_model_name": "",
"ss_noise_offset_random_strength": "False",
"ss_prior_loss_weight": 1.0,
"ss_gradient_checkpointing": true,
"ss_training_finished_at": "2024-04-22 20:46:50.113237",
"ss_enable_bucket": true,
"ss_session_id": "3985618884",
"ss_lowram": true,
"ss_keep_tokens": true,
"ss_ip_noise_gamma": null,
"ss_scale_weight_norms": 1.0,
"ss_debiased_estimation": true,
"sshs_legacy_hash": "cf9eb440",
"ss_full_fp16": true,
"ss_caption_dropout_rate": 0.0,
"dtype": "F16",
"file": "Desktop\\yiff_toolkit\\ponyxl_loras\\bdsm-v1e400.safetensors",
"filename": "bdsm-v1e400.safetensors"
}
|