Upload 4 files
Browse files- app.py +111 -0
- categories.json +1145 -0
- character_final.json +3854 -0
- requirements.txt +1 -0
app.py
ADDED
@@ -0,0 +1,111 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import random
|
3 |
+
import json
|
4 |
+
from typing import List, Dict, Any
|
5 |
+
import pyperclip
|
6 |
+
|
7 |
+
def cargar_json(ruta: str) -> Any:
|
8 |
+
"""Carga datos desde un archivo JSON."""
|
9 |
+
try:
|
10 |
+
with open(ruta, "r") as f:
|
11 |
+
return json.load(f)
|
12 |
+
except (FileNotFoundError, json.JSONDecodeError) as e:
|
13 |
+
raise RuntimeError(f"Error al cargar el archivo {ruta}: {e}")
|
14 |
+
|
15 |
+
|
16 |
+
def aplicar_peso(termino: str) -> str:
|
17 |
+
"""Aplica un peso aleatorio al término si no contiene ':'."""
|
18 |
+
peso = round(random.uniform(0.8, 1.5), 1) if ":" not in termino else ""
|
19 |
+
return f"({termino}:{peso})" if peso else f"({termino})"
|
20 |
+
|
21 |
+
|
22 |
+
def generar_prompt(personaje: Dict[str, Any], categorias: Dict[str, List[str]]) -> str:
|
23 |
+
"""Genera un prompt basado en un personaje y categorías aleatorias."""
|
24 |
+
atributos = {
|
25 |
+
"peinado": "hairstyle",
|
26 |
+
"ropa": "outfit",
|
27 |
+
"escenario": "scenario",
|
28 |
+
"emocion": "emotion",
|
29 |
+
"pose": "pose",
|
30 |
+
"angle": "angle",
|
31 |
+
"distance": "distance",
|
32 |
+
"extras": lambda: ", ".join(
|
33 |
+
aplicar_peso(extra)
|
34 |
+
for extra in random.sample(categorias["extras"], k=random.randint(1, 2))
|
35 |
+
),
|
36 |
+
"iluminacion": "lighting",
|
37 |
+
"elementos_especiales": "special_elements",
|
38 |
+
}
|
39 |
+
|
40 |
+
elementos = {
|
41 |
+
key: aplicar_peso(
|
42 |
+
random.choice(categorias[val]) if isinstance(val, str) else val()
|
43 |
+
)
|
44 |
+
for key, val in atributos.items()
|
45 |
+
if key != "extras"
|
46 |
+
}
|
47 |
+
elementos["extras"] = atributos["extras"]()
|
48 |
+
|
49 |
+
prompt = (
|
50 |
+
f"{personaje['name']}, "
|
51 |
+
f"{elementos['peinado']}, "
|
52 |
+
f"wearing {elementos['ropa']}. Positioned in a {elementos['escenario']}, "
|
53 |
+
f"striking a pose of {elementos['pose']}, feeling {elementos['emocion']}. "
|
54 |
+
f"Scene elements include {elementos['extras']}, "
|
55 |
+
f"{elementos['angle']}, {elementos['distance']}, "
|
56 |
+
f"{elementos['iluminacion']}, {elementos['elementos_especiales']}, "
|
57 |
+
f"masterpiece, high score, great score, absurdres, best quality, highres"
|
58 |
+
)
|
59 |
+
return prompt
|
60 |
+
|
61 |
+
|
62 |
+
def obtener_prompt(
|
63 |
+
nombre: str, personajes: List[Dict[str, Any]], categorias: Dict[str, List[str]]
|
64 |
+
) -> str:
|
65 |
+
"""Obtiene un prompt y muestra el estado del personaje seleccionado."""
|
66 |
+
personaje = next((p for p in personajes if p["name"] == nombre), None)
|
67 |
+
if not personaje:
|
68 |
+
return "No se encontró el personaje seleccionado."
|
69 |
+
|
70 |
+
# Asignar colores según el estado
|
71 |
+
colores = {
|
72 |
+
"recognized": "green",
|
73 |
+
"partial": "yellow",
|
74 |
+
"not recognized": "red",
|
75 |
+
}
|
76 |
+
estado = personaje["status"]
|
77 |
+
color = colores.get(estado, "black")
|
78 |
+
prompt = generar_prompt(personaje, categorias)
|
79 |
+
# copiar al portapapeles
|
80 |
+
pyperclip.copy(prompt)
|
81 |
+
return f"<p style='color:{color};'>Estado: {estado.capitalize()}</p>{prompt}"
|
82 |
+
|
83 |
+
|
84 |
+
# Carga los datos JSON
|
85 |
+
personajes = cargar_json("character_final.json")
|
86 |
+
categorias = cargar_json("categories.json")
|
87 |
+
|
88 |
+
# Lista de nombres para el Dropdown
|
89 |
+
nombres_personajes = [p["name"] for p in personajes]
|
90 |
+
|
91 |
+
# Interfaz de Gradio
|
92 |
+
with gr.Blocks() as interfaz:
|
93 |
+
gr.Markdown("# Generador de Prompts para Personajes")
|
94 |
+
|
95 |
+
dropdown = gr.Dropdown(
|
96 |
+
label="Selecciona un personaje",
|
97 |
+
choices=nombres_personajes,
|
98 |
+
interactive=True,
|
99 |
+
)
|
100 |
+
|
101 |
+
resultado = gr.HTML(label="Prompt generado")
|
102 |
+
boton = gr.Button("Generar Prompt")
|
103 |
+
|
104 |
+
boton.click(
|
105 |
+
obtener_prompt,
|
106 |
+
inputs=[dropdown, gr.State(personajes), gr.State(categorias)],
|
107 |
+
outputs=resultado,
|
108 |
+
)
|
109 |
+
|
110 |
+
# Ejecutar la aplicación
|
111 |
+
interfaz.launch()
|
categories.json
ADDED
@@ -0,0 +1,1145 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"age": [
|
3 |
+
"child",
|
4 |
+
"adolescent",
|
5 |
+
"young adult",
|
6 |
+
"middle age",
|
7 |
+
"elderly",
|
8 |
+
"infant",
|
9 |
+
"young child",
|
10 |
+
"adolescent",
|
11 |
+
"infant",
|
12 |
+
"young child",
|
13 |
+
"child",
|
14 |
+
"preteen",
|
15 |
+
"adolescent",
|
16 |
+
"young adult",
|
17 |
+
"adult",
|
18 |
+
"eternal youth",
|
19 |
+
"adolescent",
|
20 |
+
"early twenties",
|
21 |
+
"late twenties",
|
22 |
+
"early thirties",
|
23 |
+
"late thirties",
|
24 |
+
"early forties",
|
25 |
+
"late forties",
|
26 |
+
"childlike appearance",
|
27 |
+
"teenage appearance",
|
28 |
+
"young vampire",
|
29 |
+
"young spirit"
|
30 |
+
],
|
31 |
+
"hairstyle": [
|
32 |
+
"long hair",
|
33 |
+
"short hair",
|
34 |
+
"medium-length hair",
|
35 |
+
"pixie cut",
|
36 |
+
"bob cut",
|
37 |
+
"curly hair",
|
38 |
+
"wavy hair",
|
39 |
+
"straight hair",
|
40 |
+
"braided",
|
41 |
+
"ponytail",
|
42 |
+
"high ponytail",
|
43 |
+
"low ponytail",
|
44 |
+
"messy bun",
|
45 |
+
"tight bun",
|
46 |
+
"half-up half-down",
|
47 |
+
"fishtail braid",
|
48 |
+
"crown braid",
|
49 |
+
"twin braids",
|
50 |
+
"side braid",
|
51 |
+
"cornrows",
|
52 |
+
"dreadlocks",
|
53 |
+
"afro",
|
54 |
+
"buzz cut",
|
55 |
+
"crew cut",
|
56 |
+
"undercut",
|
57 |
+
"fade",
|
58 |
+
"quiff",
|
59 |
+
"pompadour",
|
60 |
+
"mohawk",
|
61 |
+
"spiky hair",
|
62 |
+
"side-swept bangs",
|
63 |
+
"blunt bangs",
|
64 |
+
"asymmetrical cut",
|
65 |
+
"layered cut",
|
66 |
+
"shaggy cut",
|
67 |
+
"wolf cut",
|
68 |
+
"feathered hair",
|
69 |
+
"mullets",
|
70 |
+
"slicked-back hair",
|
71 |
+
"parted hair",
|
72 |
+
"center part",
|
73 |
+
"side part",
|
74 |
+
"twintails",
|
75 |
+
"odango buns",
|
76 |
+
"victory rolls",
|
77 |
+
"retro waves",
|
78 |
+
"vintage curls",
|
79 |
+
"soft curls",
|
80 |
+
"beach waves",
|
81 |
+
"ringlets",
|
82 |
+
"choppy layers",
|
83 |
+
"fringe bangs",
|
84 |
+
"tapered cut",
|
85 |
+
"hair with accessories",
|
86 |
+
"flower-adorned hair",
|
87 |
+
"ribbon-adorned hair",
|
88 |
+
"jeweled hairpins",
|
89 |
+
"hair with beads",
|
90 |
+
"dyed hair",
|
91 |
+
"ombre hair",
|
92 |
+
"gradient hair",
|
93 |
+
"high pigtails",
|
94 |
+
"low pigtails",
|
95 |
+
"waterfall braid",
|
96 |
+
"intricate updo",
|
97 |
+
"fantasy braids",
|
98 |
+
"hair loops",
|
99 |
+
"zigzag parting",
|
100 |
+
"layered bob",
|
101 |
+
"fluffy hair",
|
102 |
+
"textured hair",
|
103 |
+
"shoulder-length hair",
|
104 |
+
"flowing hair",
|
105 |
+
"tousled hair",
|
106 |
+
"wet look",
|
107 |
+
"gelled hair",
|
108 |
+
"space buns",
|
109 |
+
"top knot",
|
110 |
+
"shaved sides",
|
111 |
+
"hair with streaks",
|
112 |
+
"glowing hair",
|
113 |
+
"holographic hair",
|
114 |
+
"metallic hair",
|
115 |
+
"windblown hair",
|
116 |
+
"floating hair",
|
117 |
+
"gravity-defying hair",
|
118 |
+
"hair in a bun with chopsticks",
|
119 |
+
"hair with feathers",
|
120 |
+
"hair with seashells",
|
121 |
+
"braided crown with flowers",
|
122 |
+
"ornate updo",
|
123 |
+
"intricately braided ponytail",
|
124 |
+
"hair styled into horns",
|
125 |
+
"fantastical floating strands",
|
126 |
+
"halo braid",
|
127 |
+
"ethereal waves",
|
128 |
+
"draped hair",
|
129 |
+
"hair tied with pearls",
|
130 |
+
"dual-tone hair",
|
131 |
+
"multi-colored braids",
|
132 |
+
"twist-out curls",
|
133 |
+
"knotted updo",
|
134 |
+
"hair styled into spikes",
|
135 |
+
"anime-style bangs",
|
136 |
+
"hairstyle inspired by nature"
|
137 |
+
],
|
138 |
+
"hair_color": [
|
139 |
+
"black",
|
140 |
+
"brown",
|
141 |
+
"blonde",
|
142 |
+
"red",
|
143 |
+
"blue",
|
144 |
+
"green",
|
145 |
+
"purple",
|
146 |
+
"white",
|
147 |
+
"rainbow",
|
148 |
+
"silver",
|
149 |
+
"pink",
|
150 |
+
"golden",
|
151 |
+
"teal",
|
152 |
+
"magenta",
|
153 |
+
"turquoise",
|
154 |
+
"gradient",
|
155 |
+
"pastel",
|
156 |
+
"neon",
|
157 |
+
"crimson",
|
158 |
+
"emerald",
|
159 |
+
"lavender",
|
160 |
+
"peach",
|
161 |
+
"black",
|
162 |
+
"dark brown",
|
163 |
+
"light brown",
|
164 |
+
"blonde",
|
165 |
+
"platinum blonde",
|
166 |
+
"strawberry blonde",
|
167 |
+
"red",
|
168 |
+
"auburn",
|
169 |
+
"ginger",
|
170 |
+
"copper",
|
171 |
+
"chestnut",
|
172 |
+
"burgundy",
|
173 |
+
"mahogany",
|
174 |
+
"gray",
|
175 |
+
"white",
|
176 |
+
"silver",
|
177 |
+
"ash blonde",
|
178 |
+
"ash brown",
|
179 |
+
"blue",
|
180 |
+
"dark blue",
|
181 |
+
"light blue",
|
182 |
+
"sky blue",
|
183 |
+
"green",
|
184 |
+
"emerald green",
|
185 |
+
"lime green",
|
186 |
+
"teal",
|
187 |
+
"cyan",
|
188 |
+
"purple",
|
189 |
+
"lavender",
|
190 |
+
"violet",
|
191 |
+
"magenta",
|
192 |
+
"pink",
|
193 |
+
"hot pink",
|
194 |
+
"pastel pink",
|
195 |
+
"peach",
|
196 |
+
"orange",
|
197 |
+
"yellow",
|
198 |
+
"golden yellow",
|
199 |
+
"mustard yellow",
|
200 |
+
"rainbow",
|
201 |
+
"gradient",
|
202 |
+
"ombre",
|
203 |
+
"two-toned",
|
204 |
+
"split-dyed",
|
205 |
+
"streaked",
|
206 |
+
"frosted tips",
|
207 |
+
"highlights",
|
208 |
+
"lowlights",
|
209 |
+
"metallic gold",
|
210 |
+
"metallic silver",
|
211 |
+
"bronze",
|
212 |
+
"pearl white",
|
213 |
+
"opal",
|
214 |
+
"rose gold",
|
215 |
+
"neon green",
|
216 |
+
"neon pink",
|
217 |
+
"neon yellow",
|
218 |
+
"holographic",
|
219 |
+
"galaxy-themed",
|
220 |
+
"glowing blue",
|
221 |
+
"glowing red",
|
222 |
+
"transparent hair",
|
223 |
+
"fiery red",
|
224 |
+
"frosty white",
|
225 |
+
"charcoal black",
|
226 |
+
"natural hues",
|
227 |
+
"pastel tones",
|
228 |
+
"vivid colors",
|
229 |
+
"sunset gradient",
|
230 |
+
"ocean gradient",
|
231 |
+
"forest gradient",
|
232 |
+
"cosmic colors",
|
233 |
+
"midnight black",
|
234 |
+
"obsidian black",
|
235 |
+
"jet black",
|
236 |
+
"flaming orange",
|
237 |
+
"moss green",
|
238 |
+
"aquamarine",
|
239 |
+
"turquoise",
|
240 |
+
"ice blue",
|
241 |
+
"crimson",
|
242 |
+
"scarlet",
|
243 |
+
"ruby red",
|
244 |
+
"sand blonde",
|
245 |
+
"beach blonde",
|
246 |
+
"caramel brown",
|
247 |
+
"chocolate brown",
|
248 |
+
"honey blonde",
|
249 |
+
"espresso brown",
|
250 |
+
"ash gray",
|
251 |
+
"graphite gray",
|
252 |
+
"pearl ash",
|
253 |
+
"icy lavender",
|
254 |
+
"pastel rainbow",
|
255 |
+
"dragon scale gradient",
|
256 |
+
"mermaid green",
|
257 |
+
"unicorn colors",
|
258 |
+
"candy pink",
|
259 |
+
"sun-kissed blonde",
|
260 |
+
"midnight purple",
|
261 |
+
"starlight silver",
|
262 |
+
"autumn hues",
|
263 |
+
"spring meadow green",
|
264 |
+
"fiery sunset tones",
|
265 |
+
"stormy gray",
|
266 |
+
"rust orange",
|
267 |
+
"dusky pink",
|
268 |
+
"champagne blonde",
|
269 |
+
"cocoa brown",
|
270 |
+
"moonlit silver",
|
271 |
+
"starry night black",
|
272 |
+
"deep forest green"
|
273 |
+
],
|
274 |
+
"eyes": [
|
275 |
+
"blue eyes",
|
276 |
+
"dark blue eyes",
|
277 |
+
"light blue eyes",
|
278 |
+
"sky blue eyes",
|
279 |
+
"green eyes",
|
280 |
+
"emerald green eyes",
|
281 |
+
"teal eyes",
|
282 |
+
"aqua eyes",
|
283 |
+
"brown eyes",
|
284 |
+
"dark brown eyes",
|
285 |
+
"light brown eyes",
|
286 |
+
"hazel eyes",
|
287 |
+
"amber eyes",
|
288 |
+
"golden eyes",
|
289 |
+
"yellow eyes",
|
290 |
+
"orange eyes",
|
291 |
+
"red eyes",
|
292 |
+
"crimson eyes",
|
293 |
+
"ruby red eyes",
|
294 |
+
"pink eyes",
|
295 |
+
"magenta eyes",
|
296 |
+
"purple eyes",
|
297 |
+
"lavender eyes",
|
298 |
+
"violet eyes",
|
299 |
+
"gray eyes",
|
300 |
+
"light gray eyes",
|
301 |
+
"silver eyes",
|
302 |
+
"charcoal eyes",
|
303 |
+
"white eyes",
|
304 |
+
"black eyes",
|
305 |
+
"jet black eyes",
|
306 |
+
"heterochromatic eyes",
|
307 |
+
"partial heterochromatic eyes",
|
308 |
+
"glowing blue eyes",
|
309 |
+
"glowing red eyes",
|
310 |
+
"glowing green eyes",
|
311 |
+
"glowing purple eyes",
|
312 |
+
"bioluminescent eyes",
|
313 |
+
"fiery eyes",
|
314 |
+
"icy eyes",
|
315 |
+
"galaxy-patterned eyes",
|
316 |
+
"starlit eyes",
|
317 |
+
"neon-colored eyes",
|
318 |
+
"pastel-colored eyes",
|
319 |
+
"rainbow eyes",
|
320 |
+
"multi-colored eyes",
|
321 |
+
"marbled eyes",
|
322 |
+
"crystal-like eyes",
|
323 |
+
"cat-like eyes",
|
324 |
+
"slitted pupils",
|
325 |
+
"reptilian eyes",
|
326 |
+
"dragon eyes",
|
327 |
+
"bird-like eyes",
|
328 |
+
"fish-like eyes",
|
329 |
+
"mechanical eyes",
|
330 |
+
"cybernetic eyes",
|
331 |
+
"eyes",
|
332 |
+
"alien eyes",
|
333 |
+
"insectoid eyes",
|
334 |
+
"demonic eyes",
|
335 |
+
"angelic eyes",
|
336 |
+
"void-like eyes",
|
337 |
+
"mirror-like eyes",
|
338 |
+
"shimmering eyes",
|
339 |
+
"opal eyes",
|
340 |
+
"pearl-like eyes",
|
341 |
+
"stone-textured eyes",
|
342 |
+
"lava-filled eyes",
|
343 |
+
"smoky eyes",
|
344 |
+
"water-like eyes",
|
345 |
+
"fire-like eyes",
|
346 |
+
"glittering eyes",
|
347 |
+
"gemstone eyes",
|
348 |
+
"diamond eyes",
|
349 |
+
"sapphire eyes",
|
350 |
+
"emerald eyes",
|
351 |
+
"ruby eyes",
|
352 |
+
"amber stone eyes",
|
353 |
+
"topaz eyes",
|
354 |
+
"amethyst eyes",
|
355 |
+
"obsidian eyes",
|
356 |
+
"onyx eyes",
|
357 |
+
"cracked glass eyes",
|
358 |
+
"steampunk eyes",
|
359 |
+
"frosted glass eyes",
|
360 |
+
"stormy eyes",
|
361 |
+
"cloudy eyes",
|
362 |
+
"ethereal eyes",
|
363 |
+
"otherworldly eyes",
|
364 |
+
"solar flare eyes",
|
365 |
+
"lunar eyes",
|
366 |
+
"sunlit eyes",
|
367 |
+
"shadowy eyes",
|
368 |
+
"veined eyes",
|
369 |
+
"iridescent eyes",
|
370 |
+
"kaleidoscopic eyes",
|
371 |
+
"geometric-patterned eyes",
|
372 |
+
"mandala eyes",
|
373 |
+
"hypnotic eyes",
|
374 |
+
"glassy eyes",
|
375 |
+
"misty eyes"
|
376 |
+
],
|
377 |
+
"skin_tone": [
|
378 |
+
"fair skin",
|
379 |
+
"pale skin",
|
380 |
+
"ivory skin",
|
381 |
+
"light skin",
|
382 |
+
"medium skin",
|
383 |
+
"olive skin",
|
384 |
+
"tan skin",
|
385 |
+
"bronzed skin",
|
386 |
+
"dark skin",
|
387 |
+
"ebony skin",
|
388 |
+
"chocolate brown skin",
|
389 |
+
"caramel skin",
|
390 |
+
"peach-toned skin",
|
391 |
+
"rosy skin",
|
392 |
+
"freckled skin",
|
393 |
+
"alabaster skin",
|
394 |
+
"porcelain skin",
|
395 |
+
"golden skin",
|
396 |
+
"amber skin",
|
397 |
+
"copper skin",
|
398 |
+
"ashen skin",
|
399 |
+
"gray skin",
|
400 |
+
"silver skin",
|
401 |
+
"metallic skin",
|
402 |
+
"white skin",
|
403 |
+
"translucent skin",
|
404 |
+
"glowing skin",
|
405 |
+
"luminescent skin",
|
406 |
+
"iridescent skin",
|
407 |
+
"crystalline skin",
|
408 |
+
"opal-textured skin",
|
409 |
+
"pearl-textured skin",
|
410 |
+
"stone-textured skin",
|
411 |
+
"marble-textured skin",
|
412 |
+
"lava-textured skin",
|
413 |
+
"molten skin",
|
414 |
+
"fiery skin",
|
415 |
+
"smoky skin",
|
416 |
+
"water-like skin",
|
417 |
+
"gel-like skin",
|
418 |
+
"scaly skin",
|
419 |
+
"reptilian skin",
|
420 |
+
"fish-like skin",
|
421 |
+
"amphibian-like skin",
|
422 |
+
"feathered skin",
|
423 |
+
"furry skin",
|
424 |
+
"insectoid skin",
|
425 |
+
"chitinous skin",
|
426 |
+
"alien-textured skin",
|
427 |
+
"cosmic-patterned skin",
|
428 |
+
"starry skin",
|
429 |
+
"nebula-patterned skin",
|
430 |
+
"galaxy-themed skin",
|
431 |
+
"shadowy skin",
|
432 |
+
"veined skin",
|
433 |
+
"cracked skin",
|
434 |
+
"aged skin",
|
435 |
+
"weathered skin",
|
436 |
+
"youthful skin",
|
437 |
+
"smooth skin",
|
438 |
+
"rough skin",
|
439 |
+
"tattooed skin",
|
440 |
+
"tribal-patterned skin",
|
441 |
+
"scarred skin",
|
442 |
+
"burn-marked skin",
|
443 |
+
"branded skin",
|
444 |
+
"cybernetic-textured skin",
|
445 |
+
"synthetic skin",
|
446 |
+
"bioluminescent skin",
|
447 |
+
"camouflaging skin",
|
448 |
+
"invisible skin",
|
449 |
+
"wooden-textured skin",
|
450 |
+
"bark-like skin",
|
451 |
+
"leafy skin",
|
452 |
+
"flower-petal skin",
|
453 |
+
"thorny skin",
|
454 |
+
"crystal-embedded skin",
|
455 |
+
"gemstone-textured skin",
|
456 |
+
"holographic skin",
|
457 |
+
"color-shifting skin",
|
458 |
+
"gradient-colored skin",
|
459 |
+
"rainbow-hued skin",
|
460 |
+
"dragon-scale skin",
|
461 |
+
"snake-scale skin",
|
462 |
+
"butterfly-wing skin",
|
463 |
+
"frost-covered skin",
|
464 |
+
"snowy-textured skin",
|
465 |
+
"sand-textured skin",
|
466 |
+
"desert-dry skin",
|
467 |
+
"ocean-wave skin",
|
468 |
+
"coral-textured skin",
|
469 |
+
"mossy skin",
|
470 |
+
"lichen-covered skin",
|
471 |
+
"fungal-textured skin",
|
472 |
+
"glassy skin",
|
473 |
+
"mirrored skin",
|
474 |
+
"shadow-absorbing skin"
|
475 |
+
],
|
476 |
+
"outfit": [
|
477 |
+
"casual wear",
|
478 |
+
"t-shirt and jeans",
|
479 |
+
"hoodie and sweatpants",
|
480 |
+
"shorts and tank top",
|
481 |
+
"flannel shirt and ripped jeans",
|
482 |
+
"crop top and leggings",
|
483 |
+
"denim jacket and skirt",
|
484 |
+
"formal suit",
|
485 |
+
"evening gown",
|
486 |
+
"cocktail dress",
|
487 |
+
"tuxedo",
|
488 |
+
"business suit",
|
489 |
+
"blazer and slacks",
|
490 |
+
"pencil skirt and blouse",
|
491 |
+
"kimono",
|
492 |
+
"hanbok",
|
493 |
+
"sari",
|
494 |
+
"qipao",
|
495 |
+
"dashiki",
|
496 |
+
"kilt",
|
497 |
+
"kaftan",
|
498 |
+
"abaya",
|
499 |
+
"dirndl",
|
500 |
+
"sombrero vueltiao",
|
501 |
+
"mariachi suit",
|
502 |
+
"traditional African robes",
|
503 |
+
"Navajo dress",
|
504 |
+
"Inuit fur parka",
|
505 |
+
"track suit",
|
506 |
+
"yoga outfit",
|
507 |
+
"soccer uniform",
|
508 |
+
"basketball jersey",
|
509 |
+
"tennis outfit",
|
510 |
+
"ballet leotard",
|
511 |
+
"ski suit",
|
512 |
+
"swimwear",
|
513 |
+
"gymnastics outfit",
|
514 |
+
"medieval armor",
|
515 |
+
"renaissance dress",
|
516 |
+
"Victorian gown",
|
517 |
+
"Roman toga",
|
518 |
+
"Greek chiton",
|
519 |
+
"samurai armor",
|
520 |
+
"pirate outfit",
|
521 |
+
"cowboy attire",
|
522 |
+
"flapper dress",
|
523 |
+
"steampunk clothing",
|
524 |
+
"futuristic space suit",
|
525 |
+
"cyberpunk outfit",
|
526 |
+
"armor",
|
527 |
+
"alien ceremonial robes",
|
528 |
+
"fantasy adventurer attire",
|
529 |
+
"wizard robes",
|
530 |
+
"elven tunic and cloak",
|
531 |
+
"vampire cloak",
|
532 |
+
"stealth suit",
|
533 |
+
"mecha pilot uniform",
|
534 |
+
"1960s mod outfit",
|
535 |
+
"1970s disco attire",
|
536 |
+
"1980s neon fashion",
|
537 |
+
"1990s grunge outfit",
|
538 |
+
"ancient Egyptian attire",
|
539 |
+
"Mayan ceremonial outfit",
|
540 |
+
"Viking warrior clothing",
|
541 |
+
"gothic attire",
|
542 |
+
"punk rock outfit",
|
543 |
+
"hippie outfit",
|
544 |
+
"military uniform",
|
545 |
+
"school uniform",
|
546 |
+
"maid outfit",
|
547 |
+
"butler uniform",
|
548 |
+
"nurse outfit",
|
549 |
+
"cowboy hat and boots",
|
550 |
+
"tropical vacation wear",
|
551 |
+
"explorer outfit",
|
552 |
+
"adventurer gear",
|
553 |
+
"sci-fi battle suit",
|
554 |
+
"forest ranger outfit",
|
555 |
+
"flowing cape",
|
556 |
+
"hooded cloak",
|
557 |
+
"feathered headdress",
|
558 |
+
"crown and royal robes",
|
559 |
+
"fur-lined coat",
|
560 |
+
"chainmail and leather armor",
|
561 |
+
"battle-worn tunic",
|
562 |
+
"lace gloves and parasol",
|
563 |
+
"layered scarf and jacket",
|
564 |
+
"long trench coat",
|
565 |
+
"silk dress",
|
566 |
+
"velvet suit",
|
567 |
+
"glowing neon armor",
|
568 |
+
"holographic jacket"
|
569 |
+
],
|
570 |
+
"scenario": [
|
571 |
+
"enchanted forest",
|
572 |
+
"space station",
|
573 |
+
"desert",
|
574 |
+
"futuristic city",
|
575 |
+
"underwater kingdom",
|
576 |
+
"botanical garden",
|
577 |
+
"castle",
|
578 |
+
"dungeon",
|
579 |
+
"volcano",
|
580 |
+
"ice cave",
|
581 |
+
"cloud palace",
|
582 |
+
"ancient ruins",
|
583 |
+
"moon surface",
|
584 |
+
"alien planet",
|
585 |
+
"fairy glade",
|
586 |
+
"battlefield",
|
587 |
+
"high-tech lab",
|
588 |
+
"abandoned city",
|
589 |
+
"floating island",
|
590 |
+
"ocean cliff",
|
591 |
+
"crystal cave",
|
592 |
+
"rainforest",
|
593 |
+
"cyberpunk metropolis",
|
594 |
+
"steampunk village",
|
595 |
+
"lunar base",
|
596 |
+
"galactic war zone",
|
597 |
+
"Victorian mansion",
|
598 |
+
"lush forest",
|
599 |
+
"tropical rainforest",
|
600 |
+
"dense jungle",
|
601 |
+
"bamboo grove",
|
602 |
+
"desert oasis",
|
603 |
+
"rolling meadows",
|
604 |
+
"rocky mountains",
|
605 |
+
"volcanic landscape",
|
606 |
+
"snow-covered tundra",
|
607 |
+
"frozen lake",
|
608 |
+
"coral reef",
|
609 |
+
"underwater cave",
|
610 |
+
"crystal-clear beach",
|
611 |
+
"island paradise",
|
612 |
+
"waterfall",
|
613 |
+
"sunset savanna",
|
614 |
+
"flower meadow",
|
615 |
+
"starry night in the wilderness",
|
616 |
+
"modern city skyline",
|
617 |
+
"bustling marketplace",
|
618 |
+
"quiet suburban street",
|
619 |
+
"vintage European alley",
|
620 |
+
"neon-lit cyberpunk city",
|
621 |
+
"abandoned factory",
|
622 |
+
"train station at dusk",
|
623 |
+
"crowded subway",
|
624 |
+
"urban rooftop",
|
625 |
+
"art deco skyscraper",
|
626 |
+
"street with cherry blossoms",
|
627 |
+
"stone bridge over a canal",
|
628 |
+
"enchanted forest",
|
629 |
+
"floating islands",
|
630 |
+
"dragon's lair",
|
631 |
+
"mystical cave",
|
632 |
+
"fairy glade",
|
633 |
+
"castle in the clouds",
|
634 |
+
"ancient ruins",
|
635 |
+
"portal to another world",
|
636 |
+
"underworld cavern",
|
637 |
+
"elf village",
|
638 |
+
"giant mushroom forest",
|
639 |
+
"magical library",
|
640 |
+
"mermaid kingdom",
|
641 |
+
"space station",
|
642 |
+
"alien planet",
|
643 |
+
"dystopian wasteland",
|
644 |
+
"floating metropolis",
|
645 |
+
"factory",
|
646 |
+
"zero-gravity chamber",
|
647 |
+
"asteroid mining colony",
|
648 |
+
"galactic senate hall",
|
649 |
+
"crashed spaceship site",
|
650 |
+
"holographic shopping mall",
|
651 |
+
"medieval village",
|
652 |
+
"renaissance marketplace",
|
653 |
+
"Victorian manor",
|
654 |
+
"ancient Roman coliseum",
|
655 |
+
"Greek amphitheater",
|
656 |
+
"Aztec temple",
|
657 |
+
"Mayan pyramid",
|
658 |
+
"Egyptian tomb",
|
659 |
+
"Wild West frontier town",
|
660 |
+
"WWII battlefield",
|
661 |
+
"infinite staircase",
|
662 |
+
"floating clocks landscape",
|
663 |
+
"fractured mirror world",
|
664 |
+
"kaleidoscope environment",
|
665 |
+
"neon grid",
|
666 |
+
"dream-like cloudscape",
|
667 |
+
"labyrinthine maze",
|
668 |
+
"endless library",
|
669 |
+
"checkerboard world",
|
670 |
+
"gravity-defying city",
|
671 |
+
"luxurious palace hall",
|
672 |
+
"cozy log cabin",
|
673 |
+
"gothic cathedral",
|
674 |
+
"old library",
|
675 |
+
"high-tech lab",
|
676 |
+
"abandoned mansion",
|
677 |
+
"secret bunker",
|
678 |
+
"underground tunnel",
|
679 |
+
"vintage diner",
|
680 |
+
"museum gallery",
|
681 |
+
"battlefield at dawn",
|
682 |
+
"pirate ship deck",
|
683 |
+
"spooky graveyard",
|
684 |
+
"haunted forest",
|
685 |
+
"carnival at night",
|
686 |
+
"circus tent",
|
687 |
+
"deserted amusement park",
|
688 |
+
"train in the countryside",
|
689 |
+
"airport terminal",
|
690 |
+
"floating gardens",
|
691 |
+
"fishing village",
|
692 |
+
"countryside barn"
|
693 |
+
],
|
694 |
+
"emotion": [
|
695 |
+
"happy",
|
696 |
+
"sad",
|
697 |
+
"angry",
|
698 |
+
"thoughtful",
|
699 |
+
"energetic",
|
700 |
+
"shy",
|
701 |
+
"playful",
|
702 |
+
"smirking",
|
703 |
+
"confused",
|
704 |
+
"determined",
|
705 |
+
"surprised",
|
706 |
+
"scared",
|
707 |
+
"calm",
|
708 |
+
"proud",
|
709 |
+
"sassy",
|
710 |
+
"flirty",
|
711 |
+
"melancholic",
|
712 |
+
"mischievous",
|
713 |
+
"focused",
|
714 |
+
"sleepy",
|
715 |
+
"worried",
|
716 |
+
"excited",
|
717 |
+
"curious",
|
718 |
+
"bored",
|
719 |
+
"nervous",
|
720 |
+
"hopeful",
|
721 |
+
"amused",
|
722 |
+
"disappointed",
|
723 |
+
"in awe",
|
724 |
+
"distrustful",
|
725 |
+
"happy",
|
726 |
+
"joyful",
|
727 |
+
"cheerful",
|
728 |
+
"ecstatic",
|
729 |
+
"content",
|
730 |
+
"playful",
|
731 |
+
"proud",
|
732 |
+
"grateful",
|
733 |
+
"excited",
|
734 |
+
"hopeful",
|
735 |
+
"relieved",
|
736 |
+
"peaceful",
|
737 |
+
"satisfied",
|
738 |
+
"amused",
|
739 |
+
"loving",
|
740 |
+
"affectionate",
|
741 |
+
"optimistic",
|
742 |
+
"flirty",
|
743 |
+
"sad",
|
744 |
+
"melancholic",
|
745 |
+
"heartbroken",
|
746 |
+
"lonely",
|
747 |
+
"angry",
|
748 |
+
"frustrated",
|
749 |
+
"resentful",
|
750 |
+
"bitter",
|
751 |
+
"jealous",
|
752 |
+
"anxious",
|
753 |
+
"nervous",
|
754 |
+
"worried",
|
755 |
+
"guilty",
|
756 |
+
"regretful",
|
757 |
+
"ashamed",
|
758 |
+
"fearful",
|
759 |
+
"terrified",
|
760 |
+
"panicked",
|
761 |
+
"envious",
|
762 |
+
"thoughtful",
|
763 |
+
"calm",
|
764 |
+
"determined",
|
765 |
+
"focused",
|
766 |
+
"curious",
|
767 |
+
"confused",
|
768 |
+
"intrigued",
|
769 |
+
"nostalgic",
|
770 |
+
"indifferent",
|
771 |
+
"bored",
|
772 |
+
"skeptical",
|
773 |
+
"inspired",
|
774 |
+
"surprised",
|
775 |
+
"shocked",
|
776 |
+
"amazed",
|
777 |
+
"awed",
|
778 |
+
"shy",
|
779 |
+
"bashful",
|
780 |
+
"hesitant",
|
781 |
+
"teasing",
|
782 |
+
"smirking",
|
783 |
+
"sarcastic",
|
784 |
+
"sassy",
|
785 |
+
"rebellious",
|
786 |
+
"playful mischief",
|
787 |
+
"coy",
|
788 |
+
"charming",
|
789 |
+
"distracted",
|
790 |
+
"reserved",
|
791 |
+
"insecure",
|
792 |
+
"resigned",
|
793 |
+
"apathetic",
|
794 |
+
"hopeful resilience",
|
795 |
+
"elated",
|
796 |
+
"overjoyed",
|
797 |
+
"euphoric",
|
798 |
+
"infuriated",
|
799 |
+
"seething",
|
800 |
+
"desperate",
|
801 |
+
"grief-stricken",
|
802 |
+
"paranoid",
|
803 |
+
"hysterical",
|
804 |
+
"exhilarated",
|
805 |
+
"enthralled",
|
806 |
+
"overwhelmed",
|
807 |
+
"vindictive",
|
808 |
+
"vengeful",
|
809 |
+
"empathetic",
|
810 |
+
"compassionate",
|
811 |
+
"ambitious",
|
812 |
+
"restless",
|
813 |
+
"adventurous",
|
814 |
+
"protective",
|
815 |
+
"heroic",
|
816 |
+
"worried parent",
|
817 |
+
"proud mentor",
|
818 |
+
"loving partner",
|
819 |
+
"lonely traveler",
|
820 |
+
"awkward",
|
821 |
+
"embarrassed",
|
822 |
+
"gracious",
|
823 |
+
"diplomatic",
|
824 |
+
"friendly",
|
825 |
+
"charismatic",
|
826 |
+
"supportive",
|
827 |
+
"dismissive",
|
828 |
+
"judgmental",
|
829 |
+
"sympathetic",
|
830 |
+
"distant",
|
831 |
+
"untrusting",
|
832 |
+
"cautious",
|
833 |
+
"inclusive",
|
834 |
+
"demanding",
|
835 |
+
"maniacal laughter",
|
836 |
+
"evil grin",
|
837 |
+
"triumphant",
|
838 |
+
"divine serenity",
|
839 |
+
"mystical trance",
|
840 |
+
"sinister plotting",
|
841 |
+
"possessed",
|
842 |
+
"mesmerized",
|
843 |
+
"otherworldly calm",
|
844 |
+
"unstoppable rage",
|
845 |
+
"glowing with inner peace"
|
846 |
+
],
|
847 |
+
"pose": [
|
848 |
+
"standing",
|
849 |
+
"sitting",
|
850 |
+
"running",
|
851 |
+
"jumping",
|
852 |
+
"flying",
|
853 |
+
"dancing",
|
854 |
+
"kneeling",
|
855 |
+
"reclining",
|
856 |
+
"leaning against a wall",
|
857 |
+
"crouching",
|
858 |
+
"spinning",
|
859 |
+
"stretching",
|
860 |
+
"climbing",
|
861 |
+
"diving",
|
862 |
+
"walking",
|
863 |
+
"posing with a weapon",
|
864 |
+
"holding an object",
|
865 |
+
"giving a thumbs up",
|
866 |
+
"pointing",
|
867 |
+
"waving",
|
868 |
+
"crossing arms",
|
869 |
+
"hand on hip",
|
870 |
+
"looking over shoulder",
|
871 |
+
"arms open wide",
|
872 |
+
"resting head on hand",
|
873 |
+
"hands in pockets",
|
874 |
+
"standing",
|
875 |
+
"sitting",
|
876 |
+
"leaning against a wall",
|
877 |
+
"hands in pockets",
|
878 |
+
"crossed arms",
|
879 |
+
"hands behind back",
|
880 |
+
"lying down",
|
881 |
+
"kneeling",
|
882 |
+
"crouching",
|
883 |
+
"one hand on hip",
|
884 |
+
"legs crossed while sitting",
|
885 |
+
"looking over shoulder",
|
886 |
+
"running",
|
887 |
+
"jumping",
|
888 |
+
"walking",
|
889 |
+
"skipping",
|
890 |
+
"dancing",
|
891 |
+
"spinning",
|
892 |
+
"reaching out",
|
893 |
+
"climbing",
|
894 |
+
"stretching arms upward",
|
895 |
+
"fighting stance",
|
896 |
+
"dodging",
|
897 |
+
"attacking",
|
898 |
+
"diving forward",
|
899 |
+
"falling dramatically",
|
900 |
+
"arms wide open",
|
901 |
+
"facepalm",
|
902 |
+
"shrugging shoulders",
|
903 |
+
"pointing forward",
|
904 |
+
"one hand covering mouth",
|
905 |
+
"hands on cheeks",
|
906 |
+
"waving",
|
907 |
+
"saluting",
|
908 |
+
"blowing a kiss",
|
909 |
+
"hands clasped together",
|
910 |
+
"clutching chest",
|
911 |
+
"holding head in hands",
|
912 |
+
"arms crossed defiantly",
|
913 |
+
"sitting cross-legged",
|
914 |
+
"reclining on a couch",
|
915 |
+
"lying on stomach with legs up",
|
916 |
+
"sitting on a fence",
|
917 |
+
"leaning on one elbow",
|
918 |
+
"hands resting on lap",
|
919 |
+
"resting chin on hand",
|
920 |
+
"hands folded in front",
|
921 |
+
"drawing a weapon",
|
922 |
+
"holding a sword",
|
923 |
+
"aiming a bow",
|
924 |
+
"holding a shield",
|
925 |
+
"casting a spell",
|
926 |
+
"throwing a punch",
|
927 |
+
"kicking forward",
|
928 |
+
"charging into battle",
|
929 |
+
"parkour mid-air",
|
930 |
+
"pulling an arrow from quiver",
|
931 |
+
"holding hands",
|
932 |
+
"hugging",
|
933 |
+
"handshake",
|
934 |
+
"high-five",
|
935 |
+
"whispering to another",
|
936 |
+
"carrying someone on back",
|
937 |
+
"sitting side by side",
|
938 |
+
"resting head on someone's shoulder",
|
939 |
+
"taking a selfie",
|
940 |
+
"dancing in a pair",
|
941 |
+
"posing for a photo",
|
942 |
+
"reading a book",
|
943 |
+
"writing with a pen",
|
944 |
+
"holding a cup of coffee",
|
945 |
+
"playing a musical instrument",
|
946 |
+
"gardening",
|
947 |
+
"sketching on a canvas",
|
948 |
+
"holding an umbrella",
|
949 |
+
"balancing on one foot",
|
950 |
+
"flying with wings outstretched",
|
951 |
+
"floating in mid-air",
|
952 |
+
"reaching towards the sky",
|
953 |
+
"sprawled out dramatically",
|
954 |
+
"intertwined with vines",
|
955 |
+
"holding an orb of light",
|
956 |
+
"standing on water",
|
957 |
+
"reaching through a mirror",
|
958 |
+
"suspended upside down",
|
959 |
+
"folded into a lotus position",
|
960 |
+
"hands glowing with energy"
|
961 |
+
],
|
962 |
+
"extras": [
|
963 |
+
"Magic Sparks",
|
964 |
+
"Aura of Light",
|
965 |
+
"Floating Books",
|
966 |
+
"Flowers in Hair",
|
967 |
+
"Crown of Leaves",
|
968 |
+
"Starry Aura",
|
969 |
+
"Snowflakes",
|
970 |
+
"Raindrops",
|
971 |
+
"Energy Field",
|
972 |
+
"Floating Debris",
|
973 |
+
"Butterflies",
|
974 |
+
"Halo",
|
975 |
+
"Bracelets",
|
976 |
+
"Necklace",
|
977 |
+
"Earrings",
|
978 |
+
"Sunglasses",
|
979 |
+
"Scarf",
|
980 |
+
"Mask",
|
981 |
+
"Hat",
|
982 |
+
"Earmuffs",
|
983 |
+
"Flower Crown",
|
984 |
+
"Fog",
|
985 |
+
"Nebula",
|
986 |
+
"Clouds",
|
987 |
+
"Stars",
|
988 |
+
"Electricity",
|
989 |
+
"Fire",
|
990 |
+
"Ice",
|
991 |
+
"Wind",
|
992 |
+
"Rain",
|
993 |
+
"Snow",
|
994 |
+
"Falling Leaves"
|
995 |
+
],
|
996 |
+
"lighting": [
|
997 |
+
"soft lighting",
|
998 |
+
"dim lighting",
|
999 |
+
"neon glow",
|
1000 |
+
"warm glow",
|
1001 |
+
"diffused light",
|
1002 |
+
"ambient light",
|
1003 |
+
"pastel light",
|
1004 |
+
"dreamy light",
|
1005 |
+
"ethereal light",
|
1006 |
+
"candlelight",
|
1007 |
+
"firelight",
|
1008 |
+
"low light",
|
1009 |
+
"shadows",
|
1010 |
+
"nighttime",
|
1011 |
+
"moonlight",
|
1012 |
+
"darkness",
|
1013 |
+
"under a streetlight",
|
1014 |
+
"lantern light",
|
1015 |
+
"retro neon",
|
1016 |
+
"cyberpunk neon",
|
1017 |
+
"glowing neon signs",
|
1018 |
+
"vaporwave neon",
|
1019 |
+
"holographic neon",
|
1020 |
+
"electric blue neon",
|
1021 |
+
"pink neon",
|
1022 |
+
"golden hour",
|
1023 |
+
"sunset glow",
|
1024 |
+
"fireplace glow",
|
1025 |
+
"candlelight glow",
|
1026 |
+
"amber light",
|
1027 |
+
"honeycomb light",
|
1028 |
+
"volumetric lighting",
|
1029 |
+
"god rays",
|
1030 |
+
"light shafts",
|
1031 |
+
"light bloom",
|
1032 |
+
"lens flare",
|
1033 |
+
"glimmering light",
|
1034 |
+
"soft sunrise",
|
1035 |
+
"dusky twilight",
|
1036 |
+
"prismatic glow",
|
1037 |
+
"silver light",
|
1038 |
+
"opaline light",
|
1039 |
+
"moonlit glow",
|
1040 |
+
"cool neon hues",
|
1041 |
+
"vivid neon streaks",
|
1042 |
+
"rainbow lighting",
|
1043 |
+
"sun-dappled light",
|
1044 |
+
"flickering torchlight",
|
1045 |
+
"crimson light",
|
1046 |
+
"emerald glow",
|
1047 |
+
"sunny day",
|
1048 |
+
"night time",
|
1049 |
+
"under moonlight",
|
1050 |
+
"in the dark",
|
1051 |
+
"backlit",
|
1052 |
+
"soft light",
|
1053 |
+
"harsh light",
|
1054 |
+
"dappled light",
|
1055 |
+
"rim light",
|
1056 |
+
"soft shadows",
|
1057 |
+
"hard shadows",
|
1058 |
+
"golden hour",
|
1059 |
+
"twilight",
|
1060 |
+
"glowing light",
|
1061 |
+
"neon light",
|
1062 |
+
"sunbeam",
|
1063 |
+
"overcast light",
|
1064 |
+
"morning light",
|
1065 |
+
"firelight",
|
1066 |
+
"ambient light"
|
1067 |
+
],
|
1068 |
+
"distance": [
|
1069 |
+
"medium shot",
|
1070 |
+
"long shot",
|
1071 |
+
"medium full shot",
|
1072 |
+
"cowboy shot",
|
1073 |
+
"upper body",
|
1074 |
+
"full body",
|
1075 |
+
"close-up",
|
1076 |
+
"medium close-up",
|
1077 |
+
"waist up",
|
1078 |
+
"shoulders up",
|
1079 |
+
"extreme long shot",
|
1080 |
+
"establishing shot",
|
1081 |
+
"headshot",
|
1082 |
+
"profile shot"
|
1083 |
+
],
|
1084 |
+
"angle": [
|
1085 |
+
"front view",
|
1086 |
+
"side view",
|
1087 |
+
"from above",
|
1088 |
+
"high angle",
|
1089 |
+
"overhead shot",
|
1090 |
+
"top down",
|
1091 |
+
"slightly above",
|
1092 |
+
"straight on",
|
1093 |
+
"hero view",
|
1094 |
+
"selfie",
|
1095 |
+
"low angle",
|
1096 |
+
"from below",
|
1097 |
+
"worm's eye view",
|
1098 |
+
"bird's eye view",
|
1099 |
+
"diagonal angle",
|
1100 |
+
"canted angle",
|
1101 |
+
"over-the-shoulder",
|
1102 |
+
"close side view",
|
1103 |
+
"three-quarter view",
|
1104 |
+
"reverse shot"
|
1105 |
+
],
|
1106 |
+
"special_elements": [
|
1107 |
+
"sparkles",
|
1108 |
+
"flowers",
|
1109 |
+
"stars",
|
1110 |
+
"rainbows",
|
1111 |
+
"glitter",
|
1112 |
+
"stardust",
|
1113 |
+
"fairy dust",
|
1114 |
+
"shimmer",
|
1115 |
+
"twinkling lights",
|
1116 |
+
"magical sparkles",
|
1117 |
+
"cherry blossoms",
|
1118 |
+
"sakura",
|
1119 |
+
"roses",
|
1120 |
+
"lotus flowers",
|
1121 |
+
"sunflowers",
|
1122 |
+
"orchids",
|
1123 |
+
"wisteria",
|
1124 |
+
"poppies",
|
1125 |
+
"night sky",
|
1126 |
+
"constellations",
|
1127 |
+
"shooting stars",
|
1128 |
+
"twinkling stars",
|
1129 |
+
"distant galaxies",
|
1130 |
+
"nebula",
|
1131 |
+
"star clusters",
|
1132 |
+
"double rainbow",
|
1133 |
+
"arc rainbow",
|
1134 |
+
"iridescent rainbow",
|
1135 |
+
"prismatic rainbow",
|
1136 |
+
"rainbow reflection",
|
1137 |
+
"rainbow after rain",
|
1138 |
+
"magic particles",
|
1139 |
+
"energy swirls",
|
1140 |
+
"aurora borealis",
|
1141 |
+
"spectral light",
|
1142 |
+
"phantom light",
|
1143 |
+
"holy light"
|
1144 |
+
]
|
1145 |
+
}
|
character_final.json
ADDED
@@ -0,0 +1,3854 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
{
|
3 |
+
"name": "Princess Peach from Mario",
|
4 |
+
"status": "recognized"
|
5 |
+
},
|
6 |
+
{
|
7 |
+
"name": "Princess Daisy from Mario",
|
8 |
+
"status": "recognized"
|
9 |
+
},
|
10 |
+
{
|
11 |
+
"name": "Rosalina from Mario",
|
12 |
+
"status": "recognized"
|
13 |
+
},
|
14 |
+
{
|
15 |
+
"name": "Pauline from Mario",
|
16 |
+
"status": "recognized"
|
17 |
+
},
|
18 |
+
{
|
19 |
+
"name": "Bowser from Mario",
|
20 |
+
"status": "recognized"
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"name": "Bowsette from Mario",
|
24 |
+
"status": "recognized"
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"name": "Princess King Boo from Mario",
|
28 |
+
"status": "recognized"
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"name": "Luigi from Mario",
|
32 |
+
"status": "partial"
|
33 |
+
},
|
34 |
+
{
|
35 |
+
"name": "Yoshi from Mario",
|
36 |
+
"status": "partial"
|
37 |
+
},
|
38 |
+
{
|
39 |
+
"name": "Boo from Mario",
|
40 |
+
"status": "partial"
|
41 |
+
},
|
42 |
+
{
|
43 |
+
"name": "Piranha Plant from Mario",
|
44 |
+
"status": "partial"
|
45 |
+
},
|
46 |
+
{
|
47 |
+
"name": "Toadette from Mario",
|
48 |
+
"status": "partial"
|
49 |
+
},
|
50 |
+
{
|
51 |
+
"name": "Mario (HOW IS MARIO THIS HARD TO GENERATE???)",
|
52 |
+
"status": "not recognized"
|
53 |
+
},
|
54 |
+
{
|
55 |
+
"name": "Donkey Kong (makes an actual donkey... if you're into that)",
|
56 |
+
"status": "not recognized"
|
57 |
+
},
|
58 |
+
{
|
59 |
+
"name": "Funky Kong (R.I.P. our lord and savior, Funky Kong)",
|
60 |
+
"status": "not recognized"
|
61 |
+
},
|
62 |
+
{
|
63 |
+
"name": "Diddy Kong",
|
64 |
+
"status": "not recognized"
|
65 |
+
},
|
66 |
+
{
|
67 |
+
"name": "Birdo (GOOD YOU SICKOS (there's a lora out there ;) ))",
|
68 |
+
"status": "not recognized"
|
69 |
+
},
|
70 |
+
{
|
71 |
+
"name": "Toad",
|
72 |
+
"status": "not recognized"
|
73 |
+
},
|
74 |
+
{
|
75 |
+
"name": "Wario",
|
76 |
+
"status": "not recognized"
|
77 |
+
},
|
78 |
+
{
|
79 |
+
"name": "Waluigi",
|
80 |
+
"status": "not recognized"
|
81 |
+
},
|
82 |
+
{
|
83 |
+
"name": "Sidekick characters (Diddy Kong, Bowser Jr./Koopa Kid, Kamek)",
|
84 |
+
"status": "not recognized"
|
85 |
+
},
|
86 |
+
{
|
87 |
+
"name": "Most enemies (Goomba, Hammer Bro, Shy Guy, Monty Mole, Koopa, Bob-omb, Dry Bones, Pokey, Lakitu, Bullet Bill, Wiggler, Blooper, Cheep cheeps, etc.)",
|
88 |
+
"status": "not recognized"
|
89 |
+
},
|
90 |
+
{
|
91 |
+
"name": "Zelda from Legend of Zelda",
|
92 |
+
"status": "recognized"
|
93 |
+
},
|
94 |
+
{
|
95 |
+
"name": "Link from Legend of Zelda",
|
96 |
+
"status": "recognized"
|
97 |
+
},
|
98 |
+
{
|
99 |
+
"name": "Ganon / Ganondorf from Legend of Zelda",
|
100 |
+
"status": "recognized"
|
101 |
+
},
|
102 |
+
{
|
103 |
+
"name": "Mipha from Legend of Zelda",
|
104 |
+
"status": "recognized"
|
105 |
+
},
|
106 |
+
{
|
107 |
+
"name": "Midna from Legend of Zelda",
|
108 |
+
"status": "recognized"
|
109 |
+
},
|
110 |
+
{
|
111 |
+
"name": "Urbosa from Legend of Zelda",
|
112 |
+
"status": "recognized"
|
113 |
+
},
|
114 |
+
{
|
115 |
+
"name": "Paya from Legend of Zelda",
|
116 |
+
"status": "recognized"
|
117 |
+
},
|
118 |
+
{
|
119 |
+
"name": "Malon from Legend of Zelda",
|
120 |
+
"status": "recognized"
|
121 |
+
},
|
122 |
+
{
|
123 |
+
"name": "Princess Ruto from Legend of Zelda",
|
124 |
+
"status": "recognized"
|
125 |
+
},
|
126 |
+
{
|
127 |
+
"name": "Lana from Legend of Zelda",
|
128 |
+
"status": "partial"
|
129 |
+
},
|
130 |
+
{
|
131 |
+
"name": "Sheik",
|
132 |
+
"status": "not recognized"
|
133 |
+
},
|
134 |
+
{
|
135 |
+
"name": "Impa",
|
136 |
+
"status": "not recognized"
|
137 |
+
},
|
138 |
+
{
|
139 |
+
"name": "Amy from Sonic",
|
140 |
+
"status": "recognized"
|
141 |
+
},
|
142 |
+
{
|
143 |
+
"name": "Blaze the Cat from Sonic",
|
144 |
+
"status": "recognized"
|
145 |
+
},
|
146 |
+
{
|
147 |
+
"name": "Cream the Rabbit from Sonic",
|
148 |
+
"status": "recognized"
|
149 |
+
},
|
150 |
+
{
|
151 |
+
"name": "Shadow the Hedgehog from Sonic",
|
152 |
+
"status": "recognized"
|
153 |
+
},
|
154 |
+
{
|
155 |
+
"name": "Knuckles the Echidna from Sonic",
|
156 |
+
"status": "recognized"
|
157 |
+
},
|
158 |
+
{
|
159 |
+
"name": "Rouge the Bat from Sonic",
|
160 |
+
"status": "recognized"
|
161 |
+
},
|
162 |
+
{
|
163 |
+
"name": "Tails / Miles Prower from Sonic",
|
164 |
+
"status": "partial"
|
165 |
+
},
|
166 |
+
{
|
167 |
+
"name": "Sonic the Hedgehog",
|
168 |
+
"status": "partial"
|
169 |
+
},
|
170 |
+
{
|
171 |
+
"name": "Dr. Eggman / Dr. Robotnik",
|
172 |
+
"status": "not recognized"
|
173 |
+
},
|
174 |
+
{
|
175 |
+
"name": "Everyone else (Espio, Ray, Mighty, Vector, Silver, Manic, Tikal, etc.)",
|
176 |
+
"status": "not recognized"
|
177 |
+
},
|
178 |
+
{
|
179 |
+
"name": "Akari from Pokemon",
|
180 |
+
"status": "recognized"
|
181 |
+
},
|
182 |
+
{
|
183 |
+
"name": "Bea from Pokemon",
|
184 |
+
"status": "recognized"
|
185 |
+
},
|
186 |
+
{
|
187 |
+
"name": "Bianca from Pokemon",
|
188 |
+
"status": "recognized"
|
189 |
+
},
|
190 |
+
{
|
191 |
+
"name": "Candice from Pokemon",
|
192 |
+
"status": "recognized"
|
193 |
+
},
|
194 |
+
{
|
195 |
+
"name": "Cynthia from Pokemon",
|
196 |
+
"status": "recognized"
|
197 |
+
},
|
198 |
+
{
|
199 |
+
"name": "Dawn from Pokemon",
|
200 |
+
"status": "recognized"
|
201 |
+
},
|
202 |
+
{
|
203 |
+
"name": "Elesa from Pokemon",
|
204 |
+
"status": "recognized"
|
205 |
+
},
|
206 |
+
{
|
207 |
+
"name": "Flannery from Pokemon",
|
208 |
+
"status": "recognized"
|
209 |
+
},
|
210 |
+
{
|
211 |
+
"name": "Gloria from Pokemon",
|
212 |
+
"status": "recognized"
|
213 |
+
},
|
214 |
+
{
|
215 |
+
"name": "Hex Maniac from Pokemon",
|
216 |
+
"status": "recognized"
|
217 |
+
},
|
218 |
+
{
|
219 |
+
"name": "Hilda from Pokemon",
|
220 |
+
"status": "recognized"
|
221 |
+
},
|
222 |
+
{
|
223 |
+
"name": "Iono from Pokemon",
|
224 |
+
"status": "recognized"
|
225 |
+
},
|
226 |
+
{
|
227 |
+
"name": "Irida from Pokemon",
|
228 |
+
"status": "recognized"
|
229 |
+
},
|
230 |
+
{
|
231 |
+
"name": "Iris from Pokemon",
|
232 |
+
"status": "recognized"
|
233 |
+
},
|
234 |
+
{
|
235 |
+
"name": "Jessie from Pokemon",
|
236 |
+
"status": "recognized"
|
237 |
+
},
|
238 |
+
{
|
239 |
+
"name": "Juliana from Pokemon",
|
240 |
+
"status": "recognized"
|
241 |
+
},
|
242 |
+
{
|
243 |
+
"name": "Klara from Pokemon",
|
244 |
+
"status": "recognized"
|
245 |
+
},
|
246 |
+
{
|
247 |
+
"name": "Lana from Pokemon",
|
248 |
+
"status": "recognized"
|
249 |
+
},
|
250 |
+
{
|
251 |
+
"name": "Lana's Mother from Pokemon",
|
252 |
+
"status": "recognized"
|
253 |
+
},
|
254 |
+
{
|
255 |
+
"name": "Lillie from Pokemon",
|
256 |
+
"status": "recognized"
|
257 |
+
},
|
258 |
+
{
|
259 |
+
"name": "Lisia from Pokemon",
|
260 |
+
"status": "recognized"
|
261 |
+
},
|
262 |
+
{
|
263 |
+
"name": "Lusamine from Pokemon",
|
264 |
+
"status": "recognized"
|
265 |
+
},
|
266 |
+
{
|
267 |
+
"name": "Mallow from Pokemon",
|
268 |
+
"status": "recognized"
|
269 |
+
},
|
270 |
+
{
|
271 |
+
"name": "Marnie from Pokemon",
|
272 |
+
"status": "recognized"
|
273 |
+
},
|
274 |
+
{
|
275 |
+
"name": "May from Pokemon",
|
276 |
+
"status": "recognized"
|
277 |
+
},
|
278 |
+
{
|
279 |
+
"name": "Melony from Pokemon",
|
280 |
+
"status": "recognized"
|
281 |
+
},
|
282 |
+
{
|
283 |
+
"name": "Misty from Pokemon",
|
284 |
+
"status": "recognized"
|
285 |
+
},
|
286 |
+
{
|
287 |
+
"name": "Nemona from Pokemon",
|
288 |
+
"status": "recognized"
|
289 |
+
},
|
290 |
+
{
|
291 |
+
"name": "Nessa from Pokemon",
|
292 |
+
"status": "recognized"
|
293 |
+
},
|
294 |
+
{
|
295 |
+
"name": "Nurse Joy from Pokemon",
|
296 |
+
"status": "recognized"
|
297 |
+
},
|
298 |
+
{
|
299 |
+
"name": "Penny from Pokemon (\"multicolor hair\" helps a lot)",
|
300 |
+
"status": "recognized"
|
301 |
+
},
|
302 |
+
{
|
303 |
+
"name": "Rika from Pokemon",
|
304 |
+
"status": "recognized"
|
305 |
+
},
|
306 |
+
{
|
307 |
+
"name": "Rosa from Pokemon",
|
308 |
+
"status": "recognized"
|
309 |
+
},
|
310 |
+
{
|
311 |
+
"name": "Roxie from Pokemon",
|
312 |
+
"status": "recognized"
|
313 |
+
},
|
314 |
+
{
|
315 |
+
"name": "Sabrina from Pokemon",
|
316 |
+
"status": "recognized"
|
317 |
+
},
|
318 |
+
{
|
319 |
+
"name": "Selene from Pokemon",
|
320 |
+
"status": "recognized"
|
321 |
+
},
|
322 |
+
{
|
323 |
+
"name": "Serena from Pokemon",
|
324 |
+
"status": "recognized"
|
325 |
+
},
|
326 |
+
{
|
327 |
+
"name": "Skyla from Pokemon",
|
328 |
+
"status": "recognized"
|
329 |
+
},
|
330 |
+
{
|
331 |
+
"name": "Sonia from Pokemon",
|
332 |
+
"status": "recognized"
|
333 |
+
},
|
334 |
+
{
|
335 |
+
"name": "Whitney from Pokemon",
|
336 |
+
"status": "recognized"
|
337 |
+
},
|
338 |
+
{
|
339 |
+
"name": "Jasmine from Pokemon (Pretty inconsistent)",
|
340 |
+
"status": "partial"
|
341 |
+
},
|
342 |
+
{
|
343 |
+
"name": "Courtney from Pokemon",
|
344 |
+
"status": "partial"
|
345 |
+
},
|
346 |
+
{
|
347 |
+
"name": "Eevee from pokemon",
|
348 |
+
"status": "recognized"
|
349 |
+
},
|
350 |
+
{
|
351 |
+
"name": "Vaporeon from pokemon",
|
352 |
+
"status": "recognized"
|
353 |
+
},
|
354 |
+
{
|
355 |
+
"name": "Leafeon from pokemon",
|
356 |
+
"status": "recognized"
|
357 |
+
},
|
358 |
+
{
|
359 |
+
"name": "Flareon from pokemon",
|
360 |
+
"status": "recognized"
|
361 |
+
},
|
362 |
+
{
|
363 |
+
"name": "Jolteon from pokemon",
|
364 |
+
"status": "recognized"
|
365 |
+
},
|
366 |
+
{
|
367 |
+
"name": "Umbreon from pokemon",
|
368 |
+
"status": "recognized"
|
369 |
+
},
|
370 |
+
{
|
371 |
+
"name": "Espeon from pokemon",
|
372 |
+
"status": "recognized"
|
373 |
+
},
|
374 |
+
{
|
375 |
+
"name": "Glaceon from pokemon",
|
376 |
+
"status": "recognized"
|
377 |
+
},
|
378 |
+
{
|
379 |
+
"name": "Sylveon from pokemon",
|
380 |
+
"status": "recognized"
|
381 |
+
},
|
382 |
+
{
|
383 |
+
"name": "Kirlia from pokemon",
|
384 |
+
"status": "recognized"
|
385 |
+
},
|
386 |
+
{
|
387 |
+
"name": "Gardevoir from pokemon",
|
388 |
+
"status": "recognized"
|
389 |
+
},
|
390 |
+
{
|
391 |
+
"name": "Pikachu from pokemon",
|
392 |
+
"status": "recognized"
|
393 |
+
},
|
394 |
+
{
|
395 |
+
"name": "Shinx from pokemon",
|
396 |
+
"status": "recognized"
|
397 |
+
},
|
398 |
+
{
|
399 |
+
"name": "Luxray from pokemon",
|
400 |
+
"status": "recognized"
|
401 |
+
},
|
402 |
+
{
|
403 |
+
"name": "Vulpix from pokemon",
|
404 |
+
"status": "recognized"
|
405 |
+
},
|
406 |
+
{
|
407 |
+
"name": "Meowth from pokemon",
|
408 |
+
"status": "recognized"
|
409 |
+
},
|
410 |
+
{
|
411 |
+
"name": "Growlithe from pokemon",
|
412 |
+
"status": "recognized"
|
413 |
+
},
|
414 |
+
{
|
415 |
+
"name": "Arcanine from pokemon",
|
416 |
+
"status": "recognized"
|
417 |
+
},
|
418 |
+
{
|
419 |
+
"name": "Machop from pokemon",
|
420 |
+
"status": "recognized"
|
421 |
+
},
|
422 |
+
{
|
423 |
+
"name": "Machoke from pokemon",
|
424 |
+
"status": "recognized"
|
425 |
+
},
|
426 |
+
{
|
427 |
+
"name": "Charmander from pokemon",
|
428 |
+
"status": "recognized"
|
429 |
+
},
|
430 |
+
{
|
431 |
+
"name": "Charmeloen from pokemon",
|
432 |
+
"status": "recognized"
|
433 |
+
},
|
434 |
+
{
|
435 |
+
"name": "Charizard from pokemon",
|
436 |
+
"status": "recognized"
|
437 |
+
},
|
438 |
+
{
|
439 |
+
"name": "Bulbasaur from pokemon",
|
440 |
+
"status": "recognized"
|
441 |
+
},
|
442 |
+
{
|
443 |
+
"name": "Lapras from pokemon",
|
444 |
+
"status": "recognized"
|
445 |
+
},
|
446 |
+
{
|
447 |
+
"name": "Dragonite from pokemon",
|
448 |
+
"status": "recognized"
|
449 |
+
},
|
450 |
+
{
|
451 |
+
"name": "Mewtwo from pokemon",
|
452 |
+
"status": "recognized"
|
453 |
+
},
|
454 |
+
{
|
455 |
+
"name": "Feraligatr from pokemon",
|
456 |
+
"status": "recognized"
|
457 |
+
},
|
458 |
+
{
|
459 |
+
"name": "Weavile from pokemon",
|
460 |
+
"status": "recognized"
|
461 |
+
},
|
462 |
+
{
|
463 |
+
"name": "Houndoom from pokemon",
|
464 |
+
"status": "recognized"
|
465 |
+
},
|
466 |
+
{
|
467 |
+
"name": "Torchic from pokemon",
|
468 |
+
"status": "recognized"
|
469 |
+
},
|
470 |
+
{
|
471 |
+
"name": "Blaziken from pokemon",
|
472 |
+
"status": "recognized"
|
473 |
+
},
|
474 |
+
{
|
475 |
+
"name": "Roserade from pokemon",
|
476 |
+
"status": "recognized"
|
477 |
+
},
|
478 |
+
{
|
479 |
+
"name": "Milotic from pokemon",
|
480 |
+
"status": "recognized"
|
481 |
+
},
|
482 |
+
{
|
483 |
+
"name": "Absol from pokemon",
|
484 |
+
"status": "recognized"
|
485 |
+
},
|
486 |
+
{
|
487 |
+
"name": "Lopunny from pokemon",
|
488 |
+
"status": "recognized"
|
489 |
+
},
|
490 |
+
{
|
491 |
+
"name": "Garchomp from pokemon",
|
492 |
+
"status": "recognized"
|
493 |
+
},
|
494 |
+
{
|
495 |
+
"name": "Riolu from pokemon",
|
496 |
+
"status": "recognized"
|
497 |
+
},
|
498 |
+
{
|
499 |
+
"name": "Lucario from pokemon",
|
500 |
+
"status": "recognized"
|
501 |
+
},
|
502 |
+
{
|
503 |
+
"name": "Snivy from pokemon",
|
504 |
+
"status": "recognized"
|
505 |
+
},
|
506 |
+
{
|
507 |
+
"name": "Serperior from pokemon",
|
508 |
+
"status": "recognized"
|
509 |
+
},
|
510 |
+
{
|
511 |
+
"name": "Emboar from pokemon",
|
512 |
+
"status": "recognized"
|
513 |
+
},
|
514 |
+
{
|
515 |
+
"name": "Samurott from pokemon",
|
516 |
+
"status": "recognized"
|
517 |
+
},
|
518 |
+
{
|
519 |
+
"name": "Zorua from pokemon",
|
520 |
+
"status": "recognized"
|
521 |
+
},
|
522 |
+
{
|
523 |
+
"name": "Zoroark from pokemon",
|
524 |
+
"status": "recognized"
|
525 |
+
},
|
526 |
+
{
|
527 |
+
"name": "Fennekin from pokemon",
|
528 |
+
"status": "recognized"
|
529 |
+
},
|
530 |
+
{
|
531 |
+
"name": "Braixen from pokemon",
|
532 |
+
"status": "recognized"
|
533 |
+
},
|
534 |
+
{
|
535 |
+
"name": "Delphox from pokemon",
|
536 |
+
"status": "recognized"
|
537 |
+
},
|
538 |
+
{
|
539 |
+
"name": "Litten from pokemon",
|
540 |
+
"status": "recognized"
|
541 |
+
},
|
542 |
+
{
|
543 |
+
"name": "Incineroar from pokemon",
|
544 |
+
"status": "recognized"
|
545 |
+
},
|
546 |
+
{
|
547 |
+
"name": "Primarina from pokemon",
|
548 |
+
"status": "recognized"
|
549 |
+
},
|
550 |
+
{
|
551 |
+
"name": "Traseena from pokemon",
|
552 |
+
"status": "recognized"
|
553 |
+
},
|
554 |
+
{
|
555 |
+
"name": "Grookey from pokemon",
|
556 |
+
"status": "recognized"
|
557 |
+
},
|
558 |
+
{
|
559 |
+
"name": "Cinderace from pokemon",
|
560 |
+
"status": "recognized"
|
561 |
+
},
|
562 |
+
{
|
563 |
+
"name": "Inteleon from pokemon",
|
564 |
+
"status": "recognized"
|
565 |
+
},
|
566 |
+
{
|
567 |
+
"name": "Obstagoon from pokemon",
|
568 |
+
"status": "recognized"
|
569 |
+
},
|
570 |
+
{
|
571 |
+
"name": "Sprigatito from pokemon",
|
572 |
+
"status": "recognized"
|
573 |
+
},
|
574 |
+
{
|
575 |
+
"name": "Meowscarada from pokemon",
|
576 |
+
"status": "recognized"
|
577 |
+
},
|
578 |
+
{
|
579 |
+
"name": "Goodra from pokemon",
|
580 |
+
"status": "recognized"
|
581 |
+
},
|
582 |
+
{
|
583 |
+
"name": "Ninetails from pokemon",
|
584 |
+
"status": "partial"
|
585 |
+
},
|
586 |
+
{
|
587 |
+
"name": "Pichu from pokemon",
|
588 |
+
"status": "partial"
|
589 |
+
},
|
590 |
+
{
|
591 |
+
"name": "Ralts from pokemon",
|
592 |
+
"status": "partial"
|
593 |
+
},
|
594 |
+
{
|
595 |
+
"name": "Machamp from pokemon",
|
596 |
+
"status": "partial"
|
597 |
+
},
|
598 |
+
{
|
599 |
+
"name": "Drowzee from pokemon",
|
600 |
+
"status": "partial"
|
601 |
+
},
|
602 |
+
{
|
603 |
+
"name": "Mew from pokemon",
|
604 |
+
"status": "partial"
|
605 |
+
},
|
606 |
+
{
|
607 |
+
"name": "Blastoise from pokemon",
|
608 |
+
"status": "partial"
|
609 |
+
},
|
610 |
+
{
|
611 |
+
"name": "Typhlosion from pokemon",
|
612 |
+
"status": "partial"
|
613 |
+
},
|
614 |
+
{
|
615 |
+
"name": "Cleffa from pokemon",
|
616 |
+
"status": "partial"
|
617 |
+
},
|
618 |
+
{
|
619 |
+
"name": "Ampharos from pokemon",
|
620 |
+
"status": "partial"
|
621 |
+
},
|
622 |
+
{
|
623 |
+
"name": "Sneasel from pokemon",
|
624 |
+
"status": "partial"
|
625 |
+
},
|
626 |
+
{
|
627 |
+
"name": "Houndour from pokemon",
|
628 |
+
"status": "partial"
|
629 |
+
},
|
630 |
+
{
|
631 |
+
"name": "Tyranitar from pokemon",
|
632 |
+
"status": "partial"
|
633 |
+
},
|
634 |
+
{
|
635 |
+
"name": "Mudkip from pokemon",
|
636 |
+
"status": "partial"
|
637 |
+
},
|
638 |
+
{
|
639 |
+
"name": "Swampert from pokemon",
|
640 |
+
"status": "partial"
|
641 |
+
},
|
642 |
+
{
|
643 |
+
"name": "Mismagius from pokemon",
|
644 |
+
"status": "partial"
|
645 |
+
},
|
646 |
+
{
|
647 |
+
"name": "Latias from pokemon",
|
648 |
+
"status": "partial"
|
649 |
+
},
|
650 |
+
{
|
651 |
+
"name": "Latios from pokemon",
|
652 |
+
"status": "partial"
|
653 |
+
},
|
654 |
+
{
|
655 |
+
"name": "Rayquaza from pokemon",
|
656 |
+
"status": "partial"
|
657 |
+
},
|
658 |
+
{
|
659 |
+
"name": "Chimchar from pokemon",
|
660 |
+
"status": "partial"
|
661 |
+
},
|
662 |
+
{
|
663 |
+
"name": "Meloetta from pokemon",
|
664 |
+
"status": "partial"
|
665 |
+
},
|
666 |
+
{
|
667 |
+
"name": "Rillaboom from pokemon",
|
668 |
+
"status": "partial"
|
669 |
+
},
|
670 |
+
{
|
671 |
+
"name": "Jigglypuff from pokemon",
|
672 |
+
"status": "partial"
|
673 |
+
},
|
674 |
+
{
|
675 |
+
"name": "Samus",
|
676 |
+
"status": "recognized"
|
677 |
+
},
|
678 |
+
{
|
679 |
+
"name": "Metroid Larva",
|
680 |
+
"status": "recognized"
|
681 |
+
},
|
682 |
+
{
|
683 |
+
"name": "Ridley",
|
684 |
+
"status": "partial"
|
685 |
+
},
|
686 |
+
{
|
687 |
+
"name": "Tracer from Overwatch",
|
688 |
+
"status": "recognized"
|
689 |
+
},
|
690 |
+
{
|
691 |
+
"name": "Mercy from Overwatch",
|
692 |
+
"status": "recognized"
|
693 |
+
},
|
694 |
+
{
|
695 |
+
"name": "D.Va",
|
696 |
+
"status": "recognized"
|
697 |
+
},
|
698 |
+
{
|
699 |
+
"name": "Kiriko from Overwatch",
|
700 |
+
"status": "recognized"
|
701 |
+
},
|
702 |
+
{
|
703 |
+
"name": "Widowmaker from Overwatch",
|
704 |
+
"status": "recognized"
|
705 |
+
},
|
706 |
+
{
|
707 |
+
"name": "Mei from Overwatch",
|
708 |
+
"status": "recognized"
|
709 |
+
},
|
710 |
+
{
|
711 |
+
"name": "Symmetra from Overwatch",
|
712 |
+
"status": "recognized"
|
713 |
+
},
|
714 |
+
{
|
715 |
+
"name": "Sombra from Overwatch",
|
716 |
+
"status": "recognized"
|
717 |
+
},
|
718 |
+
{
|
719 |
+
"name": "Hanzo from Overwatch",
|
720 |
+
"status": "recognized"
|
721 |
+
},
|
722 |
+
{
|
723 |
+
"name": "Mei from Overwatch",
|
724 |
+
"status": "recognized"
|
725 |
+
},
|
726 |
+
{
|
727 |
+
"name": "Pharah from Overwatch",
|
728 |
+
"status": "recognized"
|
729 |
+
},
|
730 |
+
{
|
731 |
+
"name": "Ashe from Overwatch",
|
732 |
+
"status": "recognized"
|
733 |
+
},
|
734 |
+
{
|
735 |
+
"name": "Zarya from Overwatch",
|
736 |
+
"status": "partial"
|
737 |
+
},
|
738 |
+
{
|
739 |
+
"name": "Ana from Overwatch",
|
740 |
+
"status": "partial"
|
741 |
+
},
|
742 |
+
{
|
743 |
+
"name": "Brigette",
|
744 |
+
"status": "not recognized"
|
745 |
+
},
|
746 |
+
{
|
747 |
+
"name": "Sojourn",
|
748 |
+
"status": "not recognized"
|
749 |
+
},
|
750 |
+
{
|
751 |
+
"name": "Moira (gets the hair but that's it)",
|
752 |
+
"status": "not recognized"
|
753 |
+
},
|
754 |
+
{
|
755 |
+
"name": "Echo",
|
756 |
+
"status": "not recognized"
|
757 |
+
},
|
758 |
+
{
|
759 |
+
"name": "Orisa",
|
760 |
+
"status": "not recognized"
|
761 |
+
},
|
762 |
+
{
|
763 |
+
"name": "Jinx from League of Legends",
|
764 |
+
"status": "recognized"
|
765 |
+
},
|
766 |
+
{
|
767 |
+
"name": "Sona from League of Legends",
|
768 |
+
"status": "recognized"
|
769 |
+
},
|
770 |
+
{
|
771 |
+
"name": "Ahri from League of Legends",
|
772 |
+
"status": "recognized"
|
773 |
+
},
|
774 |
+
{
|
775 |
+
"name": "Akali from League of Legends",
|
776 |
+
"status": "recognized"
|
777 |
+
},
|
778 |
+
{
|
779 |
+
"name": "Lux from League of Legends",
|
780 |
+
"status": "recognized"
|
781 |
+
},
|
782 |
+
{
|
783 |
+
"name": "Irelia from League of Legends",
|
784 |
+
"status": "recognized"
|
785 |
+
},
|
786 |
+
{
|
787 |
+
"name": "Fiora from League of Legends",
|
788 |
+
"status": "recognized"
|
789 |
+
},
|
790 |
+
{
|
791 |
+
"name": "Caitlyn from League of Legends",
|
792 |
+
"status": "recognized"
|
793 |
+
},
|
794 |
+
{
|
795 |
+
"name": "Katarina from League of Legends",
|
796 |
+
"status": "recognized"
|
797 |
+
},
|
798 |
+
{
|
799 |
+
"name": "Leblanc from League of Legends",
|
800 |
+
"status": "recognized"
|
801 |
+
},
|
802 |
+
{
|
803 |
+
"name": "Miss Fortune from League of Legends",
|
804 |
+
"status": "recognized"
|
805 |
+
},
|
806 |
+
{
|
807 |
+
"name": "Morgana from League of Legends",
|
808 |
+
"status": "recognized"
|
809 |
+
},
|
810 |
+
{
|
811 |
+
"name": "Neeko from League of Legends",
|
812 |
+
"status": "recognized"
|
813 |
+
},
|
814 |
+
{
|
815 |
+
"name": "Nidalee from League of Legends",
|
816 |
+
"status": "recognized"
|
817 |
+
},
|
818 |
+
{
|
819 |
+
"name": "Qiyana from League of Legends",
|
820 |
+
"status": "recognized"
|
821 |
+
},
|
822 |
+
{
|
823 |
+
"name": "Riven from League of Legends",
|
824 |
+
"status": "recognized"
|
825 |
+
},
|
826 |
+
{
|
827 |
+
"name": "Samira from League of Legends",
|
828 |
+
"status": "recognized"
|
829 |
+
},
|
830 |
+
{
|
831 |
+
"name": "Senna from League of Legends, dark skin",
|
832 |
+
"status": "recognized"
|
833 |
+
},
|
834 |
+
{
|
835 |
+
"name": "Seraphine from League of Legends",
|
836 |
+
"status": "recognized"
|
837 |
+
},
|
838 |
+
{
|
839 |
+
"name": "Sivir from League of Legends",
|
840 |
+
"status": "recognized"
|
841 |
+
},
|
842 |
+
{
|
843 |
+
"name": "Xayah from League of Legends",
|
844 |
+
"status": "recognized"
|
845 |
+
},
|
846 |
+
{
|
847 |
+
"name": "Zeri from League of Legends",
|
848 |
+
"status": "recognized"
|
849 |
+
},
|
850 |
+
{
|
851 |
+
"name": "Tali from Mass Effect",
|
852 |
+
"status": "recognized"
|
853 |
+
},
|
854 |
+
{
|
855 |
+
"name": "Liara from Mass Effect",
|
856 |
+
"status": "recognized"
|
857 |
+
},
|
858 |
+
{
|
859 |
+
"name": "Miranda Lawson from Mass Effect",
|
860 |
+
"status": "recognized"
|
861 |
+
},
|
862 |
+
{
|
863 |
+
"name": "Kamisato Ayaka from Genshin Impact",
|
864 |
+
"status": "recognized"
|
865 |
+
},
|
866 |
+
{
|
867 |
+
"name": "Raiden Shogun from Genshin Impact",
|
868 |
+
"status": "recognized"
|
869 |
+
},
|
870 |
+
{
|
871 |
+
"name": "Hu Tao from Genshin Impact",
|
872 |
+
"status": "recognized"
|
873 |
+
},
|
874 |
+
{
|
875 |
+
"name": "Gaynu from Genshin Impact",
|
876 |
+
"status": "recognized"
|
877 |
+
},
|
878 |
+
{
|
879 |
+
"name": "Shenhe from Genshin Impact",
|
880 |
+
"status": "recognized"
|
881 |
+
},
|
882 |
+
{
|
883 |
+
"name": "Yae Miko from Genshin Impact",
|
884 |
+
"status": "recognized"
|
885 |
+
},
|
886 |
+
{
|
887 |
+
"name": "Sangonomiya Kokomi from Genshin Impact",
|
888 |
+
"status": "recognized"
|
889 |
+
},
|
890 |
+
{
|
891 |
+
"name": "Eula from Genshin Impact",
|
892 |
+
"status": "recognized"
|
893 |
+
},
|
894 |
+
{
|
895 |
+
"name": "Yelan from Genshin Impact",
|
896 |
+
"status": "recognized"
|
897 |
+
},
|
898 |
+
{
|
899 |
+
"name": "Dehya from Genshin Impact",
|
900 |
+
"status": "recognized"
|
901 |
+
},
|
902 |
+
{
|
903 |
+
"name": "Yoimiya from Genshin Impact",
|
904 |
+
"status": "recognized"
|
905 |
+
},
|
906 |
+
{
|
907 |
+
"name": "Yun Jin from Genshin Impact",
|
908 |
+
"status": "recognized"
|
909 |
+
},
|
910 |
+
{
|
911 |
+
"name": "Ningguang from Genshin Impact",
|
912 |
+
"status": "recognized"
|
913 |
+
},
|
914 |
+
{
|
915 |
+
"name": "Keqing from Genshin Impact",
|
916 |
+
"status": "recognized"
|
917 |
+
},
|
918 |
+
{
|
919 |
+
"name": "Amber from Genshin Impact",
|
920 |
+
"status": "recognized"
|
921 |
+
},
|
922 |
+
{
|
923 |
+
"name": "Arlecchino from Genshin Impact",
|
924 |
+
"status": "recognized"
|
925 |
+
},
|
926 |
+
{
|
927 |
+
"name": "Ayaka from Genshin Impact",
|
928 |
+
"status": "recognized"
|
929 |
+
},
|
930 |
+
{
|
931 |
+
"name": "Barbara from Genshin Impact",
|
932 |
+
"status": "recognized"
|
933 |
+
},
|
934 |
+
{
|
935 |
+
"name": "Candace from Genshin Impact",
|
936 |
+
"status": "recognized"
|
937 |
+
},
|
938 |
+
{
|
939 |
+
"name": "Faruzan from Genshin Impact",
|
940 |
+
"status": "recognized"
|
941 |
+
},
|
942 |
+
{
|
943 |
+
"name": "Fischl from Genshin Impact",
|
944 |
+
"status": "recognized"
|
945 |
+
},
|
946 |
+
{
|
947 |
+
"name": "Jean from Genshin Impact",
|
948 |
+
"status": "recognized"
|
949 |
+
},
|
950 |
+
{
|
951 |
+
"name": "Klee from Genshin Impact",
|
952 |
+
"status": "recognized"
|
953 |
+
},
|
954 |
+
{
|
955 |
+
"name": "Kujou Sara from Genshin Impact",
|
956 |
+
"status": "recognized"
|
957 |
+
},
|
958 |
+
{
|
959 |
+
"name": "Kuki Shinobu from Genshin Impact",
|
960 |
+
"status": "recognized"
|
961 |
+
},
|
962 |
+
{
|
963 |
+
"name": "La Signora from Genshin Impact",
|
964 |
+
"status": "recognized"
|
965 |
+
},
|
966 |
+
{
|
967 |
+
"name": "Layla from Genshin Impact",
|
968 |
+
"status": "recognized"
|
969 |
+
},
|
970 |
+
{
|
971 |
+
"name": "Lisa from Genshin Impact",
|
972 |
+
"status": "recognized"
|
973 |
+
},
|
974 |
+
{
|
975 |
+
"name": "Mona from Genshin Impact",
|
976 |
+
"status": "recognized"
|
977 |
+
},
|
978 |
+
{
|
979 |
+
"name": "Nahida from Genshin Impact",
|
980 |
+
"status": "recognized"
|
981 |
+
},
|
982 |
+
{
|
983 |
+
"name": "Nilou from Genshin Impact",
|
984 |
+
"status": "recognized"
|
985 |
+
},
|
986 |
+
{
|
987 |
+
"name": "Noelle from Genshin Impact",
|
988 |
+
"status": "recognized"
|
989 |
+
},
|
990 |
+
{
|
991 |
+
"name": "Rosaria from Genshin Impact",
|
992 |
+
"status": "recognized"
|
993 |
+
},
|
994 |
+
{
|
995 |
+
"name": "Xiangling from Genshin Impact",
|
996 |
+
"status": "recognized"
|
997 |
+
},
|
998 |
+
{
|
999 |
+
"name": "Yanfei from Genshin Impact",
|
1000 |
+
"status": "recognized"
|
1001 |
+
},
|
1002 |
+
{
|
1003 |
+
"name": "Yoimiya from Genshin Impact",
|
1004 |
+
"status": "recognized"
|
1005 |
+
},
|
1006 |
+
{
|
1007 |
+
"name": "Collei from Genshin Impact",
|
1008 |
+
"status": "partial"
|
1009 |
+
},
|
1010 |
+
{
|
1011 |
+
"name": "Navia from Genshin Impact",
|
1012 |
+
"status": "partial"
|
1013 |
+
},
|
1014 |
+
{
|
1015 |
+
"name": "Sucrose from Genshin Impact",
|
1016 |
+
"status": "partial"
|
1017 |
+
},
|
1018 |
+
{
|
1019 |
+
"name": "Charlotte from Genshin Impact",
|
1020 |
+
"status": "not recognized"
|
1021 |
+
},
|
1022 |
+
{
|
1023 |
+
"name": "Chevreuse from Genshin Impact",
|
1024 |
+
"status": "not recognized"
|
1025 |
+
},
|
1026 |
+
{
|
1027 |
+
"name": "Chiori from Genshin Impact",
|
1028 |
+
"status": "not recognized"
|
1029 |
+
},
|
1030 |
+
{
|
1031 |
+
"name": "Chlorinde from Genshin Impact",
|
1032 |
+
"status": "not recognized"
|
1033 |
+
},
|
1034 |
+
{
|
1035 |
+
"name": "Columbina from Genshin Impact",
|
1036 |
+
"status": "not recognized"
|
1037 |
+
},
|
1038 |
+
{
|
1039 |
+
"name": "Diona from Genshin Impact",
|
1040 |
+
"status": "not recognized"
|
1041 |
+
},
|
1042 |
+
{
|
1043 |
+
"name": "Furina from Genshin Impact",
|
1044 |
+
"status": "not recognized"
|
1045 |
+
},
|
1046 |
+
{
|
1047 |
+
"name": "Kirara from Genshin Impact",
|
1048 |
+
"status": "not recognized"
|
1049 |
+
},
|
1050 |
+
{
|
1051 |
+
"name": "Lynette from Genshin Impact",
|
1052 |
+
"status": "not recognized"
|
1053 |
+
},
|
1054 |
+
{
|
1055 |
+
"name": "Qiqi from Genshin Impact",
|
1056 |
+
"status": "not recognized"
|
1057 |
+
},
|
1058 |
+
{
|
1059 |
+
"name": "Sandrone from Genshin Impact",
|
1060 |
+
"status": "not recognized"
|
1061 |
+
},
|
1062 |
+
{
|
1063 |
+
"name": "Sayu from Genshin Impact",
|
1064 |
+
"status": "not recognized"
|
1065 |
+
},
|
1066 |
+
{
|
1067 |
+
"name": "Sigewinne from Genshin Impact",
|
1068 |
+
"status": "not recognized"
|
1069 |
+
},
|
1070 |
+
{
|
1071 |
+
"name": "Yaoyao from Genshin Impact",
|
1072 |
+
"status": "not recognized"
|
1073 |
+
},
|
1074 |
+
{
|
1075 |
+
"name": "Elsa from Frozen",
|
1076 |
+
"status": "recognized"
|
1077 |
+
},
|
1078 |
+
{
|
1079 |
+
"name": "Anna from Frozen",
|
1080 |
+
"status": "recognized"
|
1081 |
+
},
|
1082 |
+
{
|
1083 |
+
"name": "Snow White from Snow White",
|
1084 |
+
"status": "recognized"
|
1085 |
+
},
|
1086 |
+
{
|
1087 |
+
"name": "Alice from Alice in Wonderland",
|
1088 |
+
"status": "recognized"
|
1089 |
+
},
|
1090 |
+
{
|
1091 |
+
"name": "Ariel from The Little Mermaid",
|
1092 |
+
"status": "recognized"
|
1093 |
+
},
|
1094 |
+
{
|
1095 |
+
"name": "Jasmine from Aladdin",
|
1096 |
+
"status": "recognized"
|
1097 |
+
},
|
1098 |
+
{
|
1099 |
+
"name": "Maleficent from Sleeping Beauty",
|
1100 |
+
"status": "recognized"
|
1101 |
+
},
|
1102 |
+
{
|
1103 |
+
"name": "Merida from Brave",
|
1104 |
+
"status": "recognized"
|
1105 |
+
},
|
1106 |
+
{
|
1107 |
+
"name": "Moana from Moana",
|
1108 |
+
"status": "recognized"
|
1109 |
+
},
|
1110 |
+
{
|
1111 |
+
"name": "Rapunzel from Tangled",
|
1112 |
+
"status": "recognized"
|
1113 |
+
},
|
1114 |
+
{
|
1115 |
+
"name": "Tinker Bell from Peter Pan",
|
1116 |
+
"status": "recognized"
|
1117 |
+
},
|
1118 |
+
{
|
1119 |
+
"name": "Mrs. Incredible / Helen Parr from The Incredibles",
|
1120 |
+
"status": "recognized"
|
1121 |
+
},
|
1122 |
+
{
|
1123 |
+
"name": "Violet Parr from The Incredibles",
|
1124 |
+
"status": "recognized"
|
1125 |
+
},
|
1126 |
+
{
|
1127 |
+
"name": "Judy Hopps from Zootopia",
|
1128 |
+
"status": "recognized"
|
1129 |
+
},
|
1130 |
+
{
|
1131 |
+
"name": "Kim Possible from Kim Possible",
|
1132 |
+
"status": "recognized"
|
1133 |
+
},
|
1134 |
+
{
|
1135 |
+
"name": "Stitch from Lilo and Stitch",
|
1136 |
+
"status": "recognized"
|
1137 |
+
},
|
1138 |
+
{
|
1139 |
+
"name": "Megara",
|
1140 |
+
"status": "not recognized"
|
1141 |
+
},
|
1142 |
+
{
|
1143 |
+
"name": "Pocahontas",
|
1144 |
+
"status": "not recognized"
|
1145 |
+
},
|
1146 |
+
{
|
1147 |
+
"name": "Aurora",
|
1148 |
+
"status": "not recognized"
|
1149 |
+
},
|
1150 |
+
{
|
1151 |
+
"name": "Belle",
|
1152 |
+
"status": "not recognized"
|
1153 |
+
},
|
1154 |
+
{
|
1155 |
+
"name": "Cinderella",
|
1156 |
+
"status": "not recognized"
|
1157 |
+
},
|
1158 |
+
{
|
1159 |
+
"name": "Daisy Duck",
|
1160 |
+
"status": "not recognized"
|
1161 |
+
},
|
1162 |
+
{
|
1163 |
+
"name": "Mulan",
|
1164 |
+
"status": "not recognized"
|
1165 |
+
},
|
1166 |
+
{
|
1167 |
+
"name": "Melody",
|
1168 |
+
"status": "not recognized"
|
1169 |
+
},
|
1170 |
+
{
|
1171 |
+
"name": "Ursula",
|
1172 |
+
"status": "not recognized"
|
1173 |
+
},
|
1174 |
+
{
|
1175 |
+
"name": "Morgana",
|
1176 |
+
"status": "not recognized"
|
1177 |
+
},
|
1178 |
+
{
|
1179 |
+
"name": "Nala",
|
1180 |
+
"status": "not recognized"
|
1181 |
+
},
|
1182 |
+
{
|
1183 |
+
"name": "Tiana",
|
1184 |
+
"status": "not recognized"
|
1185 |
+
},
|
1186 |
+
{
|
1187 |
+
"name": "Wendy",
|
1188 |
+
"status": "not recognized"
|
1189 |
+
},
|
1190 |
+
{
|
1191 |
+
"name": "Captain Marvel",
|
1192 |
+
"status": "recognized"
|
1193 |
+
},
|
1194 |
+
{
|
1195 |
+
"name": "Black Widow",
|
1196 |
+
"status": "recognized"
|
1197 |
+
},
|
1198 |
+
{
|
1199 |
+
"name": "Scarlet Witch",
|
1200 |
+
"status": "recognized"
|
1201 |
+
},
|
1202 |
+
{
|
1203 |
+
"name": "She Hulk",
|
1204 |
+
"status": "recognized"
|
1205 |
+
},
|
1206 |
+
{
|
1207 |
+
"name": "Black Cat",
|
1208 |
+
"status": "recognized"
|
1209 |
+
},
|
1210 |
+
{
|
1211 |
+
"name": "Emma Frost",
|
1212 |
+
"status": "recognized"
|
1213 |
+
},
|
1214 |
+
{
|
1215 |
+
"name": "Peggy Carter",
|
1216 |
+
"status": "recognized"
|
1217 |
+
},
|
1218 |
+
{
|
1219 |
+
"name": "Ms. Marvel",
|
1220 |
+
"status": "recognized"
|
1221 |
+
},
|
1222 |
+
{
|
1223 |
+
"name": "Spider Man",
|
1224 |
+
"status": "recognized"
|
1225 |
+
},
|
1226 |
+
{
|
1227 |
+
"name": "Spider Gwen",
|
1228 |
+
"status": "recognized"
|
1229 |
+
},
|
1230 |
+
{
|
1231 |
+
"name": "Venom",
|
1232 |
+
"status": "recognized"
|
1233 |
+
},
|
1234 |
+
{
|
1235 |
+
"name": "Spider Woman",
|
1236 |
+
"status": "partial"
|
1237 |
+
},
|
1238 |
+
{
|
1239 |
+
"name": "Hulk / The Incredible Hulk",
|
1240 |
+
"status": "partial"
|
1241 |
+
},
|
1242 |
+
{
|
1243 |
+
"name": "Deadpool",
|
1244 |
+
"status": "partial"
|
1245 |
+
},
|
1246 |
+
{
|
1247 |
+
"name": "Thanos",
|
1248 |
+
"status": "partial"
|
1249 |
+
},
|
1250 |
+
{
|
1251 |
+
"name": "Thor",
|
1252 |
+
"status": "not recognized"
|
1253 |
+
},
|
1254 |
+
{
|
1255 |
+
"name": "Loki",
|
1256 |
+
"status": "not recognized"
|
1257 |
+
},
|
1258 |
+
{
|
1259 |
+
"name": "Iron Man",
|
1260 |
+
"status": "not recognized"
|
1261 |
+
},
|
1262 |
+
{
|
1263 |
+
"name": "Wolverine",
|
1264 |
+
"status": "not recognized"
|
1265 |
+
},
|
1266 |
+
{
|
1267 |
+
"name": "Black Panther",
|
1268 |
+
"status": "not recognized"
|
1269 |
+
},
|
1270 |
+
{
|
1271 |
+
"name": "Groot",
|
1272 |
+
"status": "not recognized"
|
1273 |
+
},
|
1274 |
+
{
|
1275 |
+
"name": "Silver Surfer",
|
1276 |
+
"status": "not recognized"
|
1277 |
+
},
|
1278 |
+
{
|
1279 |
+
"name": "Gamora",
|
1280 |
+
"status": "not recognized"
|
1281 |
+
},
|
1282 |
+
{
|
1283 |
+
"name": "Nebula",
|
1284 |
+
"status": "not recognized"
|
1285 |
+
},
|
1286 |
+
{
|
1287 |
+
"name": "Mystique",
|
1288 |
+
"status": "not recognized"
|
1289 |
+
},
|
1290 |
+
{
|
1291 |
+
"name": "Mary Jane",
|
1292 |
+
"status": "not recognized"
|
1293 |
+
},
|
1294 |
+
{
|
1295 |
+
"name": "Polaris",
|
1296 |
+
"status": "not recognized"
|
1297 |
+
},
|
1298 |
+
{
|
1299 |
+
"name": "Invisible Woman",
|
1300 |
+
"status": "not recognized"
|
1301 |
+
},
|
1302 |
+
{
|
1303 |
+
"name": "Storm",
|
1304 |
+
"status": "not recognized"
|
1305 |
+
},
|
1306 |
+
{
|
1307 |
+
"name": "Wasp",
|
1308 |
+
"status": "not recognized"
|
1309 |
+
},
|
1310 |
+
{
|
1311 |
+
"name": "Rogue",
|
1312 |
+
"status": "not recognized"
|
1313 |
+
},
|
1314 |
+
{
|
1315 |
+
"name": "Harley Quinn from DC",
|
1316 |
+
"status": "recognized"
|
1317 |
+
},
|
1318 |
+
{
|
1319 |
+
"name": "Wonder Woman from DC",
|
1320 |
+
"status": "recognized"
|
1321 |
+
},
|
1322 |
+
{
|
1323 |
+
"name": "Poison Ivy from DC",
|
1324 |
+
"status": "recognized"
|
1325 |
+
},
|
1326 |
+
{
|
1327 |
+
"name": "Batgirl from DC",
|
1328 |
+
"status": "recognized"
|
1329 |
+
},
|
1330 |
+
{
|
1331 |
+
"name": "CatWoman from DC",
|
1332 |
+
"status": "recognized"
|
1333 |
+
},
|
1334 |
+
{
|
1335 |
+
"name": "Zatanna Zatara from DC",
|
1336 |
+
"status": "recognized"
|
1337 |
+
},
|
1338 |
+
{
|
1339 |
+
"name": "Black Canary from DC",
|
1340 |
+
"status": "recognized"
|
1341 |
+
},
|
1342 |
+
{
|
1343 |
+
"name": "Mera from DC",
|
1344 |
+
"status": "recognized"
|
1345 |
+
},
|
1346 |
+
{
|
1347 |
+
"name": "Supergirl from DC",
|
1348 |
+
"status": "recognized"
|
1349 |
+
},
|
1350 |
+
{
|
1351 |
+
"name": "Starfire from DC",
|
1352 |
+
"status": "recognized"
|
1353 |
+
},
|
1354 |
+
{
|
1355 |
+
"name": "Raven from DC",
|
1356 |
+
"status": "recognized"
|
1357 |
+
},
|
1358 |
+
{
|
1359 |
+
"name": "Power Girl from DC",
|
1360 |
+
"status": "recognized"
|
1361 |
+
},
|
1362 |
+
{
|
1363 |
+
"name": "Darth Vader from Star Wars",
|
1364 |
+
"status": "recognized"
|
1365 |
+
},
|
1366 |
+
{
|
1367 |
+
"name": "Stormtrooper from Star Wars",
|
1368 |
+
"status": "recognized"
|
1369 |
+
},
|
1370 |
+
{
|
1371 |
+
"name": "Princess Leia from Star Wars",
|
1372 |
+
"status": "recognized"
|
1373 |
+
},
|
1374 |
+
{
|
1375 |
+
"name": "Ahsoka from Star Wars",
|
1376 |
+
"status": "recognized"
|
1377 |
+
},
|
1378 |
+
{
|
1379 |
+
"name": "Rey from Star Wars",
|
1380 |
+
"status": "recognized"
|
1381 |
+
},
|
1382 |
+
{
|
1383 |
+
"name": "Aayla Secura from Star Wars",
|
1384 |
+
"status": "recognized"
|
1385 |
+
},
|
1386 |
+
{
|
1387 |
+
"name": "Darth Talon from Star Wars",
|
1388 |
+
"status": "recognized"
|
1389 |
+
},
|
1390 |
+
{
|
1391 |
+
"name": "Boba Fett from Star Wars",
|
1392 |
+
"status": "partial"
|
1393 |
+
},
|
1394 |
+
{
|
1395 |
+
"name": "Jabba the Hutt from Star Wars",
|
1396 |
+
"status": "partial"
|
1397 |
+
},
|
1398 |
+
{
|
1399 |
+
"name": "Yoda from Star Wars",
|
1400 |
+
"status": "partial"
|
1401 |
+
},
|
1402 |
+
{
|
1403 |
+
"name": "Chewbacca from Star Wars",
|
1404 |
+
"status": "partial"
|
1405 |
+
},
|
1406 |
+
{
|
1407 |
+
"name": "Kylo Ren from Star Wars",
|
1408 |
+
"status": "partial"
|
1409 |
+
},
|
1410 |
+
{
|
1411 |
+
"name": "Padm\u00c3\u00a9",
|
1412 |
+
"status": "not recognized"
|
1413 |
+
},
|
1414 |
+
{
|
1415 |
+
"name": "Sab\u00c3\u00a9",
|
1416 |
+
"status": "not recognized"
|
1417 |
+
},
|
1418 |
+
{
|
1419 |
+
"name": "Darth Maul",
|
1420 |
+
"status": "not recognized"
|
1421 |
+
},
|
1422 |
+
{
|
1423 |
+
"name": "R2-D2",
|
1424 |
+
"status": "not recognized"
|
1425 |
+
},
|
1426 |
+
{
|
1427 |
+
"name": "C-3PO",
|
1428 |
+
"status": "not recognized"
|
1429 |
+
},
|
1430 |
+
{
|
1431 |
+
"name": "Luke Skywalker",
|
1432 |
+
"status": "not recognized"
|
1433 |
+
},
|
1434 |
+
{
|
1435 |
+
"name": "Anakin Skywalker",
|
1436 |
+
"status": "not recognized"
|
1437 |
+
},
|
1438 |
+
{
|
1439 |
+
"name": "Han Solo",
|
1440 |
+
"status": "not recognized"
|
1441 |
+
},
|
1442 |
+
{
|
1443 |
+
"name": "Jar Jar Binks",
|
1444 |
+
"status": "not recognized"
|
1445 |
+
},
|
1446 |
+
{
|
1447 |
+
"name": "Palpatine",
|
1448 |
+
"status": "not recognized"
|
1449 |
+
},
|
1450 |
+
{
|
1451 |
+
"name": "Mace Windu",
|
1452 |
+
"status": "not recognized"
|
1453 |
+
},
|
1454 |
+
{
|
1455 |
+
"name": "General Grievous",
|
1456 |
+
"status": "not recognized"
|
1457 |
+
},
|
1458 |
+
{
|
1459 |
+
"name": "Star Trek",
|
1460 |
+
"status": "not recognized"
|
1461 |
+
},
|
1462 |
+
{
|
1463 |
+
"name": "Winnie The Pooh",
|
1464 |
+
"status": "not recognized"
|
1465 |
+
},
|
1466 |
+
{
|
1467 |
+
"name": "Despicable Me",
|
1468 |
+
"status": "not recognized"
|
1469 |
+
},
|
1470 |
+
{
|
1471 |
+
"name": "Wall-E",
|
1472 |
+
"status": "not recognized"
|
1473 |
+
},
|
1474 |
+
{
|
1475 |
+
"name": "Looney Tunes",
|
1476 |
+
"status": "not recognized"
|
1477 |
+
},
|
1478 |
+
{
|
1479 |
+
"name": "Stardew Valley",
|
1480 |
+
"status": "not recognized"
|
1481 |
+
},
|
1482 |
+
{
|
1483 |
+
"name": "Terraria",
|
1484 |
+
"status": "not recognized"
|
1485 |
+
},
|
1486 |
+
{
|
1487 |
+
"name": "Clash of Clans / Clash Royale",
|
1488 |
+
"status": "not recognized"
|
1489 |
+
},
|
1490 |
+
{
|
1491 |
+
"name": "Fiona from (Adventure Time)",
|
1492 |
+
"status": "recognized"
|
1493 |
+
},
|
1494 |
+
{
|
1495 |
+
"name": "Flame Princess from (Adventure time)",
|
1496 |
+
"status": "recognized"
|
1497 |
+
},
|
1498 |
+
{
|
1499 |
+
"name": "Marceline from (Adventure time)",
|
1500 |
+
"status": "recognized"
|
1501 |
+
},
|
1502 |
+
{
|
1503 |
+
"name": "Princess Bubblegum from (Adventure time)",
|
1504 |
+
"status": "recognized"
|
1505 |
+
},
|
1506 |
+
{
|
1507 |
+
"name": "Jasmine from (Aladdin)",
|
1508 |
+
"status": "recognized"
|
1509 |
+
},
|
1510 |
+
{
|
1511 |
+
"name": "Alice from (Alice in Wonderland)",
|
1512 |
+
"status": "recognized"
|
1513 |
+
},
|
1514 |
+
{
|
1515 |
+
"name": "Nicole Watterson from (Amazing World of Gumball)",
|
1516 |
+
"status": "recognized"
|
1517 |
+
},
|
1518 |
+
{
|
1519 |
+
"name": "Audie from (Animal crossing)",
|
1520 |
+
"status": "recognized"
|
1521 |
+
},
|
1522 |
+
{
|
1523 |
+
"name": "Isabelle from (Animal Crossing)",
|
1524 |
+
"status": "recognized"
|
1525 |
+
},
|
1526 |
+
{
|
1527 |
+
"name": "Anhk from (Animal Crossing:New Horizons)",
|
1528 |
+
"status": "recognized"
|
1529 |
+
},
|
1530 |
+
{
|
1531 |
+
"name": "Valkyrie from (Apex Legends)",
|
1532 |
+
"status": "recognized"
|
1533 |
+
},
|
1534 |
+
{
|
1535 |
+
"name": "Twins from (Atomic Heart)",
|
1536 |
+
"status": "recognized"
|
1537 |
+
},
|
1538 |
+
{
|
1539 |
+
"name": "Asami Sato from (Avatar)",
|
1540 |
+
"status": "recognized"
|
1541 |
+
},
|
1542 |
+
{
|
1543 |
+
"name": "Ty Lee from (Avatar)",
|
1544 |
+
"status": "recognized"
|
1545 |
+
},
|
1546 |
+
{
|
1547 |
+
"name": "Azula from (Avatar:The last airbender)",
|
1548 |
+
"status": "recognized"
|
1549 |
+
},
|
1550 |
+
{
|
1551 |
+
"name": "Katara from (Avatar:The last airbender)",
|
1552 |
+
"status": "recognized"
|
1553 |
+
},
|
1554 |
+
{
|
1555 |
+
"name": "Toph Baifong from (Avatar:The last airbender)",
|
1556 |
+
"status": "recognized"
|
1557 |
+
},
|
1558 |
+
{
|
1559 |
+
"name": "Bayonetta from (Bayonetta)",
|
1560 |
+
"status": "recognized"
|
1561 |
+
},
|
1562 |
+
{
|
1563 |
+
"name": "Belle from (Beauty & the Beast)",
|
1564 |
+
"status": "recognized"
|
1565 |
+
},
|
1566 |
+
{
|
1567 |
+
"name": "Gwen Tennyson from (Ben10)",
|
1568 |
+
"status": "recognized"
|
1569 |
+
},
|
1570 |
+
{
|
1571 |
+
"name": "Aunt Cass from (Big Hero 6)",
|
1572 |
+
"status": "recognized"
|
1573 |
+
},
|
1574 |
+
{
|
1575 |
+
"name": "Elizabeth Comstock from (Bioshock:Burial at Sea)",
|
1576 |
+
"status": "recognized"
|
1577 |
+
},
|
1578 |
+
{
|
1579 |
+
"name": "Matsumoto Rangiku from (Bleach)",
|
1580 |
+
"status": "recognized"
|
1581 |
+
},
|
1582 |
+
{
|
1583 |
+
"name": "Nanao Ise from (Bleach)",
|
1584 |
+
"status": "recognized"
|
1585 |
+
},
|
1586 |
+
{
|
1587 |
+
"name": "Nelliel Tu from (Bleach)",
|
1588 |
+
"status": "recognized"
|
1589 |
+
},
|
1590 |
+
{
|
1591 |
+
"name": "Orihime Inoue from (Bleach)",
|
1592 |
+
"status": "recognized"
|
1593 |
+
},
|
1594 |
+
{
|
1595 |
+
"name": "Rangiku Matsumoto from (Bleach)",
|
1596 |
+
"status": "recognized"
|
1597 |
+
},
|
1598 |
+
{
|
1599 |
+
"name": "Rukia Kuchiki from (Bleach)",
|
1600 |
+
"status": "recognized"
|
1601 |
+
},
|
1602 |
+
{
|
1603 |
+
"name": "Tatsuki Arisawa from (Bleach)",
|
1604 |
+
"status": "recognized"
|
1605 |
+
},
|
1606 |
+
{
|
1607 |
+
"name": "Tier Harribel from (Bleach)",
|
1608 |
+
"status": "recognized"
|
1609 |
+
},
|
1610 |
+
{
|
1611 |
+
"name": "Yoruichi Shihoin from (Bleach)",
|
1612 |
+
"status": "recognized"
|
1613 |
+
},
|
1614 |
+
{
|
1615 |
+
"name": "Asuna Ichinose from (Blue Archive)",
|
1616 |
+
"status": "recognized"
|
1617 |
+
},
|
1618 |
+
{
|
1619 |
+
"name": "Makima from (Chainsaw Man)",
|
1620 |
+
"status": "recognized"
|
1621 |
+
},
|
1622 |
+
{
|
1623 |
+
"name": "Vampirella from (Comics)",
|
1624 |
+
"status": "recognized"
|
1625 |
+
},
|
1626 |
+
{
|
1627 |
+
"name": "Faye Valentine from (Cowboy Bebop)",
|
1628 |
+
"status": "recognized"
|
1629 |
+
},
|
1630 |
+
{
|
1631 |
+
"name": "Judy Alverez from (Cyberpunk 2077)",
|
1632 |
+
"status": "recognized"
|
1633 |
+
},
|
1634 |
+
{
|
1635 |
+
"name": "Panam Palmer from (Cyberpunk 2077)",
|
1636 |
+
"status": "recognized"
|
1637 |
+
},
|
1638 |
+
{
|
1639 |
+
"name": "Cassandra Cain from (DC)",
|
1640 |
+
"status": "recognized"
|
1641 |
+
},
|
1642 |
+
{
|
1643 |
+
"name": "Batgirl from (DC Comics)",
|
1644 |
+
"status": "recognized"
|
1645 |
+
},
|
1646 |
+
{
|
1647 |
+
"name": "Batman from (DC Comics)",
|
1648 |
+
"status": "recognized"
|
1649 |
+
},
|
1650 |
+
{
|
1651 |
+
"name": "Black Canary from (DC Comics)",
|
1652 |
+
"status": "recognized"
|
1653 |
+
},
|
1654 |
+
{
|
1655 |
+
"name": "Catwoman from (DC Comics)",
|
1656 |
+
"status": "recognized"
|
1657 |
+
},
|
1658 |
+
{
|
1659 |
+
"name": "Harley Quinn from (DC Comics)",
|
1660 |
+
"status": "recognized"
|
1661 |
+
},
|
1662 |
+
{
|
1663 |
+
"name": "Mera from (DC Comics)",
|
1664 |
+
"status": "recognized"
|
1665 |
+
},
|
1666 |
+
{
|
1667 |
+
"name": "Poison Ivy from (DC Comics)",
|
1668 |
+
"status": "recognized"
|
1669 |
+
},
|
1670 |
+
{
|
1671 |
+
"name": "Powergirl from (DC Comics)",
|
1672 |
+
"status": "recognized"
|
1673 |
+
},
|
1674 |
+
{
|
1675 |
+
"name": "Superman from (DC Comics)",
|
1676 |
+
"status": "recognized"
|
1677 |
+
},
|
1678 |
+
{
|
1679 |
+
"name": "Wonder Woman from (DC Comics)",
|
1680 |
+
"status": "recognized"
|
1681 |
+
},
|
1682 |
+
{
|
1683 |
+
"name": "Zatanna Zatara from (DC Comics)",
|
1684 |
+
"status": "recognized"
|
1685 |
+
},
|
1686 |
+
{
|
1687 |
+
"name": "Superwoman/Mary batson from (DCAU:Crisis on Two Earths)",
|
1688 |
+
"status": "recognized"
|
1689 |
+
},
|
1690 |
+
{
|
1691 |
+
"name": "Dexter's Mom from (Dexter's Laboratory)",
|
1692 |
+
"status": "recognized"
|
1693 |
+
},
|
1694 |
+
{
|
1695 |
+
"name": "Merida from (Disney's Brave)",
|
1696 |
+
"status": "recognized"
|
1697 |
+
},
|
1698 |
+
{
|
1699 |
+
"name": "Anna from (Disney's Frozen)",
|
1700 |
+
"status": "recognized"
|
1701 |
+
},
|
1702 |
+
{
|
1703 |
+
"name": "Elsa from (Disney's Frozen)",
|
1704 |
+
"status": "recognized"
|
1705 |
+
},
|
1706 |
+
{
|
1707 |
+
"name": "Rapunzel from (Disney's Rapunzel)",
|
1708 |
+
"status": "recognized"
|
1709 |
+
},
|
1710 |
+
{
|
1711 |
+
"name": "Maleficent from (Disney's Sleeping beauty)",
|
1712 |
+
"status": "recognized"
|
1713 |
+
},
|
1714 |
+
{
|
1715 |
+
"name": "Nagatoro Hayase from (Don't Toy with Me Miss Nagatoro)",
|
1716 |
+
"status": "recognized"
|
1717 |
+
},
|
1718 |
+
{
|
1719 |
+
"name": "Crystal Maiden from (Dota 2)",
|
1720 |
+
"status": "recognized"
|
1721 |
+
},
|
1722 |
+
{
|
1723 |
+
"name": "Morrigan from (Dragon Age)",
|
1724 |
+
"status": "recognized"
|
1725 |
+
},
|
1726 |
+
{
|
1727 |
+
"name": "Bianca Whitaker from (Dragon Quest V)",
|
1728 |
+
"status": "recognized"
|
1729 |
+
},
|
1730 |
+
{
|
1731 |
+
"name": "Android 21 from (Dragonball Z)",
|
1732 |
+
"status": "recognized"
|
1733 |
+
},
|
1734 |
+
{
|
1735 |
+
"name": "Android 18 from (Dragonball Z/GT/Super)",
|
1736 |
+
"status": "recognized"
|
1737 |
+
},
|
1738 |
+
{
|
1739 |
+
"name": "Bulma from (Dragonball/Z/GT/Super)",
|
1740 |
+
"status": "recognized"
|
1741 |
+
},
|
1742 |
+
{
|
1743 |
+
"name": "ChiChi from (Dragonball/Z/GT/Super)",
|
1744 |
+
"status": "recognized"
|
1745 |
+
},
|
1746 |
+
{
|
1747 |
+
"name": "Melina from (Elden Ring)",
|
1748 |
+
"status": "recognized"
|
1749 |
+
},
|
1750 |
+
{
|
1751 |
+
"name": "Ranni \u00e2\u20ac\u201c The Witch from (Elden Ring)",
|
1752 |
+
"status": "recognized"
|
1753 |
+
},
|
1754 |
+
{
|
1755 |
+
"name": "Eureka from (Eureka Seven)",
|
1756 |
+
"status": "recognized"
|
1757 |
+
},
|
1758 |
+
{
|
1759 |
+
"name": "Rin Tohsaka from (Fate/Stay Night)",
|
1760 |
+
"status": "recognized"
|
1761 |
+
},
|
1762 |
+
{
|
1763 |
+
"name": "Scathach from (Fate/Stay Night)",
|
1764 |
+
"status": "recognized"
|
1765 |
+
},
|
1766 |
+
{
|
1767 |
+
"name": "Aerith Gainsborough from (Final Fantasy 7 Remake)",
|
1768 |
+
"status": "recognized"
|
1769 |
+
},
|
1770 |
+
{
|
1771 |
+
"name": "Jessie Rasberry from (Final Fantasy 7 Remake)",
|
1772 |
+
"status": "recognized"
|
1773 |
+
},
|
1774 |
+
{
|
1775 |
+
"name": "Sephiroth from (Final Fantasy 7 Remake)",
|
1776 |
+
"status": "recognized"
|
1777 |
+
},
|
1778 |
+
{
|
1779 |
+
"name": "Tifa Lockheart from (Final Fantasy 7 Remake)",
|
1780 |
+
"status": "recognized"
|
1781 |
+
},
|
1782 |
+
{
|
1783 |
+
"name": "Yuffie Kasigari from (Final Fantasy 7 Remake)",
|
1784 |
+
"status": "recognized"
|
1785 |
+
},
|
1786 |
+
{
|
1787 |
+
"name": "Lulu from (Final Fantasy X)",
|
1788 |
+
"status": "recognized"
|
1789 |
+
},
|
1790 |
+
{
|
1791 |
+
"name": "Poison from (Final Fight)",
|
1792 |
+
"status": "recognized"
|
1793 |
+
},
|
1794 |
+
{
|
1795 |
+
"name": "Poison from (Final Fight)",
|
1796 |
+
"status": "recognized"
|
1797 |
+
},
|
1798 |
+
{
|
1799 |
+
"name": "Manuela from (Fire Emblem)",
|
1800 |
+
"status": "recognized"
|
1801 |
+
},
|
1802 |
+
{
|
1803 |
+
"name": "Chica from (Five Nights at Freddy)",
|
1804 |
+
"status": "recognized"
|
1805 |
+
},
|
1806 |
+
{
|
1807 |
+
"name": "Wilma Flintstone from (Flinstones)",
|
1808 |
+
"status": "partial"
|
1809 |
+
},
|
1810 |
+
{
|
1811 |
+
"name": "Frankie Foster from (Fosters home for imaginary friends)",
|
1812 |
+
"status": "recognized"
|
1813 |
+
},
|
1814 |
+
{
|
1815 |
+
"name": "Olivier Mira Armstrong from (Fullmetal Alchemist)",
|
1816 |
+
"status": "recognized"
|
1817 |
+
},
|
1818 |
+
{
|
1819 |
+
"name": "Motoko Kusanagi from (Ghost in the Shell)",
|
1820 |
+
"status": "recognized"
|
1821 |
+
},
|
1822 |
+
{
|
1823 |
+
"name": "Peg Pete from (Goof troop)",
|
1824 |
+
"status": "recognized"
|
1825 |
+
},
|
1826 |
+
{
|
1827 |
+
"name": "Mabel Pines from (Gravity Falls)",
|
1828 |
+
"status": "recognized"
|
1829 |
+
},
|
1830 |
+
{
|
1831 |
+
"name": "Pacifica Northwest from (Gravity Falls)",
|
1832 |
+
"status": "recognized"
|
1833 |
+
},
|
1834 |
+
{
|
1835 |
+
"name": "Wendy Corduroy from (Gravity Falls)",
|
1836 |
+
"status": "recognized"
|
1837 |
+
},
|
1838 |
+
{
|
1839 |
+
"name": "Bridget from (Guilty Gear)",
|
1840 |
+
"status": "recognized"
|
1841 |
+
},
|
1842 |
+
{
|
1843 |
+
"name": "Dizzy from (Guilty Gear)",
|
1844 |
+
"status": "recognized"
|
1845 |
+
},
|
1846 |
+
{
|
1847 |
+
"name": "Yoko Littner from (Gurren Lagann)",
|
1848 |
+
"status": "recognized"
|
1849 |
+
},
|
1850 |
+
{
|
1851 |
+
"name": "Cortana from (Halo)",
|
1852 |
+
"status": "recognized"
|
1853 |
+
},
|
1854 |
+
{
|
1855 |
+
"name": "Hermione Granger from (Harry Potter)",
|
1856 |
+
"status": "recognized"
|
1857 |
+
},
|
1858 |
+
{
|
1859 |
+
"name": "Haydee from (Haydee)",
|
1860 |
+
"status": "recognized"
|
1861 |
+
},
|
1862 |
+
{
|
1863 |
+
"name": "Angel Dust from (Hazbin Hotel)",
|
1864 |
+
"status": "recognized"
|
1865 |
+
},
|
1866 |
+
{
|
1867 |
+
"name": "Charlie Morningstar from (Hazbin Hotel)",
|
1868 |
+
"status": "recognized"
|
1869 |
+
},
|
1870 |
+
{
|
1871 |
+
"name": "Loona from (Hazbin Hotel)",
|
1872 |
+
"status": "recognized"
|
1873 |
+
},
|
1874 |
+
{
|
1875 |
+
"name": "Justice from (HellTaker)",
|
1876 |
+
"status": "recognized"
|
1877 |
+
},
|
1878 |
+
{
|
1879 |
+
"name": "Lucifer from (HellTaker)",
|
1880 |
+
"status": "recognized"
|
1881 |
+
},
|
1882 |
+
{
|
1883 |
+
"name": "Modeus from (HellTaker)",
|
1884 |
+
"status": "recognized"
|
1885 |
+
},
|
1886 |
+
{
|
1887 |
+
"name": "Rias Gremory from (High School DxD)",
|
1888 |
+
"status": "recognized"
|
1889 |
+
},
|
1890 |
+
{
|
1891 |
+
"name": "Himejima Akeno from (Highschool DxD)",
|
1892 |
+
"status": "recognized"
|
1893 |
+
},
|
1894 |
+
{
|
1895 |
+
"name": "Aloy from (Horizon Zero Dawn)",
|
1896 |
+
"status": "recognized"
|
1897 |
+
},
|
1898 |
+
{
|
1899 |
+
"name": "Mavis Dracula from (Hotel Transylvania)",
|
1900 |
+
"status": "recognized"
|
1901 |
+
},
|
1902 |
+
{
|
1903 |
+
"name": "Kagome Higurashi from (Inuyasha)",
|
1904 |
+
"status": "recognized"
|
1905 |
+
},
|
1906 |
+
{
|
1907 |
+
"name": "Kagura from (Inuyasha)",
|
1908 |
+
"status": "recognized"
|
1909 |
+
},
|
1910 |
+
{
|
1911 |
+
"name": "Jade Chan from (Jackie Chan Adventures)",
|
1912 |
+
"status": "recognized"
|
1913 |
+
},
|
1914 |
+
{
|
1915 |
+
"name": "Nobara Kugisaki from (Jujutsu Kaisen)",
|
1916 |
+
"status": "recognized"
|
1917 |
+
},
|
1918 |
+
{
|
1919 |
+
"name": "Supergirl/Galetia from (Justice League Unlimited)",
|
1920 |
+
"status": "recognized"
|
1921 |
+
},
|
1922 |
+
{
|
1923 |
+
"name": "Mako Mankanshoku from (Kill la Kill)",
|
1924 |
+
"status": "recognized"
|
1925 |
+
},
|
1926 |
+
{
|
1927 |
+
"name": "Nonon Jakuzure from (Kill la Kill)",
|
1928 |
+
"status": "recognized"
|
1929 |
+
},
|
1930 |
+
{
|
1931 |
+
"name": "Nui Harime from (Kill la Kill)",
|
1932 |
+
"status": "recognized"
|
1933 |
+
},
|
1934 |
+
{
|
1935 |
+
"name": "Ryuko Matoi from (Kill la Kill)",
|
1936 |
+
"status": "recognized"
|
1937 |
+
},
|
1938 |
+
{
|
1939 |
+
"name": "Satsuki Kiryuin from (Kill la Kill)",
|
1940 |
+
"status": "recognized"
|
1941 |
+
},
|
1942 |
+
{
|
1943 |
+
"name": "Ann Possible from (Kim Possible)",
|
1944 |
+
"status": "recognized"
|
1945 |
+
},
|
1946 |
+
{
|
1947 |
+
"name": "Kim Possible from (Kim Possible)",
|
1948 |
+
"status": "recognized"
|
1949 |
+
},
|
1950 |
+
{
|
1951 |
+
"name": "Shego from (Kim Possible)",
|
1952 |
+
"status": "recognized"
|
1953 |
+
},
|
1954 |
+
{
|
1955 |
+
"name": "Mai Shiranui from (King of Fighters)",
|
1956 |
+
"status": "recognized"
|
1957 |
+
},
|
1958 |
+
{
|
1959 |
+
"name": "Shermie from (King of Fighters)",
|
1960 |
+
"status": "recognized"
|
1961 |
+
},
|
1962 |
+
{
|
1963 |
+
"name": "Aqua from (Konasuba)",
|
1964 |
+
"status": "recognized"
|
1965 |
+
},
|
1966 |
+
{
|
1967 |
+
"name": "Darkness from (Konasuba)",
|
1968 |
+
"status": "recognized"
|
1969 |
+
},
|
1970 |
+
{
|
1971 |
+
"name": "Megumin from (Konasuba)",
|
1972 |
+
"status": "recognized"
|
1973 |
+
},
|
1974 |
+
{
|
1975 |
+
"name": "YunYun from (Konasuba)",
|
1976 |
+
"status": "recognized"
|
1977 |
+
},
|
1978 |
+
{
|
1979 |
+
"name": "Wiz from (Konosuba)",
|
1980 |
+
"status": "recognized"
|
1981 |
+
},
|
1982 |
+
{
|
1983 |
+
"name": "Tigress from (Kung-Fu Panda)",
|
1984 |
+
"status": "recognized"
|
1985 |
+
},
|
1986 |
+
{
|
1987 |
+
"name": "Ellie from (Last of Us)",
|
1988 |
+
"status": "recognized"
|
1989 |
+
},
|
1990 |
+
{
|
1991 |
+
"name": "Ahri from (League of Legends)",
|
1992 |
+
"status": "recognized"
|
1993 |
+
},
|
1994 |
+
{
|
1995 |
+
"name": "Akali from (League of Legends)",
|
1996 |
+
"status": "recognized"
|
1997 |
+
},
|
1998 |
+
{
|
1999 |
+
"name": "Caitlyn from (League of Legends)",
|
2000 |
+
"status": "recognized"
|
2001 |
+
},
|
2002 |
+
{
|
2003 |
+
"name": "Fiora from (League of Legends)",
|
2004 |
+
"status": "recognized"
|
2005 |
+
},
|
2006 |
+
{
|
2007 |
+
"name": "Irelia from (League of Legends)",
|
2008 |
+
"status": "recognized"
|
2009 |
+
},
|
2010 |
+
{
|
2011 |
+
"name": "Jinx from (League of Legends)",
|
2012 |
+
"status": "recognized"
|
2013 |
+
},
|
2014 |
+
{
|
2015 |
+
"name": "Katarina from (League of Legends)",
|
2016 |
+
"status": "recognized"
|
2017 |
+
},
|
2018 |
+
{
|
2019 |
+
"name": "Leblanc from (League of Legends)",
|
2020 |
+
"status": "recognized"
|
2021 |
+
},
|
2022 |
+
{
|
2023 |
+
"name": "Lux from (League of Legends)",
|
2024 |
+
"status": "recognized"
|
2025 |
+
},
|
2026 |
+
{
|
2027 |
+
"name": "Miss Fortune from (League of Legends)",
|
2028 |
+
"status": "recognized"
|
2029 |
+
},
|
2030 |
+
{
|
2031 |
+
"name": "Morgana from (League of Legends)",
|
2032 |
+
"status": "recognized"
|
2033 |
+
},
|
2034 |
+
{
|
2035 |
+
"name": "Neeko from (League of Legends)",
|
2036 |
+
"status": "recognized"
|
2037 |
+
},
|
2038 |
+
{
|
2039 |
+
"name": "Nidalee from (League of Legends)",
|
2040 |
+
"status": "recognized"
|
2041 |
+
},
|
2042 |
+
{
|
2043 |
+
"name": "Qiyana from (League of Legends)",
|
2044 |
+
"status": "recognized"
|
2045 |
+
},
|
2046 |
+
{
|
2047 |
+
"name": "Riven from (League of Legends)",
|
2048 |
+
"status": "recognized"
|
2049 |
+
},
|
2050 |
+
{
|
2051 |
+
"name": "Samira from (League of Legends)",
|
2052 |
+
"status": "recognized"
|
2053 |
+
},
|
2054 |
+
{
|
2055 |
+
"name": "Senna from (League of Legends)",
|
2056 |
+
"status": "recognized"
|
2057 |
+
},
|
2058 |
+
{
|
2059 |
+
"name": "Seraphine from (League of Legends)",
|
2060 |
+
"status": "recognized"
|
2061 |
+
},
|
2062 |
+
{
|
2063 |
+
"name": "Sivir from (League of Legends)",
|
2064 |
+
"status": "recognized"
|
2065 |
+
},
|
2066 |
+
{
|
2067 |
+
"name": "Sona from (League of Legends)",
|
2068 |
+
"status": "recognized"
|
2069 |
+
},
|
2070 |
+
{
|
2071 |
+
"name": "Xayah from (League of Legends)",
|
2072 |
+
"status": "recognized"
|
2073 |
+
},
|
2074 |
+
{
|
2075 |
+
"name": "Zeri from (League of Legends)",
|
2076 |
+
"status": "recognized"
|
2077 |
+
},
|
2078 |
+
{
|
2079 |
+
"name": "Princess Zelda from (Legend of Zelda)",
|
2080 |
+
"status": "recognized"
|
2081 |
+
},
|
2082 |
+
{
|
2083 |
+
"name": "Midna from (Legend of Zelda: Twilight Princess)",
|
2084 |
+
"status": "recognized"
|
2085 |
+
},
|
2086 |
+
{
|
2087 |
+
"name": "Lana from (Legend of Zelda:Hyrule Warriors)",
|
2088 |
+
"status": "recognized"
|
2089 |
+
},
|
2090 |
+
{
|
2091 |
+
"name": "Nani Pelekai from (Lilo and Stitch)",
|
2092 |
+
"status": "recognized"
|
2093 |
+
},
|
2094 |
+
{
|
2095 |
+
"name": "Bugs Bunny from (Looney Tunes)",
|
2096 |
+
"status": "recognized"
|
2097 |
+
},
|
2098 |
+
{
|
2099 |
+
"name": "Link from (LoZ:BotW)",
|
2100 |
+
"status": "recognized"
|
2101 |
+
},
|
2102 |
+
{
|
2103 |
+
"name": "Mipha from (LoZ:BotW)",
|
2104 |
+
"status": "recognized"
|
2105 |
+
},
|
2106 |
+
{
|
2107 |
+
"name": "Paya from (LoZ:BotW)",
|
2108 |
+
"status": "recognized"
|
2109 |
+
},
|
2110 |
+
{
|
2111 |
+
"name": "Urbosa from (LoZ:BotW)",
|
2112 |
+
"status": "recognized"
|
2113 |
+
},
|
2114 |
+
{
|
2115 |
+
"name": "Malon from (LoZ:OoT)",
|
2116 |
+
"status": "recognized"
|
2117 |
+
},
|
2118 |
+
{
|
2119 |
+
"name": "Princess Ruto from (LoZ:OoT)",
|
2120 |
+
"status": "recognized"
|
2121 |
+
},
|
2122 |
+
{
|
2123 |
+
"name": "Princess Midna from (LoZ:TP)",
|
2124 |
+
"status": "recognized"
|
2125 |
+
},
|
2126 |
+
{
|
2127 |
+
"name": "Black Cat from (Marvel)",
|
2128 |
+
"status": "recognized"
|
2129 |
+
},
|
2130 |
+
{
|
2131 |
+
"name": "Black Widow from (Marvel)",
|
2132 |
+
"status": "recognized"
|
2133 |
+
},
|
2134 |
+
{
|
2135 |
+
"name": "Captain Marvel from (Marvel)",
|
2136 |
+
"status": "recognized"
|
2137 |
+
},
|
2138 |
+
{
|
2139 |
+
"name": "Emma Frost from (Marvel)",
|
2140 |
+
"status": "recognized"
|
2141 |
+
},
|
2142 |
+
{
|
2143 |
+
"name": "Gwen Stacy from (Marvel)",
|
2144 |
+
"status": "recognized"
|
2145 |
+
},
|
2146 |
+
{
|
2147 |
+
"name": "Mary Jane from (Marvel)",
|
2148 |
+
"status": "recognized"
|
2149 |
+
},
|
2150 |
+
{
|
2151 |
+
"name": "Peggy Carter from (Marvel)",
|
2152 |
+
"status": "recognized"
|
2153 |
+
},
|
2154 |
+
{
|
2155 |
+
"name": "Red Sonja from (Marvel)",
|
2156 |
+
"status": "recognized"
|
2157 |
+
},
|
2158 |
+
{
|
2159 |
+
"name": "Scarlet Witch from (Marvel)",
|
2160 |
+
"status": "recognized"
|
2161 |
+
},
|
2162 |
+
{
|
2163 |
+
"name": "She Hulk from (Marvel)",
|
2164 |
+
"status": "recognized"
|
2165 |
+
},
|
2166 |
+
{
|
2167 |
+
"name": "Spider Gwen from (Marvel)",
|
2168 |
+
"status": "recognized"
|
2169 |
+
},
|
2170 |
+
{
|
2171 |
+
"name": "Spider-Man from (Marvel)",
|
2172 |
+
"status": "recognized"
|
2173 |
+
},
|
2174 |
+
{
|
2175 |
+
"name": "Venom from (Marvel)",
|
2176 |
+
"status": "recognized"
|
2177 |
+
},
|
2178 |
+
{
|
2179 |
+
"name": "Liara T'Soni from (Mass Effect)",
|
2180 |
+
"status": "recognized"
|
2181 |
+
},
|
2182 |
+
{
|
2183 |
+
"name": "Miranda Lawson from (Mass Effect)",
|
2184 |
+
"status": "recognized"
|
2185 |
+
},
|
2186 |
+
{
|
2187 |
+
"name": "Tali Zorah from (Mass Effect)",
|
2188 |
+
"status": "recognized"
|
2189 |
+
},
|
2190 |
+
{
|
2191 |
+
"name": "Generic from (Mass Effect: Asari)",
|
2192 |
+
"status": "recognized"
|
2193 |
+
},
|
2194 |
+
{
|
2195 |
+
"name": "Meruccubus from (Merunyaa)",
|
2196 |
+
"status": "recognized"
|
2197 |
+
},
|
2198 |
+
{
|
2199 |
+
"name": "Quiet from (Metal Gear Solid)",
|
2200 |
+
"status": "recognized"
|
2201 |
+
},
|
2202 |
+
{
|
2203 |
+
"name": "Samus Aran from (Metroid)",
|
2204 |
+
"status": "recognized"
|
2205 |
+
},
|
2206 |
+
{
|
2207 |
+
"name": "Generic from (MILF)",
|
2208 |
+
"status": "recognized"
|
2209 |
+
},
|
2210 |
+
{
|
2211 |
+
"name": "Alex from (Minecraft)",
|
2212 |
+
"status": "recognized"
|
2213 |
+
},
|
2214 |
+
{
|
2215 |
+
"name": "Lady Bug from (Miraculous Lady Bug)",
|
2216 |
+
"status": "recognized"
|
2217 |
+
},
|
2218 |
+
{
|
2219 |
+
"name": "Faith Connors from (Mirror's Edge)",
|
2220 |
+
"status": "recognized"
|
2221 |
+
},
|
2222 |
+
{
|
2223 |
+
"name": "Miia from (Monster Musume)",
|
2224 |
+
"status": "recognized"
|
2225 |
+
},
|
2226 |
+
{
|
2227 |
+
"name": "Rachnera Arachnera from (Monster Musume)",
|
2228 |
+
"status": "recognized"
|
2229 |
+
},
|
2230 |
+
{
|
2231 |
+
"name": "Kitana from (Mortal Kombat)",
|
2232 |
+
"status": "recognized"
|
2233 |
+
},
|
2234 |
+
{
|
2235 |
+
"name": "Mileena from (Mortal Kombat)",
|
2236 |
+
"status": "recognized"
|
2237 |
+
},
|
2238 |
+
{
|
2239 |
+
"name": "Ghislaine from (Mushoku Tensei)",
|
2240 |
+
"status": "recognized"
|
2241 |
+
},
|
2242 |
+
{
|
2243 |
+
"name": "Asui Tsuyu/froppy from (My Hero Academia)",
|
2244 |
+
"status": "recognized"
|
2245 |
+
},
|
2246 |
+
{
|
2247 |
+
"name": "Himiko Toga from (My Hero Academia)",
|
2248 |
+
"status": "recognized"
|
2249 |
+
},
|
2250 |
+
{
|
2251 |
+
"name": "Midnight from (My Hero Academia)",
|
2252 |
+
"status": "recognized"
|
2253 |
+
},
|
2254 |
+
{
|
2255 |
+
"name": "Mina Ashido from (My Hero Academia)",
|
2256 |
+
"status": "recognized"
|
2257 |
+
},
|
2258 |
+
{
|
2259 |
+
"name": "Mirko from (My Hero Academia)",
|
2260 |
+
"status": "recognized"
|
2261 |
+
},
|
2262 |
+
{
|
2263 |
+
"name": "Momo Yaoyorozu from (My Hero Academia)",
|
2264 |
+
"status": "recognized"
|
2265 |
+
},
|
2266 |
+
{
|
2267 |
+
"name": "Nejire Hado from (My Hero Academia)",
|
2268 |
+
"status": "recognized"
|
2269 |
+
},
|
2270 |
+
{
|
2271 |
+
"name": "Ochaco Uraraka from (My Hero Academia)",
|
2272 |
+
"status": "recognized"
|
2273 |
+
},
|
2274 |
+
{
|
2275 |
+
"name": "Jenny from (My Life as a Teenage Robot)",
|
2276 |
+
"status": "recognized"
|
2277 |
+
},
|
2278 |
+
{
|
2279 |
+
"name": "Jenny from (My Life as a Teenage Robot)",
|
2280 |
+
"status": "recognized"
|
2281 |
+
},
|
2282 |
+
{
|
2283 |
+
"name": "Applejack from (My Little Pony:Friendship is Magic)",
|
2284 |
+
"status": "recognized"
|
2285 |
+
},
|
2286 |
+
{
|
2287 |
+
"name": "Coco Pommel from (My Little Pony:Friendship is Magic)",
|
2288 |
+
"status": "recognized"
|
2289 |
+
},
|
2290 |
+
{
|
2291 |
+
"name": "Fluttershy from (My Little Pony:Friendship is Magic)",
|
2292 |
+
"status": "recognized"
|
2293 |
+
},
|
2294 |
+
{
|
2295 |
+
"name": "Maud Pie from (My Little Pony:Friendship is Magic)",
|
2296 |
+
"status": "recognized"
|
2297 |
+
},
|
2298 |
+
{
|
2299 |
+
"name": "Pinkie Pie from (My Little Pony:Friendship is Magic)",
|
2300 |
+
"status": "recognized"
|
2301 |
+
},
|
2302 |
+
{
|
2303 |
+
"name": "Princess Celestia from (My Little Pony:Friendship is Magic)",
|
2304 |
+
"status": "recognized"
|
2305 |
+
},
|
2306 |
+
{
|
2307 |
+
"name": "Princess Luna from (My Little Pony:Friendship is Magic)",
|
2308 |
+
"status": "recognized"
|
2309 |
+
},
|
2310 |
+
{
|
2311 |
+
"name": "Rainbow Dash from (My Little Pony:Friendship is Magic)",
|
2312 |
+
"status": "recognized"
|
2313 |
+
},
|
2314 |
+
{
|
2315 |
+
"name": "Rarity from (My Little Pony:Friendship is Magic)",
|
2316 |
+
"status": "recognized"
|
2317 |
+
},
|
2318 |
+
{
|
2319 |
+
"name": "Starlight Glimmer from (My Little Pony:Friendship is Magic)",
|
2320 |
+
"status": "recognized"
|
2321 |
+
},
|
2322 |
+
{
|
2323 |
+
"name": "Sunset Shimmer from (My Little Pony:Friendship is Magic)",
|
2324 |
+
"status": "recognized"
|
2325 |
+
},
|
2326 |
+
{
|
2327 |
+
"name": "Twolight Sparkle from (My Little Pony:Friendship is Magic)",
|
2328 |
+
"status": "recognized"
|
2329 |
+
},
|
2330 |
+
{
|
2331 |
+
"name": "Anko from (Naruto)",
|
2332 |
+
"status": "recognized"
|
2333 |
+
},
|
2334 |
+
{
|
2335 |
+
"name": "Hinata Hyuga from (Naruto)",
|
2336 |
+
"status": "recognized"
|
2337 |
+
},
|
2338 |
+
{
|
2339 |
+
"name": "Ino Yamanaka from (Naruto)",
|
2340 |
+
"status": "recognized"
|
2341 |
+
},
|
2342 |
+
{
|
2343 |
+
"name": "Sakura Haruno from (Naruto)",
|
2344 |
+
"status": "recognized"
|
2345 |
+
},
|
2346 |
+
{
|
2347 |
+
"name": "Sarada Uchiha from (Naruto)",
|
2348 |
+
"status": "recognized"
|
2349 |
+
},
|
2350 |
+
{
|
2351 |
+
"name": "Tsunade from (Naruto)",
|
2352 |
+
"status": "recognized"
|
2353 |
+
},
|
2354 |
+
{
|
2355 |
+
"name": "Asuka Langley Sohryu from (Neon Genesis Evangelion)",
|
2356 |
+
"status": "recognized"
|
2357 |
+
},
|
2358 |
+
{
|
2359 |
+
"name": "Katsuragi Misato from (Neon Genesis Evangelion)",
|
2360 |
+
"status": "recognized"
|
2361 |
+
},
|
2362 |
+
{
|
2363 |
+
"name": "Rei Ayanami from (Neon Genesis Evangelion)",
|
2364 |
+
"status": "recognized"
|
2365 |
+
},
|
2366 |
+
{
|
2367 |
+
"name": "2B from (Nier:Automata)",
|
2368 |
+
"status": "recognized"
|
2369 |
+
},
|
2370 |
+
{
|
2371 |
+
"name": "9S from (Nier:Automata)",
|
2372 |
+
"status": "recognized"
|
2373 |
+
},
|
2374 |
+
{
|
2375 |
+
"name": "A2 from (Nier:Automata)",
|
2376 |
+
"status": "recognized"
|
2377 |
+
},
|
2378 |
+
{
|
2379 |
+
"name": "Boa Hancock from (One Piece)",
|
2380 |
+
"status": "recognized"
|
2381 |
+
},
|
2382 |
+
{
|
2383 |
+
"name": "Nami from (One Piece)",
|
2384 |
+
"status": "recognized"
|
2385 |
+
},
|
2386 |
+
{
|
2387 |
+
"name": "Nefertari Vivi from (ONE PIECE)",
|
2388 |
+
"status": "recognized"
|
2389 |
+
},
|
2390 |
+
{
|
2391 |
+
"name": "Nico Robin from (One Piece)",
|
2392 |
+
"status": "recognized"
|
2393 |
+
},
|
2394 |
+
{
|
2395 |
+
"name": "Yamato from (One Piece)",
|
2396 |
+
"status": "recognized"
|
2397 |
+
},
|
2398 |
+
{
|
2399 |
+
"name": "Fubuki from (One Punch Man)",
|
2400 |
+
"status": "recognized"
|
2401 |
+
},
|
2402 |
+
{
|
2403 |
+
"name": "Albedo from (Overlord)",
|
2404 |
+
"status": "recognized"
|
2405 |
+
},
|
2406 |
+
{
|
2407 |
+
"name": "Aura Belle Fiore from (Overlord)",
|
2408 |
+
"status": "recognized"
|
2409 |
+
},
|
2410 |
+
{
|
2411 |
+
"name": "Clementine from (Overlord)",
|
2412 |
+
"status": "recognized"
|
2413 |
+
},
|
2414 |
+
{
|
2415 |
+
"name": "Lakyus from (Overlord)",
|
2416 |
+
"status": "recognized"
|
2417 |
+
},
|
2418 |
+
{
|
2419 |
+
"name": "Ana from (Overwatch)",
|
2420 |
+
"status": "recognized"
|
2421 |
+
},
|
2422 |
+
{
|
2423 |
+
"name": "Ashe from (Overwatch)",
|
2424 |
+
"status": "recognized"
|
2425 |
+
},
|
2426 |
+
{
|
2427 |
+
"name": "D.Va from (Overwatch)",
|
2428 |
+
"status": "recognized"
|
2429 |
+
},
|
2430 |
+
{
|
2431 |
+
"name": "Mei from (Overwatch)",
|
2432 |
+
"status": "recognized"
|
2433 |
+
},
|
2434 |
+
{
|
2435 |
+
"name": "Mercy from (Overwatch)",
|
2436 |
+
"status": "recognized"
|
2437 |
+
},
|
2438 |
+
{
|
2439 |
+
"name": "Pharah from (Overwatch)",
|
2440 |
+
"status": "recognized"
|
2441 |
+
},
|
2442 |
+
{
|
2443 |
+
"name": "Sombra from (Overwatch)",
|
2444 |
+
"status": "recognized"
|
2445 |
+
},
|
2446 |
+
{
|
2447 |
+
"name": "Symmetra from (Overwatch)",
|
2448 |
+
"status": "recognized"
|
2449 |
+
},
|
2450 |
+
{
|
2451 |
+
"name": "Tracer from (Overwatch)",
|
2452 |
+
"status": "recognized"
|
2453 |
+
},
|
2454 |
+
{
|
2455 |
+
"name": "Widowmaker from (Overwatch)",
|
2456 |
+
"status": "recognized"
|
2457 |
+
},
|
2458 |
+
{
|
2459 |
+
"name": "Tinkerbell from (Peter Pan)",
|
2460 |
+
"status": "recognized"
|
2461 |
+
},
|
2462 |
+
{
|
2463 |
+
"name": "Cynthia from (PokeMom)",
|
2464 |
+
"status": "recognized"
|
2465 |
+
},
|
2466 |
+
{
|
2467 |
+
"name": "Lana's Mom from (PokeMom)",
|
2468 |
+
"status": "recognized"
|
2469 |
+
},
|
2470 |
+
{
|
2471 |
+
"name": "Lusamine from (PokeMom)",
|
2472 |
+
"status": "recognized"
|
2473 |
+
},
|
2474 |
+
{
|
2475 |
+
"name": "Bea from (Pokemon)",
|
2476 |
+
"status": "recognized"
|
2477 |
+
},
|
2478 |
+
{
|
2479 |
+
"name": "Bianca from (Pokemon)",
|
2480 |
+
"status": "recognized"
|
2481 |
+
},
|
2482 |
+
{
|
2483 |
+
"name": "Bulbasuar from (Pokemon)",
|
2484 |
+
"status": "partial"
|
2485 |
+
},
|
2486 |
+
{
|
2487 |
+
"name": "Candice from (Pokemon)",
|
2488 |
+
"status": "recognized"
|
2489 |
+
},
|
2490 |
+
{
|
2491 |
+
"name": "Charmander from (Pokemon)",
|
2492 |
+
"status": "partial"
|
2493 |
+
},
|
2494 |
+
{
|
2495 |
+
"name": "Dawn from (Pokemon)",
|
2496 |
+
"status": "recognized"
|
2497 |
+
},
|
2498 |
+
{
|
2499 |
+
"name": "Delia Ketchum from (Pokemon)",
|
2500 |
+
"status": "recognized"
|
2501 |
+
},
|
2502 |
+
{
|
2503 |
+
"name": "Elesa from (Pokemon)",
|
2504 |
+
"status": "recognized"
|
2505 |
+
},
|
2506 |
+
{
|
2507 |
+
"name": "Flannery from (Pokemon)",
|
2508 |
+
"status": "recognized"
|
2509 |
+
},
|
2510 |
+
{
|
2511 |
+
"name": "Gloria from (Pokemon)",
|
2512 |
+
"status": "recognized"
|
2513 |
+
},
|
2514 |
+
{
|
2515 |
+
"name": "Hex Maniac from (Pokemon)",
|
2516 |
+
"status": "recognized"
|
2517 |
+
},
|
2518 |
+
{
|
2519 |
+
"name": "Hilda from (Pokemon)",
|
2520 |
+
"status": "recognized"
|
2521 |
+
},
|
2522 |
+
{
|
2523 |
+
"name": "Iono from (Pokemon)",
|
2524 |
+
"status": "recognized"
|
2525 |
+
},
|
2526 |
+
{
|
2527 |
+
"name": "Irida from (Pokemon)",
|
2528 |
+
"status": "recognized"
|
2529 |
+
},
|
2530 |
+
{
|
2531 |
+
"name": "Iris from (Pokemon)",
|
2532 |
+
"status": "recognized"
|
2533 |
+
},
|
2534 |
+
{
|
2535 |
+
"name": "Jessie from (Pokemon)",
|
2536 |
+
"status": "recognized"
|
2537 |
+
},
|
2538 |
+
{
|
2539 |
+
"name": "Juliana from (Pokemon)",
|
2540 |
+
"status": "recognized"
|
2541 |
+
},
|
2542 |
+
{
|
2543 |
+
"name": "Klara from (Pokemon)",
|
2544 |
+
"status": "recognized"
|
2545 |
+
},
|
2546 |
+
{
|
2547 |
+
"name": "Lana from (Pokemon)",
|
2548 |
+
"status": "recognized"
|
2549 |
+
},
|
2550 |
+
{
|
2551 |
+
"name": "Lillie from (Pokemon)",
|
2552 |
+
"status": "recognized"
|
2553 |
+
},
|
2554 |
+
{
|
2555 |
+
"name": "Mallow from (Pokemon)",
|
2556 |
+
"status": "recognized"
|
2557 |
+
},
|
2558 |
+
{
|
2559 |
+
"name": "Marnie from (Pokemon)",
|
2560 |
+
"status": "recognized"
|
2561 |
+
},
|
2562 |
+
{
|
2563 |
+
"name": "May from (Pokemon)",
|
2564 |
+
"status": "recognized"
|
2565 |
+
},
|
2566 |
+
{
|
2567 |
+
"name": "Melony from (Pokemon)",
|
2568 |
+
"status": "recognized"
|
2569 |
+
},
|
2570 |
+
{
|
2571 |
+
"name": "Misty from (Pokemon)",
|
2572 |
+
"status": "recognized"
|
2573 |
+
},
|
2574 |
+
{
|
2575 |
+
"name": "Nemona from (Pokemon)",
|
2576 |
+
"status": "recognized"
|
2577 |
+
},
|
2578 |
+
{
|
2579 |
+
"name": "Nessa from (Pokemon)",
|
2580 |
+
"status": "recognized"
|
2581 |
+
},
|
2582 |
+
{
|
2583 |
+
"name": "Nurse Joy from (Pokemon)",
|
2584 |
+
"status": "recognized"
|
2585 |
+
},
|
2586 |
+
{
|
2587 |
+
"name": "Rosa from (Pokemon)",
|
2588 |
+
"status": "recognized"
|
2589 |
+
},
|
2590 |
+
{
|
2591 |
+
"name": "Roxie from (Pokemon)",
|
2592 |
+
"status": "recognized"
|
2593 |
+
},
|
2594 |
+
{
|
2595 |
+
"name": "Sabrina from (Pokemon)",
|
2596 |
+
"status": "recognized"
|
2597 |
+
},
|
2598 |
+
{
|
2599 |
+
"name": "Selene from (Pokemon)",
|
2600 |
+
"status": "recognized"
|
2601 |
+
},
|
2602 |
+
{
|
2603 |
+
"name": "Serena from (Pokemon)",
|
2604 |
+
"status": "recognized"
|
2605 |
+
},
|
2606 |
+
{
|
2607 |
+
"name": "Skyla from (Pokemon)",
|
2608 |
+
"status": "recognized"
|
2609 |
+
},
|
2610 |
+
{
|
2611 |
+
"name": "Sonia from (Pokemon)",
|
2612 |
+
"status": "recognized"
|
2613 |
+
},
|
2614 |
+
{
|
2615 |
+
"name": "Squirtle from (Pokemon)",
|
2616 |
+
"status": "partial"
|
2617 |
+
},
|
2618 |
+
{
|
2619 |
+
"name": "Whitney from (Pokemon)",
|
2620 |
+
"status": "recognized"
|
2621 |
+
},
|
2622 |
+
{
|
2623 |
+
"name": "Dejah Thoris from (princess of Mars)",
|
2624 |
+
"status": "recognized"
|
2625 |
+
},
|
2626 |
+
{
|
2627 |
+
"name": "Gadget Hackwrench from (Rescue Rangers)",
|
2628 |
+
"status": "recognized"
|
2629 |
+
},
|
2630 |
+
{
|
2631 |
+
"name": "Ada Wong from (Resident Evil)",
|
2632 |
+
"status": "recognized"
|
2633 |
+
},
|
2634 |
+
{
|
2635 |
+
"name": "Alcina Dimitrescu from (Resident Evil)",
|
2636 |
+
"status": "recognized"
|
2637 |
+
},
|
2638 |
+
{
|
2639 |
+
"name": "Claire Redfield from (Resident Evil)",
|
2640 |
+
"status": "recognized"
|
2641 |
+
},
|
2642 |
+
{
|
2643 |
+
"name": "Jill Valentine from (Resident Evil)",
|
2644 |
+
"status": "recognized"
|
2645 |
+
},
|
2646 |
+
{
|
2647 |
+
"name": "Sheva Alomar from (Resident Evil)",
|
2648 |
+
"status": "recognized"
|
2649 |
+
},
|
2650 |
+
{
|
2651 |
+
"name": "Beth Smith from (Rick & Morty)",
|
2652 |
+
"status": "recognized"
|
2653 |
+
},
|
2654 |
+
{
|
2655 |
+
"name": "Summer Smith from (Rick and Morty)",
|
2656 |
+
"status": "recognized"
|
2657 |
+
},
|
2658 |
+
{
|
2659 |
+
"name": "Sailor Saturn from (Sailor Moon)",
|
2660 |
+
"status": "recognized"
|
2661 |
+
},
|
2662 |
+
{
|
2663 |
+
"name": "Usagi Tsukino from (Sailor Moon)",
|
2664 |
+
"status": "recognized"
|
2665 |
+
},
|
2666 |
+
{
|
2667 |
+
"name": "Daphne Blake from (Scoobi doo)",
|
2668 |
+
"status": "recognized"
|
2669 |
+
},
|
2670 |
+
{
|
2671 |
+
"name": "Velma Dinkley from (Scoobi doo)",
|
2672 |
+
"status": "recognized"
|
2673 |
+
},
|
2674 |
+
{
|
2675 |
+
"name": "Catra from (She-Ra)",
|
2676 |
+
"status": "recognized"
|
2677 |
+
},
|
2678 |
+
{
|
2679 |
+
"name": "Filia from (SkullGirls)",
|
2680 |
+
"status": "recognized"
|
2681 |
+
},
|
2682 |
+
{
|
2683 |
+
"name": "Samson from (SkullGirls)",
|
2684 |
+
"status": "recognized"
|
2685 |
+
},
|
2686 |
+
{
|
2687 |
+
"name": "Lina Inverse from (Slayers)",
|
2688 |
+
"status": "recognized"
|
2689 |
+
},
|
2690 |
+
{
|
2691 |
+
"name": "Snow White from (Snow White & the seven dwarfs)",
|
2692 |
+
"status": "recognized"
|
2693 |
+
},
|
2694 |
+
{
|
2695 |
+
"name": "Tails from (Sonic)",
|
2696 |
+
"status": "recognized"
|
2697 |
+
},
|
2698 |
+
{
|
2699 |
+
"name": "Amy Rose from (Sonic the hedgehog)",
|
2700 |
+
"status": "recognized"
|
2701 |
+
},
|
2702 |
+
{
|
2703 |
+
"name": "Blaze the Cat from (Sonic the hedgehog)",
|
2704 |
+
"status": "recognized"
|
2705 |
+
},
|
2706 |
+
{
|
2707 |
+
"name": "Cream the Rabbit from (Sonic the hedgehog)",
|
2708 |
+
"status": "recognized"
|
2709 |
+
},
|
2710 |
+
{
|
2711 |
+
"name": "Rouge the Bat from (Sonic the hedgehog)",
|
2712 |
+
"status": "recognized"
|
2713 |
+
},
|
2714 |
+
{
|
2715 |
+
"name": "Shadow from (Sonic the hedgehog)",
|
2716 |
+
"status": "recognized"
|
2717 |
+
},
|
2718 |
+
{
|
2719 |
+
"name": "Tikal The Echidna from (Sonic the hedgehog)",
|
2720 |
+
"status": "recognized"
|
2721 |
+
},
|
2722 |
+
{
|
2723 |
+
"name": "Vanilla Rabbit from (Sonic the hedgehog)",
|
2724 |
+
"status": "recognized"
|
2725 |
+
},
|
2726 |
+
{
|
2727 |
+
"name": "Ivy Valentine from (Soul Calibur)",
|
2728 |
+
"status": "recognized"
|
2729 |
+
},
|
2730 |
+
{
|
2731 |
+
"name": "Maka Albarn from (Soul Eater)",
|
2732 |
+
"status": "recognized"
|
2733 |
+
},
|
2734 |
+
{
|
2735 |
+
"name": "Lola Bunny from (Space Jam)",
|
2736 |
+
"status": "recognized"
|
2737 |
+
},
|
2738 |
+
{
|
2739 |
+
"name": "Inkling Girl from (Splatoon)",
|
2740 |
+
"status": "recognized"
|
2741 |
+
},
|
2742 |
+
{
|
2743 |
+
"name": "Anya Forger from (Spy x Family)",
|
2744 |
+
"status": "recognized"
|
2745 |
+
},
|
2746 |
+
{
|
2747 |
+
"name": "Krystal from (Star Fox)",
|
2748 |
+
"status": "recognized"
|
2749 |
+
},
|
2750 |
+
{
|
2751 |
+
"name": "Star Butterfly from (Star vs. the Forces of Evil)",
|
2752 |
+
"status": "recognized"
|
2753 |
+
},
|
2754 |
+
{
|
2755 |
+
"name": "Aayla Secura from (Star Wars)",
|
2756 |
+
"status": "recognized"
|
2757 |
+
},
|
2758 |
+
{
|
2759 |
+
"name": "Boba Fett from (Star Wars)",
|
2760 |
+
"status": "recognized"
|
2761 |
+
},
|
2762 |
+
{
|
2763 |
+
"name": "Darth Talon from (Star Wars)",
|
2764 |
+
"status": "recognized"
|
2765 |
+
},
|
2766 |
+
{
|
2767 |
+
"name": "Darth Vader from (Star Wars)",
|
2768 |
+
"status": "recognized"
|
2769 |
+
},
|
2770 |
+
{
|
2771 |
+
"name": "Oola from (Star Wars)",
|
2772 |
+
"status": "recognized"
|
2773 |
+
},
|
2774 |
+
{
|
2775 |
+
"name": "Princess Leia from (Star Wars)",
|
2776 |
+
"status": "recognized"
|
2777 |
+
},
|
2778 |
+
{
|
2779 |
+
"name": "Rey from (Star Wars)",
|
2780 |
+
"status": "recognized"
|
2781 |
+
},
|
2782 |
+
{
|
2783 |
+
"name": "Stormtrooper from (Star Wars)",
|
2784 |
+
"status": "recognized"
|
2785 |
+
},
|
2786 |
+
{
|
2787 |
+
"name": "Generic from (Star Wars: Twi'leks)",
|
2788 |
+
"status": "recognized"
|
2789 |
+
},
|
2790 |
+
{
|
2791 |
+
"name": "Sarah Kerrigan from (StarCraft)",
|
2792 |
+
"status": "recognized"
|
2793 |
+
},
|
2794 |
+
{
|
2795 |
+
"name": "Connie Maheswaran from (Steven Universe)",
|
2796 |
+
"status": "recognized"
|
2797 |
+
},
|
2798 |
+
{
|
2799 |
+
"name": "Amethyst from (Steven Universe)",
|
2800 |
+
"status": "recognized"
|
2801 |
+
},
|
2802 |
+
{
|
2803 |
+
"name": "Garnet from (Steven Universe)",
|
2804 |
+
"status": "recognized"
|
2805 |
+
},
|
2806 |
+
{
|
2807 |
+
"name": "Lapis Lazuli from (Steven Universe)",
|
2808 |
+
"status": "recognized"
|
2809 |
+
},
|
2810 |
+
{
|
2811 |
+
"name": "Pearl from (Steven Universe)",
|
2812 |
+
"status": "recognized"
|
2813 |
+
},
|
2814 |
+
{
|
2815 |
+
"name": "Peridot from (Steven Universe)",
|
2816 |
+
"status": "recognized"
|
2817 |
+
},
|
2818 |
+
{
|
2819 |
+
"name": "Chunli from (Street Fighter)",
|
2820 |
+
"status": "recognized"
|
2821 |
+
},
|
2822 |
+
{
|
2823 |
+
"name": "Han Juri from (Street Fighter)",
|
2824 |
+
"status": "recognized"
|
2825 |
+
},
|
2826 |
+
{
|
2827 |
+
"name": "Ibuki from (Street Fighter)",
|
2828 |
+
"status": "recognized"
|
2829 |
+
},
|
2830 |
+
{
|
2831 |
+
"name": "Kasugano Sakura from (Street Fighter)",
|
2832 |
+
"status": "recognized"
|
2833 |
+
},
|
2834 |
+
{
|
2835 |
+
"name": "Rainbow Mika from (Street Fighter)",
|
2836 |
+
"status": "recognized"
|
2837 |
+
},
|
2838 |
+
{
|
2839 |
+
"name": "Rainbow Mika from (Street Fighter)",
|
2840 |
+
"status": "recognized"
|
2841 |
+
},
|
2842 |
+
{
|
2843 |
+
"name": "Cammy White from (Street Fighter 6)",
|
2844 |
+
"status": "recognized"
|
2845 |
+
},
|
2846 |
+
{
|
2847 |
+
"name": "Bowsette from (Super Mario Bros.)",
|
2848 |
+
"status": "recognized"
|
2849 |
+
},
|
2850 |
+
{
|
2851 |
+
"name": "Pauline from (Super Mario Bros.)",
|
2852 |
+
"status": "recognized"
|
2853 |
+
},
|
2854 |
+
{
|
2855 |
+
"name": "Princess Daisy from (Super Mario Bros.)",
|
2856 |
+
"status": "recognized"
|
2857 |
+
},
|
2858 |
+
{
|
2859 |
+
"name": "Princess King Boo from (Super Mario Bros.)",
|
2860 |
+
"status": "recognized"
|
2861 |
+
},
|
2862 |
+
{
|
2863 |
+
"name": "Princess Peach from (Super Mario Bros.)",
|
2864 |
+
"status": "recognized"
|
2865 |
+
},
|
2866 |
+
{
|
2867 |
+
"name": "Princess Rosalina from (Super Mario Bros.)",
|
2868 |
+
"status": "recognized"
|
2869 |
+
},
|
2870 |
+
{
|
2871 |
+
"name": "Ahsoka Tano from (SW:The Clone Wars)",
|
2872 |
+
"status": "recognized"
|
2873 |
+
},
|
2874 |
+
{
|
2875 |
+
"name": "Asuna from (Sword Art Online)",
|
2876 |
+
"status": "recognized"
|
2877 |
+
},
|
2878 |
+
{
|
2879 |
+
"name": "Leafa from (Sword Art Online)",
|
2880 |
+
"status": "recognized"
|
2881 |
+
},
|
2882 |
+
{
|
2883 |
+
"name": "Sinon from (Sword Art Online)",
|
2884 |
+
"status": "recognized"
|
2885 |
+
},
|
2886 |
+
{
|
2887 |
+
"name": "Kitty Katswell from (T.U.F.F. Puppy)",
|
2888 |
+
"status": "recognized"
|
2889 |
+
},
|
2890 |
+
{
|
2891 |
+
"name": "Blackfire from (Teen Titans)",
|
2892 |
+
"status": "recognized"
|
2893 |
+
},
|
2894 |
+
{
|
2895 |
+
"name": "Jinx from (Teen Titans)",
|
2896 |
+
"status": "recognized"
|
2897 |
+
},
|
2898 |
+
{
|
2899 |
+
"name": "Raven from (Teen Titans)",
|
2900 |
+
"status": "recognized"
|
2901 |
+
},
|
2902 |
+
{
|
2903 |
+
"name": "Starfire from (Teen Titans)",
|
2904 |
+
"status": "recognized"
|
2905 |
+
},
|
2906 |
+
{
|
2907 |
+
"name": "April ONeil from (Teenage Mutant Ninja turtles)",
|
2908 |
+
"status": "recognized"
|
2909 |
+
},
|
2910 |
+
{
|
2911 |
+
"name": "Betty Rubble from (The Flintstones)",
|
2912 |
+
"status": "recognized"
|
2913 |
+
},
|
2914 |
+
{
|
2915 |
+
"name": "Helen Parr from (The Incredibles)",
|
2916 |
+
"status": "recognized"
|
2917 |
+
},
|
2918 |
+
{
|
2919 |
+
"name": "Violet Parr from (The Incredibles)",
|
2920 |
+
"status": "recognized"
|
2921 |
+
},
|
2922 |
+
{
|
2923 |
+
"name": "Ariel from (The Little Murmaid)",
|
2924 |
+
"status": "recognized"
|
2925 |
+
},
|
2926 |
+
{
|
2927 |
+
"name": "Lori Loud from (The Loud House)",
|
2928 |
+
"status": "recognized"
|
2929 |
+
},
|
2930 |
+
{
|
2931 |
+
"name": "Creepy Susie from (The Oblongs)",
|
2932 |
+
"status": "partial"
|
2933 |
+
},
|
2934 |
+
{
|
2935 |
+
"name": "Skara from (The Owl House)",
|
2936 |
+
"status": "recognized"
|
2937 |
+
},
|
2938 |
+
{
|
2939 |
+
"name": "Sara Bellum from (The Power Puff Girls)",
|
2940 |
+
"status": "recognized"
|
2941 |
+
},
|
2942 |
+
{
|
2943 |
+
"name": "Raphtalia from (The rising of the shield hero)",
|
2944 |
+
"status": "recognized"
|
2945 |
+
},
|
2946 |
+
{
|
2947 |
+
"name": "Chel from (The road to El Dorado)",
|
2948 |
+
"status": "recognized"
|
2949 |
+
},
|
2950 |
+
{
|
2951 |
+
"name": "Lisa Simpson from (The Simpsons)",
|
2952 |
+
"status": "partial"
|
2953 |
+
},
|
2954 |
+
{
|
2955 |
+
"name": "Marge Simpson from (The Simpsons)",
|
2956 |
+
"status": "partial"
|
2957 |
+
},
|
2958 |
+
{
|
2959 |
+
"name": "Lara Croft from (Tomb Raider)",
|
2960 |
+
"status": "recognized"
|
2961 |
+
},
|
2962 |
+
{
|
2963 |
+
"name": "Tomo Aizawa from (Tomo-chan is a girl)",
|
2964 |
+
"status": "recognized"
|
2965 |
+
},
|
2966 |
+
{
|
2967 |
+
"name": "Gwen from (Total Drama Island)",
|
2968 |
+
"status": "recognized"
|
2969 |
+
},
|
2970 |
+
{
|
2971 |
+
"name": "Chloe Frazer from (uncharted)",
|
2972 |
+
"status": "recognized"
|
2973 |
+
},
|
2974 |
+
{
|
2975 |
+
"name": "Toriel from (Undertale)",
|
2976 |
+
"status": "recognized"
|
2977 |
+
},
|
2978 |
+
{
|
2979 |
+
"name": "Unndyne from (Undertale)",
|
2980 |
+
"status": "recognized"
|
2981 |
+
},
|
2982 |
+
{
|
2983 |
+
"name": "Vampirella from (Vampirella)",
|
2984 |
+
"status": "recognized"
|
2985 |
+
},
|
2986 |
+
{
|
2987 |
+
"name": "Wendy from (Wendy's)",
|
2988 |
+
"status": "recognized"
|
2989 |
+
},
|
2990 |
+
{
|
2991 |
+
"name": "Wendy from (Wendy's)",
|
2992 |
+
"status": "recognized"
|
2993 |
+
},
|
2994 |
+
{
|
2995 |
+
"name": "Jessica Rabbit from (Who framed Roger Rabbit?)",
|
2996 |
+
"status": "recognized"
|
2997 |
+
},
|
2998 |
+
{
|
2999 |
+
"name": "Anna Henrietta from (Witcher)",
|
3000 |
+
"status": "recognized"
|
3001 |
+
},
|
3002 |
+
{
|
3003 |
+
"name": "Ciri from (Witcher)",
|
3004 |
+
"status": "recognized"
|
3005 |
+
},
|
3006 |
+
{
|
3007 |
+
"name": "Triss Merigold from (Witcher)",
|
3008 |
+
"status": "recognized"
|
3009 |
+
},
|
3010 |
+
{
|
3011 |
+
"name": "Yennefer of Vengerberg from (Witcher)",
|
3012 |
+
"status": "recognized"
|
3013 |
+
},
|
3014 |
+
{
|
3015 |
+
"name": "Tyrande Whisperwind from (World of Warcarft)",
|
3016 |
+
"status": "recognized"
|
3017 |
+
},
|
3018 |
+
{
|
3019 |
+
"name": "Alexstrasza from (World of Warcraft)",
|
3020 |
+
"status": "recognized"
|
3021 |
+
},
|
3022 |
+
{
|
3023 |
+
"name": "Blood Elf from (World of Warcraft)",
|
3024 |
+
"status": "recognized"
|
3025 |
+
},
|
3026 |
+
{
|
3027 |
+
"name": "Draenei from (World of Warcraft)",
|
3028 |
+
"status": "recognized"
|
3029 |
+
},
|
3030 |
+
{
|
3031 |
+
"name": "Sally Whitemane from (World of Warcraft)",
|
3032 |
+
"status": "recognized"
|
3033 |
+
},
|
3034 |
+
{
|
3035 |
+
"name": "Sylvanas Windrunner from (World of Warcraft)",
|
3036 |
+
"status": "recognized"
|
3037 |
+
},
|
3038 |
+
{
|
3039 |
+
"name": "Jania Proudmoore from (WoW)",
|
3040 |
+
"status": "recognized"
|
3041 |
+
},
|
3042 |
+
{
|
3043 |
+
"name": "Rogue from (X-Men)",
|
3044 |
+
"status": "recognized"
|
3045 |
+
},
|
3046 |
+
{
|
3047 |
+
"name": "Jean Grey from (X-Men:Evolution)",
|
3048 |
+
"status": "recognized"
|
3049 |
+
},
|
3050 |
+
{
|
3051 |
+
"name": "Gazelle from (Zootopia)",
|
3052 |
+
"status": "recognized"
|
3053 |
+
},
|
3054 |
+
{
|
3055 |
+
"name": "Judy Hopps from (Zootopia)",
|
3056 |
+
"status": "recognized"
|
3057 |
+
},
|
3058 |
+
{
|
3059 |
+
"name": "Agent Aika from (Agent Aika)",
|
3060 |
+
"status": "not recognized"
|
3061 |
+
},
|
3062 |
+
{
|
3063 |
+
"name": "Belladonna from (Ah! My Goddess!)",
|
3064 |
+
"status": "not recognized"
|
3065 |
+
},
|
3066 |
+
{
|
3067 |
+
"name": "Becky Arangino from (American Dad)",
|
3068 |
+
"status": "not recognized"
|
3069 |
+
},
|
3070 |
+
{
|
3071 |
+
"name": "Francine Smith from (American Dad)",
|
3072 |
+
"status": "not recognized"
|
3073 |
+
},
|
3074 |
+
{
|
3075 |
+
"name": "Haley Smith from (American Dad)",
|
3076 |
+
"status": "not recognized"
|
3077 |
+
},
|
3078 |
+
{
|
3079 |
+
"name": "Jessica Raplansky from (American Dad)",
|
3080 |
+
"status": "not recognized"
|
3081 |
+
},
|
3082 |
+
{
|
3083 |
+
"name": "Susan Long from (American Dragon)",
|
3084 |
+
"status": "not recognized"
|
3085 |
+
},
|
3086 |
+
{
|
3087 |
+
"name": "Lana Kane from (Archer)",
|
3088 |
+
"status": "not recognized"
|
3089 |
+
},
|
3090 |
+
{
|
3091 |
+
"name": "Mrs. Felt from (Atomic Puppet)",
|
3092 |
+
"status": "not recognized"
|
3093 |
+
},
|
3094 |
+
{
|
3095 |
+
"name": "Ty Lee from (Avatar:The last airbender)",
|
3096 |
+
"status": "not recognized"
|
3097 |
+
},
|
3098 |
+
{
|
3099 |
+
"name": "Thrift Store Cashier from (Batman TAS)",
|
3100 |
+
"status": "not recognized"
|
3101 |
+
},
|
3102 |
+
{
|
3103 |
+
"name": "Baby Doll from (Batman:The Animated Series)",
|
3104 |
+
"status": "not recognized"
|
3105 |
+
},
|
3106 |
+
{
|
3107 |
+
"name": "Marsha from (BDSDSS)",
|
3108 |
+
"status": "not recognized"
|
3109 |
+
},
|
3110 |
+
{
|
3111 |
+
"name": "Charmcaster from (Ben 10: reboot)",
|
3112 |
+
"status": "not recognized"
|
3113 |
+
},
|
3114 |
+
{
|
3115 |
+
"name": "Pinoko from (Black Jack)",
|
3116 |
+
"status": "not recognized"
|
3117 |
+
},
|
3118 |
+
{
|
3119 |
+
"name": "Linda Belcher from (Bob's Burgers)",
|
3120 |
+
"status": "not recognized"
|
3121 |
+
},
|
3122 |
+
{
|
3123 |
+
"name": "Louis Belcher from (Bob's Burgers)",
|
3124 |
+
"status": "not recognized"
|
3125 |
+
},
|
3126 |
+
{
|
3127 |
+
"name": "Miranda Wright from (Bonkers)",
|
3128 |
+
"status": "not recognized"
|
3129 |
+
},
|
3130 |
+
{
|
3131 |
+
"name": "Madd Moxxi from (Borderlands)",
|
3132 |
+
"status": "not recognized"
|
3133 |
+
},
|
3134 |
+
{
|
3135 |
+
"name": "Tiny Tina from (Borderlands)",
|
3136 |
+
"status": "not recognized"
|
3137 |
+
},
|
3138 |
+
{
|
3139 |
+
"name": "Amber from (Brickleberry)",
|
3140 |
+
"status": "not recognized"
|
3141 |
+
},
|
3142 |
+
{
|
3143 |
+
"name": "Ethel Anderson from (Brickleberry)",
|
3144 |
+
"status": "not recognized"
|
3145 |
+
},
|
3146 |
+
{
|
3147 |
+
"name": "Leecy from (Bruno The Kid)",
|
3148 |
+
"status": "not recognized"
|
3149 |
+
},
|
3150 |
+
{
|
3151 |
+
"name": "Becky from (Bunnicula)",
|
3152 |
+
"status": "not recognized"
|
3153 |
+
},
|
3154 |
+
{
|
3155 |
+
"name": "Marsha from (Bunnicula)",
|
3156 |
+
"status": "not recognized"
|
3157 |
+
},
|
3158 |
+
{
|
3159 |
+
"name": "Mina from (Bunnicula)",
|
3160 |
+
"status": "not recognized"
|
3161 |
+
},
|
3162 |
+
{
|
3163 |
+
"name": "Tabii from (Camp Camp)",
|
3164 |
+
"status": "not recognized"
|
3165 |
+
},
|
3166 |
+
{
|
3167 |
+
"name": "Power from (Chainsaw Man)",
|
3168 |
+
"status": "not recognized"
|
3169 |
+
},
|
3170 |
+
{
|
3171 |
+
"name": "Project Melody from (chaturbate)",
|
3172 |
+
"status": "not recognized"
|
3173 |
+
},
|
3174 |
+
{
|
3175 |
+
"name": "Cleopatra from (Cleopatra in space)",
|
3176 |
+
"status": "not recognized"
|
3177 |
+
},
|
3178 |
+
{
|
3179 |
+
"name": "Roberta Tubbs from (cleveland show)",
|
3180 |
+
"status": "not recognized"
|
3181 |
+
},
|
3182 |
+
{
|
3183 |
+
"name": "Joan of Arc from (Clone High)",
|
3184 |
+
"status": "not recognized"
|
3185 |
+
},
|
3186 |
+
{
|
3187 |
+
"name": "Other Mother from (Coraline)",
|
3188 |
+
"status": "not recognized"
|
3189 |
+
},
|
3190 |
+
{
|
3191 |
+
"name": "Ember McLain from (Danny Phantom)",
|
3192 |
+
"status": "not recognized"
|
3193 |
+
},
|
3194 |
+
{
|
3195 |
+
"name": "Maddie Fenton from (Danny Phantom)",
|
3196 |
+
"status": "not recognized"
|
3197 |
+
},
|
3198 |
+
{
|
3199 |
+
"name": "Stephanie Brown from (DC)",
|
3200 |
+
"status": "not recognized"
|
3201 |
+
},
|
3202 |
+
{
|
3203 |
+
"name": "Mercy Graves from (DC Comics)",
|
3204 |
+
"status": "not recognized"
|
3205 |
+
},
|
3206 |
+
{
|
3207 |
+
"name": "Clergy from (Disgaea)",
|
3208 |
+
"status": "not recognized"
|
3209 |
+
},
|
3210 |
+
{
|
3211 |
+
"name": "Generic from (Disney Misc Princesses)",
|
3212 |
+
"status": "not recognized"
|
3213 |
+
},
|
3214 |
+
{
|
3215 |
+
"name": "Megera from (Disney's Hercules)",
|
3216 |
+
"status": "not recognized"
|
3217 |
+
},
|
3218 |
+
{
|
3219 |
+
"name": "Cheelai from (Dragon Ball Super Broly)",
|
3220 |
+
"status": "not recognized"
|
3221 |
+
},
|
3222 |
+
{
|
3223 |
+
"name": "Launch from (DragonBall)",
|
3224 |
+
"status": "not recognized"
|
3225 |
+
},
|
3226 |
+
{
|
3227 |
+
"name": "Bra/Bulla from (Dragonball GT)",
|
3228 |
+
"status": "not recognized"
|
3229 |
+
},
|
3230 |
+
{
|
3231 |
+
"name": "Pan from (Dragonball GT/Super)",
|
3232 |
+
"status": "not recognized"
|
3233 |
+
},
|
3234 |
+
{
|
3235 |
+
"name": "Videl from (Dragonball Z/GT/Super)",
|
3236 |
+
"status": "not recognized"
|
3237 |
+
},
|
3238 |
+
{
|
3239 |
+
"name": "Mai from (Dragonball/GT/Super)",
|
3240 |
+
"status": "not recognized"
|
3241 |
+
},
|
3242 |
+
{
|
3243 |
+
"name": "Foxxy Brown from (Drawn Together)",
|
3244 |
+
"status": "not recognized"
|
3245 |
+
},
|
3246 |
+
{
|
3247 |
+
"name": "Toot from (Drawn Together)",
|
3248 |
+
"status": "not recognized"
|
3249 |
+
},
|
3250 |
+
{
|
3251 |
+
"name": "Dr. Madison Li from (Fallout)",
|
3252 |
+
"status": "not recognized"
|
3253 |
+
},
|
3254 |
+
{
|
3255 |
+
"name": "Italian Teacher from (Family Guy)",
|
3256 |
+
"status": "not recognized"
|
3257 |
+
},
|
3258 |
+
{
|
3259 |
+
"name": "Lois Griffen from (Family Guy)",
|
3260 |
+
"status": "not recognized"
|
3261 |
+
},
|
3262 |
+
{
|
3263 |
+
"name": "Scarlet from (Final Fantasy)",
|
3264 |
+
"status": "not recognized"
|
3265 |
+
},
|
3266 |
+
{
|
3267 |
+
"name": "Scarlett from (Final Fantasy 7 Remake)",
|
3268 |
+
"status": "not recognized"
|
3269 |
+
},
|
3270 |
+
{
|
3271 |
+
"name": "Yuffie Kasagari from (Final Fantasy 7 Remake)",
|
3272 |
+
"status": "not recognized"
|
3273 |
+
},
|
3274 |
+
{
|
3275 |
+
"name": "Fran from (Final Fantasy XII)",
|
3276 |
+
"status": "not recognized"
|
3277 |
+
},
|
3278 |
+
{
|
3279 |
+
"name": "Lust from (FMA)",
|
3280 |
+
"status": "not recognized"
|
3281 |
+
},
|
3282 |
+
{
|
3283 |
+
"name": "Frieren from (Frieren)",
|
3284 |
+
"status": "not recognized"
|
3285 |
+
},
|
3286 |
+
{
|
3287 |
+
"name": "Rosa Tomas from (Fullmetal Alchemist)",
|
3288 |
+
"status": "not recognized"
|
3289 |
+
},
|
3290 |
+
{
|
3291 |
+
"name": "Winry Rockbell from (Fullmetal Alchemist)",
|
3292 |
+
"status": "not recognized"
|
3293 |
+
},
|
3294 |
+
{
|
3295 |
+
"name": "Amanda Scratch from (Furry OC)",
|
3296 |
+
"status": "not recognized"
|
3297 |
+
},
|
3298 |
+
{
|
3299 |
+
"name": "Bonnie Bovine from (Furry OC)",
|
3300 |
+
"status": "not recognized"
|
3301 |
+
},
|
3302 |
+
{
|
3303 |
+
"name": "Diamond from (Furry OC - Kadath)",
|
3304 |
+
"status": "not recognized"
|
3305 |
+
},
|
3306 |
+
{
|
3307 |
+
"name": "Dynamite from (Furry OC - Kadath)",
|
3308 |
+
"status": "not recognized"
|
3309 |
+
},
|
3310 |
+
{
|
3311 |
+
"name": "Rebecca from (Furry OC - Kadath)",
|
3312 |
+
"status": "not recognized"
|
3313 |
+
},
|
3314 |
+
{
|
3315 |
+
"name": "Amy Wong from (Futurama)",
|
3316 |
+
"status": "not recognized"
|
3317 |
+
},
|
3318 |
+
{
|
3319 |
+
"name": "Turunga Leela from (Futurama)",
|
3320 |
+
"status": "not recognized"
|
3321 |
+
},
|
3322 |
+
{
|
3323 |
+
"name": "Penny Gadget from (Gadget & The Gadgetinis)",
|
3324 |
+
"status": "not recognized"
|
3325 |
+
},
|
3326 |
+
{
|
3327 |
+
"name": "Demona from (Gargoyles)",
|
3328 |
+
"status": "not recognized"
|
3329 |
+
},
|
3330 |
+
{
|
3331 |
+
"name": "Rory Mercury from (Gate)",
|
3332 |
+
"status": "not recognized"
|
3333 |
+
},
|
3334 |
+
{
|
3335 |
+
"name": "Madame President from (GoldenBoy)",
|
3336 |
+
"status": "not recognized"
|
3337 |
+
},
|
3338 |
+
{
|
3339 |
+
"name": "Eleanor Butterbean from (Grim Adventure of Billy and Mandy)",
|
3340 |
+
"status": "not recognized"
|
3341 |
+
},
|
3342 |
+
{
|
3343 |
+
"name": "Tracey De Santa from (GTAV)",
|
3344 |
+
"status": "not recognized"
|
3345 |
+
},
|
3346 |
+
{
|
3347 |
+
"name": "Masterchief from (Halo)",
|
3348 |
+
"status": "not recognized"
|
3349 |
+
},
|
3350 |
+
{
|
3351 |
+
"name": "FruFru from (Harvey Girls Forever!)",
|
3352 |
+
"status": "not recognized"
|
3353 |
+
},
|
3354 |
+
{
|
3355 |
+
"name": "Parsley from (High Guardian Spice)",
|
3356 |
+
"status": "not recognized"
|
3357 |
+
},
|
3358 |
+
{
|
3359 |
+
"name": "Xenovia Quarta from (Highschool DxD)",
|
3360 |
+
"status": "not recognized"
|
3361 |
+
},
|
3362 |
+
{
|
3363 |
+
"name": "Linkle from (Hyrule Warriors Legends)",
|
3364 |
+
"status": "not recognized"
|
3365 |
+
},
|
3366 |
+
{
|
3367 |
+
"name": "Anger from (Inside Out)",
|
3368 |
+
"status": "not recognized"
|
3369 |
+
},
|
3370 |
+
{
|
3371 |
+
"name": "Disgust from (Inside Out)",
|
3372 |
+
"status": "not recognized"
|
3373 |
+
},
|
3374 |
+
{
|
3375 |
+
"name": "Joy from (Inside Out)",
|
3376 |
+
"status": "not recognized"
|
3377 |
+
},
|
3378 |
+
{
|
3379 |
+
"name": "Riley Anderson from (Inside Out)",
|
3380 |
+
"status": "not recognized"
|
3381 |
+
},
|
3382 |
+
{
|
3383 |
+
"name": "Sadness from (Inside Out)",
|
3384 |
+
"status": "not recognized"
|
3385 |
+
},
|
3386 |
+
{
|
3387 |
+
"name": "Penny from (Inspector Gadget)",
|
3388 |
+
"status": "not recognized"
|
3389 |
+
},
|
3390 |
+
{
|
3391 |
+
"name": "Kikyo from (Inuyasha)",
|
3392 |
+
"status": "not recognized"
|
3393 |
+
},
|
3394 |
+
{
|
3395 |
+
"name": "Songo from (Inuyasha)",
|
3396 |
+
"status": "not recognized"
|
3397 |
+
},
|
3398 |
+
{
|
3399 |
+
"name": "McMommy from (Japanes McD Commercial)",
|
3400 |
+
"status": "not recognized"
|
3401 |
+
},
|
3402 |
+
{
|
3403 |
+
"name": "Princess Audrey from (Justice League Unlimited)",
|
3404 |
+
"status": "not recognized"
|
3405 |
+
},
|
3406 |
+
{
|
3407 |
+
"name": "Bonnie Rockwaller from (Kim Possible)",
|
3408 |
+
"status": "not recognized"
|
3409 |
+
},
|
3410 |
+
{
|
3411 |
+
"name": "Komekko from (Konasuba)",
|
3412 |
+
"status": "not recognized"
|
3413 |
+
},
|
3414 |
+
{
|
3415 |
+
"name": "Sylvia from (Konasuba)",
|
3416 |
+
"status": "not recognized"
|
3417 |
+
},
|
3418 |
+
{
|
3419 |
+
"name": "Luna - Guild master from (Konosuba)",
|
3420 |
+
"status": "not recognized"
|
3421 |
+
},
|
3422 |
+
{
|
3423 |
+
"name": "Juliett Sterling from (Lolipop Chainsaw)",
|
3424 |
+
"status": "not recognized"
|
3425 |
+
},
|
3426 |
+
{
|
3427 |
+
"name": "Riju from (LoZ:BotW)",
|
3428 |
+
"status": "not recognized"
|
3429 |
+
},
|
3430 |
+
{
|
3431 |
+
"name": "Urbossa from (LoZ:BotW)",
|
3432 |
+
"status": "not recognized"
|
3433 |
+
},
|
3434 |
+
{
|
3435 |
+
"name": "Nabooris from (LoZ:OoT)",
|
3436 |
+
"status": "not recognized"
|
3437 |
+
},
|
3438 |
+
{
|
3439 |
+
"name": "Princess Ruto from (LoZ:OoT)",
|
3440 |
+
"status": "not recognized"
|
3441 |
+
},
|
3442 |
+
{
|
3443 |
+
"name": "Fujiko Mine from (Lupin the 3rd)",
|
3444 |
+
"status": "not recognized"
|
3445 |
+
},
|
3446 |
+
{
|
3447 |
+
"name": "Domino from (Marvel)",
|
3448 |
+
"status": "not recognized"
|
3449 |
+
},
|
3450 |
+
{
|
3451 |
+
"name": "Katie Powers from (Marvel - Power Pack)",
|
3452 |
+
"status": "not recognized"
|
3453 |
+
},
|
3454 |
+
{
|
3455 |
+
"name": "EDI from (Mass Effect)",
|
3456 |
+
"status": "not recognized"
|
3457 |
+
},
|
3458 |
+
{
|
3459 |
+
"name": "Samara from (Mass Effect)",
|
3460 |
+
"status": "not recognized"
|
3461 |
+
},
|
3462 |
+
{
|
3463 |
+
"name": "Firefox-chan from (Merryweather)",
|
3464 |
+
"status": "not recognized"
|
3465 |
+
},
|
3466 |
+
{
|
3467 |
+
"name": "Fio-Eri from (Metal Slug)",
|
3468 |
+
"status": "not recognized"
|
3469 |
+
},
|
3470 |
+
{
|
3471 |
+
"name": "Suzuki Mikura from (Mezzo Forte)",
|
3472 |
+
"status": "not recognized"
|
3473 |
+
},
|
3474 |
+
{
|
3475 |
+
"name": "Ippan Josei from (My Hero Academia)",
|
3476 |
+
"status": "not recognized"
|
3477 |
+
},
|
3478 |
+
{
|
3479 |
+
"name": "Auglur from (My Singing Monsters)",
|
3480 |
+
"status": "not recognized"
|
3481 |
+
},
|
3482 |
+
{
|
3483 |
+
"name": "Blarret from (My Singing Monsters)",
|
3484 |
+
"status": "not recognized"
|
3485 |
+
},
|
3486 |
+
{
|
3487 |
+
"name": "Rhysmuth from (My Singing Monsters)",
|
3488 |
+
"status": "not recognized"
|
3489 |
+
},
|
3490 |
+
{
|
3491 |
+
"name": "Sakura Haruno Genin from (Naruto)",
|
3492 |
+
"status": "not recognized"
|
3493 |
+
},
|
3494 |
+
{
|
3495 |
+
"name": "Sexy Justsu from (Naruto)",
|
3496 |
+
"status": "not recognized"
|
3497 |
+
},
|
3498 |
+
{
|
3499 |
+
"name": "Sally from (Nightmare before Christmas)",
|
3500 |
+
"status": "not recognized"
|
3501 |
+
},
|
3502 |
+
{
|
3503 |
+
"name": "Rachel from (Ninja Gaiden)",
|
3504 |
+
"status": "not recognized"
|
3505 |
+
},
|
3506 |
+
{
|
3507 |
+
"name": "Fado from (Ocarina of Time)",
|
3508 |
+
"status": "not recognized"
|
3509 |
+
},
|
3510 |
+
{
|
3511 |
+
"name": "Saria from (Ocarina of Time)",
|
3512 |
+
"status": "not recognized"
|
3513 |
+
},
|
3514 |
+
{
|
3515 |
+
"name": "Tony Tony Chopper from (One Piece)",
|
3516 |
+
"status": "not recognized"
|
3517 |
+
},
|
3518 |
+
{
|
3519 |
+
"name": "Zenko from (One Punch Man)",
|
3520 |
+
"status": "not recognized"
|
3521 |
+
},
|
3522 |
+
{
|
3523 |
+
"name": "Shari from (Original Character)",
|
3524 |
+
"status": "not recognized"
|
3525 |
+
},
|
3526 |
+
{
|
3527 |
+
"name": "Aisha Clan-Clan from (Outlaw Star)",
|
3528 |
+
"status": "not recognized"
|
3529 |
+
},
|
3530 |
+
{
|
3531 |
+
"name": "EvilEye from (Overlord)",
|
3532 |
+
"status": "not recognized"
|
3533 |
+
},
|
3534 |
+
{
|
3535 |
+
"name": "Mare Bello Fiore from (Overlord)",
|
3536 |
+
"status": "not recognized"
|
3537 |
+
},
|
3538 |
+
{
|
3539 |
+
"name": "Princess Renner from (Overlord)",
|
3540 |
+
"status": "not recognized"
|
3541 |
+
},
|
3542 |
+
{
|
3543 |
+
"name": "Shalltear Bloodfallen from (Overlord)",
|
3544 |
+
"status": "not recognized"
|
3545 |
+
},
|
3546 |
+
{
|
3547 |
+
"name": "Solution Episilon from (Overlord)",
|
3548 |
+
"status": "not recognized"
|
3549 |
+
},
|
3550 |
+
{
|
3551 |
+
"name": "Generic from (Overlord Extras)",
|
3552 |
+
"status": "not recognized"
|
3553 |
+
},
|
3554 |
+
{
|
3555 |
+
"name": "Dazzi from (Palworld)",
|
3556 |
+
"status": "not recognized"
|
3557 |
+
},
|
3558 |
+
{
|
3559 |
+
"name": "Lovander from (Palworld)",
|
3560 |
+
"status": "not recognized"
|
3561 |
+
},
|
3562 |
+
{
|
3563 |
+
"name": "Gina from (PD Paradise)",
|
3564 |
+
"status": "not recognized"
|
3565 |
+
},
|
3566 |
+
{
|
3567 |
+
"name": "Linda Flynn-Fletcher from (Phineas and Ferb)",
|
3568 |
+
"status": "not recognized"
|
3569 |
+
},
|
3570 |
+
{
|
3571 |
+
"name": "Chikorita from (Pokemon)",
|
3572 |
+
"status": "not recognized"
|
3573 |
+
},
|
3574 |
+
{
|
3575 |
+
"name": "Sedusa from (Powerpuff Girls)",
|
3576 |
+
"status": "not recognized"
|
3577 |
+
},
|
3578 |
+
{
|
3579 |
+
"name": "Akazutsumi Momoko from (Powerpuff Girls Z)",
|
3580 |
+
"status": "not recognized"
|
3581 |
+
},
|
3582 |
+
{
|
3583 |
+
"name": "Misogi from (Princess Connect)",
|
3584 |
+
"status": "not recognized"
|
3585 |
+
},
|
3586 |
+
{
|
3587 |
+
"name": "Princess Shuna from (Reincarnated as a slime)",
|
3588 |
+
"status": "not recognized"
|
3589 |
+
},
|
3590 |
+
{
|
3591 |
+
"name": "Shion from (Reincarnated as a slime)",
|
3592 |
+
"status": "not recognized"
|
3593 |
+
},
|
3594 |
+
{
|
3595 |
+
"name": "Diane Sanchz from (Rick and Morty)",
|
3596 |
+
"status": "not recognized"
|
3597 |
+
},
|
3598 |
+
{
|
3599 |
+
"name": "Filo from (Rising of the shield hero)",
|
3600 |
+
"status": "not recognized"
|
3601 |
+
},
|
3602 |
+
{
|
3603 |
+
"name": "Negative Wonder Woman from (Robot Chicken)",
|
3604 |
+
"status": "not recognized"
|
3605 |
+
},
|
3606 |
+
{
|
3607 |
+
"name": "Deb Turnbull from (Robotboy)",
|
3608 |
+
"status": "not recognized"
|
3609 |
+
},
|
3610 |
+
{
|
3611 |
+
"name": "Chibiusa Tsukino from (Sailor Moon)",
|
3612 |
+
"status": "not recognized"
|
3613 |
+
},
|
3614 |
+
{
|
3615 |
+
"name": "Fuu from (Samurai Champloo)",
|
3616 |
+
"status": "not recognized"
|
3617 |
+
},
|
3618 |
+
{
|
3619 |
+
"name": "Himari & Komari from (sei Dorei Gakuen 2)",
|
3620 |
+
"status": "not recognized"
|
3621 |
+
},
|
3622 |
+
{
|
3623 |
+
"name": "Senko-san from (Sewayaki Kitsune no Senko-san)",
|
3624 |
+
"status": "not recognized"
|
3625 |
+
},
|
3626 |
+
{
|
3627 |
+
"name": "Dawn from (SexyFur)",
|
3628 |
+
"status": "not recognized"
|
3629 |
+
},
|
3630 |
+
{
|
3631 |
+
"name": "Leviathan from (SkullGirls)",
|
3632 |
+
"status": "not recognized"
|
3633 |
+
},
|
3634 |
+
{
|
3635 |
+
"name": "Naga the Serpent from (Slayers)",
|
3636 |
+
"status": "not recognized"
|
3637 |
+
},
|
3638 |
+
{
|
3639 |
+
"name": "Peni Parker from (Spider Man)",
|
3640 |
+
"status": "not recognized"
|
3641 |
+
},
|
3642 |
+
{
|
3643 |
+
"name": "Peni Parker from (Spiderverse)",
|
3644 |
+
"status": "not recognized"
|
3645 |
+
},
|
3646 |
+
{
|
3647 |
+
"name": "Jinmat from (SRMTHFG!)",
|
3648 |
+
"status": "not recognized"
|
3649 |
+
},
|
3650 |
+
{
|
3651 |
+
"name": "Britney Wong from (Star Vs The Forces Of Evil)",
|
3652 |
+
"status": "not recognized"
|
3653 |
+
},
|
3654 |
+
{
|
3655 |
+
"name": "Ingrid Bloomgren from (Star Vs The Forces Of Evil)",
|
3656 |
+
"status": "not recognized"
|
3657 |
+
},
|
3658 |
+
{
|
3659 |
+
"name": "Asajj Ventress from (Star Wars:The Clone Wars)",
|
3660 |
+
"status": "not recognized"
|
3661 |
+
},
|
3662 |
+
{
|
3663 |
+
"name": "Stroker & Hoop from (Stroker & Hoop)",
|
3664 |
+
"status": "not recognized"
|
3665 |
+
},
|
3666 |
+
{
|
3667 |
+
"name": "Suzuka-hime from (Super Robot Wars series)",
|
3668 |
+
"status": "not recognized"
|
3669 |
+
},
|
3670 |
+
{
|
3671 |
+
"name": "Jane Forester from (Tarzan)",
|
3672 |
+
"status": "not recognized"
|
3673 |
+
},
|
3674 |
+
{
|
3675 |
+
"name": "Purah from (Tears of the Kingdom)",
|
3676 |
+
"status": "not recognized"
|
3677 |
+
},
|
3678 |
+
{
|
3679 |
+
"name": "Terra from (Teen Titans)",
|
3680 |
+
"status": "not recognized"
|
3681 |
+
},
|
3682 |
+
{
|
3683 |
+
"name": "Ryouko Hakubi from (Tenchi Muyo/Universe)",
|
3684 |
+
"status": "not recognized"
|
3685 |
+
},
|
3686 |
+
{
|
3687 |
+
"name": "Leggy Lamb from (Tex Avery)",
|
3688 |
+
"status": "not recognized"
|
3689 |
+
},
|
3690 |
+
{
|
3691 |
+
"name": "Red Hot Riding Hood from (Tex Avery)",
|
3692 |
+
"status": "not recognized"
|
3693 |
+
},
|
3694 |
+
{
|
3695 |
+
"name": "Gangle from (The Amazing Digital Circus)",
|
3696 |
+
"status": "not recognized"
|
3697 |
+
},
|
3698 |
+
{
|
3699 |
+
"name": "Jax from (The Amazing Digital Circus)",
|
3700 |
+
"status": "not recognized"
|
3701 |
+
},
|
3702 |
+
{
|
3703 |
+
"name": "Kinger from (The Amazing Digital Circus)",
|
3704 |
+
"status": "not recognized"
|
3705 |
+
},
|
3706 |
+
{
|
3707 |
+
"name": "Pomni from (The Amazing Digital Circus)",
|
3708 |
+
"status": "not recognized"
|
3709 |
+
},
|
3710 |
+
{
|
3711 |
+
"name": "Ragatha from (The Amazing Digital Circus)",
|
3712 |
+
"status": "not recognized"
|
3713 |
+
},
|
3714 |
+
{
|
3715 |
+
"name": "Zooble from (The Amazing Digital Circus)",
|
3716 |
+
"status": "not recognized"
|
3717 |
+
},
|
3718 |
+
{
|
3719 |
+
"name": "Princess Eliowry from (The Black Cauldron)",
|
3720 |
+
"status": "not recognized"
|
3721 |
+
},
|
3722 |
+
{
|
3723 |
+
"name": "Cindy McPhearson from (The Boondocks)",
|
3724 |
+
"status": "not recognized"
|
3725 |
+
},
|
3726 |
+
{
|
3727 |
+
"name": "Jazmine Dubois from (The Boondocks)",
|
3728 |
+
"status": "not recognized"
|
3729 |
+
},
|
3730 |
+
{
|
3731 |
+
"name": "Becky from (The Casagrandes)",
|
3732 |
+
"status": "not recognized"
|
3733 |
+
},
|
3734 |
+
{
|
3735 |
+
"name": "Eleanor Miller from (The Chipmunk Adventure)",
|
3736 |
+
"status": "not recognized"
|
3737 |
+
},
|
3738 |
+
{
|
3739 |
+
"name": "Delta from (The Eminence in Shadow)",
|
3740 |
+
"status": "not recognized"
|
3741 |
+
},
|
3742 |
+
{
|
3743 |
+
"name": "Mrs. Turner from (The Fairly OddParents)",
|
3744 |
+
"status": "not recognized"
|
3745 |
+
},
|
3746 |
+
{
|
3747 |
+
"name": "Tammy Myers from (The Ghost and Molly Mcgee)",
|
3748 |
+
"status": "not recognized"
|
3749 |
+
},
|
3750 |
+
{
|
3751 |
+
"name": "Judy Jetson from (The Jetsons)",
|
3752 |
+
"status": "not recognized"
|
3753 |
+
},
|
3754 |
+
{
|
3755 |
+
"name": "Beth Oblong from (The Oblongs)",
|
3756 |
+
"status": "not recognized"
|
3757 |
+
},
|
3758 |
+
{
|
3759 |
+
"name": "Biff and Chip Oblong from (The Oblongs)",
|
3760 |
+
"status": "not recognized"
|
3761 |
+
},
|
3762 |
+
{
|
3763 |
+
"name": "Bob Oblong from (The Oblongs)",
|
3764 |
+
"status": "not recognized"
|
3765 |
+
},
|
3766 |
+
{
|
3767 |
+
"name": "Helga Phugly from (The Oblongs)",
|
3768 |
+
"status": "not recognized"
|
3769 |
+
},
|
3770 |
+
{
|
3771 |
+
"name": "Milo Oblong from (The Oblongs)",
|
3772 |
+
"status": "not recognized"
|
3773 |
+
},
|
3774 |
+
{
|
3775 |
+
"name": "Peggy Weggy from (The Oblongs)",
|
3776 |
+
"status": "not recognized"
|
3777 |
+
},
|
3778 |
+
{
|
3779 |
+
"name": "Pickles Oblong from (The Oblongs)",
|
3780 |
+
"status": "not recognized"
|
3781 |
+
},
|
3782 |
+
{
|
3783 |
+
"name": "Yifa from (The Reincarnation of the Strongest Exorcist in Another World)",
|
3784 |
+
"status": "not recognized"
|
3785 |
+
},
|
3786 |
+
{
|
3787 |
+
"name": "Dr. Girlfriend from (The Venture Bros)",
|
3788 |
+
"status": "not recognized"
|
3789 |
+
},
|
3790 |
+
{
|
3791 |
+
"name": "Molotov Cocktease from (The Venture Bros)",
|
3792 |
+
"status": "not recognized"
|
3793 |
+
},
|
3794 |
+
{
|
3795 |
+
"name": "Wilykit from (Thundercats)",
|
3796 |
+
"status": "not recognized"
|
3797 |
+
},
|
3798 |
+
{
|
3799 |
+
"name": "Julie Bruin from (Tiny Toons)",
|
3800 |
+
"status": "not recognized"
|
3801 |
+
},
|
3802 |
+
{
|
3803 |
+
"name": "Captain Amelia from (Treasure Planet)",
|
3804 |
+
"status": "not recognized"
|
3805 |
+
},
|
3806 |
+
{
|
3807 |
+
"name": "Yvraine Emissary of Ynnead from (Warhammer 40k)",
|
3808 |
+
"status": "not recognized"
|
3809 |
+
},
|
3810 |
+
{
|
3811 |
+
"name": "Ameri Azazel from (Welcome to demon school Iruma-kun.)",
|
3812 |
+
"status": "not recognized"
|
3813 |
+
},
|
3814 |
+
{
|
3815 |
+
"name": "Flora from (winx)",
|
3816 |
+
"status": "not recognized"
|
3817 |
+
},
|
3818 |
+
{
|
3819 |
+
"name": "Elinore from (Wizards)",
|
3820 |
+
"status": "not recognized"
|
3821 |
+
},
|
3822 |
+
{
|
3823 |
+
"name": "alleria windrunner from (WoW)",
|
3824 |
+
"status": "not recognized"
|
3825 |
+
},
|
3826 |
+
{
|
3827 |
+
"name": "Mystique from (X-Men)",
|
3828 |
+
"status": "not recognized"
|
3829 |
+
},
|
3830 |
+
{
|
3831 |
+
"name": "Kitty Pryde from (X-Men:Evolution)",
|
3832 |
+
"status": "not recognized"
|
3833 |
+
},
|
3834 |
+
{
|
3835 |
+
"name": "Yotsuba Koiwai from (Yotsuba)",
|
3836 |
+
"status": "not recognized"
|
3837 |
+
},
|
3838 |
+
{
|
3839 |
+
"name": "Tanya Degurechaff from (Youjo Senki)",
|
3840 |
+
"status": "not recognized"
|
3841 |
+
},
|
3842 |
+
{
|
3843 |
+
"name": "Artemis Crock from (Young Justice)",
|
3844 |
+
"status": "not recognized"
|
3845 |
+
},
|
3846 |
+
{
|
3847 |
+
"name": "Child from (Young Justice)",
|
3848 |
+
"status": "not recognized"
|
3849 |
+
},
|
3850 |
+
{
|
3851 |
+
"name": "Mai Valentine from (Yu-Gi-Oh)",
|
3852 |
+
"status": "not recognized"
|
3853 |
+
}
|
3854 |
+
]
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
pyperclip
|