feat: Project done.
This commit is contained in:
		
							parent
							
								
									659e653fef
								
							
						
					
					
						commit
						bd8aa68175
					
				
							
								
								
									
										40
									
								
								DATA_MODEL.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										40
									
								
								DATA_MODEL.md
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,40 @@
 | 
				
			|||||||
 | 
					# DATA_MODEL — PetroGlyphScout
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Este documento describe el esquema de datos para los ficheros JSON usados por la app.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					1) `Public/json/PetroGlyphScout.glyphs.json`
 | 
				
			||||||
 | 
					- Tipo: Array
 | 
				
			||||||
 | 
					- Elemento: Array de dos elementos: [glyph, keywords]
 | 
				
			||||||
 | 
					  - glyph: string (un único carácter emoji o símbolo)
 | 
				
			||||||
 | 
					  - keywords: array<string> | string (lista de palabras clave asociadas)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Ejemplo:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```json
 | 
				
			||||||
 | 
					[
 | 
				
			||||||
 | 
					  ["🔍", ["buscar", "lupa", "search"]],
 | 
				
			||||||
 | 
					  ["⭐", ["favorito", "estrella"]]
 | 
				
			||||||
 | 
					]
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Recomendaciones:
 | 
				
			||||||
 | 
					- keywords en minúsculas para búsquedas case-insensitive.
 | 
				
			||||||
 | 
					- evita duplicados; cuando existan variantes de un símbolo fusionalas en una entrada.
 | 
				
			||||||
 | 
					- mantener UTF-8 sin BOM.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					2) `Public/json/PetroGlyphScout.flags.json`
 | 
				
			||||||
 | 
					- Tipo: Array
 | 
				
			||||||
 | 
					- Elemento: [flagEmoji, [ISO2, EnglishName]]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Ejemplo:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```json
 | 
				
			||||||
 | 
					[
 | 
				
			||||||
 | 
					  ["🇪🇸", ["ES", "Spain"]],
 | 
				
			||||||
 | 
					  ["🇺🇸", ["US", "United States"]]
 | 
				
			||||||
 | 
					]
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Notas:
 | 
				
			||||||
 | 
					- Mantén las banderas en su propio fichero para no inflar el dataset principal.
 | 
				
			||||||
 | 
					- Si añades campos adicionales, documenta la versión y compatibilidad.
 | 
				
			||||||
							
								
								
									
										30
									
								
								MD/Contributing.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								MD/Contributing.md
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,30 @@
 | 
				
			|||||||
 | 
					# Contributing — PetroGlyphScout
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Nota rápida: este proyecto es intencionalmente un OnePage/OneFile: la pieza canónica y la única que aceptamos como contribución es `Public/index.html`.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Contexto
 | 
				
			||||||
 | 
					- Durante el desarrollo quedaron varios ficheros auxiliares y de soporte en el repositorio (JSON de datos ampliados, SVGs, documentos de trabajo). Para mantener el proyecto simple, las directrices de contribución se limitan al HTML que constituye la UI funcional.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Qué se acepta
 | 
				
			||||||
 | 
					- Cambios en `Public/index.html` que mejoren la usabilidad, accesibilidad, búsqueda, rendimiento o corrección de bugs de la interfaz.
 | 
				
			||||||
 | 
					- Pequeños assets directamente vinculados al HTML (por ejemplo, un SVG nuevo referenciado desde `Public/index.html`) **siempre que** no rompan la filosofía OnePage/OneFile.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Qué no se necesita (y no revisaré habitualmente)
 | 
				
			||||||
 | 
					- Ediciones masivas a `Public/json/*` o a documentación de desarrollo: esos ficheros son artefactos que pueden existir para trabajo local, pero las PRs que sólo modifiquen datasets grandes o ficheros auxiliares pueden ser ignoradas.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Guía rápida para contribuir
 | 
				
			||||||
 | 
					1. Haz fork y crea una rama, por ejemplo `feature/mi-cambio`.
 | 
				
			||||||
 | 
					2. Haz cambios solo en `Public/index.html` (y archivos menores que el HTML referencia directamente si son imprescindibles).
 | 
				
			||||||
 | 
					3. Mantén los commits pequeños y descriptivos.
 | 
				
			||||||
 | 
					4. Prueba el HTML localmente abriéndolo con `file://` o sirviéndolo por HTTP si lo prefieres.
 | 
				
			||||||
 | 
					5. En el PR indica claramente el objetivo del cambio y, si procede, incluye una captura de pantalla o un GIF corto.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Recomendaciones técnicas
 | 
				
			||||||
 | 
					- Mantén la compatibilidad con apertura mediante `file://` (no asumir siempre fetch/HTTP en estado servidor).
 | 
				
			||||||
 | 
					- Evita introducir dependencias externas pesadas; el objetivo es que `Public/index.html` sea autónomo.
 | 
				
			||||||
 | 
					- Si por motivos prácticos necesitas actualizar un JSON pequeño (p. ej. corregir una keyword concreta), documenta la razón en el PR; las modificaciones grandes de datasets se deben discutir antes.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Proceso de revisión
 | 
				
			||||||
 | 
					- Las PRs se evaluarán por claridad, tamaño razonable del cambio y que mantengan la filosofía OnePage/OneFile.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Gracias por contribuir. Si tienes dudas sobre si tu cambio encaja, abre un Issue antes de preparar la PR para discutirlo.
 | 
				
			||||||
							
								
								
									
										36
									
								
								MD/Usage.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										36
									
								
								MD/Usage.md
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,36 @@
 | 
				
			|||||||
 | 
					# Uso rápido — PetroGlyphScout
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					PetroGlyphScout es una OnePage/OneFile ligera: puedes abrir `Public/index.html` directamente en un navegador usando el esquema `file://` o bien servirlo por HTTP; no es obligatorio ejecutar un servidor web para uso local.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Abrir la app
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- Opción A — Abrir directamente (file://):
 | 
				
			||||||
 | 
					  - En muchos navegadores basta con abrir el archivo `Public/index.html` desde el gestor de archivos o con `Archivo → Abrir`.
 | 
				
			||||||
 | 
					  - Ejemplo de ruta local: `file:///ruta/al/proyecto/PetroGlyphScout/Public/index.html`.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- Opción B — Servir por HTTP (opcional):
 | 
				
			||||||
 | 
					  - Si prefieres servir por HTTP (útil para pruebas de CORS en entornos específicos), desde la raíz del repo puedes usar un servidor estático pequeño:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```bash
 | 
				
			||||||
 | 
					# desde la raíz del proyecto (opcional)
 | 
				
			||||||
 | 
					python3 -m http.server 8000
 | 
				
			||||||
 | 
					# abrir http://localhost:8000/PetroGlyphScout/Public/
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Cómo funciona
 | 
				
			||||||
 | 
					- La UI carga `Public/json/PetroGlyphScout.glyphs.json` (dataset). En la mayoría de navegadores modernos la carga local funciona sin problemas cuando abres el HTML con `file://`.
 | 
				
			||||||
 | 
					- Al hacer clic en un glifo se copia el carácter al portapapeles; la búsqueda filtra por emoji o palabra clave.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Problemas raros y soluciones
 | 
				
			||||||
 | 
					- Algunos navegadores o configuraciones pueden restringir la lectura de ficheros locales mediante fetch cuando se abre la página con `file://`. Si encuentras ese comportamiento en tu navegador, las soluciones son:
 | 
				
			||||||
 | 
					  - Abrir el HTML por HTTP usando el comando anterior.
 | 
				
			||||||
 | 
					  - Usar un navegador/instalación que permita acceso a ficheros locales (o lanzar el navegador con la bandera que permita acceso local, sólo para pruebas).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Archivos relevantes
 | 
				
			||||||
 | 
					- `Public/index.html` — Interfaz principal.
 | 
				
			||||||
 | 
					- `Public/json/PetroGlyphScout.glyphs.json` — dataset principal de glifos.
 | 
				
			||||||
 | 
					- `Public/json/PetroGlyphScout.flags.json` — dataset de banderas.
 | 
				
			||||||
 | 
					- `Public/images/` — SVGs auxiliares.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Consejos
 | 
				
			||||||
 | 
					- Si planeas modificar masivamente el dataset, valida el JSON con `python3 -m json.tool` antes de subir cambios.
 | 
				
			||||||
							
								
								
									
										58
									
								
								Public/images/stone-griffin-standing.svg
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										58
									
								
								Public/images/stone-griffin-standing.svg
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,58 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0" encoding="UTF-8"?>
 | 
				
			||||||
 | 
					<!-- Stone griffin, wings extended, standing on hind legs
 | 
				
			||||||
 | 
					     File: Public/images/stone-griffin-standing.svg
 | 
				
			||||||
 | 
					     Design: minimal geometry, lightweight strokes, scalable
 | 
				
			||||||
 | 
					-->
 | 
				
			||||||
 | 
					<svg xmlns="http://www.w3.org/2000/svg" width="320" height="240" viewBox="0 0 320 240" role="img" aria-label="Grifo de piedra de pie con alas extendidas">
 | 
				
			||||||
 | 
					  <defs>
 | 
				
			||||||
 | 
					    <linearGradient id="g1" x1="0" x2="1" y1="0" y2="1">
 | 
				
			||||||
 | 
					      <stop offset="0%" stop-color="#d1d1d1" />
 | 
				
			||||||
 | 
					      <stop offset="100%" stop-color="#9a9a9a" />
 | 
				
			||||||
 | 
					    </linearGradient>
 | 
				
			||||||
 | 
					    <style><![CDATA[
 | 
				
			||||||
 | 
					      .fill { fill: url(#g1); stroke: #6d6d6d; stroke-width: 3; stroke-linejoin: round }
 | 
				
			||||||
 | 
					      .line { fill: none; stroke: #6d6d6d; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round }
 | 
				
			||||||
 | 
					      .wing { fill: url(#g1); stroke: #6d6d6d; stroke-width: 2 }
 | 
				
			||||||
 | 
					    ]]></style>
 | 
				
			||||||
 | 
					  </defs>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Ground/Plinth -->
 | 
				
			||||||
 | 
					  <rect x="10" y="208" width="300" height="18" rx="4" class="fill" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Body (lion-like torso) -->
 | 
				
			||||||
 | 
					  <path class="fill" d="M90 160 C70 150, 60 130, 90 110 C140 80, 200 90, 230 120 C250 140, 245 170, 220 180 C190 190, 140 190, 110 185 Z" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Hind legs (supporting, stylized) -->
 | 
				
			||||||
 | 
					  <path class="fill" d="M150 180 L160 200 L140 204 L132 188 Z" />
 | 
				
			||||||
 | 
					  <path class="fill" d="M190 176 L202 200 L182 204 L174 182 Z" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Tail (curled) -->
 | 
				
			||||||
 | 
					  <path class="line" d="M72 162 C60 150, 50 140, 58 130 C70 116, 92 120, 100 128"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Wings extended (large, feathered stylized shapes) -->
 | 
				
			||||||
 | 
					  <g transform="translate(140,80)">
 | 
				
			||||||
 | 
					    <path class="wing" d="M0 0 C -60 -10, -110 -30, -150 -20 C -120 -6, -90 10, -60 24 C -30 36, -10 46, 0 54 Z" />
 | 
				
			||||||
 | 
					    <path class="wing" d="M12 4 C 40 -10, 80 -30, 120 -28 C 90 -6, 62 6, 32 18 C 16 24, 8 28, 12 4 Z" transform="scale(-1,1) translate(-24,0)"/>
 | 
				
			||||||
 | 
					    <!-- feather accents -->
 | 
				
			||||||
 | 
					    <path class="line" d="M-20 8 C -60 0, -90 -6, -124 -2"/>
 | 
				
			||||||
 | 
					    <path class="line" d="M20 12 C 60 2, 90 -2, 120 -6"/>
 | 
				
			||||||
 | 
					  </g>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Neck and head (eagle-like) -->
 | 
				
			||||||
 | 
					  <path class="fill" d="M100 115 C112 90, 140 78, 160 90 C168 96, 170 108, 160 116 C150 124, 120 126, 104 120 Z" />
 | 
				
			||||||
 | 
					  <!-- Beak -->
 | 
				
			||||||
 | 
					  <path class="fill" d="M160 90 L178 94 L162 104 Z" />
 | 
				
			||||||
 | 
					  <path class="line" d="M168 96 L176 100"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Eye -->
 | 
				
			||||||
 | 
					  <circle cx="150" cy="100" r="3" fill="#333" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Front talons (raised) -->
 | 
				
			||||||
 | 
					  <path class="fill" d="M112 132 L120 140 L110 146 L104 138 Z" />
 | 
				
			||||||
 | 
					  <path class="fill" d="M124 130 L134 138 L122 146 L116 138 Z" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Stone cracks details -->
 | 
				
			||||||
 | 
					  <path class="line" d="M120 150 C110 146, 100 148, 92 144"/>
 | 
				
			||||||
 | 
					  <path class="line" d="M200 162 C190 156, 180 158, 170 154"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 2.5 KiB  | 
							
								
								
									
										40
									
								
								Public/images/stone-griffin.svg
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										40
									
								
								Public/images/stone-griffin.svg
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,40 @@
 | 
				
			|||||||
 | 
					<?xml version="1.0" encoding="UTF-8"?>
 | 
				
			||||||
 | 
					<!-- Minimal, lightweight stone griffin icon (SVG) for PetroGlyphScout
 | 
				
			||||||
 | 
					     - Purpose: decorative/iconic representation "Grifo (ser legendario)"
 | 
				
			||||||
 | 
					     - File: Public/images/stone-griffin.svg
 | 
				
			||||||
 | 
					     - Design goals: simple geometry, small filesize, scalable vector
 | 
				
			||||||
 | 
					-->
 | 
				
			||||||
 | 
					<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" role="img" aria-label="Grifo de piedra">
 | 
				
			||||||
 | 
					  <defs>
 | 
				
			||||||
 | 
					    <linearGradient id="g" x1="0" x2="1" y1="0" y2="1">
 | 
				
			||||||
 | 
					      <stop offset="0%" stop-color="#cfcfcf" />
 | 
				
			||||||
 | 
					      <stop offset="100%" stop-color="#9b9b9b" />
 | 
				
			||||||
 | 
					    </linearGradient>
 | 
				
			||||||
 | 
					    <style type="text/css"><![CDATA[
 | 
				
			||||||
 | 
					      .stone{fill:url(#g);stroke:#6b6b6b;stroke-width:3;stroke-linejoin:round}
 | 
				
			||||||
 | 
					      .detail{fill:none;stroke:#6b6b6b;stroke-width:2;stroke-linecap:round}
 | 
				
			||||||
 | 
					    ]]></style>
 | 
				
			||||||
 | 
					  </defs>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Body (simple blocky stone silhouette) -->
 | 
				
			||||||
 | 
					  <path class="stone" d="M40 190 L60 120 L90 100 L120 96 L150 110 L170 140 L200 150 L210 170 L200 190 L160 200 L120 196 L80 200 Z"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Wing (stylized) -->
 | 
				
			||||||
 | 
					  <path class="stone" d="M120 96 L140 60 L170 52 L150 90 Z"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Head & beak -->
 | 
				
			||||||
 | 
					  <path class="stone" d="M40 120 L60 96 L80 86 L98 90 L108 106 L100 116 L86 122 Z"/>
 | 
				
			||||||
 | 
					  <path class="detail" d="M98 90 L108 106"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Legs (simple pillars) -->
 | 
				
			||||||
 | 
					  <rect class="stone" x="150" y="140" width="12" height="48" rx="3"/>
 | 
				
			||||||
 | 
					  <rect class="stone" x="170" y="146" width="12" height="40" rx="3"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Stone fissure detail -->
 | 
				
			||||||
 | 
					  <path class="detail" d="M60 140 q20 -10 40 -12"/>
 | 
				
			||||||
 | 
					  <path class="detail" d="M130 130 q20 8 40 6"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <!-- Base plinth -->
 | 
				
			||||||
 | 
					  <rect class="stone" x="28" y="200" width="180" height="18" rx="4"/>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					</svg>
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 1.6 KiB  | 
							
								
								
									
										3135
									
								
								Public/index.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3135
									
								
								Public/index.html
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										249
									
								
								Public/json/PetroGlyphScout.flags.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										249
									
								
								Public/json/PetroGlyphScout.flags.json
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,249 @@
 | 
				
			|||||||
 | 
					[
 | 
				
			||||||
 | 
					    ["🇦🇫", ["AF", "Afghanistan"]],
 | 
				
			||||||
 | 
					    ["🇦🇱", ["AL", "Albania"]],
 | 
				
			||||||
 | 
					    ["🇩🇿", ["DZ", "Algeria"]],
 | 
				
			||||||
 | 
					    ["🇦🇸", ["AS", "American Samoa"]],
 | 
				
			||||||
 | 
					    ["🇦🇩", ["AD", "Andorra"]],
 | 
				
			||||||
 | 
					    ["🇦🇴", ["AO", "Angola"]],
 | 
				
			||||||
 | 
					    ["🇦🇮", ["AI", "Anguilla"]],
 | 
				
			||||||
 | 
					    ["🇦🇶", ["AQ", "Antarctica"]],
 | 
				
			||||||
 | 
					    ["🇦🇬", ["AG", "Antigua and Barbuda"]],
 | 
				
			||||||
 | 
					    ["🇦🇷", ["AR", "Argentina"]],
 | 
				
			||||||
 | 
					    ["🇦🇲", ["AM", "Armenia"]],
 | 
				
			||||||
 | 
					    ["🇦🇼", ["AW", "Aruba"]],
 | 
				
			||||||
 | 
					    ["🇦🇺", ["AU", "Australia"]],
 | 
				
			||||||
 | 
					    ["🇦🇹", ["AT", "Austria"]],
 | 
				
			||||||
 | 
					    ["🇦🇿", ["AZ", "Azerbaijan"]],
 | 
				
			||||||
 | 
					    ["🇧🇸", ["BS", "Bahamas"]],
 | 
				
			||||||
 | 
					    ["🇧🇭", ["BH", "Bahrain"]],
 | 
				
			||||||
 | 
					    ["🇧🇩", ["BD", "Bangladesh"]],
 | 
				
			||||||
 | 
					    ["🇧🇧", ["BB", "Barbados"]],
 | 
				
			||||||
 | 
					    ["🇧🇾", ["BY", "Belarus"]],
 | 
				
			||||||
 | 
					    ["🇧🇪", ["BE", "Belgium"]],
 | 
				
			||||||
 | 
					    ["🇧🇿", ["BZ", "Belize"]],
 | 
				
			||||||
 | 
					    ["🇧🇯", ["BJ", "Benin"]],
 | 
				
			||||||
 | 
					    ["🇧🇲", ["BM", "Bermuda"]],
 | 
				
			||||||
 | 
					    ["🇧🇹", ["BT", "Bhutan"]],
 | 
				
			||||||
 | 
					    ["🇧🇴", ["BO", "Bolivia"]],
 | 
				
			||||||
 | 
					    ["🇧🇶", ["BQ", "Bonaire, Sint Eustatius and Saba"]],
 | 
				
			||||||
 | 
					    ["🇧🇦", ["BA", "Bosnia and Herzegovina"]],
 | 
				
			||||||
 | 
					    ["🇧🇼", ["BW", "Botswana"]],
 | 
				
			||||||
 | 
					    ["🇧🇻", ["BV", "Bouvet Island"]],
 | 
				
			||||||
 | 
					    ["🇧🇷", ["BR", "Brazil"]],
 | 
				
			||||||
 | 
					    ["🇮🇴", ["IO", "British Indian Ocean Territory"]],
 | 
				
			||||||
 | 
					    ["🇧🇳", ["BN", "Brunei Darussalam"]],
 | 
				
			||||||
 | 
					    ["🇧🇬", ["BG", "Bulgaria"]],
 | 
				
			||||||
 | 
					    ["🇧🇫", ["BF", "Burkina Faso"]],
 | 
				
			||||||
 | 
					    ["🇧🇮", ["BI", "Burundi"]],
 | 
				
			||||||
 | 
					    ["🇨🇻", ["CV", "Cabo Verde"]],
 | 
				
			||||||
 | 
					    ["🇰🇭", ["KH", "Cambodia"]],
 | 
				
			||||||
 | 
					    ["🇨🇲", ["CM", "Cameroon"]],
 | 
				
			||||||
 | 
					    ["🇨🇦", ["CA", "Canada"]],
 | 
				
			||||||
 | 
					    ["🇰🇾", ["KY", "Cayman Islands"]],
 | 
				
			||||||
 | 
					    ["🇨🇫", ["CF", "Central African Republic"]],
 | 
				
			||||||
 | 
					    ["🇹🇩", ["TD", "Chad"]],
 | 
				
			||||||
 | 
					    ["🇨🇱", ["CL", "Chile"]],
 | 
				
			||||||
 | 
					    ["🇨🇳", ["CN", "China"]],
 | 
				
			||||||
 | 
					    ["🇨🇽", ["CX", "Christmas Island"]],
 | 
				
			||||||
 | 
					    ["🇨🇨", ["CC", "Cocos (Keeling) Islands"]],
 | 
				
			||||||
 | 
					    ["🇨🇴", ["CO", "Colombia"]],
 | 
				
			||||||
 | 
					    ["🇰🇲", ["KM", "Comoros"]],
 | 
				
			||||||
 | 
					    ["🇨🇬", ["CG", "Congo"]],
 | 
				
			||||||
 | 
					    ["🇨🇩", ["CD", "Congo (Democratic Republic of the)"]],
 | 
				
			||||||
 | 
					    ["🇨🇰", ["CK", "Cook Islands"]],
 | 
				
			||||||
 | 
					    ["🇨🇷", ["CR", "Costa Rica"]],
 | 
				
			||||||
 | 
					    ["🇨🇮", ["CI", "Côte d'Ivoire"]],
 | 
				
			||||||
 | 
					    ["🇭🇷", ["HR", "Croatia"]],
 | 
				
			||||||
 | 
					    ["🇨🇺", ["CU", "Cuba"]],
 | 
				
			||||||
 | 
					    ["🇨🇼", ["CW", "Curaçao"]],
 | 
				
			||||||
 | 
					    ["🇨🇾", ["CY", "Cyprus"]],
 | 
				
			||||||
 | 
					    ["🇨🇿", ["CZ", "Czechia"]],
 | 
				
			||||||
 | 
					    ["🇩🇰", ["DK", "Denmark"]],
 | 
				
			||||||
 | 
					    ["🇩🇯", ["DJ", "Djibouti"]],
 | 
				
			||||||
 | 
					    ["🇩🇲", ["DM", "Dominica"]],
 | 
				
			||||||
 | 
					    ["🇩🇴", ["DO", "Dominican Republic"]],
 | 
				
			||||||
 | 
					    ["🇪🇨", ["EC", "Ecuador"]],
 | 
				
			||||||
 | 
					    ["🇪🇬", ["EG", "Egypt"]],
 | 
				
			||||||
 | 
					    ["🇸🇻", ["SV", "El Salvador"]],
 | 
				
			||||||
 | 
					    ["🇬🇶", ["GQ", "Equatorial Guinea"]],
 | 
				
			||||||
 | 
					    ["🇪🇷", ["ER", "Eritrea"]],
 | 
				
			||||||
 | 
					    ["🇪🇪", ["EE", "Estonia"]],
 | 
				
			||||||
 | 
					    ["🇪🇹", ["ET", "Ethiopia"]],
 | 
				
			||||||
 | 
					    ["🇫🇰", ["FK", "Falkland Islands"]],
 | 
				
			||||||
 | 
					    ["🇫🇴", ["FO", "Faroe Islands"]],
 | 
				
			||||||
 | 
					    ["🇫🇯", ["FJ", "Fiji"]],
 | 
				
			||||||
 | 
					    ["🇫🇮", ["FI", "Finland"]],
 | 
				
			||||||
 | 
					    ["🇫🇷", ["FR", "France"]],
 | 
				
			||||||
 | 
					    ["🇬🇫", ["GF", "French Guiana"]],
 | 
				
			||||||
 | 
					    ["🇵🇫", ["PF", "French Polynesia"]],
 | 
				
			||||||
 | 
					    ["🇹🇫", ["TF", "French Southern Territories"]],
 | 
				
			||||||
 | 
					    ["🇬🇦", ["GA", "Gabon"]],
 | 
				
			||||||
 | 
					    ["🇬🇲", ["GM", "Gambia"]],
 | 
				
			||||||
 | 
					    ["🇬🇪", ["GE", "Georgia"]],
 | 
				
			||||||
 | 
					    ["🇩🇪", ["DE", "Germany"]],
 | 
				
			||||||
 | 
					    ["🇬🇭", ["GH", "Ghana"]],
 | 
				
			||||||
 | 
					    ["🇬🇮", ["GI", "Gibraltar"]],
 | 
				
			||||||
 | 
					    ["🇬🇷", ["GR", "Greece"]],
 | 
				
			||||||
 | 
					    ["🇬🇱", ["GL", "Greenland"]],
 | 
				
			||||||
 | 
					    ["🇬🇩", ["GD", "Grenada"]],
 | 
				
			||||||
 | 
					    ["🇬🇵", ["GP", "Guadeloupe"]],
 | 
				
			||||||
 | 
					    ["🇬🇺", ["GU", "Guam"]],
 | 
				
			||||||
 | 
					    ["🇬🇹", ["GT", "Guatemala"]],
 | 
				
			||||||
 | 
					    ["🇬🇬", ["GG", "Guernsey"]],
 | 
				
			||||||
 | 
					    ["🇬🇳", ["GN", "Guinea"]],
 | 
				
			||||||
 | 
					    ["🇬🇼", ["GW", "Guinea-Bissau"]],
 | 
				
			||||||
 | 
					    ["🇬🇾", ["GY", "Guyana"]],
 | 
				
			||||||
 | 
					    ["🇭🇹", ["HT", "Haiti"]],
 | 
				
			||||||
 | 
					    ["🇭🇲", ["HM", "Heard Island and McDonald Islands"]],
 | 
				
			||||||
 | 
					    ["🇻🇦", ["VA", "Holy See (Vatican City State)"]],
 | 
				
			||||||
 | 
					    ["🇭🇳", ["HN", "Honduras"]],
 | 
				
			||||||
 | 
					    ["🇭🇰", ["HK", "Hong Kong"]],
 | 
				
			||||||
 | 
					    ["🇭🇺", ["HU", "Hungary"]],
 | 
				
			||||||
 | 
					    ["🇮🇸", ["IS", "Iceland"]],
 | 
				
			||||||
 | 
					    ["🇮🇳", ["IN", "India"]],
 | 
				
			||||||
 | 
					    ["🇮🇩", ["ID", "Indonesia"]],
 | 
				
			||||||
 | 
					    ["🇮🇷", ["IR", "Iran"]],
 | 
				
			||||||
 | 
					    ["🇮🇶", ["IQ", "Iraq"]],
 | 
				
			||||||
 | 
					    ["🇮🇪", ["IE", "Ireland"]],
 | 
				
			||||||
 | 
					    ["🇮🇲", ["IM", "Isle of Man"]],
 | 
				
			||||||
 | 
					    ["🇮🇱", ["IL", "Israel"]],
 | 
				
			||||||
 | 
					    ["🇮🇹", ["IT", "Italy"]],
 | 
				
			||||||
 | 
					    ["🇯🇲", ["JM", "Jamaica"]],
 | 
				
			||||||
 | 
					    ["🇯🇵", ["JP", "Japan"]],
 | 
				
			||||||
 | 
					    ["🇯🇪", ["JE", "Jersey"]],
 | 
				
			||||||
 | 
					    ["🇯🇴", ["JO", "Jordan"]],
 | 
				
			||||||
 | 
					    ["🇰🇿", ["KZ", "Kazakhstan"]],
 | 
				
			||||||
 | 
					    ["🇰🇪", ["KE", "Kenya"]],
 | 
				
			||||||
 | 
					    ["🇰🇮", ["KI", "Kiribati"]],
 | 
				
			||||||
 | 
					    ["🇰🇵", ["KP", "Korea (North)"]],
 | 
				
			||||||
 | 
					    ["🇰🇷", ["KR", "Korea (South)"]],
 | 
				
			||||||
 | 
					    ["🇰🇼", ["KW", "Kuwait"]],
 | 
				
			||||||
 | 
					    ["🇰🇬", ["KG", "Kyrgyzstan"]],
 | 
				
			||||||
 | 
					    ["🇱🇦", ["LA", "Lao People's Democratic Republic"]],
 | 
				
			||||||
 | 
					    ["🇱🇻", ["LV", "Latvia"]],
 | 
				
			||||||
 | 
					    ["🇱🇧", ["LB", "Lebanon"]],
 | 
				
			||||||
 | 
					    ["🇱🇸", ["LS", "Lesotho"]],
 | 
				
			||||||
 | 
					    ["🇱🇷", ["LR", "Liberia"]],
 | 
				
			||||||
 | 
					    ["🇱🇾", ["LY", "Libya"]],
 | 
				
			||||||
 | 
					    ["🇱🇮", ["LI", "Liechtenstein"]],
 | 
				
			||||||
 | 
					    ["🇱🇹", ["LT", "Lithuania"]],
 | 
				
			||||||
 | 
					    ["🇱🇺", ["LU", "Luxembourg"]],
 | 
				
			||||||
 | 
					    ["🇲🇴", ["MO", "Macao"]],
 | 
				
			||||||
 | 
					    ["🇲🇰", ["MK", "North Macedonia"]],
 | 
				
			||||||
 | 
					    ["🇲🇬", ["MG", "Madagascar"]],
 | 
				
			||||||
 | 
					    ["🇲🇼", ["MW", "Malawi"]],
 | 
				
			||||||
 | 
					    ["🇲🇾", ["MY", "Malaysia"]],
 | 
				
			||||||
 | 
					    ["🇲🇻", ["MV", "Maldives"]],
 | 
				
			||||||
 | 
					    ["🇲🇱", ["ML", "Mali"]],
 | 
				
			||||||
 | 
					    ["🇲🇹", ["MT", "Malta"]],
 | 
				
			||||||
 | 
					    ["🇲🇭", ["MH", "Marshall Islands"]],
 | 
				
			||||||
 | 
					    ["🇲🇶", ["MQ", "Martinique"]],
 | 
				
			||||||
 | 
					    ["🇲🇷", ["MR", "Mauritania"]],
 | 
				
			||||||
 | 
					    ["🇲🇺", ["MU", "Mauritius"]],
 | 
				
			||||||
 | 
					    ["🇾🇹", ["YT", "Mayotte"]],
 | 
				
			||||||
 | 
					    ["🇲🇽", ["MX", "Mexico"]],
 | 
				
			||||||
 | 
					    ["🇫🇲", ["FM", "Micronesia (Federated States of)"]],
 | 
				
			||||||
 | 
					    ["🇲🇩", ["MD", "Moldova"]],
 | 
				
			||||||
 | 
					    ["🇲🇨", ["MC", "Monaco"]],
 | 
				
			||||||
 | 
					    ["🇲🇳", ["MN", "Mongolia"]],
 | 
				
			||||||
 | 
					    ["🇲🇪", ["ME", "Montenegro"]],
 | 
				
			||||||
 | 
					    ["🇲🇸", ["MS", "Montserrat"]],
 | 
				
			||||||
 | 
					    ["🇲🇦", ["MA", "Morocco"]],
 | 
				
			||||||
 | 
					    ["🇲🇿", ["MZ", "Mozambique"]],
 | 
				
			||||||
 | 
					    ["🇲🇲", ["MM", "Myanmar"]],
 | 
				
			||||||
 | 
					    ["🇳🇦", ["NA", "Namibia"]],
 | 
				
			||||||
 | 
					    ["🇳🇷", ["NR", "Nauru"]],
 | 
				
			||||||
 | 
					    ["🇳🇵", ["NP", "Nepal"]],
 | 
				
			||||||
 | 
					    ["🇳🇱", ["NL", "Netherlands"]],
 | 
				
			||||||
 | 
					    ["🇳🇨", ["NC", "New Caledonia"]],
 | 
				
			||||||
 | 
					    ["🇳🇿", ["NZ", "New Zealand"]],
 | 
				
			||||||
 | 
					    ["🇳🇮", ["NI", "Nicaragua"]],
 | 
				
			||||||
 | 
					    ["🇳🇪", ["NE", "Niger"]],
 | 
				
			||||||
 | 
					    ["🇳🇬", ["NG", "Nigeria"]],
 | 
				
			||||||
 | 
					    ["🇳🇺", ["NU", "Niue"]],
 | 
				
			||||||
 | 
					    ["🇳🇫", ["NF", "Norfolk Island"]],
 | 
				
			||||||
 | 
					    ["🇲🇵", ["MP", "Northern Mariana Islands"]],
 | 
				
			||||||
 | 
					    ["🇳🇴", ["NO", "Norway"]],
 | 
				
			||||||
 | 
					    ["🇴🇲", ["OM", "Oman"]],
 | 
				
			||||||
 | 
					    ["🇵🇰", ["PK", "Pakistan"]],
 | 
				
			||||||
 | 
					    ["🇵🇼", ["PW", "Palau"]],
 | 
				
			||||||
 | 
					    ["🇵🇸", ["PS", "Palestine, State of"]],
 | 
				
			||||||
 | 
					    ["🇵🇦", ["PA", "Panama"]],
 | 
				
			||||||
 | 
					    ["🇵🇬", ["PG", "Papua New Guinea"]],
 | 
				
			||||||
 | 
					    ["🇵🇾", ["PY", "Paraguay"]],
 | 
				
			||||||
 | 
					    ["🇵🇪", ["PE", "Peru"]],
 | 
				
			||||||
 | 
					    ["🇵🇭", ["PH", "Philippines"]],
 | 
				
			||||||
 | 
					    ["🇵🇳", ["PN", "Pitcairn"]],
 | 
				
			||||||
 | 
					    ["🇵🇱", ["PL", "Poland"]],
 | 
				
			||||||
 | 
					    ["🇵🇹", ["PT", "Portugal"]],
 | 
				
			||||||
 | 
					    ["🇵🇷", ["PR", "Puerto Rico"]],
 | 
				
			||||||
 | 
					    ["🇶🇦", ["QA", "Qatar"]],
 | 
				
			||||||
 | 
					    ["🇷🇪", ["RE", "Réunion"]],
 | 
				
			||||||
 | 
					    ["🇷🇴", ["RO", "Romania"]],
 | 
				
			||||||
 | 
					    ["🇷🇺", ["RU", "Russian Federation"]],
 | 
				
			||||||
 | 
					    ["🇷🇼", ["RW", "Rwanda"]],
 | 
				
			||||||
 | 
					    ["🇧🇱", ["BL", "Saint Barthélemy"]],
 | 
				
			||||||
 | 
					    ["🇸🇭", ["SH", "Saint Helena, Ascension and Tristan da Cunha"]],
 | 
				
			||||||
 | 
					    ["🇰🇳", ["KN", "Saint Kitts and Nevis"]],
 | 
				
			||||||
 | 
					    ["🇱🇨", ["LC", "Saint Lucia"]],
 | 
				
			||||||
 | 
					    ["🇲🇫", ["MF", "Saint Martin (French part)"]],
 | 
				
			||||||
 | 
					    ["🇵🇲", ["PM", "Saint Pierre and Miquelon"]],
 | 
				
			||||||
 | 
					    ["🇻🇨", ["VC", "Saint Vincent and the Grenadines"]],
 | 
				
			||||||
 | 
					    ["🇼🇸", ["WS", "Samoa"]],
 | 
				
			||||||
 | 
					    ["🇸🇲", ["SM", "San Marino"]],
 | 
				
			||||||
 | 
					    ["🇸🇹", ["ST", "Sao Tome and Principe"]],
 | 
				
			||||||
 | 
					    ["🇸🇦", ["SA", "Saudi Arabia"]],
 | 
				
			||||||
 | 
					    ["🇸🇳", ["SN", "Senegal"]],
 | 
				
			||||||
 | 
					    ["🇷🇸", ["RS", "Serbia"]],
 | 
				
			||||||
 | 
					    ["🇸🇨", ["SC", "Seychelles"]],
 | 
				
			||||||
 | 
					    ["🇸🇱", ["SL", "Sierra Leone"]],
 | 
				
			||||||
 | 
					    ["🇸🇬", ["SG", "Singapore"]],
 | 
				
			||||||
 | 
					    ["🇸🇽", ["SX", "Sint Maarten (Dutch part)"]],
 | 
				
			||||||
 | 
					    ["🇸🇰", ["SK", "Slovakia"]],
 | 
				
			||||||
 | 
					    ["🇸🇮", ["SI", "Slovenia"]],
 | 
				
			||||||
 | 
					    ["🇸🇧", ["SB", "Solomon Islands"]],
 | 
				
			||||||
 | 
					    ["🇸🇴", ["SO", "Somalia"]],
 | 
				
			||||||
 | 
					    ["🇿🇦", ["ZA", "South Africa"]],
 | 
				
			||||||
 | 
					    ["🇬🇸", ["GS", "South Georgia and the South Sandwich Islands"]],
 | 
				
			||||||
 | 
					    ["🇸🇸", ["SS", "South Sudan"]],
 | 
				
			||||||
 | 
					    ["🇪🇸", ["ES", "Spain"]],
 | 
				
			||||||
 | 
					    ["🇱🇰", ["LK", "Sri Lanka"]],
 | 
				
			||||||
 | 
					    ["🇸🇩", ["SD", "Sudan"]],
 | 
				
			||||||
 | 
					    ["🇸🇷", ["SR", "Suriname"]],
 | 
				
			||||||
 | 
					    ["🇸🇯", ["SJ", "Svalbard and Jan Mayen"]],
 | 
				
			||||||
 | 
					    ["🇸🇪", ["SE", "Sweden"]],
 | 
				
			||||||
 | 
					    ["🇨🇭", ["CH", "Switzerland"]],
 | 
				
			||||||
 | 
					    ["🇸🇾", ["SY", "Syrian Arab Republic"]],
 | 
				
			||||||
 | 
					    ["🇹🇼", ["TW", "Taiwan, Province of China"]],
 | 
				
			||||||
 | 
					    ["🇹🇯", ["TJ", "Tajikistan"]],
 | 
				
			||||||
 | 
					    ["🇹🇿", ["TZ", "Tanzania, United Republic of"]],
 | 
				
			||||||
 | 
					    ["🇹🇭", ["TH", "Thailand"]],
 | 
				
			||||||
 | 
					    ["🇹🇱", ["TL", "Timor-Leste"]],
 | 
				
			||||||
 | 
					    ["🇹🇬", ["TG", "Togo"]],
 | 
				
			||||||
 | 
					    ["🇹🇰", ["TK", "Tokelau"]],
 | 
				
			||||||
 | 
					    ["🇹🇴", ["TO", "Tonga"]],
 | 
				
			||||||
 | 
					    ["🇹🇹", ["TT", "Trinidad and Tobago"]],
 | 
				
			||||||
 | 
					    ["🇹🇳", ["TN", "Tunisia"]],
 | 
				
			||||||
 | 
					    ["🇹🇷", ["TR", "Turkey"]],
 | 
				
			||||||
 | 
					    ["🇹🇲", ["TM", "Turkmenistan"]],
 | 
				
			||||||
 | 
					    ["🇹🇨", ["TC", "Turks and Caicos Islands"]],
 | 
				
			||||||
 | 
					    ["🇹🇻", ["TV", "Tuvalu"]],
 | 
				
			||||||
 | 
					    ["🇺🇬", ["UG", "Uganda"]],
 | 
				
			||||||
 | 
					    ["🇺🇦", ["UA", "Ukraine"]],
 | 
				
			||||||
 | 
					    ["🇦🇪", ["AE", "United Arab Emirates"]],
 | 
				
			||||||
 | 
					    ["🇬🇧", ["GB", "United Kingdom"]],
 | 
				
			||||||
 | 
					    ["🇺🇸", ["US", "United States"]],
 | 
				
			||||||
 | 
					    ["🇺🇲", ["UM", "United States Minor Outlying Islands"]],
 | 
				
			||||||
 | 
					    ["🇺🇾", ["UY", "Uruguay"]],
 | 
				
			||||||
 | 
					    ["🇺🇿", ["UZ", "Uzbekistan"]],
 | 
				
			||||||
 | 
					    ["🇻🇺", ["VU", "Vanuatu"]],
 | 
				
			||||||
 | 
					    ["🇻🇪", ["VE", "Venezuela"]],
 | 
				
			||||||
 | 
					    ["🇻🇳", ["VN", "Viet Nam"]],
 | 
				
			||||||
 | 
					    ["🇻🇬", ["VG", "Virgin Islands (British)"]],
 | 
				
			||||||
 | 
					    ["🇻🇮", ["VI", "Virgin Islands (U.S.)"]],
 | 
				
			||||||
 | 
					    ["🇼🇫", ["WF", "Wallis and Futuna"]],
 | 
				
			||||||
 | 
					    ["🇪🇭", ["EH", "Western Sahara"]],
 | 
				
			||||||
 | 
					    ["🇾🇪", ["YE", "Yemen"]],
 | 
				
			||||||
 | 
					    ["🇿🇲", ["ZM", "Zambia"]],
 | 
				
			||||||
 | 
					    ["🇿🇼", ["ZW", "Zimbabwe"]]
 | 
				
			||||||
 | 
					]
 | 
				
			||||||
							
								
								
									
										580
									
								
								Public/json/PetroGlyphScout.glyphs.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										580
									
								
								Public/json/PetroGlyphScout.glyphs.json
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,580 @@
 | 
				
			|||||||
 | 
					[
 | 
				
			||||||
 | 
					    ["🔍", ["Buscar", "Lupa", "Search", "Filtrar"]],
 | 
				
			||||||
 | 
					    ["🔎", ["Inspeccionar", "Zoom", "Examinar"]],
 | 
				
			||||||
 | 
					    ["🏠", ["Inicio", "Home", "Casa"]],
 | 
				
			||||||
 | 
					    ["⚙️", ["Ajustes", "Configuración", "Settings", "Gear", "Config2", "Ajustes2"]],
 | 
				
			||||||
 | 
					    ["⭐", ["Favorito", "Estrella", "Destacar", "Star"]],
 | 
				
			||||||
 | 
					    ["❤️", ["Favorito2", "Corazón", "Like", "Me gusta"]],
 | 
				
			||||||
 | 
					    ["📷", ["Cámara", "Foto", "Imagen", "Camera"]],
 | 
				
			||||||
 | 
					    ["🖼️", ["Imagen", "Galería", "Picture"]],
 | 
				
			||||||
 | 
					    ["📁", ["Carpeta", "Folder", "Directorio"]],
 | 
				
			||||||
 | 
					    ["📄", ["Documento", "Archivo", "File"]],
 | 
				
			||||||
 | 
					    ["🔗", ["Enlace", "Link", "Vínculo"]],
 | 
				
			||||||
 | 
					    ["🗑️", ["Borrar", "Eliminar", "Trash", "Papelera"]],
 | 
				
			||||||
 | 
					    ["💾", ["Guardar", "Save", "Disco"]],
 | 
				
			||||||
 | 
					    ["⬇️", ["Descargar", "Download", "Bajar"]],
 | 
				
			||||||
 | 
					    ["⬆️", ["Subir", "Upload", "Enviar"]],
 | 
				
			||||||
 | 
					    ["☁️", ["Nube", "Cloud", "Almacenamiento"]],
 | 
				
			||||||
 | 
					    ["🔒", ["Bloquear", "Lock", "Seguro"]],
 | 
				
			||||||
 | 
					    ["🔓", ["Desbloquear", "Unlock"]],
 | 
				
			||||||
 | 
					    ["👤", ["Usuario", "Perfil", "User"]],
 | 
				
			||||||
 | 
					    ["👥", ["Usuarios", "Grupo", "People"]],
 | 
				
			||||||
 | 
					    ["✉️", ["Correo", "Email", "Mensaje"]],
 | 
				
			||||||
 | 
					    ["📞", ["Teléfono", "Llamar", "Phone"]],
 | 
				
			||||||
 | 
					    ["📅", ["Calendario", "Fecha", "Evento"]],
 | 
				
			||||||
 | 
					    ["⏰", ["Reloj", "Alarma", "Tiempo"]],
 | 
				
			||||||
 | 
					    ["📍", ["Ubicación", "Pin", "Mapa"]],
 | 
				
			||||||
 | 
					    ["🚩", ["Marcador", "Flag", "Aviso"]],
 | 
				
			||||||
 | 
					    ["✅", ["Aceptar", "Correcto", "Check"]],
 | 
				
			||||||
 | 
					    ["❌", ["Rechazar", "Cerrar", "Error"]],
 | 
				
			||||||
 | 
					    ["➕", ["Añadir", "Agregar", "Plus"]],
 | 
				
			||||||
 | 
					    ["➖", ["Quitar", "Menos", "Minus"]],
 | 
				
			||||||
 | 
					    ["✏️", ["Editar", "Modificar", "Pencil"]],
 | 
				
			||||||
 | 
					    ["▶️", ["Reproducir", "Play", "Iniciar"]],
 | 
				
			||||||
 | 
					    ["⏸️", ["Pausa", "Pause"]],
 | 
				
			||||||
 | 
					    ["⏹️", ["Detener", "Stop"]],
 | 
				
			||||||
 | 
					    ["⏩", ["Siguiente", "Adelantar", "Fast forward"]],
 | 
				
			||||||
 | 
					    ["⏪", ["Anterior", "Retroceder", "Rewind"]],
 | 
				
			||||||
 | 
					    ["🔄", ["Refrescar", "Actualizar", "Reload", "Recargar", "Refresh2"]],
 | 
				
			||||||
 | 
					    ["🧾", ["Lista", "Registro", "Log", "Receipt", "Ticket"]],
 | 
				
			||||||
 | 
					    ["☰", ["Menú", "Opciones", "Menu"]],
 | 
				
			||||||
 | 
					    ["🔔", ["Notificación", "Alerta", "Bell"]],
 | 
				
			||||||
 | 
					    ["👁️", ["Ver", "Mostrar", "Eye"]],
 | 
				
			||||||
 | 
					    ["🙈", ["Ocultar", "Hidden", "Sin vista"]],
 | 
				
			||||||
 | 
					    ["🔖", ["Marcador", "Bookmark", "Guardar"]],
 | 
				
			||||||
 | 
					    ["🏷️", ["Etiqueta", "Tag", "Label"]],
 | 
				
			||||||
 | 
					    ["🛒", ["Carrito", "Compra", "Tienda"]],
 | 
				
			||||||
 | 
					    ["💳", ["Tarjeta", "Pago", "Credit"]],
 | 
				
			||||||
 | 
					    ["🎁", ["Regalo", "Presente", "Gift"]],
 | 
				
			||||||
 | 
					    ["🎵", ["Música", "Audio", "Song"]],
 | 
				
			||||||
 | 
					    ["🎬", ["Vídeo", "Video", "Película"]],
 | 
				
			||||||
 | 
					    ["💬", ["Comentario", "Chat", "Mensaje"]],
 | 
				
			||||||
 | 
					    ["🔧", ["Herramientas", "Ajustar", "Wrench"]],
 | 
				
			||||||
 | 
					    ["🔨", ["Reparar", "Construir", "Hammer"]],
 | 
				
			||||||
 | 
					    ["📊", ["Gráfica", "Informe", "Chart"]],
 | 
				
			||||||
 | 
					    ["📈", ["Subida", "Crecimiento", "Trend"]],
 | 
				
			||||||
 | 
					    ["🐞", ["Bug", "Error", "Insecto"]],
 | 
				
			||||||
 | 
					    ["🛡️", ["Seguridad", "Protección", "Shield"]],
 | 
				
			||||||
 | 
					    ["💡", ["Idea", "Sugerencia", "Tip"]],
 | 
				
			||||||
 | 
					    ["❓", ["Ayuda", "Pregunta", "FAQ"]],
 | 
				
			||||||
 | 
					    ["ℹ️", ["Información", "Info"]],
 | 
				
			||||||
 | 
					    ["⚠️", ["Advertencia", "Precaución", "Warning"]],
 | 
				
			||||||
 | 
					    ["📚", ["Biblioteca", "Docs", "Libros"]],
 | 
				
			||||||
 | 
					    ["🔢", ["Código", "Número", "Code", "Numeros", "Digits"]],
 | 
				
			||||||
 | 
					    ["⌨️", ["Teclado", "Entrada", "Input"]],
 | 
				
			||||||
 | 
					    ["🖱️", ["Ratón", "Mouse", "Pointer"]],
 | 
				
			||||||
 | 
					    ["🌐", ["Internet", "Web", "Globo"]],
 | 
				
			||||||
 | 
					    ["🔬", ["Analizar", "Investigación", "Lab"]],
 | 
				
			||||||
 | 
					    ["←", ["Izquierda", "Left", "Flecha"]],
 | 
				
			||||||
 | 
					    ["→", ["Derecha", "Right", "Flecha"]],
 | 
				
			||||||
 | 
					    ["↑", ["Arriba", "Up", "Flecha"]],
 | 
				
			||||||
 | 
					    ["↓", ["Abajo", "Down", "Flecha"]],
 | 
				
			||||||
 | 
					    ["↔", ["Horizontal", "Intercambiar"]],
 | 
				
			||||||
 | 
					    ["↕", ["Vertical", "Intercambiar"]],
 | 
				
			||||||
 | 
					    ["↩", ["Volver", "Return"]],
 | 
				
			||||||
 | 
					    ["↪", ["Enviar", "Forward"]],
 | 
				
			||||||
 | 
					    ["±", ["Más o menos", "PlusMinus"]],
 | 
				
			||||||
 | 
					    ["×", ["Multiplicar", "Por", "Times"]],
 | 
				
			||||||
 | 
					    ["÷", ["Dividir", "Slash", "Divide"]],
 | 
				
			||||||
 | 
					    ["≈", ["Aproximado", "Approx"]],
 | 
				
			||||||
 | 
					    ["≠", ["No igual", "NotEqual"]],
 | 
				
			||||||
 | 
					    ["≤", ["Menor o igual", "LE"]],
 | 
				
			||||||
 | 
					    ["≥", ["Mayor o igual", "GE"]],
 | 
				
			||||||
 | 
					    ["€", ["Euro", "Moneda"]],
 | 
				
			||||||
 | 
					    ["£", ["Libra", "Moneda"]],
 | 
				
			||||||
 | 
					    ["¥", ["Yen", "Moneda"]],
 | 
				
			||||||
 | 
					    ["₩", ["Won", "Moneda"]],
 | 
				
			||||||
 | 
					    ["₽", ["Rublo", "Moneda"]],
 | 
				
			||||||
 | 
					    ["$", ["Dólar", "Dollar", "Moneda"]],
 | 
				
			||||||
 | 
					    ["©", ["Copyright", "Derechos"]],
 | 
				
			||||||
 | 
					    ["®", ["Registrado", "Marca"]],
 | 
				
			||||||
 | 
					    ["™", ["Marca registrada", "TM"]],
 | 
				
			||||||
 | 
					    ["☀️", ["Sol", "Soleado", "Weather"]],
 | 
				
			||||||
 | 
					    ["🌤️", ["Parcial", "Soleado"]],
 | 
				
			||||||
 | 
					    ["⛅", ["Nublado parcial", "Cloudy"]],
 | 
				
			||||||
 | 
					    ["🌧️", ["Lluvia", "Rain"]],
 | 
				
			||||||
 | 
					    ["⛈️", ["Tormenta", "Storm"]],
 | 
				
			||||||
 | 
					    ["❄️", ["Nieve", "Snow"]],
 | 
				
			||||||
 | 
					    ["🌫️", ["Niebla", "Fog"]],
 | 
				
			||||||
 | 
					    ["✈️", ["Avión", "Vuelo"]],
 | 
				
			||||||
 | 
					    ["🚗", ["Coche", "Auto", "Car"]],
 | 
				
			||||||
 | 
					    ["🚲", ["Bici", "Bicicleta", "Bike"]],
 | 
				
			||||||
 | 
					    ["🚆", ["Tren", "Rail"]],
 | 
				
			||||||
 | 
					    ["🚢", ["Barco", "Ship"]],
 | 
				
			||||||
 | 
					    ["🚌", ["Autobús", "Bus"]],
 | 
				
			||||||
 | 
					    ["🚕", ["Taxi", "Cab"]],
 | 
				
			||||||
 | 
					    ["🎧", ["Auriculares", "Audio", "Headphones"]],
 | 
				
			||||||
 | 
					    ["🔊", ["Volumen", "Alto", "Sound"]],
 | 
				
			||||||
 | 
					    ["🔈", ["Volumen bajo", "SoundLow"]],
 | 
				
			||||||
 | 
					    ["🔇", ["Silencio", "Mute"]],
 | 
				
			||||||
 | 
					    ["🎤", ["Micrófono", "Microphone"]],
 | 
				
			||||||
 | 
					    ["🔑", ["Clave", "Key", "Password"]],
 | 
				
			||||||
 | 
					    ["🔋", ["Batería", "Battery", "Power"]],
 | 
				
			||||||
 | 
					    ["📶", ["Señal", "Red", "Signal"]],
 | 
				
			||||||
 | 
					    ["⚡", ["Energía", "Rayo", "Power"]],
 | 
				
			||||||
 | 
					    ["🧭", ["Navegación", "Brújula", "Compass"]],
 | 
				
			||||||
 | 
					    ["🗂️", ["Carpetas", "Organizar", "Folders"]],
 | 
				
			||||||
 | 
					    ["📝", ["Nota", "Anotar", "Note"]],
 | 
				
			||||||
 | 
					    ["🗒️", ["Lista", "Checklist", "Notas"]],
 | 
				
			||||||
 | 
					    ["📎", ["Adjuntar", "Clip", "Attachment"]],
 | 
				
			||||||
 | 
					    ["☑️", ["Checkbox", "Seleccionado"]],
 | 
				
			||||||
 | 
					    ["◼️", ["Bloque", "Cuadro"]],
 | 
				
			||||||
 | 
					    ["🐶", ["Perro", "Dog"]],
 | 
				
			||||||
 | 
					    ["🐱", ["Gato", "Cat"]],
 | 
				
			||||||
 | 
					    ["🦊", ["Zorro", "Fox"]],
 | 
				
			||||||
 | 
					    ["🐼", ["Panda", "Panda"]],
 | 
				
			||||||
 | 
					    ["🌟", ["Estrella2", "Glow"]],
 | 
				
			||||||
 | 
					    ["✨", ["Brillo", "Sparkle"]],
 | 
				
			||||||
 | 
					    ["🔁", ["Repetir", "Loop"]],
 | 
				
			||||||
 | 
					    ["🔀", ["Aleatorio", "Shuffle"]],
 | 
				
			||||||
 | 
					    ["♻️", ["Reciclar", "Recycle"]],
 | 
				
			||||||
 | 
					    ["⏺️", ["Grabar", "Record", "Record-button"]],
 | 
				
			||||||
 | 
					    ["⏏️", ["Expulsar", "Eject"]],
 | 
				
			||||||
 | 
					    ["🔘", ["Selector", "Radio", "Opción"]],
 | 
				
			||||||
 | 
					    ["🔳", ["Cuadro", "Botón", "Square"]],
 | 
				
			||||||
 | 
					    ["🧩", ["Puzzle", "Pieza", "Módulo"]],
 | 
				
			||||||
 | 
					    ["🪄", ["Varita", "Magic", "Efecto"]],
 | 
				
			||||||
 | 
					    ["🚨", ["Alerta", "Sirena", "Emergencia"]],
 | 
				
			||||||
 | 
					    ["🧯", ["Extintor", "Apagar", "Seguridad"]],
 | 
				
			||||||
 | 
					    ["🧑💻", ["Desarrollador", "Developer", "Coder"]],
 | 
				
			||||||
 | 
					    ["🧑🎨", ["Diseñador", "Designer", "Artist"]],
 | 
				
			||||||
 | 
					    ["🧑🚀", ["Astronauta", "Explorer"]],
 | 
				
			||||||
 | 
					    ["🧑🏫", ["Profesor", "Teacher"]],
 | 
				
			||||||
 | 
					    ["🤝", ["Acuerdo", "Handshake", "Colaborar"]],
 | 
				
			||||||
 | 
					    ["📌", ["Pin", "Fijar", "Anclar"]],
 | 
				
			||||||
 | 
					    ["📂", ["Carpeta abierta", "Open-folder"]],
 | 
				
			||||||
 | 
					    ["🗃️", ["Archivo", "Archive", "Box"]],
 | 
				
			||||||
 | 
					    ["📑", ["Separador", "Bookmark-tab"]],
 | 
				
			||||||
 | 
					    ["📺", ["TV", "Pantalla", "Broadcast"]],
 | 
				
			||||||
 | 
					    ["📻", ["Radio", "Audio-legacy"]],
 | 
				
			||||||
 | 
					    ["📼", ["Cinta", "Retro-video"]],
 | 
				
			||||||
 | 
					    ["🎚️", ["Fader", "Mixer", "Control-audio"]],
 | 
				
			||||||
 | 
					    ["🎛️", ["Panel", "Knobs", "Control"]],
 | 
				
			||||||
 | 
					    ["💸", ["Gastar", "Dinero", "Cash-out"]],
 | 
				
			||||||
 | 
					    ["🪙", ["Moneda", "Coin", "Cripto"]],
 | 
				
			||||||
 | 
					    ["🛩️", ["Jet", "Avión pequeño"]],
 | 
				
			||||||
 | 
					    ["🛳️", ["Crucero", "Ferry"]],
 | 
				
			||||||
 | 
					    ["🛴", ["Scooter", "Patinete"]],
 | 
				
			||||||
 | 
					    ["🚜", ["Tractor", "Agrícola"]],
 | 
				
			||||||
 | 
					    ["🛰️", ["Satélite", "Space", "Comunicaciones"]],
 | 
				
			||||||
 | 
					    ["🍔", ["Hamburguesa", "Comida rápida", "Burger"]],
 | 
				
			||||||
 | 
					    ["☕", ["Café", "Break", "Pausa"]],
 | 
				
			||||||
 | 
					    ["🥗", ["Ensalada", "Saludable", "Salad"]],
 | 
				
			||||||
 | 
					    ["🍷", ["Vino", "Bebida", "Social"]],
 | 
				
			||||||
 | 
					    ["🌊", ["Agua", "Ola", "Mar"]],
 | 
				
			||||||
 | 
					    ["🌲", ["Bosque", "Árbol", "Naturaleza"]],
 | 
				
			||||||
 | 
					    ["🌋", ["Volcán", "Energía"]],
 | 
				
			||||||
 | 
					    ["🌈", ["Arcoíris", "Positivo"]],
 | 
				
			||||||
 | 
					    ["🧪", ["Laboratorio", "Test", "Experiment"]],
 | 
				
			||||||
 | 
					    ["🧬", ["ADN", "Genética", "Bio"]],
 | 
				
			||||||
 | 
					    ["🧠", ["Cerebro", "AI", "Inteligencia"]],
 | 
				
			||||||
 | 
					    ["🪛", ["Destornillador", "Hardware", "Tool"]],
 | 
				
			||||||
 | 
					    ["🩺", ["Médico", "Salud", "Checkup"]],
 | 
				
			||||||
 | 
					    ["🚑", ["Ambulancia", "Emergencia médica"]],
 | 
				
			||||||
 | 
					    ["§", ["Sección", "Ley", "Artículo"]],
 | 
				
			||||||
 | 
					    ["∑", ["Sumatoria", "Suma"]],
 | 
				
			||||||
 | 
					    ["∞", ["Infinito", "Loop"]],
 | 
				
			||||||
 | 
					    ["🎲", ["Juego", "Azar", "Random"]],
 | 
				
			||||||
 | 
					    ["🧵", ["Hilo", "Thread", "Costura"]],
 | 
				
			||||||
 | 
					    ["🪴", ["Planta", "Indoor", "Hobby"]],
 | 
				
			||||||
 | 
					    ["🛠️", ["Mantenimiento", "Herramientas"]],
 | 
				
			||||||
 | 
					    ["🎉", ["Celebración", "Party", "Congrats"]],
 | 
				
			||||||
 | 
					    ["🎂", ["Pastel", "Birthday", "Cake"]],
 | 
				
			||||||
 | 
					    ["😀", ["Sonrisa", "Smile", "Happy"]],
 | 
				
			||||||
 | 
					    ["😃", ["Feliz", "Happy2", "Joy"]],
 | 
				
			||||||
 | 
					    ["😄", ["Contento", "Grin"]],
 | 
				
			||||||
 | 
					    ["😁", ["Risa", "BigSmile"]],
 | 
				
			||||||
 | 
					    ["😆", ["Riendo", "Laughing"]],
 | 
				
			||||||
 | 
					    ["😅", ["Alivio", "Relief", "Sweat"]],
 | 
				
			||||||
 | 
					    ["🤣", ["LOL", "ROFL", "Crying laugh"]],
 | 
				
			||||||
 | 
					    ["😂", ["Carcajada", "TearsOfJoy"]],
 | 
				
			||||||
 | 
					    ["🙂", ["Leve sonrisa", "Slight smile"]],
 | 
				
			||||||
 | 
					    ["🙃", ["Boca abajo", "Upside down"]],
 | 
				
			||||||
 | 
					    ["😉", ["Guiño", "Wink"]],
 | 
				
			||||||
 | 
					    ["😊", ["Agradable", "Pleasant"]],
 | 
				
			||||||
 | 
					    ["🤩", ["Asombrado", "Starstruck"]],
 | 
				
			||||||
 | 
					    ["😍", ["Enamorado", "Love eyes"]],
 | 
				
			||||||
 | 
					    ["😘", ["Beso", "Kiss"]],
 | 
				
			||||||
 | 
					    ["😗", ["Besito", "Kissing"]],
 | 
				
			||||||
 | 
					    ["😚", ["Besos ojos cerrados", "Kissing closed eyes"]],
 | 
				
			||||||
 | 
					    ["😜", ["Pícara", "Tongue out"]],
 | 
				
			||||||
 | 
					    ["😎", ["Cool", "Gafas"]],
 | 
				
			||||||
 | 
					    ["🤓", ["Nerd", "Geek"]],
 | 
				
			||||||
 | 
					    ["🧐", ["Curioso", "Inspect"]],
 | 
				
			||||||
 | 
					    ["🤔", ["Pensando", "Thinking"]],
 | 
				
			||||||
 | 
					    ["🤨", ["Duda", "Skeptical"]],
 | 
				
			||||||
 | 
					    ["🙄", ["Ojos arriba", "Eye roll"]],
 | 
				
			||||||
 | 
					    ["😴", ["Dormido", "Sleep"]],
 | 
				
			||||||
 | 
					    ["😪", ["Sueño", "Sleepy"]],
 | 
				
			||||||
 | 
					    ["😵", ["Aturdido", "Dizzy"]],
 | 
				
			||||||
 | 
					    ["🤯", ["Mente explotando", "Mind blown"]],
 | 
				
			||||||
 | 
					    ["😷", ["Enfermo", "Sick", "Mask"]],
 | 
				
			||||||
 | 
					    ["🤒", ["Enfermo 2", "Fever"]],
 | 
				
			||||||
 | 
					    ["🤕", ["Herido", "Injured"]],
 | 
				
			||||||
 | 
					    ["🤢", ["Náuseas", "Nauseated"]],
 | 
				
			||||||
 | 
					    ["🤮", ["Vomitar", "Puke"]],
 | 
				
			||||||
 | 
					    ["🤧", ["Estornudo", "Sneeze"]],
 | 
				
			||||||
 | 
					    ["🤝", ["Apretón mano", "Handshake", "Colaborar"]],
 | 
				
			||||||
 | 
					    ["👍", ["Me gusta", "Like", "Thumbs up"]],
 | 
				
			||||||
 | 
					    ["👎", ["No me gusta", "Dislike", "Thumbs down"]],
 | 
				
			||||||
 | 
					    ["👏", ["Aplauso", "Clap"]],
 | 
				
			||||||
 | 
					    ["🙌", ["Manos arriba", "Hooray"]],
 | 
				
			||||||
 | 
					    ["🙏", ["Gracias", "Please", "Pray"]],
 | 
				
			||||||
 | 
					    ["🤞", ["Cruzar dedos", "Fingers crossed"]],
 | 
				
			||||||
 | 
					    ["✌️", ["Paz", "Victory", "V"]],
 | 
				
			||||||
 | 
					    ["🤟", ["Te quiero (mano rock)", "LoveYouGesture"]],
 | 
				
			||||||
 | 
					    ["👋", ["Saludo", "Wave", "Hola"]],
 | 
				
			||||||
 | 
					    ["🤙", ["Llamar", "Call me"]],
 | 
				
			||||||
 | 
					    ["👊", ["Puño", "Fist bump"]],
 | 
				
			||||||
 | 
					    ["✋", ["Mano arriba", "Stop"]],
 | 
				
			||||||
 | 
					    ["🖐️", ["Mano", "Hand"]],
 | 
				
			||||||
 | 
					    ["🖖", ["Vulcan salute", "Vulcan"]],
 | 
				
			||||||
 | 
					    ["🧑🤝🧑", ["Personas", "People group"]],
 | 
				
			||||||
 | 
					    ["👨👩👧👦", ["Familia", "Family"]],
 | 
				
			||||||
 | 
					    ["👶", ["Bebé", "Baby"]],
 | 
				
			||||||
 | 
					    ["👧", ["Niña", "Girl"]],
 | 
				
			||||||
 | 
					    ["👦", ["Niño", "Boy"]],
 | 
				
			||||||
 | 
					    ["🧒", ["Niñ@", "Child"]],
 | 
				
			||||||
 | 
					    ["🧓", ["Anciano", "Elder"]],
 | 
				
			||||||
 | 
					    ["👴", ["Abuelo", "Old man"]],
 | 
				
			||||||
 | 
					    ["👵", ["Abuela", "Old woman"]],
 | 
				
			||||||
 | 
					    ["👮♀️", ["Policía", "Police"]],
 | 
				
			||||||
 | 
					    ["👷♂️", ["Obrero", "Construction worker"]],
 | 
				
			||||||
 | 
					    ["💂♂️", ["Guardia", "Guard"]],
 | 
				
			||||||
 | 
					    ["🕵️♂️", ["Detective", "Spy"]],
 | 
				
			||||||
 | 
					    ["🤴", ["Rey", "Prince"]],
 | 
				
			||||||
 | 
					    ["👸", ["Reina", "Princess"]],
 | 
				
			||||||
 | 
					    ["🤶", ["Santa mujer", "Mrs Claus"]],
 | 
				
			||||||
 | 
					    ["🎅", ["Papá Noel", "Santa"]],
 | 
				
			||||||
 | 
					    ["🐵", ["Mono", "Monkey"]],
 | 
				
			||||||
 | 
					    ["🐒", ["Mono 2", "Monkey2"]],
 | 
				
			||||||
 | 
					    ["🦁", ["León", "Lion"]],
 | 
				
			||||||
 | 
					    ["🐯", ["Tigre", "Tiger"]],
 | 
				
			||||||
 | 
					    ["🐨", ["Koala", "Koala"]],
 | 
				
			||||||
 | 
					    ["🐸", ["Rana", "Frog"]],
 | 
				
			||||||
 | 
					    ["🐔", ["Gallina", "Chicken"]],
 | 
				
			||||||
 | 
					    ["🐧", ["Pingüino", "Penguin"]],
 | 
				
			||||||
 | 
					    ["🐦", ["Pájaro", "Bird"]],
 | 
				
			||||||
 | 
					    ["🐤", ["Pollito", "Chick"]],
 | 
				
			||||||
 | 
					    ["🐣", ["Nace", "Hatchling"]],
 | 
				
			||||||
 | 
					    ["🐺", ["Lobo", "Wolf"]],
 | 
				
			||||||
 | 
					    ["🦄", ["Unicornio", "Unicorn"]],
 | 
				
			||||||
 | 
					    ["🐝", ["Abeja", "Bee"]],
 | 
				
			||||||
 | 
					    ["🐞", ["Mariquita", "Ladybug"]],
 | 
				
			||||||
 | 
					    ["🦋", ["Mariposa", "Butterfly"]],
 | 
				
			||||||
 | 
					    ["🐛", ["Oruga", "Caterpillar"]],
 | 
				
			||||||
 | 
					    ["🌻", ["Girasol", "Sunflower"]],
 | 
				
			||||||
 | 
					    ["🌺", ["Flor", "Flower"]],
 | 
				
			||||||
 | 
					    ["🌼", ["Flor pequeña", "Blossom"]],
 | 
				
			||||||
 | 
					    ["🍎", ["Manzana", "Apple"]],
 | 
				
			||||||
 | 
					    ["🍊", ["Naranja", "Orange"]],
 | 
				
			||||||
 | 
					    ["🍋", ["Limón", "Lemon"]],
 | 
				
			||||||
 | 
					    ["🍓", ["Fresa", "Strawberry"]],
 | 
				
			||||||
 | 
					    ["🍇", ["Uvas", "Grapes"]],
 | 
				
			||||||
 | 
					    ["🍉", ["Sandía", "Watermelon"]],
 | 
				
			||||||
 | 
					    ["🍌", ["Plátano", "Banana"]],
 | 
				
			||||||
 | 
					    ["🍍", ["Piña", "Pineapple"]],
 | 
				
			||||||
 | 
					    ["🍑", ["Melocotón", "Peach"]],
 | 
				
			||||||
 | 
					    ["🥑", ["Aguacate", "Avocado"]],
 | 
				
			||||||
 | 
					    ["🥦", ["Brócoli", "Broccoli"]],
 | 
				
			||||||
 | 
					    ["🥕", ["Zanahoria", "Carrot"]],
 | 
				
			||||||
 | 
					    ["🍟", ["Patatas fritas", "Fries"]],
 | 
				
			||||||
 | 
					    ["🌮", ["Taco", "Taco"]],
 | 
				
			||||||
 | 
					    ["🍣", ["Sushi", "Sushi"]],
 | 
				
			||||||
 | 
					    ["🥐", ["Croissant", "Pastry"]],
 | 
				
			||||||
 | 
					    ["🥖", ["Pan francés", "Baguette"]],
 | 
				
			||||||
 | 
					    ["🍪", ["Galleta", "Cookie"]],
 | 
				
			||||||
 | 
					    ["🍩", ["Donut", "Donut"]],
 | 
				
			||||||
 | 
					    ["☂️", ["Paraguas", "Umbrella"]],
 | 
				
			||||||
 | 
					    ["⚓", ["Ancla", "Anchor"]],
 | 
				
			||||||
 | 
					    ["⛵", ["Barco pequeño", "Sailboat"]],
 | 
				
			||||||
 | 
					    ["🏖️", ["Playa", "Beach"]],
 | 
				
			||||||
 | 
					    ["🏔️", ["Montaña", "Mountain"]],
 | 
				
			||||||
 | 
					    ["🏕️", ["Camping", "Camp"]],
 | 
				
			||||||
 | 
					    ["🏞️", ["Parque", "Park"]],
 | 
				
			||||||
 | 
					    ["🏟️", ["Estadio", "Stadium"]],
 | 
				
			||||||
 | 
					    ["🤖", ["Robot", "Robot"]],
 | 
				
			||||||
 | 
					    ["👾", ["Monstruo videojuego", "Alien monster"]],
 | 
				
			||||||
 | 
					    ["💻", ["Portátil", "Laptop", "Computer"]],
 | 
				
			||||||
 | 
					    ["🖥️", ["Ordenador", "Desktop"]],
 | 
				
			||||||
 | 
					    ["🖨️", ["Impresora", "Printer"]],
 | 
				
			||||||
 | 
					    ["📱", ["Móvil", "Phone", "Smartphone"]],
 | 
				
			||||||
 | 
					    ["📲", ["Enviar móvil", "Mobile send"]],
 | 
				
			||||||
 | 
					    ["🕹️", ["Joystick", "Game controller"]],
 | 
				
			||||||
 | 
					    ["🎮", ["Mando", "Gamepad"]],
 | 
				
			||||||
 | 
					    ["🧩", ["Puzzle piece", "Puzzle"]],
 | 
				
			||||||
 | 
					    ["🔮", ["Bola de cristal", "Crystal ball"]],
 | 
				
			||||||
 | 
					    ["🪄", ["Varita mágica", "Magic wand"]],
 | 
				
			||||||
 | 
					    ["🧿", ["Amuleto", "Nazar", "Protection"]],
 | 
				
			||||||
 | 
					    ["💡", ["Idea", "Lightbulb"]],
 | 
				
			||||||
 | 
					    ["🕯️", ["Vela", "Candle"]],
 | 
				
			||||||
 | 
					    ["🪔", ["Diya", "Oil lamp"]],
 | 
				
			||||||
 | 
					    ["🧯", ["Extintor", "Fire extinguisher"]],
 | 
				
			||||||
 | 
					    ["🧰", ["Caja herramientas", "Toolbox"]],
 | 
				
			||||||
 | 
					    ["🪛", ["Destornillador", "Screwdriver"]],
 | 
				
			||||||
 | 
					    ["🛠️", ["Herramientas", "Tools"]],
 | 
				
			||||||
 | 
					    ["🔧", ["Llave inglesa", "Wrench"]],
 | 
				
			||||||
 | 
					    ["🔨", ["Martillo", "Hammer"]],
 | 
				
			||||||
 | 
					    ["⚙️", ["Ajustes", "Gear"]],
 | 
				
			||||||
 | 
					    ["🗜️", ["Tornillo prensa", "Clamp"]],
 | 
				
			||||||
 | 
					    ["🔩", ["Tornillo", "Bolt"]],
 | 
				
			||||||
 | 
					    ["⚖️", ["Balanza", "Scale", "Justice"]],
 | 
				
			||||||
 | 
					    ["🔬", ["Microscopio", "Microscope"]],
 | 
				
			||||||
 | 
					    ["🔭", ["Telescopio", "Telescope"]],
 | 
				
			||||||
 | 
					    ["📡", ["Antena", "Antenna", "Satellite dish"]],
 | 
				
			||||||
 | 
					    ["🧪", ["Tubo ensayo", "Test tube"]],
 | 
				
			||||||
 | 
					    ["🧫", ["Placa petridish", "Petri dish"]],
 | 
				
			||||||
 | 
					    ["🧬", ["ADN", "DNA"]],
 | 
				
			||||||
 | 
					    ["🧯", ["Extintor2", "Fire safety"]],
 | 
				
			||||||
 | 
					    ["🛟", ["Salvavidas", "Lifebuoy"]],
 | 
				
			||||||
 | 
					    ["🦺", ["Chaleco", "Vest"]],
 | 
				
			||||||
 | 
					    ["🏷️", ["Etiqueta", "Tag"]],
 | 
				
			||||||
 | 
					    ["📛", ["Placa nombre", "Name badge"]],
 | 
				
			||||||
 | 
					    ["🔖", ["Marcador", "Bookmark"]],
 | 
				
			||||||
 | 
					    ["📌", ["Pin", "Pushpin"]],
 | 
				
			||||||
 | 
					    ["📍", ["Ubicación", "Pin location"]],
 | 
				
			||||||
 | 
					    ["🖊️", ["Bolígrafo", "Pen"]],
 | 
				
			||||||
 | 
					    ["🖋️", ["Pluma", "Fountain pen"]],
 | 
				
			||||||
 | 
					    ["✒️", ["Escribir", "Write"]],
 | 
				
			||||||
 | 
					    ["📝", ["Nota", "Memo"]],
 | 
				
			||||||
 | 
					    ["🗒️", ["Bloc notas", "Notepad"]],
 | 
				
			||||||
 | 
					    ["📄", ["Documento", "Document"]],
 | 
				
			||||||
 | 
					    ["📑", ["Separador", "Bookmark tabs"]],
 | 
				
			||||||
 | 
					    ["📚", ["Libros", "Books"]],
 | 
				
			||||||
 | 
					    ["📖", ["Abrir libro", "Open book"]],
 | 
				
			||||||
 | 
					    ["🔖", ["Bookmark duplicated", "Bookmark alt"]],
 | 
				
			||||||
 | 
					    ["✂️", ["Tijeras", "Scissors"]],
 | 
				
			||||||
 | 
					    ["🧷", ["Imperdible", "Safety pin"]],
 | 
				
			||||||
 | 
					    ["📎", ["Clip", "Paperclip"]],
 | 
				
			||||||
 | 
					    ["🖇️", ["Clips enlazados", "Linked paperclips"]],
 | 
				
			||||||
 | 
					    ["🔒", ["Candado", "Lock"]],
 | 
				
			||||||
 | 
					    ["🔓", ["Desbloqueado", "Unlock"]],
 | 
				
			||||||
 | 
					    ["🔐", ["Lock with key", "Secure"]],
 | 
				
			||||||
 | 
					    ["🔑", ["Llave", "Key"]],
 | 
				
			||||||
 | 
					    ["🗝️", ["Llave antigua", "Old key"]],
 | 
				
			||||||
 | 
					    ["🛡️", ["Escudo", "Shield"]],
 | 
				
			||||||
 | 
					    ["🚪", ["Puerta", "Door"]],
 | 
				
			||||||
 | 
					    ["🪑", ["Silla", "Chair"]],
 | 
				
			||||||
 | 
					    ["🛏️", ["Cama", "Bed"]],
 | 
				
			||||||
 | 
					    ["🛋️", ["Sofá", "Couch"]],
 | 
				
			||||||
 | 
					    ["🧸", ["Pelucha", "Teddy"]],
 | 
				
			||||||
 | 
					    ["🪆", ["Matrioshka", "Nesting doll"]],
 | 
				
			||||||
 | 
					    ["🧵", ["Hilo", "Thread"]],
 | 
				
			||||||
 | 
					    ["🪡", ["Aguja", "Needle"]],
 | 
				
			||||||
 | 
					    ["🧶", ["Lana", "Yarn"]],
 | 
				
			||||||
 | 
					    ["👗", ["Vestido", "Dress"]],
 | 
				
			||||||
 | 
					    ["👖", ["Pantalones", "Pants"]],
 | 
				
			||||||
 | 
					    ["👔", ["Corbata", "Tie"]],
 | 
				
			||||||
 | 
					    ["👞", ["Zapato", "Shoe"]],
 | 
				
			||||||
 | 
					    ["👟", ["Deportivo", "Sneaker"]],
 | 
				
			||||||
 | 
					    ["🥿", ["Bailarina", "Flat shoe"]],
 | 
				
			||||||
 | 
					    ["🥾", ["Bota", "Boot"]],
 | 
				
			||||||
 | 
					    ["🧢", ["Gorra", "Cap"]],
 | 
				
			||||||
 | 
					    ["🎩", ["Sombrero", "Top hat"]],
 | 
				
			||||||
 | 
					    ["👑", ["Corona", "Crown"]],
 | 
				
			||||||
 | 
					    ["🎒", ["Mochila", "Backpack"]],
 | 
				
			||||||
 | 
					    ["👜", ["Bolso", "Handbag"]],
 | 
				
			||||||
 | 
					    ["👝", ["Monedero", "Pouch"]],
 | 
				
			||||||
 | 
					    ["🛍️", ["Compras", "Shopping bags"]],
 | 
				
			||||||
 | 
					    ["💼", ["Maletín", "Briefcase"]],
 | 
				
			||||||
 | 
					    ["🪙", ["Moneda", "Coin"]],
 | 
				
			||||||
 | 
					    ["💰", ["Bolsa dinero", "Money bag"]],
 | 
				
			||||||
 | 
					    ["💳", ["Tarjeta", "Credit card"]],
 | 
				
			||||||
 | 
					    ["🧾", ["Recibo", "Receipt"]],
 | 
				
			||||||
 | 
					    ["🏧", ["Cajero", "ATM"]],
 | 
				
			||||||
 | 
					    ["💸", ["Dinero volando", "Money flying"]],
 | 
				
			||||||
 | 
					    ["💵", ["Billetes", "Cash"]],
 | 
				
			||||||
 | 
					    ["💴", ["Yen bill", "Yen"]],
 | 
				
			||||||
 | 
					    ["💶", ["Euro bills", "Euro"]],
 | 
				
			||||||
 | 
					    ["💷", ["Pounds", "Sterling"]],
 | 
				
			||||||
 | 
					    ["🔢", ["Número", "Numbers"]],
 | 
				
			||||||
 | 
					    ["🔣", ["Símbolos", "Symbols"]],
 | 
				
			||||||
 | 
					    ["🔤", ["Letras latinas", "Latin letters"]],
 | 
				
			||||||
 | 
					    ["🔠", ["Letras mayúsculas", "Uppercase"]],
 | 
				
			||||||
 | 
					    ["🔡", ["Letras minúsculas", "Lowercase"]],
 | 
				
			||||||
 | 
					    ["🔎", ["Buscar duplicated", "Search alt"]],
 | 
				
			||||||
 | 
					    ["🔍", ["Buscar duplicated 2", "Magnify"]],
 | 
				
			||||||
 | 
					    ["🔬", ["Microscope duplicated", "Science"]],
 | 
				
			||||||
 | 
					    ["🧭", ["Brújula duplicated", "Navigation"]],
 | 
				
			||||||
 | 
					    ["🧭", ["Compass duplicate2", "Nav"]],
 | 
				
			||||||
 | 
					    ["🚀", ["Cohete", "Rocket"]],
 | 
				
			||||||
 | 
					    ["🛸", ["OVNI", "UFO"]],
 | 
				
			||||||
 | 
					    ["✈️", ["Avión duplicado", "Plane alt"]],
 | 
				
			||||||
 | 
					    ["🛩️", ["Jet duplicado", "Small plane"]],
 | 
				
			||||||
 | 
					    ["🚁", ["Helicóptero", "Helicopter"]],
 | 
				
			||||||
 | 
					    ["🚂", ["Locomotora", "Locomotive"]],
 | 
				
			||||||
 | 
					    ["🚆", ["Tren duplicated", "Train alt"]],
 | 
				
			||||||
 | 
					    ["🚚", ["Camión" , "Delivery truck"]],
 | 
				
			||||||
 | 
					    ["🚛", ["Camión grande", "Big truck"]],
 | 
				
			||||||
 | 
					    ["🛻", ["Camioneta", "Pickup"]],
 | 
				
			||||||
 | 
					    ["🚲", ["Bicicleta duplicated", "Bike alt"]],
 | 
				
			||||||
 | 
					    ["🛴", ["Patinete duplicado", "Scooter alt"]],
 | 
				
			||||||
 | 
					    ["🛵", ["Moto","Moped"]],
 | 
				
			||||||
 | 
					    ["🏍️", ["Motocicleta", "Motorbike"]],
 | 
				
			||||||
 | 
					    ["🚗", ["Coche duplicated", "Car alt"]],
 | 
				
			||||||
 | 
					    ["🚙", ["SUV", "Jeep"]],
 | 
				
			||||||
 | 
					    ["🚕", ["Taxi duplicated", "Taxi alt"]],
 | 
				
			||||||
 | 
					    ["🛶", ["Canoa", "Canoe"]],
 | 
				
			||||||
 | 
					    ["🚤", ["Lancha", "Motorboat"]],
 | 
				
			||||||
 | 
					    ["⛵", ["Velero duplicated", "Sailboat alt"]],
 | 
				
			||||||
 | 
					    ["🛳️", ["Crucero duplicated", "Ship alt"]],
 | 
				
			||||||
 | 
					    ["🚢", ["Barco duplicated", "Ship"]],
 | 
				
			||||||
 | 
					    ["🛰️", ["Satélite duplicated", "Satellite"]],
 | 
				
			||||||
 | 
					    ["🌍", ["Tierra", "Earth globe europe-africa"]],
 | 
				
			||||||
 | 
					    ["🌎", ["Tierra américas", "Earth americas"]],
 | 
				
			||||||
 | 
					    ["🌏", ["Tierra asia-australia", "Earth asia-australia"]],
 | 
				
			||||||
 | 
					    ["🌕", ["Luna llena", "Full moon"]],
 | 
				
			||||||
 | 
					    ["🌑", ["Luna nueva", "New moon"]],
 | 
				
			||||||
 | 
					    ["🌙", ["Luna creciente", "Crescent moon"]],
 | 
				
			||||||
 | 
					    ["⭐", ["Estrella duplicated", "Star alt"]],
 | 
				
			||||||
 | 
					    ["✨", ["Brillo duplicated", "Sparkles"]],
 | 
				
			||||||
 | 
					    ["⚡", ["Rayo duplicated", "Lightning"]],
 | 
				
			||||||
 | 
					    ["🔥", ["Fuego", "Fire"]],
 | 
				
			||||||
 | 
					    ["💧", ["Gota agua", "Droplet"]],
 | 
				
			||||||
 | 
					    ["🌊", ["Ola duplicated", "Wave alt"]],
 | 
				
			||||||
 | 
					    ["❄️", ["Nieve duplicated", "Snowflake"]],
 | 
				
			||||||
 | 
					    ["🌪️", ["Tornado", "Tornado"]],
 | 
				
			||||||
 | 
					    ["🌤️", ["Parcial duplicated", "Partly sunny"]],
 | 
				
			||||||
 | 
					    ["☀️", ["Sol duplicated", "Sun"]],
 | 
				
			||||||
 | 
					    ["🌧️", ["Lluvia duplicated", "Rain cloud"]],
 | 
				
			||||||
 | 
					    ["⛅", ["Nubes duplicated", "Cloudy"]],
 | 
				
			||||||
 | 
					    ["🌩️", ["Tormenta eléctrica", "Thunderstorm"]],
 | 
				
			||||||
 | 
					    ["🌨️", ["Nieve ligera", "Snowing"]],
 | 
				
			||||||
 | 
					    ["🌬️", ["Viento", "Wind face"]],
 | 
				
			||||||
 | 
					    ["🌫️", ["Niebla duplicated", "Fog"]],
 | 
				
			||||||
 | 
					    ["🐶", ["Perro duplicated", "Dog alt"]],
 | 
				
			||||||
 | 
					    ["🐱", ["Gato duplicated", "Cat alt"]],
 | 
				
			||||||
 | 
					    ["🐭", ["Ratón", "Mouse animal"]],
 | 
				
			||||||
 | 
					    ["🐹", ["Hámster", "Hamster"]],
 | 
				
			||||||
 | 
					    ["🐰", ["Conejo", "Rabbit" ]],
 | 
				
			||||||
 | 
					    ["🦊", ["Zorro duplicated", "Fox alt"]],
 | 
				
			||||||
 | 
					    ["🦝", ["Mapache", "Raccoon"]],
 | 
				
			||||||
 | 
					    ["🐻", ["Oso", "Bear"]],
 | 
				
			||||||
 | 
					    ["🐼", ["Panda duplicated", "Panda alt"]],
 | 
				
			||||||
 | 
					    ["🐨", ["Koala duplicated", "Koala alt"]],
 | 
				
			||||||
 | 
					    ["🐯", ["Tigre duplicated", "Tiger alt"]],
 | 
				
			||||||
 | 
					    ["🦁", ["León duplicated", "Lion alt"]],
 | 
				
			||||||
 | 
					    ["🐮", ["Vaca", "Cow"]],
 | 
				
			||||||
 | 
					    ["🐷", ["Cerdo", "Pig"]],
 | 
				
			||||||
 | 
					    ["🐸", ["Rana duplicated", "Frog alt"]],
 | 
				
			||||||
 | 
					    ["🐵", ["Mono duplicated", "Monkey alt"]],
 | 
				
			||||||
 | 
					    ["🐔", ["Gallina duplicated", "Chicken alt"]],
 | 
				
			||||||
 | 
					    ["🦆", ["Pato", "Duck"]],
 | 
				
			||||||
 | 
					    ["🦅", ["Águila", "Eagle"]],
 | 
				
			||||||
 | 
					    ["🦉", ["Búho", "Owl"]],
 | 
				
			||||||
 | 
					    ["🦇", ["Murciélago", "Bat"]],
 | 
				
			||||||
 | 
					    ["🐺", ["Lobo duplicated", "Wolf alt"]],
 | 
				
			||||||
 | 
					    ["🐗", ["Jabalí", "Boar"]],
 | 
				
			||||||
 | 
					    ["🐴", ["Caballo", "Horse"]],
 | 
				
			||||||
 | 
					    ["🦄", ["Unicorn duplicated", "Unicorn alt"]],
 | 
				
			||||||
 | 
					    ["🐝", ["Abeja duplicated", "Bee alt"]],
 | 
				
			||||||
 | 
					    ["🐛", ["Oruga duplicated", "Caterpillar alt"]],
 | 
				
			||||||
 | 
					    ["🐜", ["Hormiga", "Ant"]],
 | 
				
			||||||
 | 
					    ["🪲", ["Escarabajo", "Beetle"]],
 | 
				
			||||||
 | 
					    ["🦋", ["Mariposa duplicated", "Butterfly alt"]],
 | 
				
			||||||
 | 
					    ["🐌", ["Caracol", "Snail"]],
 | 
				
			||||||
 | 
					    ["🐞", ["Mariquita duplicated", "Ladybug alt"]],
 | 
				
			||||||
 | 
					    ["🦕", ["Dinosaurio 1", "Sauropod"]],
 | 
				
			||||||
 | 
					    ["🦖", ["Dinosaurio 2", "T-Rex"]],
 | 
				
			||||||
 | 
					    ["🐙", ["Pulpo", "Octopus"]],
 | 
				
			||||||
 | 
					    ["🐠", ["Pez tropical", "Tropical fish"]],
 | 
				
			||||||
 | 
					    ["🐟", ["Pez", "Fish"]],
 | 
				
			||||||
 | 
					    ["🐬", ["Delfín", "Dolphin"]],
 | 
				
			||||||
 | 
					    ["🐳", ["Ballena pequeña", "Whale"]],
 | 
				
			||||||
 | 
					    ["🐋", ["Ballena grande", "Whale big"]],
 | 
				
			||||||
 | 
					    ["🦈", ["Tiburón", "Shark"]],
 | 
				
			||||||
 | 
					    ["🐊", ["Cocodrilo", "Crocodile"]],
 | 
				
			||||||
 | 
					    ["🦧", ["Orangután", "Orangutan"]],
 | 
				
			||||||
 | 
					    ["🦣", ["Mamut", "Mammoth"]],
 | 
				
			||||||
 | 
					    ["🍏", ["Manzana verde", "Green apple"]],
 | 
				
			||||||
 | 
					    ["🍎", ["Manzana duplicated", "Apple alt"]],
 | 
				
			||||||
 | 
					    ["🍐", ["Pera", "Pear"]],
 | 
				
			||||||
 | 
					    ["🍊", ["Naranja duplicated", "Orange alt"]],
 | 
				
			||||||
 | 
					    ["🍋", ["Limón duplicated", "Lemon alt"]],
 | 
				
			||||||
 | 
					    ["🍌", ["Plátano duplicated", "Banana alt"]],
 | 
				
			||||||
 | 
					    ["🍉", ["Sandía duplicated", "Watermelon alt"]],
 | 
				
			||||||
 | 
					    ["🍇", ["Uvas duplicated", "Grapes alt"]],
 | 
				
			||||||
 | 
					    ["🍓", ["Fresa duplicated","Strawberry alt"]],
 | 
				
			||||||
 | 
					    ["🥝", ["Kiwi", "Kiwi fruit"]],
 | 
				
			||||||
 | 
					    ["🥭", ["Mango", "Mango"]],
 | 
				
			||||||
 | 
					    ["🥥", ["Coco", "Coconut"]],
 | 
				
			||||||
 | 
					    ["🥑", ["Aguacate duplicated", "Avocado alt"]],
 | 
				
			||||||
 | 
					    ["🍆", ["Berenjena", "Eggplant"]],
 | 
				
			||||||
 | 
					    ["🥔", ["Patata", "Potato"]],
 | 
				
			||||||
 | 
					    ["🥕", ["Zanahoria duplicated", "Carrot alt"]],
 | 
				
			||||||
 | 
					    ["🌽", ["Maíz", "Corn"]],
 | 
				
			||||||
 | 
					    ["🌶️", ["Pimiento picante", "Hot pepper"]],
 | 
				
			||||||
 | 
					    ["🥒", ["Pepino", "Cucumber"]],
 | 
				
			||||||
 | 
					    ["🥬", ["Verduras", "Leafy green"]],
 | 
				
			||||||
 | 
					    ["🧀", ["Queso", "Cheese"]],
 | 
				
			||||||
 | 
					    ["🍖", ["Costilla", "Meat on bone"]],
 | 
				
			||||||
 | 
					    ["🍗", ["Pollo asa", "Poultry leg"]],
 | 
				
			||||||
 | 
					    ["🍤", ["Tempura", "Fried shrimp"]],
 | 
				
			||||||
 | 
					    ["🍙", ["Onigiri", "Rice ball"]],
 | 
				
			||||||
 | 
					    ["🍚", ["Arroz", "Cooked rice"]],
 | 
				
			||||||
 | 
					    ["🍜", ["Ramen", "Steaming bowl"]],
 | 
				
			||||||
 | 
					    ["🍲", ["Sopa", "Pot of food"]],
 | 
				
			||||||
 | 
					    ["🍛", ["Curry", "Curry rice"]],
 | 
				
			||||||
 | 
					    ["🍣", ["Sushi duplicated", "Sushi alt"]],
 | 
				
			||||||
 | 
					    ["🍱", ["Bento", "Bento box"]],
 | 
				
			||||||
 | 
					    ["🍺", ["Cerveza", "Beer"]],
 | 
				
			||||||
 | 
					    ["🍻", ["Brindis", "Cheers"]],
 | 
				
			||||||
 | 
					    ["🍷", ["Vino duplicated", "Wine alt"]],
 | 
				
			||||||
 | 
					    ["🍸", ["Cóctel", "Cocktail"]],
 | 
				
			||||||
 | 
					    ["☕", ["Café duplicated", "Coffee alt"]],
 | 
				
			||||||
 | 
					    ["🍼", ["Biberón", "Baby bottle"]],
 | 
				
			||||||
 | 
					    ["🥤", ["Vaso bebida", "Cup with straw"]],
 | 
				
			||||||
 | 
					    ["🍽️", ["Cubiertos", "Plate with cutlery"]],
 | 
				
			||||||
 | 
					    ["🔪", ["Cuchillo cocina", "Knife"]],
 | 
				
			||||||
 | 
					    ["🏺", ["Ánfora", "Amphora"]],
 | 
				
			||||||
 | 
					    ["🎯", ["Diana", "Target"]],
 | 
				
			||||||
 | 
					    ["🎳", ["Boliche", "Bowling"]],
 | 
				
			||||||
 | 
					    ["🎮", ["Videojuego duplicated", "Game controller alt"]],
 | 
				
			||||||
 | 
					    ["🎲", ["Dados duplicated", "Dice alt"]],
 | 
				
			||||||
 | 
					    ["🎯", ["Diana duplicated", "Target alt"]],
 | 
				
			||||||
 | 
					    ["🏀", ["Baloncesto duplicated", "Basketball alt"]],
 | 
				
			||||||
 | 
					    ["⚽", ["Fútbol duplicated", "Soccer alt"]],
 | 
				
			||||||
 | 
					    ["🏈", ["Football duplicated", "American football"]],
 | 
				
			||||||
 | 
					    ["⚾", ["Béisbol", "Baseball"]],
 | 
				
			||||||
 | 
					    ["🎾", ["Tenis", "Tennis"]],
 | 
				
			||||||
 | 
					    ["🏐", ["Vóley", "Volleyball"]],
 | 
				
			||||||
 | 
					    ["🏉", ["Rugby", "Rugby"]],
 | 
				
			||||||
 | 
					    ["🥊", ["Boxeo", "Boxing glove"]],
 | 
				
			||||||
 | 
					    ["🥋", ["Artes marciales", "Martial arts uniform"]],
 | 
				
			||||||
 | 
					    ["⛳", ["Golf", "Hole in one"]],
 | 
				
			||||||
 | 
					    ["🏹", ["Arco y flecha", "Archery"]],
 | 
				
			||||||
 | 
					    ["🎣", ["Pescar", "Fishing pole"]],
 | 
				
			||||||
 | 
					    ["🏓", ["Ping pong", "Table tennis"]],
 | 
				
			||||||
 | 
					    ["🏸", ["Bádminton", "Badminton"]],
 | 
				
			||||||
 | 
					    ["🥌", ["Curling", "Curling"]],
 | 
				
			||||||
 | 
					    ["🛹", ["Skate", "Skateboard"]],
 | 
				
			||||||
 | 
					    ["🛼", ["Patines", "Roller skates"]],
 | 
				
			||||||
 | 
					    ["🛷", ["Trineo", "Sled"]],
 | 
				
			||||||
 | 
					    ["⛸️", ["Patinaje hielo", "Ice skate"]],
 | 
				
			||||||
 | 
					    ["🏂", ["Snowboard", "Snowboarder"]],
 | 
				
			||||||
 | 
					    ["🏋️♀️", ["Levantar pesas", "Weightlifting"]],
 | 
				
			||||||
 | 
					    ["🚴♂️", ["Ciclismo", "Cyclist"]],
 | 
				
			||||||
 | 
					    ["🚵♀️", ["Mountain biking", "Off-road cycling"]],
 | 
				
			||||||
 | 
					    ["🏊♂️", ["Natación", "Swimmer"]],
 | 
				
			||||||
 | 
					    ["🤽♀️", ["Water polo", "Water sport"]],
 | 
				
			||||||
 | 
					    ["🤸♀️", ["Gimnasia", "Gymnastics"]],
 | 
				
			||||||
 | 
					    ["🧘♂️", ["Yoga", "Meditation"]],
 | 
				
			||||||
 | 
					    ["🛑", ["Stop sign", "Stop"]],
 | 
				
			||||||
 | 
					    ["⚠️", ["Advertencia duplicated", "Warning alt"]],
 | 
				
			||||||
 | 
					    ["🚸", ["Zona escolar", "School zone"]],
 | 
				
			||||||
 | 
					    ["♻️", ["Reciclar duplicated", "Recycle alt"]],
 | 
				
			||||||
 | 
					    ["♿", ["Accesibilidad", "Wheelchair symbol"]],
 | 
				
			||||||
 | 
					    ["🔞", ["No minors", "18+"]],
 | 
				
			||||||
 | 
					    ["🚭", ["Prohibido fumar", "No smoking"]],
 | 
				
			||||||
 | 
					    ["🚯", ["No tirar basura", "No littering"]],
 | 
				
			||||||
 | 
					    ["💯", ["100", "Perfect"]],
 | 
				
			||||||
 | 
					    ["🔢", ["Números duplicated", "Numbers alt"]],
 | 
				
			||||||
 | 
					    ["🔣", ["Símbolos duplicated", "Symbols alt"]],
 | 
				
			||||||
 | 
					    ["✅", ["Check duplicated", "Ok"]],
 | 
				
			||||||
 | 
					    ["❌", ["Cross duplicated", "Wrong"]],
 | 
				
			||||||
 | 
					    ["⭕", ["O circle", "Circle"]],
 | 
				
			||||||
 | 
					    ["🔵", ["Blue circle", "Blue dot"]],
 | 
				
			||||||
 | 
					    ["🔴", ["Red circle", "Red dot"]],
 | 
				
			||||||
 | 
					    ["⚫", ["Black circle", "Black dot"]],
 | 
				
			||||||
 | 
					    ["⚪", ["White circle", "White dot"]]
 | 
				
			||||||
 | 
					]
 | 
				
			||||||
							
								
								
									
										1912
									
								
								Public/json/emojis.unicode.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1912
									
								
								Public/json/emojis.unicode.json
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										21
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										21
									
								
								README.md
									
									
									
									
									
								
							@ -1,3 +1,22 @@
 | 
				
			|||||||
# PetroGlyphScout
 | 
					# PetroGlyphScout
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Proyecto supersencillo que cataloga los iconos por fuente estándar para ser factible su búsqueda directa.
 | 
					Proyecto supersencillo que cataloga los iconos por fuente estándar para ser factible su búsqueda directa.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Descripción breve
 | 
				
			||||||
 | 
					PetroGlyphScout es una app ligera para explorar y buscar glifos y emojis mediante palabras clave. Se diseñó para ser fácil de correr localmente y sencillo de contribuir.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Estructura
 | 
				
			||||||
 | 
					- `Public/index.html` — Interfaz principal (carga datasets desde `Public/json`).
 | 
				
			||||||
 | 
					- `Public/json/PetroGlyphScout.glyphs.json` — Dataset principal de glifos.
 | 
				
			||||||
 | 
					- `Public/json/PetroGlyphScout.flags.json` — Dataset de banderas.
 | 
				
			||||||
 | 
					- `Public/images/` — SVGs e iconos auxiliares.
 | 
				
			||||||
 | 
					- `MD/` — Documentación adicional (Usage, Contributing).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Uso
 | 
				
			||||||
 | 
					Ver `MD/Usage.md` para instrucciones de arranque rápido y uso.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Contribuir
 | 
				
			||||||
 | 
					Ver `MD/Contributing.md` para normas y formato de datos.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Licencia
 | 
				
			||||||
 | 
					Ver `LICENSE` en la raíz del proyecto.
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user