Merge pull request #206 from AIrjen/prefix_suffix_and_more

Prefix suffix and more
pull/212/head
AIrjen 2024-06-14 08:59:34 +02:00 committed by GitHub
commit 421853ea2e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
22 changed files with 355 additions and 71 deletions

View File

@ -351,6 +351,14 @@ class OneButtonPrompt:
"multiline": False, # This is the overwrite for an outfit, super nice
"default": ""
}),
"prompt_prefix": ("STRING", {
"multiline": False, # prefix the prompt
"default": ""
}),
"prompt_suffix": ("STRING", {
"multiline": False, # Suffix of the prompt
"default": ""
}),
"humanoids_gender": (genders, {"default": "all"}),
"emojis":(emojis, {"default": False}),
"base_model":(models, {"default": "SDXL"}),
@ -369,8 +377,8 @@ class OneButtonPrompt:
CATEGORY = "OneButtonPrompt"
def Comfy_OBP(self, insanitylevel, custom_subject, seed, artist, imagetype, subject, imagemodechance, humanoids_gender, emojis, custom_outfit, base_model, prompt_enhancer):
generatedpromptlist = build_dynamic_prompt(insanitylevel,subject,artist,imagetype,False,"","","",1,"",custom_subject,True,"",imagemodechance, humanoids_gender,"all", "all", "all", False, emojis, seed, custom_outfit, True, base_model, "", prompt_enhancer)
def Comfy_OBP(self, insanitylevel, custom_subject, seed, artist, imagetype, subject, imagemodechance, humanoids_gender, emojis, custom_outfit, base_model, prompt_enhancer, prompt_prefix, prompt_suffix):
generatedpromptlist = build_dynamic_prompt(insanitylevel,subject,artist,imagetype,False,"",prompt_prefix,prompt_suffix,1,"",custom_subject,True,"",imagemodechance, humanoids_gender,"all", "all", "all", False, emojis, seed, custom_outfit, True, base_model, "", prompt_enhancer)
#print(generatedprompt)
generatedprompt = generatedpromptlist[0]
prompt_g = generatedpromptlist[1]
@ -579,7 +587,15 @@ class OneButtonPreset:
},
"optional": {
"base_model":(models, {"default": "SDXL"}),
"prompt_enhancer":(prompt_enhancers, {"default": "none"}),
"prompt_enhancer":(prompt_enhancers, {"default": "none"}),
"preset_prefix": ("STRING", {
"multiline": False, # prefix the preset
"default": ""
}),
"preset_suffix": ("STRING", {
"multiline": False, # Suffix of the preset
"default": ""
}),
"seed": ("INT", {"default": 0, "min": 0, "max": 0xFFFFFFFFFFFFFFFF}),
},
}
@ -594,7 +610,7 @@ class OneButtonPreset:
CATEGORY = "OneButtonPrompt"
def Comfy_OBP_OneButtonPreset(self, OneButtonPreset, seed, base_model, prompt_enhancer):
def Comfy_OBP_OneButtonPreset(self, OneButtonPreset, seed, base_model, prompt_enhancer, preset_prefix, preset_suffix):
# load the stuff
if(OneButtonPreset == OBPresets.RANDOM_PRESET_OBP):
selected_opb_preset = OBPresets.get_obp_preset("Standard")
@ -640,6 +656,8 @@ class OneButtonPreset:
base_model=base_model,
OBP_preset=OneButtonPreset,
prompt_enhancer=prompt_enhancer,
preset_prefix=preset_prefix,
preset_suffix=preset_suffix,
)

View File

@ -142,7 +142,7 @@ You an use the Subject Types filter to select on main subject types to generate.
Artists have a major impact on the result. Automatically, it will select between 0-3 artists out of 3483 artists for your prompt.
You can turn it off. Add your own artists to the prompt, and they will be added to the end of the prompt.
Type of image can be used to force a certain direction. For example when using Realistic Vision, it might be a good idea to set it to photograph. For an anime model, you might want to use "Anime key visual"
Type of image can be used to force a certain direction. For example when using Realistic Vision, it might be a good idea to set it to photograph. For an anime model, you might want to use "all - anime"
Special image type modes have chance to trigger. Those follow different rules of prompt generation.

View File

@ -13,7 +13,7 @@ OBPresets = OneButtonPresets()
# insanity level controls randomness of propmt 0-10
# forcesubject van be used to force a certain type of subject
# Set artistmode to none, to exclude artists
def build_dynamic_prompt(insanitylevel = 5, forcesubject = "all", artists = "all", imagetype = "all", onlyartists = False, antivalues = "", prefixprompt = "", suffixprompt ="",promptcompounderlevel ="1", seperator = "comma", givensubject="",smartsubject = True,giventypeofimage="", imagemodechance = 20, gender = "all", subtypeobject="all", subtypehumanoid="all", subtypeconcept="all", advancedprompting=True, hardturnoffemojis=False, seed=-1, overrideoutfit="", prompt_g_and_l = False, base_model = "SD1.5", OBP_preset = "", prompt_enhancer = "none", subtypeanimal="all", subtypelocation="all"):
def build_dynamic_prompt(insanitylevel = 5, forcesubject = "all", artists = "all", imagetype = "all", onlyartists = False, antivalues = "", prefixprompt = "", suffixprompt ="",promptcompounderlevel ="1", seperator = "comma", givensubject="",smartsubject = True,giventypeofimage="", imagemodechance = 20, gender = "all", subtypeobject="all", subtypehumanoid="all", subtypeconcept="all", advancedprompting=True, hardturnoffemojis=False, seed=-1, overrideoutfit="", prompt_g_and_l = False, base_model = "SD1.5", OBP_preset = "", prompt_enhancer = "none", subtypeanimal="all", subtypelocation="all", preset_prefix = "", preset_suffix = ""):
remove_weights = False
less_verbose = False
@ -105,6 +105,9 @@ def build_dynamic_prompt(insanitylevel = 5, forcesubject = "all", artists = "all
giventypeofimage = selected_opb_preset["giventypeofimage"]
antistring = selected_opb_preset["antistring"]
prefixprompt = preset_prefix + ", " + prefixprompt
suffixprompt = suffixprompt + ", " + preset_suffix
# new method of subject choosing from the interface, lets translate this:
# really hacky way of doing this now.
if("-" in forcesubject):
@ -156,7 +159,7 @@ def build_dynamic_prompt(insanitylevel = 5, forcesubject = "all", artists = "all
configfilesuffix = "anime"
# Hard overwrite some stuff because people dont config this themselves
if((anime_mode or imagetype == "all - anime") and artists == "all"):
if((anime_mode or imagetype == "all - anime") and (artists == "all" or normal_dist(insanitylevel))):
artists = "none"

View File

@ -75,6 +75,7 @@ Heavenly
Hideous
Holy
Horrifying
Horned
Injured
Kawaii
Kindhearted
@ -111,10 +112,13 @@ Scaly
Shabby
Smart
Spellbinding
Spotted
Striking
Striped
Stunning
Tiny
Tropical
Two-headed
Ugly
Unattractive
Unconventional

1 Absurd
75 Hideous
76 Holy
77 Horrifying
78 Horned
79 Injured
80 Kawaii
81 Kindhearted
112 Shabby
113 Smart
114 Spellbinding
115 Spotted
116 Striking
117 Striped
118 Stunning
119 Tiny
120 Tropical
121 Two-headed
122 Ugly
123 Unattractive
124 Unconventional

View File

@ -45,7 +45,7 @@ Lawrence Alma-Tadema,"scene, romanticism",Painting,"Victorian, neoclassical, anc
Lilia Alvarado,"photography, scene, portrait",Painting,"Surreal figurative art, dreamlike narratives, symbolic imagery, vibrant colors, exploring personal and cultural identity, Latin American influences",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Emil Alzamora,sculpture,Sculpture,"Figurative sculpture, exploring the human form and emotion, elongated and distorted figures, surreal and introspective themes, fluid and expressive forms",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,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,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Yoshitaka Amano,"messy, dark,",Illustration,"manga, character designer, ethereal and detailed illustrations, fantasy and science fiction themes, intricate linework, elegant and otherworldly designs",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0
Ghada Amer,"abstract, portrait",Painting,"Contemporary, embroidered paintings, exploring themes of gender, sexuality, and identity, blending Eastern and Western influences, provocative and subversive",0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Ghada Amer,"abstract, portrait",Painting,"Contemporary, embroidered paintings, exploring themes of gender sexuality and identity, blending Eastern and Western influences, provocative and subversive",0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Cuno Amiet,"impressionism, portrait, landscape",Painting,"expressionism, vibrant colors, bold brushwork, landscapes and portraits, influenced by Fauvism and German Expressionism, capturing the essence of Swiss nature",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,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Rick Amor,"landscape, streetscape",Painting,"Contemporary, figurative painting, urban landscapes, haunting and atmospheric scenes, exploring themes of memory, loss, and isolation",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,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,1,0,0,0,0,0,0,0
Fernando Amorsolo,"realism, scene",Painting,"romantic realism, rural landscapes, genre scenes, idealized portraits, capturing the beauty and simplicity of Filipino life, soft and luminous lighting",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,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,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
@ -76,7 +76,7 @@ Sabbas Apterus,"digital, dark, scene",Digital Art,"Dark fantasy illustration, go
Ron Arad,architecture,Sculpture,"Industrial, sculptural furniture, fluid and organic forms, innovative use of materials such as steel and aluminum, blurring the boundaries between art and design",0,0,0,0,0,0,1,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Sergio Aragonés,"cartoon, comics",Comics,"Mad Magazine, cartoon, humorous and satirical comics, intricate and detailed cartooning, visual storytelling through exaggerated characters and situations",0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,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,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,0
Hirohiko Araki,manga,Manga,"Manga, dynamic and flamboyant character designs, surreal and imaginative storytelling, iconic poses and fashion, ""JoJo's Bizarre Adventure,""",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0
Nobuyoshi Araki,"photography, scene",Photography,"Controversial, intimate and provocative portraits, exploring themes of sexuality, bondage, and eroticism, blending documentary and art photography",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Nobuyoshi Araki,"photography, scene",Photography,"Controversial, intimate and provocative portraits, blending documentary and art photography",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Shinji Aramaki,"anime, scene, character",Animation,"Anime, mecha and cyberpunk aesthetics, futuristic worlds, intricate mechanical designs, dynamic action sequences, blending traditional and CGI animation techniques",0,0,0,0,0,1,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Diane Arbus,"photography, monochromatic, scene",Photography,"Documentary photography, capturing marginalized and unconventional subjects, exploring themes of identity, eccentricity, and the human condition, candid and empathetic portraits",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Cory Arcangel,"high contrast, colorful, installation",Digital Art,"Contemporary, hacking and manipulating digital technologies, deconstructing and remixing pop culture and internet imagery, exploring the absurdity of contemporary society",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0
@ -150,7 +150,7 @@ Phyllida Barlow,"sculpture, installation, expressionism",Installation,"large-sca
Wayne Barlowe,"sci-fi, fantasy, dark,",Painting,"Fantasy and science fiction, imaginative and otherworldly creatures and landscapes, detailed and realistic depictions, blending natural history with speculative fiction",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,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,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Ernie Barnes,"melanin, scene, expressionism",Painting,"dynamic and expressive depictions of African American life, capturing the rhythm and movement of urban culture",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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Will Barnet,"high contrast, scene",Painting,"elegant and minimalist compositions, exploring themes of family, solitude, and the human figure, serene and contemplative imagery",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,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Matthew Barney,"photography, surrealism, sculpture",Sculpture,"mythology, sexuality, and the human body, blending performance, sculpture, and film in elaborate narratives",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Matthew Barney,"photography, surrealism, sculpture",Sculpture,"mythology and the human body, blending performance, sculpture, and film in elaborate narratives",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Wilhelmina Barns-Graham,abstract,Painting,"abstract, exploring the relationship between form and color, dynamic and energetic compositions, influenced by the landscapes of Scotland",0,0,0,1,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Angela Barrett,"children's illustration, scene",Illustration,"enchanting and whimsical illustrations, capturing the magic of fairy tales and classic literature with exquisite detail and craftsmanship",0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Lynda Barry,"cartoon, messy",Comics,"Alternative comics, blending humor with poignant observations on childhood, creativity and identity, autobiographical storytelling, expressive and whimsical illustrations",0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,1,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,0,0
@ -192,7 +192,7 @@ Beeple,digital,Digital Art,"surreal, futuristic, vibrant colors, digital manipul
Zdzisław Beksiński,"surrealism, dark, horror,",Painting,"surrealism, dark and grotesque, detailed textures, apocalyptic",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Julie Bell,"fantasy, nature, dragons",Painting,"fantasy realism, muscular figures, fantastical creatures, dramatic lighting",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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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
Vanessa Bell,"fauvism, portrait",Painting,"Bloomsbury Group, soft pastels, domestic scenes, post-impressionistic",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,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Hans Bellmer,"photography, dark, surrealism",Sculpture,"surrealism, dolls, eroticism, unsettling compositions",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Hans Bellmer,"photography, dark, surrealism",Sculpture,"surrealism, dolls, sensuality, unsettling compositions",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Bernardo Bellotto,"landscape, cityscape, architecture",Painting,"urban landscapes, architectural accuracy, detailed cityscapes",0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0
George Bellows,"realism, impressionism",Painting,"Ashcan School, gritty urban scenes, dynamic brushwork, social realism",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,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Lynda Benglis,"sculpture, installation, colorful, abstract",Sculpture,"unconventional materials, organic forms, feminist themes",0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
@ -208,7 +208,7 @@ Don Bergland,surrealism,Digital Art,"surrealism, intricate details, psychologica
Jody Bergsma,"watercolor, fantasy, detailed, whimsical",Painting,"fantasy, wildlife, whimsical characters, vibrant colors",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1
John Berkey,"fantasy, space, sci-fi",Illustration,"science fiction, futuristic landscapes, dramatic perspectives",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,1,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,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0
Émile Bernard,"impressionism, scene",Painting,"Post-Impressionism, Cloisonnism, bold outlines, simplified forms",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,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Ruth Bernhard,"monochromatic, photography, nudity",Photography,"black and white, still life, nude studies, elegant compositions",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Ruth Bernhard,"monochromatic, photography, nudity",Photography,"black and white, still life, elegant compositions",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Gian Lorenzo Bernini,"baroque, sculpture",Sculpture,"Baroque, dynamic movement, dramatic expressions, marble",0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Harry Bertoia,"sculpture, texture",Sculpture,"modernist, abstract forms, metalwork, geometric shapes",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,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,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Elsa Beskow,"whimsical, art nouveau, beatrix potter",Illustration,"children's books, fairy tales, detailed botanical illustrations",0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,1
@ -315,7 +315,7 @@ Aleksi Briclot,"fantasy, dark",Illustration,"fantasy art, science fiction art, d
Frederick Arthur Bridgman,"scene, portrait",Painting,"Orientalist painting, exotic scenes, historical subjects, detailed realism",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,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,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Austin Briggs,"cartoon, detailed, scene, impressionism",Illustration,"pulp magazine illustration, noir art, dramatic lighting, dynamic figures",0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Raymond Briggs,"cartoon, whimsical",Illustration,"children's books, graphic novels, emotive storytelling, whimsical characters",0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0,0,0,0,1
Anne Brigman,"photography, monochromatic, dark, nudity",Photography,"Pictorialism, nude photography, romantic landscapes, soft focus",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Anne Brigman,"photography, monochromatic, dark, nudity",Photography,"Pictorialism, photography, romantic landscapes, soft focus",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Mark Briscoe,"impressionism, detailed, expressionism",Painting,"contemporary realism, figurative art, narrative painting, psychological depth",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0
Romero Britto,"colorful, vibrant, high contrast, stained glass",Painting,"Pop Art, vibrant colors, geometric shapes, playful compositions",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,1,0,0,0,0,0,0,0,0,1,0,0
Joachim Brohm,"photography, landscape, streetscape, realism",Photography,"contemporary photography, conceptual art, urban landscapes, architectural studies",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,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
@ -370,7 +370,7 @@ Byam Shaw,"romanticism, scene",Painting,"Pre-Raphaelite Brotherhood, romanticism
James Lee Byars,"installation, sculpture",Sculpture,"conceptual art, minimalist sculptures, geometric forms, spiritual themes",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,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Bob Byerley,"detailed, whimsical, scene",Painting,"narrative realism, nostalgic scenes of childhood, whimsical storytelling, detailed realism",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
Alexandre Cabanel,"landscape, romanticism",Painting,"Academic art, neoclassicism, sensual and idealized figures, mythological themes",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,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Paul Cadmus,"nudity, scene, portrait, realism",Painting,"Social Realism, figurative art, homoerotic themes, precise draftsmanship",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Paul Cadmus,"nudity, scene, portrait, realism",Painting,"Social Realism, figurative art, precise draftsmanship",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Ray Caesar,"whimsical, scene, character, dark",Digital Art,"surrealism, digital painting, dreamlike and haunting imagery, psychological depth",0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
Debbie Fleming Caffery,"photography, monochromatic, dark",Photography,"documentary photography, southern Louisiana culture, intimate portraits, social issues",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Claude Cahun,"monochromatic, high contrast",Photography,"avant-garde photography, gender identity exploration, surreal self-portraits, subversive imagery",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,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0
@ -494,7 +494,7 @@ Norman Cornish,"scene, portrait",Painting,"British social realism, coal mining s
Dean Cornwell,"realism, messy, scene, watercolor",Illustration,"Golden Age illustrator, dynamic and narrative illustrations, historical and adventure themes",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0
Camille Corot,"romanticism, landscape, portrait",Painting,"French Barbizon School, landscapes, plein air painting, soft and atmospheric tones",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,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Dorina Costras,"surrealism, figurativism, character",Painting,"contemporary art, figurative painting, emotive and expressive portraits",0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Peter Coulson,"photography, monochromatic, portrait, nudity",Photography,"fashion photography, fine art nude photography, dramatic lighting and compositions",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Peter Coulson,"photography, monochromatic, portrait, nudity",Photography,"fashion photography, fine art photography, dramatic lighting and compositions",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Gustave Courbet,"realism, romanticism, portrait, scene",Painting,"French Realism, social realism, bold and direct portrayal of everyday life",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,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,1,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Dave Coverly,"comics, cartoon, whimsical",Cartooning,"humorous and insightful cartoons, Witty, clever, single-panel",0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,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,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,1
Frank Cadogan Cowper,"realism, romanticism, portrait, scene",Painting,"British Academic art, Pre-Raphaelite influences, detailed and romanticized compositions, historical and literary themes",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,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,1,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
@ -505,7 +505,7 @@ Walter Crane,"detailed, art nouveau,",Illustration,"children's book illustration
Craola,"surrealism, whimsical",Painting,"contemporary art, surrealism, imaginative and whimsical compositions, dreamlike atmospheres",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,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,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1
Martin Creed,"installation, abstract, expressionism",Installation Art,"conceptual art, minimalist installations, exploration of space and form",0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0
Michael Creese,"impressionism, expressionism",Painting,"contemporary art, impressionistic landscapes, expressive brushwork, vibrant colors",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,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0
Guido Crepax,"comics, high contrast, monochromatic",Comics,"erotic comics, avant-garde storytelling, innovative panel layouts",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0
Guido Crepax,"comics, high contrast, monochromatic",Comics,"sexy comics, avant-garde storytelling, innovative panel layouts",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0
Gregory Crewdson,"photography, surrealism, dark",Photography,"cinematic photography, large-scale staged scenes, eerie and atmospheric, exploration of suburban life",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Debbie Criswell,"vibrant, cartoon, landscape",Painting,"contemporary realism, wildlife art, detailed and lifelike animal portraits",0,0,0,0,0,0,0,0,0,0,0,1,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,1,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,0,0,0,0,0,0,0,1,0,0
Carlo Crivelli,"renaissance, detailed",Painting,"Italian Renaissance, religious art, intricate details, rich colors, gold leaf embellishments",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
@ -720,7 +720,7 @@ Elliott Erwitt,"photography, monochromatic",Photography,"Documentary photography
M.C. Escher,"angular, high contrast, surrealism",Printmaking,"Mathematical art, impossible objects, tessellations, optical illusions, visual paradoxes",0,0,0,0,1,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,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Truls Espedal,"photorealism, surrealism",Illustration,"Graphic novels, minimalist art, introspective narratives, atmospheric landscapes, emotional depth",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,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,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Tim Etchells,"installation, light",Performance Art,"Conceptual art, experimental theater, language-based performances, audience engagement, playful provocations",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,0,0,0,0,0,0,0,0,0,0,1,0,1,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,0,0,0,0,0,0,0,0,0
William Etty,"nudity, romanticism, scene",Painting,"Academic art, historical subjects, classical mythology, nude figures, chiaroscuro",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
William Etty,"nudity, romanticism, scene",Painting,"Academic art, historical subjects, classical mythology, figures, chiaroscuro",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Richard Eurich,"landscape, seascape, romanticism",Painting,"British modernism, wartime art, coastal landscapes, narrative scenes, muted colors",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,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
Cerith Wyn Evans,"sculpture, installation, light",Sculpture,"Conceptual art, light installations, minimalism, ephemeral experiences, philosophical inquiry",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,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Walker Evans,"photography, monochromatic, realism",Photography,"Documentary photography, American South, Great Depression, everyday life, vernacular architecture",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
@ -767,7 +767,7 @@ Dan Flavin,"installation, light",Sculpture,"Minimalism, fluorescent light instal
Max Fleischer,cartoon,Animation,"Innovator, pioneering, iconic characters, animated films",0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0,0,0,0,0
Govaert Flinck,"baroque, portrait,",Painting,"Dutch Golden Age painting, Rembrandt's pupil, historical and biblical subjects, chiaroscuro, dramatic lighting",0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Alex Russell Flint,"portrait, scene, realism, figurativism",Illustration,"Fantasy art, book covers, imaginative worlds, epic landscapes, dynamic characters",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,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
William Russell Flint,"watercolor, scene, nudity",Painting,"watercolor, exotic landscapes, female nudes, vibrant colors, meticulous detail",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0
William Russell Flint,"watercolor, scene, nudity",Painting,"watercolor, exotic landscapes, feminity, vibrant colors, meticulous detail",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0
Maia Flore,"photography, whimsical, scene",Photography,"Conceptual photography, surreal narratives, dreamlike imagery, poetic compositions, visual storytelling",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
Frans Floris,renaissance,Painting,"Flemish Renaissance, Mannerism, religious and mythological subjects, dynamic compositions, rich colors",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,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,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Kaja Foglio,"whimsical, cartoon",Comics,"Steampunk art, Girl Genius webcomic, whimsical characters, intricate machinery, humorous storytelling",0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0,0,0,0,1
@ -1327,7 +1327,7 @@ Raphael Lacoste,"fantasy, landscape, dark",digital art,"realistic landscapes, at
Paul Laffoley,"architecture, psychedelic",painting,"visionary art, metaphysical, intricate detail, geometric, mystical",0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Mikko Lagerstedt,"photography, landscape, dark, light",photography,"ethereal landscapes, night photography, minimalistic, dreamy, atmospheric",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Lev Lagorio,"luminism, landscape",painting,"Romanticism, exotic landscapes, luminous, dramatic lighting, travel scenes",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,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,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,0,0,0,0,0,0
Marc Lagrange,"nudity, photography,",photography,"erotic, sensual, black and white, chiaroscuro, intimate, glamorous",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Marc Lagrange,"nudity, photography,",photography,"sexy, sensual, black and white, chiaroscuro, intimate, glamorous",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Mark Lague,impressionism,painting,"contemporary realism, urban landscapes, textured brushwork, dynamic, atmospheric",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,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0
René Lalique,"art deco, art nouveau",jewelry,"Art Nouveau, innovative designs, organic forms, precious materials, intricate craftsmanship",0,0,0,0,0,0,0,1,1,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0
Wifredo Lam,"abstract, expressionism",painting,"Afro-Cuban art, surrealism, primitive, mythological, symbolic, vibrant",0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
@ -1411,7 +1411,7 @@ Ephraim Moses Lilien,art nouveau,illustration,"Art Nouveau, Jewish themes, elega
Maya Lin,"sculpture, minimalist, architecture",sculpture,"minimalist sculpture, environmental art, memorials, serene",0,0,0,0,0,0,1,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,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Peter Lindbergh,"photography, fashion, portrait",photography,"fashion photography, black and white, cinematic, natural beauty",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,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Richard Lindner,"pop art, figurativism,",painting,"pop art, urban scenes, bold colors, graphic style",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,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Norman Lindsay,"watercolor, nudity",painting,"Australian Impressionism, fantastical, erotic, detailed",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0
Norman Lindsay,"watercolor, nudity",painting,"Australian Impressionism, fantastical, sexy, detailed",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0
Jeremy Lipking,"realism, portrait, scene, landscape",painting,"contemporary realism, figurative, landscapes, luminous",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,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Filippino Lippi,"renaissance, scene, portrait",painting,"Italian Renaissance, religious art, graceful figures, soft colors",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,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,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Peter Lippmann,"photography, still life, surrealism",photography,"still life photography, surreal, poetic, whimsical",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0
@ -1449,7 +1449,7 @@ Evgeny Lushpin,"landscape, realistic, detailed",painting,"contemporary realism,
Loretta Lux,"photography, portrait, surrealism",photography,"surreal portraits, children, staged, dreamlike",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Albert Lynch,"portrait, scene, romanticism",painting,"Belle Époque, elegant portraits, luxurious settings, graceful",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,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,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
David Lynch,"surrealism, dark",film,"filmmaker, surrealism, Twin Peaks, psychological, enigmatic",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
George Platt Lynes,"nudity, photography,",photography,"fashion photography, male nudes, surreal, elegant",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
George Platt Lynes,"nudity, photography,",photography,"fashion photography, masculinity, surreal, elegant",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Danny Lyon,"photography, streetscape, black and white",photography,"documentary photography, street photography, social realism",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
Dora Maar,"expressionism, monochromatic, high contrast",photography,"surrealist photography, experimental, photomontage, collaborator of Picasso",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,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0
Brandon Mably,"textile, colorful, abstract",design,"textile design, vibrant patterns, playful, colorful",0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0
@ -1479,7 +1479,7 @@ Alex Maleev,"comics, fantasy, high contrast",illustration,"comic book art, gritt
Kazimir Malevich,"abstract, cubism, clean",painting,"Russian avant-garde, Suprematism, abstract, geometric",0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,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,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
Keith Mallett,"melanin, figurativism, abstract, vibrant",painting,"African American art, cultural themes, vibrant colors, expressive brushwork",0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0
Michael Malm,"impressionism, scene",painting,"contemporary realism, landscapes, light and shadow, atmospheric",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,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Milo Manara,"comics, nudity, scene",illustration,"erotic art, comic book art, sensuous, detailed",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Milo Manara,"comics, nudity, scene",illustration,"sexy art, comic book art, sensuous, detailed",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Antonio Mancini,"photography, portrait, black and white",painting,"Italian Realism, portraits, psychological, introspective",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Benoit B. Mandelbrot,angular,mathematics,"mathematician, fractal geometry pioneer, Mandelbrot set",0,0,0,0,1,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Édouard Manet,"impressionism, realism, portrait, scene",painting,"French Realism, Impressionism, modern life, controversial, innovative",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,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
@ -1695,7 +1695,7 @@ Ernesto Neto,"installation, abstract",Installation,"Contemporary sculpture, imme
C. R. W. Nevinson,"high contrast, dark, angular, cubism",Painting,"Vorticism, war art, dynamic compositions",0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Jane Newland,"vibrant, watercolor, nature",Painting,"Botanical art, watercolor, delicate details",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0
Barnett Newman,"abstract expressionism, colorful",Painting,"Color field painting, abstract expressionism, large-scale canvases",0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Helmut Newton,"photography, monochromatic, scene",Photography,"Fashion photography, eroticism, provocative compositions",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Helmut Newton,"photography, monochromatic, scene",Photography,"Fashion photography, sensuality, provocative compositions",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Victo Ngai,"detailed, vibrant, children's illustration, surrealism",Illustration,"Fantasy art, intricate details, vibrant colors",1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0
Dustin Nguyen,"comics, watercolor",Comics,"Comic book art, detailed linework, atmospheric storytelling",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,1,0
Tran Nguyen,"portrait, surrealism",Painting,"Surrealism, dreamlike scenes, delicate brushwork",1,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
@ -1798,7 +1798,7 @@ Sudersan Pattnaik,"sculpture, installation, colorful",sand art,"intricate, ephem
John Pawson,"architecture, minimalist",architecture,"minimalist, sleek, clean lines, spatial design",0,0,0,0,0,0,1,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Charles Willson Peale,"portrait, realism",painting,"portraits, historical figures, realism",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,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,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Raphaelle Peale,"still life, ",painting,"still life, realism, detailed, light",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,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,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
Philip Pearlstein,"figurativism, realism, portrait",painting,"figurative, nudes, realistic, detailed",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,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Philip Pearlstein,"figurativism, realism, portrait",painting,"figurative, realistic, detailed",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,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Jason Pearson,"comics, illustration, high contrast",illustration,"comic book, dynamic, action-packed, superhero",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Max Pechstein,"expressionism, vibrant",painting,"expressionism, vibrant colors, dynamic compositions",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,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0
Clara Peeters,"still life, detailed, realism",painting,"still life, detailed, intricate, Baroque",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
@ -1960,7 +1960,7 @@ George Romney,"portrait, renaissance",painting,"portraits, neoclassical, romanti
Rone,"street art, graffiti",street art,"portraiture, large-scale murals, photorealistic, urban landscapes, atmospheric",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,0,0,0,0,0,1,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,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0
Henriëtte Ronner-Knip,"animals, romanticism, still life",painting,"animal subjects, domestic scenes, realistic, detailed fur and feathers, sentimental",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,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,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
Daan Roosegaarde,"installation, architecture",installation art,"interactive, futuristic, environmental, light art, technological innovation",0,0,0,0,0,0,1,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,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0
Felicien Rops,"symbolism, dark",painting,"symbolist, eroticism, macabre, grotesque, fantastical, intricate details",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
Felicien Rops,"symbolism, dark",painting,"symbolist, sensuality, macabre, grotesque, fantastical, intricate details",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
Salvator Rosa,"baroque, landscape, dark",painting,"Baroque, dramatic landscapes, chiaroscuro, fantastical, stormy skies",0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0
Kerby Rosanes,"illustration, detailed",illustration,"doodle art, intricate patterns, imaginative, whimsical, highly detailed",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Guy Rose,"impressionism, landscape, colorful",painting,"impressionism, California landscapes, plein air painting, soft color palette",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,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,0,0,0,0,0,0,0,0,0,0
@ -1985,7 +1985,7 @@ Georges Rousse,"street art, graffiti, abstract",photography,"urban interventions
Henri Rousseau,"nature, primitivism, impressionism",painting,"naive art, jungle scenes, dreamlike, exotic animals, flattened perspective",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,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Paolo Roversi,"fashion, photography, dark",photography,"fashion photography, ethereal, black and white, soft focus, intimate portraits",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Jeff Rowland,"romanticism, figurativism",painting,"romantic realism, rainy cityscapes, impressionistic brushwork, moody atmospheres",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,0,0,0,1,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Luis Royo,"dark, portrait, messy",illustration,"fantasy art, dark fantasy, eroticism, detailed rendering, imaginative creatures",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Luis Royo,"dark, portrait, messy",illustration,"fantasy art, dark fantasy, sensuality, detailed rendering, imaginative creatures",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Jakub Różalski,"landscape, realism, fantasy, sci-fi",digital art,"historical fantasy, alternate history, steampunk, detailed environments, epic battles",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,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Joao Ruas,"dark, comics, character, fantasy",illustration,"dark fantasy, surreal, intricate linework, symbolic, narrative storytelling",0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Jennifer Rubell,installation,installation art,"participatory, interactive, sensory, food-based, social commentary, provocative",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,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0
@ -2000,13 +2000,13 @@ Rachel Ruysch,"still life, nature, colorful",painting,"still life, floral arrang
Mark Ryden,"character, whimsical, dark, scene",painting,"pop surrealism, allegorical, whimsical, detailed, juxtaposition of innocence and darkness",0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
Albert Pinkham Ryder,"romanticism, dark, detailed",painting,"luminous, mystical landscapes, symbolist, tonalism, dark tones, spiritual themes",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,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,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Eero Saarinen,"architecture, ",architecture,"modernism, organic architecture, innovative forms, monumental structures, sleek design",0,0,0,0,0,0,1,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Toshio Saeki,"nudity, surrealism, dark",painting,"surreal eroticism, dark fantasy, intricate linework, taboo themes, psychological",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Toshio Saeki,"nudity, surrealism, dark",painting,"surreal sensuality, dark fantasy, intricate linework, taboo themes, psychological",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Jan Pietersz Saenredam,"renaissance, detailed",painting,"Dutch Golden Age, church interiors, precise architectural detail, tranquil, light-filled spaces",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Pieter Jansz Saenredam,"renaissance, detailed",painting,"Dutch Golden Age, church exteriors, architectural accuracy, subdued color palette, tranquil",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Moshe Safdie,architecture,architecture,"postmodernism, urban design, community-oriented, innovative structures, sustainability",0,0,0,0,0,0,1,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Amanda Sage,"psychedelic, vibrant, colorful, detailed",painting,"visionary art, surreal, psychedelic, cosmic themes, vibrant colors, intricate details",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,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,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0
Kay Sage,"surrealism, monochromatic, angular,",painting,"surrealism, dreamlike landscapes, architectural elements, muted colors, mysterious atmospheres",0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Apollonia Saintclair,"monochromatic, high contrast, nudity",illustration,"erotic art, sensual, detailed linework, vintage aesthetics, psychological",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,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,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
Apollonia Saintclair,"monochromatic, high contrast, nudity",illustration,"sexy art, sensual, detailed linework, vintage aesthetics, psychological",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,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,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
Afarin Sajedi,"surrealism, fantasy",painting,"figurative, expressive brushwork, emotional, intimate scenes, muted tones",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,1,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,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Thomas Saliot,"portrait, pop art",painting,"contemporary realism, romantic, dreamy atmospheres, nostalgic, cinematic lighting",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
John Salminen,"watercolor, detailed, streetscape",painting,"urban landscapes, watercolor, dynamic compositions, bold colors, architectural detail",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0
@ -2019,7 +2019,7 @@ Maurice Sapiro,"impressionism, landscape, colorful",painting,"photorealistic lan
Tomás Saraceno,installation,installation art,"environmental art, interactive, ethereal, biomimicry, speculative futures",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,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0
Rebeca Saray,"digital, photography, portrait",photography,"dark fantasy, gothic, surreal, theatrical, elaborate costumes and makeup",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Denis Sarazhin,"realism, impressionism, detailed, character",painting,"hyperrealism, figurative, dramatic lighting, detailed textures, cinematic",0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Sardax,"nudity, surrealism",illustration,"fetish art, BDSM, erotic, detailed rendering, imaginative scenarios",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Sardax,"nudity, surrealism",illustration,"fetish art, BDSM, sexy, detailed rendering, imaginative scenarios",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
John Singer Sargent,"realism, impressionism, portrait, scene",painting,"portraitist, impressionism, masterful brushwork, elegant compositions, refined",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,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Tony Sart,"surrealism, fantasy",digital art,"sci-fi, futuristic, cyberpunk, detailed environments, dynamic compositions",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,1,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,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Martiros Saryan,"vibrant, impressionism, landscape",painting,"Armenian landscapes, fauvism, vibrant colors, expressive brushwork, poetic",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,0,0,0,0,0,0,0,0,0,1,0,1,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,0,0,0,0,0,0,0,1,0,0
@ -2044,7 +2044,7 @@ Ary Scheffer,"romanticism, portrait",painting,"romanticism, historical subjects,
August Friedrich Schenck,"nature, realism",painting,"animal painting, pastoral scenes, realistic, emotional, naturalistic",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Paula Scher,graphic design,graphic design,"postmodernism, typography, map design, bold colors, graphic simplicity, playful",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,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Kees Scherer,"photography, streetscape",photography,"street photography, documentary, candid, urban life, gritty realism",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
Egon Schiele,"expressionism, art nouveau, impressionism, symbolism, character",painting,"expressionism, figurative, eroticism, distorted bodies, raw emotion, intense",0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,1,0,0,0,0,0
Egon Schiele,"expressionism, art nouveau, impressionism, symbolism, character",painting,"expressionism, figurative, sensuality, distorted bodies, raw emotion, intense",0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,1,0,0,0,0,0
Jakub Schikaneder,"symbolism, portrait",painting,"Czech art nouveau, symbolism, decorative, folkloric, dreamlike, allegorical",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,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
Karl Friedrich Schinkel,"architecture, romanticism",architecture,"neoclassical, Prussian architect, monumental buildings, romanticism, grandeur",0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Helene Schjerfbeck,"portrait, realism, expressionism",painting,"Finnish realist, self-portraits, introspective, psychological, subdued palette",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,1,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,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
@ -2152,8 +2152,8 @@ Frans Snyders,"still life, colorful, baroque",Painting,"Baroque still life, Flem
Marcin Sobas,"surrealism, dark",Painting,"Hyperrealism, urban landscapes, atmospheric lighting, detailed textures",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Shigenori Soejima,"anime, character",Illustration,"Video game art, character design, Persona series, anime influence",0,0,0,0,0,1,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0,0,0,0
Melvin Sokolsky,"photography,",Photography,"Fashion photography, surrealism, whimsical concepts, inventive compositions",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Simeon Solomon,"romanticism, portrait",Painting,"Pre-Raphaelite Brotherhood, Symbolism, homoerotic themes, biblical subjects",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,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,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Hajime Sorayama,"character, sci-fi",Art,"Erotic art, hyperrealistic robots, pin-up girls, metallic textures",0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Simeon Solomon,"romanticism, portrait",Painting,"Pre-Raphaelite Brotherhood, Symbolism, biblical subjects",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,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,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Hajime Sorayama,"character, sci-fi",Art,"sexy art, hyperrealistic robots, pin-up girls, metallic textures",0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Joaquín Sorolla,"impressionism, luminism, portrait, landscape",Painting,"Impressionism, Spanish landscapes, luminous colors, loose brushwork",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,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Ettore Sottsass,"colorful, photography, art deco",Design,"Postmodern design, Memphis Group, colorful and playful aesthetics",0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Annie Soudain,"landscape, nature",Printmaking,"Linocut prints, botanical art, intricate patterns, vibrant colors",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,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,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
@ -2271,7 +2271,7 @@ Mickalene Thomas,"melanin, colorful, collage, pop art",Painting,"Collage, portra
Tom Thomson,"expressionism, art nouveau, impressionism, landscape",Painting,"Canadian wilderness, Group of Seven, vibrant",0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,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,0,0,0,0,0,0,0,0,0,0
Archibald Thorburn,"nature, watercolor, birds",Painting,"Ornithological art, detailed bird illustrations",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0
Storm Thorgerson,"surrealism, photography, colorful",Photography,"Album covers, surreal, conceptual, Pink Floyd",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Frank Thorne,"comics, nudity, illustration",Comics,"Fantasy, erotic, sword and sorcery",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,1,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
Frank Thorne,"comics, nudity, illustration",Comics,"Fantasy, sexy, sword and sorcery",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,1,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
George Tice,"photography, monochromatic, landscape, cityscape",Photography,"Black and white, American landscapes, quiet moments",0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Bridget Bate Tichenor,"surrealism, magic realism",Painting,"Surrealist, dreamlike, symbolic, Mexican",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,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,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Miroslav Tichý,"photography,",Photography,"Eccentric, voyeuristic, homemade cameras",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
@ -2287,7 +2287,7 @@ Titian,"renaissance, dark",Painting,"High Renaissance, rich colors, mythological
Ettore Tito,"realism, symbolism, seascape, scene, cityscape",Painting,"Romantic realism, Venetian scenes, luminous",0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
Greg Tocchini,"comics, illustration, sci-fi",Comics,"Sci-fi, futuristic, detailed, atmospheric",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Sam Toft,"whimsical, colorful",Painting,"Whimsical, naive, joyful, anthropomorphic characters",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,1
Tom of Finland,"monochromatic, comics, cartoon",Drawing,"Erotic art, hyper-masculine, fetishistic",0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,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,1,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,0
Tom of Finland,"monochromatic, comics, cartoon",Drawing,"sexy art, hyper-masculine, fetishistic",0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,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,1,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,0
Fred Tomaselli,"psychedelic, abstract",Mixed media,"Collage, psychedelic, nature motifs",0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Adrian Tomine,"comics, clean",Comics,"Slice of life, introspective, graphic memoir",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,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,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,0
Yoshiyuki Tomino,anime,Animation,"Mecha, space opera, Gundam series",0,0,0,0,0,1,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
@ -2313,8 +2313,8 @@ Kathryn Morris Trotter,"sculpture, abstract",Painting,"Realistic portraits, expr
Anne Truitt,"minimalism, abstract",Sculpture,"Minimalist, geometric, colorful",0,0,0,1,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
John Trumbull,romantisicm,Painting,"Historical scenes, American Revolution",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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Johnson Tsang,"sculpture, surrealism, figurativism",Sculpture,"Surreal, hyper-realistic, fluid forms",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,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Henry Scott Tuke,"figurativism, portrait, impressionism",Painting,"Impressionist, male nudes, coastal scenes",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,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Spencer Tunick,"photography, installation, nudity",Photography,"Nude installations, mass gatherings",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,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Henry Scott Tuke,"figurativism, portrait, impressionism",Painting,"Impressionist, masculinity coastal scenes",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,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Spencer Tunick,"photography, installation, nudity",Photography,"installations, mass gatherings",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,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Charles Tunnicliffe,"photography,",Painting,"Wildlife, birds, naturalistic",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Deborah Turbeville,"romanticism, landscape, seascape",Photography,"Fashion, moody, cinematic, dreamlike",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,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
J.M.W. Turner,"photography, vibrant, colorful, abstract",Painting,"Romantic landscape, luminous, dramatic",0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0
@ -2336,7 +2336,7 @@ Lesser Ury,ukiyo-e,Painting,"Impressionist, cityscapes, atmospheric",0,0,0,0,0,0
Kitagawa Utamaro,"impressionism, streetscape",Painting,"Ukiyo-e, woodblock prints, portraits",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,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,1,0,0,0,0,0,0,0
Maurice Utrillo,"cloudscape, landscape, fantasy, magic realism",Painting,"Post-Impressionist, cityscapes, Parisian scenes",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Christophe Vacher,"fantasy, surrealism",Illustration,"Fantasy, dark, atmospheric, cinematic",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,1,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,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Suzanne Valadon,"portrait, figurativism, impressionism",Painting,"Post-Impressionist, portraits, female nudes",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,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Suzanne Valadon,"portrait, figurativism, impressionism",Painting,"Post-Impressionist, portraits, feminity",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,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Thiago Valdi,"surrealism, dark",Sculpture,"Contemporary, abstract, metal",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Boris Vallejo,"fantasy, surrealism, colorful",Painting,"Fantasy, muscular figures, epic scenes",1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,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,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Felix Vallotton,"symbolism, dark",Painting,"Nabis, woodcuts, introspective",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
@ -2438,7 +2438,7 @@ Eric Wallis,"surrealism, dark",painting,"Photorealism, landscapes, dramatic ligh
Karen Wallis,"sci-fi, fantasy,",sculpture,"Figurative, expressive, textured surfaces",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,1,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,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Ron Walotsky,"sci-fi, illustration",illustration,"Science fiction and fantasy book covers, surreal landscapes",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,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,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Bruno Walpoth,"nudity, cartoon",sculpture,"Hyperrealistic wooden sculptures, human forms",0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,1,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
Bill Ward,comics,cartooning,"Adult cartoons, humorously erotic, curvaceous women",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0
Bill Ward,comics,cartooning,"Adult cartoons, humorously sexy, curvaceous women",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0
Lynd Ward,dark,wood engraving,"Graphic novels, social commentary, woodcut illustrations",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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
Pendleton Ward,"cartoon, surrealism",animation,"Surreal, whimsical, absurdist, heartfelt storytelling",1,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Arthur Wardle,"cartoon, comics",painting,"Animal portraits, detailed, expressive, realistic wildlife depictions",0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,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,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,0
@ -2468,7 +2468,7 @@ Wim Wenders,photography,film,"New German Cinema, road movies, existential themes
William Wendt,"impressionism, landscape, colorful",painting,"California Impressionism, plein air landscapes",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,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,0,0,0,0,0,0,0,0,0,0
Kurt Wenner,"street art, installation",street art,"3D pavement art, trompe-l'oeil, optical illusions",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,0,0,0,0,0,0,0,0,0,0,1,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,0,0,1,0,0,0,0,0,0,0,0
Michael Wesely,"photography, abstract",photography,"Long exposure, architectural, temporal transformations",0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Tom Wesselmann,"pop art, figurativism, colorful",painting,"Pop art, nudes, bold colors",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Tom Wesselmann,"pop art, figurativism, colorful",painting,"Pop art, characters, bold colors",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Taylor Wessing,"photography, portrait",photography,"Portraiture, intimate, capturing personality",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Franz West,"sculpture, abstract",sculpture,"Assemblage, unconventional materials, playful",0,0,0,1,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,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,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Brett Weston,"photography, monochromatic, still life",photography,"Modernist, abstract landscapes, stark contrasts",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
@ -2537,7 +2537,7 @@ Rose Wylie,figurativism,painting,"Contemporary art, expressive, playful",0,0,0,0
Charles Wysocki,whimsical,painting,"Americana, folk art, nostalgic scenes",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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
Stanisław Wyspiański,"landscape, scene",painting,"Symbolism, Art Nouveau, Polish folklore",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,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Qian Xuan,"dark, detailed, portrait",painting,"Chinese landscape painting, literati style",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,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,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Takato Yamamoto,"surrealism, dark",illustration,"Dark art, erotic grotesque, intricate detail",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Takato Yamamoto,"surrealism, dark",illustration,"Dark art, sexy grotesque, intricate detail",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Gene Luen Yang,comics,comics,"Graphic novels, cultural identity, social commentary",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0
David Yarrow,"photography, nature",photography,"Wildlife photography, dramatic, black and white",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Ikenaga Yasunari,figurativism,painting,"Japanese art, contemporary bijinga, delicate lines",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,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
@ -2667,7 +2667,7 @@ Emmy Bridgwater,"surrealism, dark",Painting,"Surrealism, British surrealism, fem
Renie Britenbucher,"abstract, colorful",Painting,"Naive art, folk themes, colorful compositions, whimsical characters, playful narratives",0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0
Lee Broom,abstract,Design,"Contemporary design, minimalist aesthetics, clean lines, geometric forms, functional elegance",0,0,0,1,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Pierce Brosnan,portrait,Painting,"figurative painting, impressionistic style, atmospheric scenes, emotive brushwork",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,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,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Margaret Brundage,"fantasy, illustration",Illustration,"Pulp magazine cover art, fantasy illustration, erotic themes, vibrant colors, provocative imagery",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,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Margaret Brundage,"fantasy, illustration",Illustration,"Pulp magazine cover art, fantasy illustration, sexy themes, vibrant colors, provocative imagery",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,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Marc Brunet,"fantasy, digital, colorful",Digital Art,"Character design, concept art, digital painting, fantasy themes, detailed rendering",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Barthel Bruyn the Elder,"renaissance, portrait, detailed",Painting,"German Renaissance, portraiture, meticulous detail, chiaroscuro, emotive expressions",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Barthel Bruyn the Younger,"surrealism,",Painting,"German Renaissance, portraiture, meticulous detail, chiaroscuro, emotive expressions",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,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,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
@ -3377,7 +3377,7 @@ Hans Holbein the Younger,"flowers, watercolor, nature",Painting,"Northern Renais
Malcolm Howie,"fantasy, scene, dark, whimsical",Painting,"Realistic cityscapes, urban scenes, dramatic lighting",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,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,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
Chiara Bautista,"nature, surrealism, animals, detailed",Illustration,"Dreamlike illustrations, intricate linework, fantasy elements",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Tiffany Bozic,"pop art, whimsical, horror",Painting,"Nature-inspired surrealism, meticulous detail, vibrant colors",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,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
Trevor Brown,"street art, portrait, graffiti",Painting,"Pop surrealism, provocative, erotic themes",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,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0
Trevor Brown,"street art, portrait, graffiti",Painting,"Pop surrealism, provocative, sexy themes",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,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0
Etam Cru,"graphic design, street art, collage, vibrant",Street Art,"Polish street art, large-scale murals, surreal",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0
Tristan Eaton,"pop art, street art",Street Art,"Urban art, pop culture references, colorful",1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0
Ron English,"sculpture, landscape, vibrant",Street Art,"Pop surrealist, subversive, iconic characters",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,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0
@ -3530,7 +3530,7 @@ Hiroshi Teshigahara,cinema,film,"surreal, atmospheric, avant-garde",0,0,0,0,0,0,
Ingmar Bergman,cinema,film,"existential, psychological, masterful",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0
Jacques Audiard,cinema,film,"gritty realism, intense, character-driven",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0
Jacques Tati,cinema,film,"whimsical, slapstick, visual comedy",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0
James Bidgood,cinema,film,"dreamlike, erotic, avant-garde",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0
James Bidgood,cinema,film,"dreamlike, sexy, avant-garde",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0
Jan Svankmajer,"cinema, surrealism",film,"surreal stop-motion, darkly humorous",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
Jean Renoir,cinema,film,"humanist, poetic realism, French cinema",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0
Jean-Luc Godard,cinema,film,"innovative, avant-garde, French New Wave",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0
@ -3565,7 +3565,7 @@ Ridley Scott,"cinema, sci-fi",Film,"Visually stunning, atmospheric, world-buildi
Roger Deakins,"cinema, landscape",Cinematography,"Master of light, atmospheric, meticulous composition",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0
Roman Polanski,cinema,Film,"Psychological thriller, suspenseful, morally ambiguous",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0
Ruben Ostlund,cinema,Film,"Satirical, dark humor, social commentary",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0
Russ Meyer,cinema,Film,"Erotic, exploitation, campy, over-the-top",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0
Russ Meyer,cinema,Film,"sexy, exploitation, campy, over-the-top",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0
Santosh Sivan,cinema,Film,"Cinematic, colorful, visually rich, cultural themes",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0
Sergei Eisenstein,cinema,Film,"Montage technique, revolutionary, political",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,0,0,0,0,0,0
Sergei Parajanov,"cinema, surrealism",Film,"Surreal, poetic, folkloric, visually stunning",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0

Can't render this file because it is too large.

View File

@ -169,4 +169,29 @@ Dimensional Portal
Orb
Vessel
Flower
Patron Saint
Patron Saint
Crown
Mechanism
Game
Destroyer
Horn
Circle
Ward
Monster
Force
Pillar
Hero
Utopia
Fellowship
Battleground
Avatar
Ring
Rite
Archon
Cocoon
Herald
Band
Ward
Memory
Glimmer
Logo
1 Ocean
169 Orb
170 Vessel
171 Flower
172 Patron Saint
173 Crown
174 Mechanism
175 Game
176 Destroyer
177 Horn
178 Circle
179 Ward
180 Monster
181 Force
182 Pillar
183 Hero
184 Utopia
185 Fellowship
186 Battleground
187 Avatar
188 Ring
189 Rite
190 Archon
191 Cocoon
192 Herald
193 Band
194 Ward
195 Memory
196 Glimmer
197 Logo

View File

@ -132,4 +132,34 @@ Delight
Seasons
Demons
Angels
a -pokemontype- type
a -pokemontype- type
Rage
Protection
The moon
Mana
The grave
Clouds
Dragons
Blight
Awakening
Breaking
Magic
Fantasy
Ambition
Strength
Ribbons
Secrets
the Woods
Runes
Abundance
Mercy
the Mists
Vapor
Mana
Thunder
Renewal
Bones
Aether
the Sisterhood
Luna
Glimmering
1 Infinity
132 Seasons
133 Demons
134 Angels
135 a -pokemontype- type
136 Rage
137 Protection
138 The moon
139 Mana
140 The grave
141 Clouds
142 Dragons
143 Blight
144 Awakening
145 Breaking
146 Magic
147 Fantasy
148 Ambition
149 Strength
150 Ribbons
151 Secrets
152 the Woods
153 Runes
154 Abundance
155 Mercy
156 the Mists
157 Vapor
158 Mana
159 Thunder
160 Renewal
161 Bones
162 Aether
163 the Sisterhood
164 Luna
165 Glimmering

View File

@ -16,8 +16,11 @@
1980'S
1990'S
2000'S
Aristocratic
Antsy-pantsy
Abandoned
Abhorrent
Abnormal
Abominable
Abrasive
Absorbing
@ -27,6 +30,7 @@ Acclaimed
Accomplished
Adorable
Adroit
Aging
Aesthetic
Aesthetically Pleasing
Affectionate
@ -59,10 +63,12 @@ Avant-Garde
Average
Award-Winning
Awe-Inspiring
Accessorized
Awful
Balanced
Baroque
Basic
Battle
Beautiful
Bewitching
Biochemical
@ -74,6 +80,7 @@ Biopunk
Bizarre
Black-mouthed
Blue
Blessed
Bold
Booby-trapped
Boorish
@ -110,9 +117,11 @@ Colorful
Colossal
Comely
Comfortable
Comforting
Compelling
Complementary
Complex
Common
Conceptual
Conscious
Contemplative
@ -124,16 +133,23 @@ Cozy
Cloth-covered
Creative
Creepy
Crowned
Cromulent
Crude
Cruel
Cute
Cursed
Clever
Chill
Chilled
Cyberpunk
Cyborg
Daring
Dark
Dazzling
Deafening
Decorative
Decorated
Deeply Thoughtful
Deep-rooted
Deformed
@ -164,7 +180,9 @@ Distinguished
Distorted
Divine
Doubtful
Dorky
Drab
Draped
Draconian
Dramatic
Dreadful
@ -177,6 +195,7 @@ Dusty
Dynamic
Dystopian
Eclectic
Edgy
Eerie
Efficacious
Elastic
@ -215,8 +234,15 @@ Expressive
Exquisite
Extraordinary
Extreme
Eye-catching
Fair
Fairy-Tale
Fallacious
Flamboyant
Flashy
Fine
Frail
Flimsy
Familiar
Fae
Fantastical
@ -246,12 +272,14 @@ Foul
Frantic
Freelance
Fresh
Freezing
Friendly
Frilled
Frosted
Fruit-Flavored
Frustrated
Flossier
Flawless
Functional
Funny
Funky
@ -278,6 +306,7 @@ Graceful
Grand
Granular
Great
Greater
Greedy
Groovy
Grotesque
@ -288,6 +317,7 @@ Hairy
Handsome
Happy
Harsh
Hard
Hateful
Haunted
Heartless
@ -341,6 +371,8 @@ Inviting
Intwined
Irresistible
Irritated
Iridescent
Impeccable
Jagged
Jealous
Kawaii
@ -349,6 +381,7 @@ Kintsugi
Labyrinthine
Layered
Level
Lesser
Lifeless
Lifelike
Light
@ -359,11 +392,13 @@ Lo-Fi
Loathsome
Lovely
Loving
Loyal
Ludicrous
Luminescent
Luminous
Lush
Lyrical
Mad
Macho
Magical
Magnificent
@ -383,6 +418,7 @@ Meek
Melancholy
Melting
Mesmerizing
Mesmeric
Messy
Metallic
Middle Aged
@ -404,6 +440,7 @@ Mysterious
Mystical
Mystifying
Mythical
Multi-tiered
Narrative
Narrow
Nasty
@ -411,6 +448,7 @@ Natural
Neat
Nerdy
Nervous
Night
Noble
Nonchalant
Noxious
@ -422,6 +460,8 @@ Offensive
Old
Oppressive
Organic
Orderly
Ordered
Original
Ornate
Otherworldly
@ -440,6 +480,7 @@ Palehearted
Peaceful
Personal
Petrified
Photogenic
Phenomenal
Pictorial
Pitiful
@ -447,7 +488,9 @@ Plain
Playful
Plush
Pop
Popular
Polygional
Polished
Potent
Preposterous
Pressured
@ -460,20 +503,27 @@ Psychotic
Puny
Pure
Pulsating
Quirky
Ravishing
Radiant
Raging
Rainbow
Resplendent
Realistic
Refined
Refreshing
Regal
Restless
Relaxing
Remarkable
Respectable
Respected
Repressive
Repugnant
Repulsive
Resonant
Resourceful
Retro
Retrofuturistic
Revealing
Revolting
@ -498,6 +548,7 @@ Sci-fi
Scrumptious
Sculptural
Secret
Seraphic
Seductive
Selfish
Semi-Abstract
@ -511,6 +562,7 @@ Shabby Chic
Shadowy
Shaky
Sharp
Shattered
Shimmering
Shiny
Shorty
@ -530,6 +582,9 @@ Snug
Soft
Soothing
Sophisticated
Space
Stylish
Snazzy
Sparkling
Sparse
Spellbinding
@ -538,6 +593,7 @@ Spirit World
Sprawling
Squealing
Stale
Sovereign
Steampunk
Stimulating
Stirring
@ -588,6 +644,7 @@ Touching
Tough
Traditional
Tradition-bound
Tragic
Translucent
Tranquil
Tremendous
@ -627,6 +684,7 @@ Vengeful
Verdant
Vibrant
Vile
Virtual
Vintage
Violent
Visionary
@ -634,6 +692,7 @@ Visual
Visually Stimulating
Voluminous
Voyeuristic
Vogue
Vulgar
Wanderlust
Warlike
@ -646,6 +705,9 @@ Wet
Winged
Wispy
Witty
Wonderful
Wonder
Wonderous
Worn-Out
Worried
World-renowned

1 -space-
16 1980'S
17 1990'S
18 2000'S
19 Aristocratic
20 Antsy-pantsy
21 Abandoned
22 Abhorrent
23 Abnormal
24 Abominable
25 Abrasive
26 Absorbing
30 Accomplished
31 Adorable
32 Adroit
33 Aging
34 Aesthetic
35 Aesthetically Pleasing
36 Affectionate
63 Average
64 Award-Winning
65 Awe-Inspiring
66 Accessorized
67 Awful
68 Balanced
69 Baroque
70 Basic
71 Battle
72 Beautiful
73 Bewitching
74 Biochemical
80 Bizarre
81 Black-mouthed
82 Blue
83 Blessed
84 Bold
85 Booby-trapped
86 Boorish
117 Colossal
118 Comely
119 Comfortable
120 Comforting
121 Compelling
122 Complementary
123 Complex
124 Common
125 Conceptual
126 Conscious
127 Contemplative
133 Cloth-covered
134 Creative
135 Creepy
136 Crowned
137 Cromulent
138 Crude
139 Cruel
140 Cute
141 Cursed
142 Clever
143 Chill
144 Chilled
145 Cyberpunk
146 Cyborg
147 Daring
148 Dark
149 Dazzling
150 Deafening
151 Decorative
152 Decorated
153 Deeply Thoughtful
154 Deep-rooted
155 Deformed
180 Distorted
181 Divine
182 Doubtful
183 Dorky
184 Drab
185 Draped
186 Draconian
187 Dramatic
188 Dreadful
195 Dynamic
196 Dystopian
197 Eclectic
198 Edgy
199 Eerie
200 Efficacious
201 Elastic
234 Exquisite
235 Extraordinary
236 Extreme
237 Eye-catching
238 Fair
239 Fairy-Tale
240 Fallacious
241 Flamboyant
242 Flashy
243 Fine
244 Frail
245 Flimsy
246 Familiar
247 Fae
248 Fantastical
272 Frantic
273 Freelance
274 Fresh
275 Freezing
276 Friendly
277 Frilled
278 Frosted
279 Fruit-Flavored
280 Frustrated
281 Flossier
282 Flawless
283 Functional
284 Funny
285 Funky
306 Grand
307 Granular
308 Great
309 Greater
310 Greedy
311 Groovy
312 Grotesque
317 Handsome
318 Happy
319 Harsh
320 Hard
321 Hateful
322 Haunted
323 Heartless
371 Intwined
372 Irresistible
373 Irritated
374 Iridescent
375 Impeccable
376 Jagged
377 Jealous
378 Kawaii
381 Labyrinthine
382 Layered
383 Level
384 Lesser
385 Lifeless
386 Lifelike
387 Light
392 Loathsome
393 Lovely
394 Loving
395 Loyal
396 Ludicrous
397 Luminescent
398 Luminous
399 Lush
400 Lyrical
401 Mad
402 Macho
403 Magical
404 Magnificent
418 Melancholy
419 Melting
420 Mesmerizing
421 Mesmeric
422 Messy
423 Metallic
424 Middle Aged
440 Mystical
441 Mystifying
442 Mythical
443 Multi-tiered
444 Narrative
445 Narrow
446 Nasty
448 Neat
449 Nerdy
450 Nervous
451 Night
452 Noble
453 Nonchalant
454 Noxious
460 Old
461 Oppressive
462 Organic
463 Orderly
464 Ordered
465 Original
466 Ornate
467 Otherworldly
480 Peaceful
481 Personal
482 Petrified
483 Photogenic
484 Phenomenal
485 Pictorial
486 Pitiful
488 Playful
489 Plush
490 Pop
491 Popular
492 Polygional
493 Polished
494 Potent
495 Preposterous
496 Pressured
503 Puny
504 Pure
505 Pulsating
506 Quirky
507 Ravishing
508 Radiant
509 Raging
510 Rainbow
511 Resplendent
512 Realistic
513 Refined
514 Refreshing
515 Regal
516 Restless
517 Relaxing
518 Remarkable
519 Respectable
520 Respected
521 Repressive
522 Repugnant
523 Repulsive
524 Resonant
525 Resourceful
526 Retro
527 Retrofuturistic
528 Revealing
529 Revolting
548 Scrumptious
549 Sculptural
550 Secret
551 Seraphic
552 Seductive
553 Selfish
554 Semi-Abstract
562 Shadowy
563 Shaky
564 Sharp
565 Shattered
566 Shimmering
567 Shiny
568 Shorty
582 Soft
583 Soothing
584 Sophisticated
585 Space
586 Stylish
587 Snazzy
588 Sparkling
589 Sparse
590 Spellbinding
593 Sprawling
594 Squealing
595 Stale
596 Sovereign
597 Steampunk
598 Stimulating
599 Stirring
644 Tough
645 Traditional
646 Tradition-bound
647 Tragic
648 Translucent
649 Tranquil
650 Tremendous
684 Verdant
685 Vibrant
686 Vile
687 Virtual
688 Vintage
689 Violent
690 Visionary
692 Visually Stimulating
693 Voluminous
694 Voyeuristic
695 Vogue
696 Vulgar
697 Wanderlust
698 Warlike
705 Winged
706 Wispy
707 Witty
708 Wonderful
709 Wonder
710 Wonderous
711 Worn-Out
712 Worried
713 World-renowned

View File

@ -1,3 +1,4 @@
-rpgclass-
lowborn
highborn
lower class
@ -15,8 +16,10 @@ higher class
1980'S
1990'S
2000'S
Aristocratic
Absurd
Adorable
Aging
Aggressive
Alien
Alluring
@ -26,6 +29,7 @@ Angry
Anime
Apocalyptic
Appealing
Arrogant
Arcane
Artistic
Astonishing
@ -39,12 +43,14 @@ Awful
Basic
Beautiful
Bewitching
Blessed
Boring
Breathtaking
Brilliant
Broken
Captivating
Celestial
Cherubic
Charismatic
Charming
Chibi
@ -55,17 +61,25 @@ Complex
Cool
Creepy
Cute
Cursed
Chill
Clever
Cyberpunk
Cyborg
Delightful
Dorky
Dirty
Disgusting
Divine
Dainty
Drab
Dreamlike
Dreamy
Dull
Drop-dead gorgeous
Eclectic
Edgy
Elder
Elderly
Elegant
Emotional
@ -81,6 +95,8 @@ Exhausted
Exotic
Expressive
Extraordinary
Eye-catching
Fair
Fairy-Tale
Fae
Fantastical
@ -89,7 +105,12 @@ Fashionable
Fatigued
Feminine
Flirty
Flamboyant
Flashy
Fine
Frail
Foul
Freezing
Friendly
Funny
Funky
@ -116,6 +137,9 @@ Grumpy
Hairy
Handsome
Happy
Hard
Hard-boiled
Hardy
Harsh
Hateful
Heavenly
@ -128,12 +152,16 @@ Horrifying
Injured
Intellectual
Irresistible
Impeccable
Junoesque
Kawaii
Kindhearted
Lovely
Loving
Loyal
Ludicrous
Macho
Mad
Magical
Magnificent
Majestic
@ -158,10 +186,16 @@ Passionate
Plain
Playful
Pretty
Photogenic
Popular
Psychotic
Pure
Quirky
Radiant
Refined
Restless
Respectable
Respected
Regal
Rich
Robotic
@ -171,6 +205,10 @@ Seductive
Sensual
Serious
Sexy
Soft
Space
Stylish
Sophisticated
Shabby
Smart
Smiling
@ -181,6 +219,7 @@ Striking
Stunning
Tiny
Tired
Tragic
Trendy
Tropical
Ugly
@ -189,9 +228,13 @@ Unconventional
Unique
Vampiric
Vibrant
Virtual
Vulgar
Warlike
Weary
Wonderful
Wonder
Wonderous
Weird
Wet
Young
1 lowborn -rpgclass-
1 -rpgclass-
2 lowborn lowborn
3 highborn highborn
4 lower class lower class
16 1980'S 1980'S
17 1990'S 1990'S
18 2000'S 2000'S
19 Aristocratic
20 Absurd Absurd
21 Adorable Adorable
22 Aging
23 Aggressive Aggressive
24 Alien Alien
25 Alluring Alluring
29 Anime Anime
30 Apocalyptic Apocalyptic
31 Appealing Appealing
32 Arrogant
33 Arcane Arcane
34 Artistic Artistic
35 Astonishing Astonishing
43 Basic Basic
44 Beautiful Beautiful
45 Bewitching Bewitching
46 Blessed
47 Boring Boring
48 Breathtaking Breathtaking
49 Brilliant Brilliant
50 Broken Broken
51 Captivating Captivating
52 Celestial Celestial
53 Cherubic
54 Charismatic Charismatic
55 Charming Charming
56 Chibi Chibi
61 Cool Cool
62 Creepy Creepy
63 Cute Cute
64 Cursed
65 Chill
66 Clever
67 Cyberpunk Cyberpunk
68 Cyborg Cyborg
69 Delightful Delightful
70 Dorky
71 Dirty Dirty
72 Disgusting Disgusting
73 Divine Divine
74 Dainty
75 Drab Drab
76 Dreamlike Dreamlike
77 Dreamy Dreamy
78 Dull Dull
79 Drop-dead gorgeous
80 Eclectic Eclectic
81 Edgy
82 Elder
83 Elderly Elderly
84 Elegant Elegant
85 Emotional Emotional
95 Exotic Exotic
96 Expressive Expressive
97 Extraordinary Extraordinary
98 Eye-catching
99 Fair
100 Fairy-Tale Fairy-Tale
101 Fae Fae
102 Fantastical Fantastical
105 Fatigued Fatigued
106 Feminine Feminine
107 Flirty Flirty
108 Flamboyant
109 Flashy
110 Fine
111 Frail
112 Foul Foul
113 Freezing
114 Friendly Friendly
115 Funny Funny
116 Funky Funky
137 Hairy Hairy
138 Handsome Handsome
139 Happy Happy
140 Hard
141 Hard-boiled
142 Hardy
143 Harsh Harsh
144 Hateful Hateful
145 Heavenly Heavenly
152 Injured Injured
153 Intellectual Intellectual
154 Irresistible Irresistible
155 Impeccable
156 Junoesque
157 Kawaii Kawaii
158 Kindhearted Kindhearted
159 Lovely Lovely
160 Loving Loving
161 Loyal
162 Ludicrous Ludicrous
163 Macho Macho
164 Mad
165 Magical Magical
166 Magnificent Magnificent
167 Majestic Majestic
186 Plain Plain
187 Playful Playful
188 Pretty Pretty
189 Photogenic
190 Popular
191 Psychotic Psychotic
192 Pure Pure
193 Quirky
194 Radiant Radiant
195 Refined Refined
196 Restless
197 Respectable
198 Respected
199 Regal Regal
200 Rich Rich
201 Robotic Robotic
205 Sensual Sensual
206 Serious Serious
207 Sexy Sexy
208 Soft
209 Space
210 Stylish
211 Sophisticated
212 Shabby Shabby
213 Smart Smart
214 Smiling Smiling
219 Stunning Stunning
220 Tiny Tiny
221 Tired Tired
222 Tragic
223 Trendy Trendy
224 Tropical Tropical
225 Ugly Ugly
228 Unique Unique
229 Vampiric Vampiric
230 Vibrant Vibrant
231 Virtual
232 Vulgar Vulgar
233 Warlike Warlike
234 Weary Weary
235 Wonderful
236 Wonder
237 Wonderous
238 Weird Weird
239 Wet Wet
240 Young Young

View File

@ -71,6 +71,7 @@ Boss;both
Bookbinder;both
Botanist;both
Bounty hunter;both
Brawler;both
Brewer;both
Bride;female
Brigadier General;both

1 -charactertype- character both
71 Bookbinder both
72 Botanist both
73 Bounty hunter both
74 Brawler both
75 Brewer both
76 Bride female
77 Brigadier General both

View File

@ -53,6 +53,7 @@ Cozy
Crude
Crowded
Cyberpunk
Decorated
Dense
Depressing
Deserted
@ -83,6 +84,7 @@ Exotic
Exquisite
Extraordinary
Extreme
Eye-catching
Fairy-Tale
Fantastical
Fiery
@ -92,6 +94,7 @@ Floating
Flowery
Foggy
Folded
Freezing
Futuristic
Ghastly
Gigantic
@ -126,12 +129,14 @@ Lively
Lovely
Luminescent
Lush
Mad
Magical
Magnificent
Majestic
Masterpiece
Melancholy
Mesmerizing
Mesmeric
Messy
Moist
Moody
@ -150,6 +155,7 @@ Overgrown
Painterly
Peaceful
Phenomenal
Photogenic
Pictorial
Pittoresque
Plain
@ -193,4 +199,7 @@ Verdant
Vibrant
Vile
Warm
Wretched
Wretched
Wonderful
Wonder
Wonderous
1 1600'S
53 Crude
54 Crowded
55 Cyberpunk
56 Decorated
57 Dense
58 Depressing
59 Deserted
84 Exquisite
85 Extraordinary
86 Extreme
87 Eye-catching
88 Fairy-Tale
89 Fantastical
90 Fiery
94 Flowery
95 Foggy
96 Folded
97 Freezing
98 Futuristic
99 Ghastly
100 Gigantic
129 Lovely
130 Luminescent
131 Lush
132 Mad
133 Magical
134 Magnificent
135 Majestic
136 Masterpiece
137 Melancholy
138 Mesmerizing
139 Mesmeric
140 Messy
141 Moist
142 Moody
155 Painterly
156 Peaceful
157 Phenomenal
158 Photogenic
159 Pictorial
160 Pittoresque
161 Plain
199 Vibrant
200 Vile
201 Warm
202 Wretched
203 Wonderful
204 Wonder
205 Wonderous

View File

@ -1,48 +1,64 @@
Amusing
Angry
Awe
Blissful
Confused
Cosy
Cozy
Dark
Dark and Gritty
Delighted
Depressing
Disgusting
Embarrassing
Energetic
Evil
Eerie
Fae
Fantasy
Fairy-Tale
Fearful
Festive
Flustered
Frightening
Grim
Guilty
Happy
Heavenly
Hopeful
Hopeless
Horror
Intense
Joyful
Light
Light and Bright
Lively
Lonely
Lustful
Manic
Magical
Mystical
Peaceful
Proud
Radiant
Regret
Relaxed
Relieving
Romantic
Sad
Satisfying
Serene
Sci-Fi
Shameful
Shameless
Spiritual
Suffering
Suspenseful
Surprising
Tranquil
Terror
Timid
Wonder
Zen
Whimsical
Zen
Zany
1 Amusing
2 Angry
3 Awe
4 Blissful
5 Confused
6 Cosy
7 Cozy
8 Dark
9 Dark and Gritty
10 Delighted
11 Depressing
12 Disgusting
13 Embarrassing
14 Energetic
15 Evil
16 Eerie
17 Fae
18 Fantasy
19 Fairy-Tale
20 Fearful
21 Festive
22 Flustered
23 Frightening
24 Grim
25 Guilty
26 Happy
27 Heavenly
28 Hopeful
29 Hopeless
30 Horror
31 Intense
32 Joyful
33 Light
34 Light and Bright
35 Lively
36 Lonely
37 Lustful
38 Manic
39 Magical
40 Mystical
41 Peaceful
42 Proud
43 Radiant
44 Regret
45 Relaxed
46 Relieving
47 Romantic
48 Sad
49 Satisfying
50 Serene
51 Sci-Fi
52 Shameful
53 Shameless
54 Spiritual
55 Suffering
56 Suspenseful
57 Surprising
58 Tranquil
59 Terror
60 Timid
61 Wonder
62 Zen Whimsical
63 Zen
64 Zany

View File

@ -37,7 +37,6 @@ Anaglyph
Anatomical Illustration
Ancient Egyptian Art
Animation
Anime key visual
Anthotype Print
Aquatint
Architectural Digest

1 -color- and -color- fractals
37 Anatomical Illustration
38 Ancient Egyptian Art
39 Animation
Anime key visual
40 Anthotype Print
41 Aquatint
42 Architectural Digest

View File

@ -11,6 +11,7 @@
1980'S
1990'S
2000'S
Airy
Abstract
Absurd
Acclaimed
@ -27,6 +28,7 @@ Apocalyptic
Appealing
Arcane
Artistic
Armored
Astonishing
Asymmetrical
Attractive
@ -35,15 +37,20 @@ Avant-Garde
Average
Award-Winning
Awe-Inspiring
Accessorized
Awful
Battle
Baggy
Baroque
Basque
Basic
Beautiful
Bewitching
Blessed
Bioluminescent
Bikinied
Business
Bustled
Boring
Breathtaking
Bridal
@ -60,6 +67,8 @@ Comely
Comfortable
Contemporary
Controversial
Contoured
Cinched
Cool
Cozy
Creative
@ -68,19 +77,25 @@ Cute
Cyberpunk
Cyborg
Daring
Dark
Decorative
Delicate
Detailed
Dieselpunk
Dirty
Divine
Dainty
Drab
Draped
Decorated
Dreamlike
Dreamy
Dull
Dynamic
Eclectic
Edgy
Elegant
Elvish
Enchanting
Enticing
Ethereal
@ -89,11 +104,17 @@ Exceptional
Exotic
Exquisite
Extraordinary
Eye-catching
Fairy-Tale
Flawless
Flashy
Flamboyant
Fantastical
Fashionable
Festive
Flirty
Flimsy
Feathery
Flowing
Flowery
Fluffy
@ -101,6 +122,11 @@ Formal
Frilled
Funky
Fur-Trimmed
Fur-collared
Fine
Fitted
Frail
Flared
Geeky
Ghostly
Glam
@ -113,6 +139,9 @@ Graceful
Grand
Great
Groovy
Glistening
Hard
High-fashion
Handsome
Hideous
Historical
@ -122,36 +151,49 @@ Hyperdetailed
Illuminating
Imaginative
Impressive
Impeccable
Incredibly Detailed
Inspirational
Intricate
Kawaii
Lace
Lace-trimmed
Large
Layered
Light
Lovely
Luminescent
Luminous
Iridescent
Mad
Magical
Magnificent
Majestic
Mecha-
Mesmeric
Metallic
Middle Aged
Minimalist
Mysterious
Mystical
Mythical
Multi-tiered
Nerdy
Noble
Otherworldly
Oversized
Plated
Pleated
Plushy
Peplum
Playful
Pocketed
Pretty
Psychadelic
Radiant
Respectable
Refined
Retro
Retrofuturistic
Revealing
Rich
@ -159,11 +201,14 @@ Ridiculous
Robotic
Romantic
Ruined
Ruffled
Rustic
Satin
Saturated
Seductive
Sensual
Snazzy
Snug
Sexy
Shabby
Shabby Chic
@ -172,6 +217,13 @@ Short
Silky
Simple
Sleek
Skirted
Space
Sparkling
Stylish
Sophisticated
Strapless
Sleeveless
Small
Smart
Smooth
@ -180,6 +232,8 @@ Soft
Stunning
Supersized
Surreal
Tapered
Traditional
Tailor-suited
Tailored
Tight
@ -189,7 +243,12 @@ Ugly
Unattractive
Unconventional
Velvet
Vogue
Virtual
Vibrant
Vintage
Vulgar
Worn-Out
Worn-Out
Wonderful
Wonder
Wonderous
1 1600'S
11 1980'S
12 1990'S
13 2000'S
14 Airy
15 Abstract
16 Absurd
17 Acclaimed
28 Appealing
29 Arcane
30 Artistic
31 Armored
32 Astonishing
33 Asymmetrical
34 Attractive
37 Average
38 Award-Winning
39 Awe-Inspiring
40 Accessorized
41 Awful
42 Battle
43 Baggy
44 Baroque
45 Basque
46 Basic
47 Beautiful
48 Bewitching
49 Blessed
50 Bioluminescent
51 Bikinied
52 Business
53 Bustled
54 Boring
55 Breathtaking
56 Bridal
67 Comfortable
68 Contemporary
69 Controversial
70 Contoured
71 Cinched
72 Cool
73 Cozy
74 Creative
77 Cyberpunk
78 Cyborg
79 Daring
80 Dark
81 Decorative
82 Delicate
83 Detailed
84 Dieselpunk
85 Dirty
86 Divine
87 Dainty
88 Drab
89 Draped
90 Decorated
91 Dreamlike
92 Dreamy
93 Dull
94 Dynamic
95 Eclectic
96 Edgy
97 Elegant
98 Elvish
99 Enchanting
100 Enticing
101 Ethereal
104 Exotic
105 Exquisite
106 Extraordinary
107 Eye-catching
108 Fairy-Tale
109 Flawless
110 Flashy
111 Flamboyant
112 Fantastical
113 Fashionable
114 Festive
115 Flirty
116 Flimsy
117 Feathery
118 Flowing
119 Flowery
120 Fluffy
122 Frilled
123 Funky
124 Fur-Trimmed
125 Fur-collared
126 Fine
127 Fitted
128 Frail
129 Flared
130 Geeky
131 Ghostly
132 Glam
139 Grand
140 Great
141 Groovy
142 Glistening
143 Hard
144 High-fashion
145 Handsome
146 Hideous
147 Historical
151 Illuminating
152 Imaginative
153 Impressive
154 Impeccable
155 Incredibly Detailed
156 Inspirational
157 Intricate
158 Kawaii
159 Lace
160 Lace-trimmed
161 Large
162 Layered
163 Light
164 Lovely
165 Luminescent
166 Luminous
167 Iridescent
168 Mad
169 Magical
170 Magnificent
171 Majestic
172 Mecha-
173 Mesmeric
174 Metallic
175 Middle Aged
176 Minimalist
177 Mysterious
178 Mystical
179 Mythical
180 Multi-tiered
181 Nerdy
182 Noble
183 Otherworldly
184 Oversized
185 Plated
186 Pleated
187 Plushy
188 Peplum
189 Playful
190 Pocketed
191 Pretty
192 Psychadelic
193 Radiant
194 Respectable
195 Refined
196 Retro
197 Retrofuturistic
198 Revealing
199 Rich
201 Robotic
202 Romantic
203 Ruined
204 Ruffled
205 Rustic
206 Satin
207 Saturated
208 Seductive
209 Sensual
210 Snazzy
211 Snug
212 Sexy
213 Shabby
214 Shabby Chic
217 Silky
218 Simple
219 Sleek
220 Skirted
221 Space
222 Sparkling
223 Stylish
224 Sophisticated
225 Strapless
226 Sleeveless
227 Small
228 Smart
229 Smooth
232 Stunning
233 Supersized
234 Surreal
235 Tapered
236 Traditional
237 Tailor-suited
238 Tailored
239 Tight
243 Unattractive
244 Unconventional
245 Velvet
246 Vogue
247 Virtual
248 Vibrant
249 Vintage
250 Vulgar
251 Worn-Out
252 Wonderful
253 Wonder
254 Wonderous

View File

@ -17,7 +17,7 @@ futuristic, sci fi, sci-fi, modern, technology
fashionable, fashion, haute couture, avant-garde
concept art, fantasy, sci-fi, science fiction, D&D, digital art
cinema, cinematic, cinestill, movie still, cinemascope
anime, manga, anime key visual, key visual, studio anime, anime style, anime sketch
anime, manga, studio anime, anime style, anime sketch
funny, whimsical, fun, amusing
authentic, traditional, classic, indigenous, ethnic
monochromatic, greyscale, BW, black and white, stark

1 adorable, alluring, appealing, attractive, beautiful, charming, cozy, cute, elegant, exquisite, flawless, glamourous, good-looking, gorgeous, lovely, magnificent, pleasant, pretty
17 fashionable, fashion, haute couture, avant-garde
18 concept art, fantasy, sci-fi, science fiction, D&D, digital art
19 cinema, cinematic, cinestill, movie still, cinemascope
20 anime, manga, anime key visual, key visual, studio anime, anime style, anime sketch anime, manga, studio anime, anime style, anime sketch
21 funny, whimsical, fun, amusing
22 authentic, traditional, classic, indigenous, ethnic
23 monochromatic, greyscale, BW, black and white, stark

View File

@ -1,6 +1,6 @@
professional 3d model -subject-, octane render, highly detailed, volumetric, dramatic lighting
analog film photo -subject-, faded film, desaturated, 35mm photo, grainy, vignette, vintage, Kodachrome, Lomography, stained, highly detailed, found footage
anime artwork -subject-, anime style, key visual, vibrant, studio anime, highly detailed
anime artwork -subject-, anime style, vibrant, studio anime, highly detailed
cinematic film still -subject-, shallow depth of field, vignette, highly detailed, high budget, bokeh, cinemascope, moody, epic, gorgeous, film grain, grainy
comic -subject-, graphic illustration, comic art, graphic novel art, vibrant, highly detailed
play-doh style -subject-, sculpture, clay art, centered composition, Claymation

1 professional 3d model -subject-, octane render, highly detailed, volumetric, dramatic lighting
2 analog film photo -subject-, faded film, desaturated, 35mm photo, grainy, vignette, vintage, Kodachrome, Lomography, stained, highly detailed, found footage
3 anime artwork -subject-, anime style, key visual, vibrant, studio anime, highly detailed anime artwork -subject-, anime style, vibrant, studio anime, highly detailed
4 cinematic film still -subject-, shallow depth of field, vignette, highly detailed, high budget, bokeh, cinemascope, moody, epic, gorgeous, film grain, grainy
5 comic -subject-, graphic illustration, comic art, graphic novel art, vibrant, highly detailed
6 play-doh style -subject-, sculpture, clay art, centered composition, Claymation

View File

@ -90,7 +90,6 @@ Impressionism
Instagram
intricate
intricate details
key visual
Kintsugi
layered textures
League of Legends Splash Art

1 -basicbitchdescriptor-
90 Instagram
91 intricate
92 intricate details
key visual
93 Kintsugi
94 layered textures
95 League of Legends Splash Art

View File

@ -59,7 +59,6 @@ Impasto
Instagram
intricate
intricate details
key visual
Kintsugi
layered textures
League of Legends Splash Art

1 -basicbitchdescriptor-
59 Instagram
60 intricate
61 intricate details
key visual
62 Kintsugi
63 layered textures
64 League of Legends Splash Art

View File

@ -13,7 +13,7 @@ from call_extras import *
from model_lists import *
def generateimages(amount = 1, size = "all",model = "currently selected model",samplingsteps = "40",cfg= "7",hiresfix = True,hiressteps ="0",denoisestrength="0.6",samplingmethod="DPM++ SDE Karras", upscaler="R-ESRGAN 4x+", hiresscale="2",apiurl="http://127.0.0.1:7860",qualitygate=False,quality="7.6",runs="5",insanitylevel="5",subject="all", artist="all", imagetype="all",silentmode=False, workprompt="", antistring="",prefixprompt="", suffixprompt="", negativeprompt="",promptcompounderlevel = "1", seperator="comma", img2imgbatch = "1", img2imgsamplingsteps = "20", img2imgcfg = "7", img2imgsamplingmethod = "DPM++ SDE Karras", img2imgupscaler = "R-ESRGAN 4x+", img2imgmodel = "currently selected model", img2imgactivate = False, img2imgscale = "2", img2imgpadding = "64",img2imgdenoisestrength="0.3",ultimatesdupscale=False,usdutilewidth = "512", usdutileheight = "0", usdumaskblur = "8", usduredraw ="Linear", usduSeamsfix = "None", usdusdenoise = "0.35", usduswidth = "64", usduspadding ="32", usdusmaskblur = "8",controlnetenabled=False, controlnetmodel="",img2imgdenoisestrengthmod="-0.05",enableextraupscale = False,controlnetblockymode = False,extrasupscaler1 = "all",extrasupscaler2 ="all",extrasupscaler2visiblity="0.5",extrasupscaler2gfpgan="0",extrasupscaler2codeformer="0.15",extrasupscaler2codeformerweight="0.1",extrasresize="2",onlyupscale="false",givensubject="",smartsubject=True,giventypeofimage="",imagemodechance=20, gender="all", chosensubjectsubtypeobject="all", chosensubjectsubtypehumanoid="all", chosensubjectsubtypeconcept="all", increasestability = False, qualityhiresfix = False, qualitymode = "highest", qualitykeep="keep used", basesize = "512", promptvariantinsanitylevel = 0, givenoutfit = "", autonegativeprompt = True, autonegativepromptstrength = 0, autonegativepromptenhance = False, base_model = "SD1.5", OBP_preset = "", amountoffluff = "none", promptenhancer = "none"):
def generateimages(amount = 1, size = "all",model = "currently selected model",samplingsteps = "40",cfg= "7",hiresfix = True,hiressteps ="0",denoisestrength="0.6",samplingmethod="DPM++ SDE Karras", upscaler="R-ESRGAN 4x+", hiresscale="2",apiurl="http://127.0.0.1:7860",qualitygate=False,quality="7.6",runs="5",insanitylevel="5",subject="all", artist="all", imagetype="all",silentmode=False, workprompt="", antistring="",prefixprompt="", suffixprompt="", negativeprompt="",promptcompounderlevel = "1", seperator="comma", img2imgbatch = "1", img2imgsamplingsteps = "20", img2imgcfg = "7", img2imgsamplingmethod = "DPM++ SDE Karras", img2imgupscaler = "R-ESRGAN 4x+", img2imgmodel = "currently selected model", img2imgactivate = False, img2imgscale = "2", img2imgpadding = "64",img2imgdenoisestrength="0.3",ultimatesdupscale=False,usdutilewidth = "512", usdutileheight = "0", usdumaskblur = "8", usduredraw ="Linear", usduSeamsfix = "None", usdusdenoise = "0.35", usduswidth = "64", usduspadding ="32", usdusmaskblur = "8",controlnetenabled=False, controlnetmodel="",img2imgdenoisestrengthmod="-0.05",enableextraupscale = False,controlnetblockymode = False,extrasupscaler1 = "all",extrasupscaler2 ="all",extrasupscaler2visiblity="0.5",extrasupscaler2gfpgan="0",extrasupscaler2codeformer="0.15",extrasupscaler2codeformerweight="0.1",extrasresize="2",onlyupscale="false",givensubject="",smartsubject=True,giventypeofimage="",imagemodechance=20, gender="all", chosensubjectsubtypeobject="all", chosensubjectsubtypehumanoid="all", chosensubjectsubtypeconcept="all", increasestability = False, qualityhiresfix = False, qualitymode = "highest", qualitykeep="keep used", basesize = "512", promptvariantinsanitylevel = 0, givenoutfit = "", autonegativeprompt = True, autonegativepromptstrength = 0, autonegativepromptenhance = False, base_model = "SD1.5", OBP_preset = "", amountoffluff = "none", promptenhancer = "none", presetprefix = "", presetsuffix = ""):
loops = int(amount) # amount of images to generate
steps = 0
upscalefilelist=[]
@ -136,7 +136,7 @@ def generateimages(amount = 1, size = "all",model = "currently selected model",s
else:
randompromptlist = build_dynamic_prompt(insanitylevel,subject,artist,imagetype, False,antistring,prefixprompt,suffixprompt,promptcompounderlevel, seperator,givensubject,smartsubject,giventypeofimage,imagemodechance, gender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept,True,False,-1,givenoutfit, prompt_g_and_l=True, base_model=base_model, OBP_preset=OBP_preset, prompt_enhancer=promptenhancer)
randompromptlist = build_dynamic_prompt(insanitylevel,subject,artist,imagetype, False,antistring,prefixprompt,suffixprompt,promptcompounderlevel, seperator,givensubject,smartsubject,giventypeofimage,imagemodechance, gender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept,True,False,-1,givenoutfit, prompt_g_and_l=True, base_model=base_model, OBP_preset=OBP_preset, prompt_enhancer=promptenhancer, preset_prefix=presetprefix, preset_suffix=presetsuffix)
randomprompt = randompromptlist[0]
randomsubject = randompromptlist[1]

View File

@ -151,13 +151,13 @@
"chosensubjectsubtypehumanoid": "all",
"chosensubjectsubtypeconcept": "all",
"chosengender": "female",
"imagetype": "subject only mode",
"imagetype": "all - anime",
"imagemodechance": "20",
"givensubject": "-basicbitchdescriptor- 1girl, solo,",
"smartsubject": true,
"givenoutfit": "",
"prefixprompt": "(((masterpiece))), (((best quality))), anime style, 2d,",
"suffixprompt": "key visual",
"suffixprompt": "",
"giventypeofimage": "",
"antistring": ""
},
@ -169,13 +169,13 @@
"chosensubjectsubtypehumanoid": "all",
"chosensubjectsubtypeconcept": "all",
"chosengender": "male",
"imagetype": "subject only mode",
"imagetype": "all - anime",
"imagemodechance": "20",
"givensubject": "-basicbitchdescriptor- 1boy, solo,",
"smartsubject": true,
"givenoutfit": "",
"prefixprompt": "(((masterpiece))), (((best quality))), anime style, 2d,",
"suffixprompt": "key visual",
"suffixprompt": "",
"giventypeofimage": "",
"antistring": ""
},

View File

@ -11,7 +11,7 @@ from build_dynamic_prompt import *
def generateprompts(amount = 1,insanitylevel="5",subject="all", artist="all", imagetype="all",onlyartists=False, workprompt="", antistring="",prefixprompt="", suffixprompt="", negativeprompt="",promptcompounderlevel = "1", seperator="comma",givensubject="",smartsubject=True,giventypeofimage="",imagemodechance=20, gender = "all", subtypeobject = "all", subtypehumanoid = "all", subtypeconcept = "all", advancedprompting = True, hardturnoffemojis=False, seed=0, overrideoutfit="", prompt_g_and_l = False, base_model = "SD1.5", OBP_preset = "", prompt_enhancer="none"):
def generateprompts(amount = 1,insanitylevel="5",subject="all", artist="all", imagetype="all",onlyartists=False, workprompt="", antistring="",prefixprompt="", suffixprompt="", negativeprompt="",promptcompounderlevel = "1", seperator="comma",givensubject="",smartsubject=True,giventypeofimage="",imagemodechance=20, gender = "all", subtypeobject = "all", subtypehumanoid = "all", subtypeconcept = "all", advancedprompting = True, hardturnoffemojis=False, seed=0, overrideoutfit="", prompt_g_and_l = False, base_model = "SD1.5", OBP_preset = "", prompt_enhancer="none", preset_prefix = "", preset_suffix =""):
loops = int(amount) # amount of images to generate
steps = 0
@ -27,7 +27,7 @@ def generateprompts(amount = 1,insanitylevel="5",subject="all", artist="all", im
print(resultlist[2])
else:
result = build_dynamic_prompt(insanitylevel,subject,artist,imagetype, onlyartists,antistring,prefixprompt,suffixprompt,promptcompounderlevel, seperator,givensubject,smartsubject,giventypeofimage,imagemodechance, gender, subtypeobject, subtypehumanoid, subtypeconcept, advancedprompting, hardturnoffemojis, seed, overrideoutfit, prompt_g_and_l, base_model, OBP_preset, prompt_enhancer)
result = build_dynamic_prompt(insanitylevel,subject,artist,imagetype, onlyartists,antistring,prefixprompt,suffixprompt,promptcompounderlevel, seperator,givensubject,smartsubject,giventypeofimage,imagemodechance, gender, subtypeobject, subtypehumanoid, subtypeconcept, advancedprompting, hardturnoffemojis, seed, overrideoutfit, prompt_g_and_l, base_model, OBP_preset, prompt_enhancer,"","", preset_prefix, preset_suffix)
#if(superprompter):
# load_models()
@ -133,4 +133,6 @@ if __name__ == "__main__":
, "SDXL" #base model
, "" #preset "All (random)..."
, "" # superprompter
, "hello" # preset prefix
, "" # preset suffix
)

View File

@ -354,12 +354,12 @@ class Script(scripts.Script):
def ui(self, is_img2img):
def gen_prompt(insanitylevel, subject, artist, imagetype, antistring, prefixprompt, suffixprompt, promptcompounderlevel, seperator,givensubject,smartsubject,giventypeofimage, imagemodechance,chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept,givenoutfit, base_model, OBP_preset, amountoffluff, promptenhancer):
def gen_prompt(insanitylevel, subject, artist, imagetype, antistring, prefixprompt, suffixprompt, promptcompounderlevel, seperator,givensubject,smartsubject,giventypeofimage, imagemodechance,chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept,givenoutfit, base_model, OBP_preset, amountoffluff, promptenhancer, presetprefix, presetsuffix):
promptlist = []
for i in range(5):
base_prompt = build_dynamic_prompt(insanitylevel,subject,artist, imagetype, False, antistring,prefixprompt,suffixprompt,promptcompounderlevel,seperator,givensubject,smartsubject, giventypeofimage, imagemodechance,chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept,True,False,-1,givenoutfit,False,base_model, OBP_preset, promptenhancer)
base_prompt = build_dynamic_prompt(insanitylevel,subject,artist, imagetype, False, antistring,prefixprompt,suffixprompt,promptcompounderlevel,seperator,givensubject,smartsubject, giventypeofimage, imagemodechance,chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept,True,False,-1,givenoutfit,False,base_model, OBP_preset, promptenhancer, "", "", presetprefix, presetsuffix)
fluffed_prompt = flufferizer(prompt=base_prompt, amountoffluff=amountoffluff)
promptlist.append(fluffed_prompt)
@ -406,7 +406,16 @@ class Script(scripts.Script):
choices=[OBPresets.RANDOM_PRESET_OBP] + [OBPresets.CUSTOM_OBP] + list(OBPresets.opb_presets.keys()),
value="Standard",
)
with gr.Group(visible=True) as presetgroup:
with gr.Row():
gr.Markdown("""
<font size="2">
These prefix and suffix are run on top the of preset. Can be used for LoRA's and other general stylings.
</font>
""")
with gr.Row():
presetprefix = gr.Textbox(label="Preset prefix: ", value="")
presetsuffix = gr.Textbox(label="Preset suffix: ", value="")
with gr.Group(visible=False) as maingroup:
gr.Markdown("""
@ -1018,7 +1027,7 @@ class Script(scripts.Script):
extrasupscaler2codeformerweight = gr.Slider(0, 1, value="0.1", step=0.05, label="CodeFormer weight", visible = False)
genprom.click(gen_prompt, inputs=[insanitylevel,subject, artist, imagetype, antistring,prefixprompt, suffixprompt,promptcompounderlevel, seperator, givensubject,smartsubject,giventypeofimage,imagemodechance, chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept, givenoutfit, base_model, OBP_preset, amountoffluff, promptenhancer], outputs=[prompt1, prompt2, prompt3,prompt4,prompt5])
genprom.click(gen_prompt, inputs=[insanitylevel,subject, artist, imagetype, antistring,prefixprompt, suffixprompt,promptcompounderlevel, seperator, givensubject,smartsubject,giventypeofimage,imagemodechance, chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept, givenoutfit, base_model, OBP_preset, amountoffluff, promptenhancer, presetprefix, presetsuffix], outputs=[prompt1, prompt2, prompt3,prompt4,prompt5])
prompt1toworkflow.click(prompttoworkflowprompt, inputs=prompt1, outputs=workprompt)
prompt2toworkflow.click(prompttoworkflowprompt, inputs=prompt2, outputs=workprompt)
@ -1026,7 +1035,7 @@ class Script(scripts.Script):
prompt4toworkflow.click(prompttoworkflowprompt, inputs=prompt4, outputs=workprompt)
prompt5toworkflow.click(prompttoworkflowprompt, inputs=prompt5, outputs=workprompt)
startmain.click(generateimages, inputs=[amountofimages,size,model,samplingsteps,cfg,hiresfix,hiressteps,denoisestrength,samplingmethod, upscaler,hiresscale, apiurl, qualitygate, quality, runs,insanitylevel,subject, artist, imagetype, silentmode, workprompt, antistring, prefixprompt, suffixprompt,negativeprompt,promptcompounderlevel, seperator, img2imgbatch, img2imgsamplingsteps, img2imgcfg, img2imgsamplingmethod, img2imgupscaler, img2imgmodel,img2imgactivate, img2imgscale, img2imgpadding,img2imgdenoisestrength,ultimatesdupscale,usdutilewidth, usdutileheight, usdumaskblur, usduredraw, usduSeamsfix, usdusdenoise, usduswidth, usduspadding, usdusmaskblur, controlnetenabled, controlnetmodel,img2imgdenoisestrengthmod,enableextraupscale,controlnetblockymode,extrasupscaler1,extrasupscaler2,extrasupscaler2visiblity,extrasupscaler2gfpgan,extrasupscaler2codeformer,extrasupscaler2codeformerweight,extrasresize,onlyupscale,givensubject,smartsubject,giventypeofimage,imagemodechance, chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept, increasestability, qualityhiresfix, qualitymode, qualitykeep, basesize, promptvariantinsanitylevel, givenoutfit, autonegativeprompt, autonegativepromptstrength, autonegativepromptenhance, base_model, OBP_preset, amountoffluff, promptenhancer])
startmain.click(generateimages, inputs=[amountofimages,size,model,samplingsteps,cfg,hiresfix,hiressteps,denoisestrength,samplingmethod, upscaler,hiresscale, apiurl, qualitygate, quality, runs,insanitylevel,subject, artist, imagetype, silentmode, workprompt, antistring, prefixprompt, suffixprompt,negativeprompt,promptcompounderlevel, seperator, img2imgbatch, img2imgsamplingsteps, img2imgcfg, img2imgsamplingmethod, img2imgupscaler, img2imgmodel,img2imgactivate, img2imgscale, img2imgpadding,img2imgdenoisestrength,ultimatesdupscale,usdutilewidth, usdutileheight, usdumaskblur, usduredraw, usduSeamsfix, usdusdenoise, usduswidth, usduspadding, usdusmaskblur, controlnetenabled, controlnetmodel,img2imgdenoisestrengthmod,enableextraupscale,controlnetblockymode,extrasupscaler1,extrasupscaler2,extrasupscaler2visiblity,extrasupscaler2gfpgan,extrasupscaler2codeformer,extrasupscaler2codeformerweight,extrasresize,onlyupscale,givensubject,smartsubject,giventypeofimage,imagemodechance, chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept, increasestability, qualityhiresfix, qualitymode, qualitykeep, basesize, promptvariantinsanitylevel, givenoutfit, autonegativeprompt, autonegativepromptstrength, autonegativepromptenhance, base_model, OBP_preset, amountoffluff, promptenhancer, presetprefix, presetsuffix])
interrupt.click(tryinterrupt, inputs=[apiurl])
automatedoutputsfolderbutton.click(openfolder)
@ -1111,16 +1120,22 @@ class Script(scripts.Script):
return (
[obp_preset_name.update(value="", visible=True)]
+ [maingroup.update(visible=True)]
+ [presetgroup.update(visible=False)]
+ [presetprefix.update(value="")]
+ [presetsuffix.update(value="")]
)
else:
return (
[obp_preset_name.update(visible=False)]
+ [maingroup.update(visible=False)]
+ [presetgroup.update(visible=True)]
+ [presetprefix.update(visible=True)]
+ [presetsuffix.update(visible=True)]
)
OBP_preset.change(obppreset_changed,
inputs=[OBP_preset],
outputs=[obp_preset_name] + [maingroup]
outputs=[obp_preset_name] + [maingroup] + [presetgroup] + [presetprefix] + [presetsuffix]
)
@ -1332,12 +1347,12 @@ class Script(scripts.Script):
return [insanitylevel,subject, artist, imagetype, prefixprompt,suffixprompt,negativeprompt, promptcompounderlevel, ANDtoggle, silentmode, workprompt, antistring, seperator, givensubject, smartsubject, giventypeofimage, imagemodechance, chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept, promptvariantinsanitylevel, givenoutfit, autonegativeprompt, autonegativepromptstrength, autonegativepromptenhance, base_model, OBP_preset, amountoffluff, promptenhancer]
return [insanitylevel,subject, artist, imagetype, prefixprompt,suffixprompt,negativeprompt, promptcompounderlevel, ANDtoggle, silentmode, workprompt, antistring, seperator, givensubject, smartsubject, giventypeofimage, imagemodechance, chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept, promptvariantinsanitylevel, givenoutfit, autonegativeprompt, autonegativepromptstrength, autonegativepromptenhance, base_model, OBP_preset, amountoffluff, promptenhancer, presetprefix, presetsuffix]
def run(self, p, insanitylevel, subject, artist, imagetype, prefixprompt,suffixprompt,negativeprompt, promptcompounderlevel, ANDtoggle, silentmode, workprompt, antistring,seperator, givensubject, smartsubject, giventypeofimage, imagemodechance, chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept, promptvariantinsanitylevel, givenoutfit, autonegativeprompt, autonegativepromptstrength, autonegativepromptenhance, base_model, OBP_preset, amountoffluff, promptenhancer):
def run(self, p, insanitylevel, subject, artist, imagetype, prefixprompt,suffixprompt,negativeprompt, promptcompounderlevel, ANDtoggle, silentmode, workprompt, antistring,seperator, givensubject, smartsubject, giventypeofimage, imagemodechance, chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept, promptvariantinsanitylevel, givenoutfit, autonegativeprompt, autonegativepromptstrength, autonegativepromptenhance, base_model, OBP_preset, amountoffluff, promptenhancer, presetprefix, presetsuffix):
images = []
infotexts = []
@ -1411,7 +1426,7 @@ class Script(scripts.Script):
#Here is where we build a "normal" prompt
base_prompt = build_dynamic_prompt(insanitylevel,subject,artist, imagetype, False, antistring, prefixprompt, suffixprompt,promptcompounderlevel, seperator,givensubject,smartsubject,giventypeofimage,imagemodechance,chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept,True,False,-1,givenoutfit, False, base_model, OBP_preset, promptenhancer)
base_prompt = build_dynamic_prompt(insanitylevel,subject,artist, imagetype, False, antistring, prefixprompt, suffixprompt,promptcompounderlevel, seperator,givensubject,smartsubject,giventypeofimage,imagemodechance,chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept,True,False,-1,givenoutfit, False, base_model, OBP_preset, promptenhancer, "", "", presetprefix, presetsuffix)
fluffed_prompt = flufferizer(prompt=base_prompt, amountoffluff=amountoffluff)
preppedprompt += fluffed_prompt