Upload 6 files
Browse files- config.yaml +64 -0
- model.py +291 -0
- mtp_mini.pkl +3 -0
- mtp_tokenizer.model +3 -0
- mtp_tokenizer.vocab +4000 -0
- tokenizer.py +138 -0
config.yaml
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# MTP Mini - Configuración Mejorada para Generación Coherente
|
| 2 |
+
|
| 3 |
+
model:
|
| 4 |
+
vocab_size: 4000
|
| 5 |
+
d_model: 512 # Aumentado para más capacidad
|
| 6 |
+
n_layers: 8 # Más capas
|
| 7 |
+
n_heads: 8 # Más cabezas de atención
|
| 8 |
+
d_ff: 2048 # 4x d_model
|
| 9 |
+
max_seq_len: 512 # Contexto más largo
|
| 10 |
+
dropout: 0.2 # Más dropout para evitar overfitting
|
| 11 |
+
use_swiglu: true # Activación mejorada
|
| 12 |
+
|
| 13 |
+
training:
|
| 14 |
+
batch_size: 4 # Batch más pequeño para corpus pequeño
|
| 15 |
+
accumulation_steps: 4 # Effective batch = 16
|
| 16 |
+
epochs: 20 # MENOS épocas
|
| 17 |
+
learning_rate: 0.0003 # LR más alto para convergencia rápida
|
| 18 |
+
min_lr: 0.00001
|
| 19 |
+
weight_decay: 0.1 # MÁS weight decay para regularización
|
| 20 |
+
max_grad_norm: 1.0
|
| 21 |
+
num_threads: 4
|
| 22 |
+
save_every: 5
|
| 23 |
+
|
| 24 |
+
# Early stopping
|
| 25 |
+
patience: 5 # Parar si no mejora en 5 epochs
|
| 26 |
+
min_delta: 0.001 # Mejora mínima requerida
|
| 27 |
+
|
| 28 |
+
# Learning rate schedule
|
| 29 |
+
warmup_steps: 100
|
| 30 |
+
use_lr_scheduler: true
|
| 31 |
+
|
| 32 |
+
# Regularización adicional
|
| 33 |
+
label_smoothing: 0.1
|
| 34 |
+
use_eos_loss_weight: true # Dar más peso al token EOS
|
| 35 |
+
|
| 36 |
+
data:
|
| 37 |
+
corpus_path: corpus/mtp_mini_corpus.jsonl
|
| 38 |
+
min_text_length: 50 # Textos más largos
|
| 39 |
+
max_text_length: 2000 # Permitir respuestas largas
|
| 40 |
+
validation_split: 0.15
|
| 41 |
+
|
| 42 |
+
# Augmentación de datos
|
| 43 |
+
use_augmentation: true
|
| 44 |
+
augmentation_prob: 0.3
|
| 45 |
+
|
| 46 |
+
generation:
|
| 47 |
+
# Parámetros de generación mejorados
|
| 48 |
+
default_max_tokens: 150
|
| 49 |
+
default_temperature: 0.7
|
| 50 |
+
default_top_k: 40
|
| 51 |
+
default_top_p: 0.92
|
| 52 |
+
default_repetition_penalty: 1.15
|
| 53 |
+
min_response_length: 20
|
| 54 |
+
use_length_penalty: true
|
| 55 |
+
|
| 56 |
+
# Control de coherencia
|
| 57 |
+
use_perplexity_filter: true
|
| 58 |
+
max_perplexity: 100.0
|
| 59 |
+
|
| 60 |
+
# Stop sequences
|
| 61 |
+
stop_sequences:
|
| 62 |
+
- "###"
|
| 63 |
+
- "\n\n\n"
|
| 64 |
+
- "Instrucción:"
|
model.py
ADDED
|
@@ -0,0 +1,291 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
import torch.nn as nn
|
| 3 |
+
import torch.nn.functional as F
|
| 4 |
+
import math
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
class RotaryPositionalEmbedding(nn.Module):
|
| 8 |
+
"""RoPE - Rotary Position Embedding"""
|
| 9 |
+
|
| 10 |
+
def __init__(self, dim, max_seq_len=2048, base=10000):
|
| 11 |
+
super().__init__()
|
| 12 |
+
inv_freq = 1.0 / (base ** (torch.arange(0, dim, 2).float() / dim))
|
| 13 |
+
self.register_buffer('inv_freq', inv_freq)
|
| 14 |
+
self.max_seq_len = max_seq_len
|
| 15 |
+
|
| 16 |
+
def forward(self, seq_len, device):
|
| 17 |
+
t = torch.arange(seq_len, device=device).type_as(self.inv_freq)
|
| 18 |
+
freqs = torch.einsum('i,j->ij', t, self.inv_freq)
|
| 19 |
+
emb = torch.cat((freqs, freqs), dim=-1)
|
| 20 |
+
return emb.cos(), emb.sin()
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
def apply_rotary_pos_emb(q, k, cos, sin):
|
| 24 |
+
"""Aplica RoPE a queries y keys"""
|
| 25 |
+
def rotate_half(x):
|
| 26 |
+
x1, x2 = x.chunk(2, dim=-1)
|
| 27 |
+
return torch.cat((-x2, x1), dim=-1)
|
| 28 |
+
|
| 29 |
+
q_embed = (q * cos) + (rotate_half(q) * sin)
|
| 30 |
+
k_embed = (k * cos) + (rotate_half(k) * sin)
|
| 31 |
+
return q_embed, k_embed
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
class MultiHeadSelfAttention(nn.Module):
|
| 35 |
+
"""Multi-Head Self-Attention con RoPE y optimizaciones"""
|
| 36 |
+
|
| 37 |
+
def __init__(self, d_model, n_heads, dropout=0.1, max_seq_len=2048):
|
| 38 |
+
super().__init__()
|
| 39 |
+
assert d_model % n_heads == 0
|
| 40 |
+
|
| 41 |
+
self.d_model = d_model
|
| 42 |
+
self.n_heads = n_heads
|
| 43 |
+
self.d_k = d_model // n_heads
|
| 44 |
+
|
| 45 |
+
self.q_linear = nn.Linear(d_model, d_model, bias=False)
|
| 46 |
+
self.k_linear = nn.Linear(d_model, d_model, bias=False)
|
| 47 |
+
self.v_linear = nn.Linear(d_model, d_model, bias=False)
|
| 48 |
+
self.out_linear = nn.Linear(d_model, d_model, bias=False)
|
| 49 |
+
|
| 50 |
+
self.dropout = nn.Dropout(dropout)
|
| 51 |
+
self.attn_dropout = nn.Dropout(dropout)
|
| 52 |
+
self.rope = RotaryPositionalEmbedding(self.d_k, max_seq_len)
|
| 53 |
+
|
| 54 |
+
self.flash = hasattr(torch.nn.functional, 'scaled_dot_product_attention')
|
| 55 |
+
|
| 56 |
+
def forward(self, x, mask=None):
|
| 57 |
+
batch_size, seq_len, d_model = x.size()
|
| 58 |
+
|
| 59 |
+
Q = self.q_linear(x).view(batch_size, seq_len, self.n_heads, self.d_k).transpose(1, 2)
|
| 60 |
+
K = self.k_linear(x).view(batch_size, seq_len, self.n_heads, self.d_k).transpose(1, 2)
|
| 61 |
+
V = self.v_linear(x).view(batch_size, seq_len, self.n_heads, self.d_k).transpose(1, 2)
|
| 62 |
+
|
| 63 |
+
cos, sin = self.rope(seq_len, x.device)
|
| 64 |
+
cos = cos[None, None, :, :]
|
| 65 |
+
sin = sin[None, None, :, :]
|
| 66 |
+
Q, K = apply_rotary_pos_emb(Q, K, cos, sin)
|
| 67 |
+
|
| 68 |
+
if self.flash and mask is None:
|
| 69 |
+
context = F.scaled_dot_product_attention(
|
| 70 |
+
Q, K, V,
|
| 71 |
+
attn_mask=None,
|
| 72 |
+
dropout_p=self.dropout.p if self.training else 0.0,
|
| 73 |
+
is_causal=True
|
| 74 |
+
)
|
| 75 |
+
else:
|
| 76 |
+
scores = torch.matmul(Q, K.transpose(-2, -1)) / math.sqrt(self.d_k)
|
| 77 |
+
if mask is not None:
|
| 78 |
+
scores = scores.masked_fill(mask == 0, float('-inf'))
|
| 79 |
+
attn_weights = F.softmax(scores, dim=-1)
|
| 80 |
+
attn_weights = self.attn_dropout(attn_weights)
|
| 81 |
+
context = torch.matmul(attn_weights, V)
|
| 82 |
+
|
| 83 |
+
context = context.transpose(1, 2).contiguous().view(batch_size, seq_len, d_model)
|
| 84 |
+
output = self.out_linear(context)
|
| 85 |
+
return self.dropout(output)
|
| 86 |
+
|
| 87 |
+
|
| 88 |
+
class SwiGLU(nn.Module):
|
| 89 |
+
"""SwiGLU activation"""
|
| 90 |
+
|
| 91 |
+
def __init__(self, d_model, d_ff, dropout=0.1):
|
| 92 |
+
super().__init__()
|
| 93 |
+
self.w1 = nn.Linear(d_model, d_ff, bias=False)
|
| 94 |
+
self.w2 = nn.Linear(d_ff, d_model, bias=False)
|
| 95 |
+
self.w3 = nn.Linear(d_model, d_ff, bias=False)
|
| 96 |
+
self.dropout = nn.Dropout(dropout)
|
| 97 |
+
|
| 98 |
+
def forward(self, x):
|
| 99 |
+
return self.w2(self.dropout(F.silu(self.w1(x)) * self.w3(x)))
|
| 100 |
+
|
| 101 |
+
|
| 102 |
+
class FeedForward(nn.Module):
|
| 103 |
+
"""Feed-Forward estándar"""
|
| 104 |
+
|
| 105 |
+
def __init__(self, d_model, d_ff, dropout=0.1):
|
| 106 |
+
super().__init__()
|
| 107 |
+
self.linear1 = nn.Linear(d_model, d_ff)
|
| 108 |
+
self.linear2 = nn.Linear(d_ff, d_model)
|
| 109 |
+
self.dropout = nn.Dropout(dropout)
|
| 110 |
+
|
| 111 |
+
def forward(self, x):
|
| 112 |
+
return self.linear2(self.dropout(F.gelu(self.linear1(x))))
|
| 113 |
+
|
| 114 |
+
|
| 115 |
+
class RMSNorm(nn.Module):
|
| 116 |
+
"""RMSNorm"""
|
| 117 |
+
|
| 118 |
+
def __init__(self, dim, eps=1e-6):
|
| 119 |
+
super().__init__()
|
| 120 |
+
self.eps = eps
|
| 121 |
+
self.weight = nn.Parameter(torch.ones(dim))
|
| 122 |
+
|
| 123 |
+
def forward(self, x):
|
| 124 |
+
norm = torch.rsqrt(x.pow(2).mean(-1, keepdim=True) + self.eps)
|
| 125 |
+
return x * norm * self.weight
|
| 126 |
+
|
| 127 |
+
|
| 128 |
+
class TransformerBlock(nn.Module):
|
| 129 |
+
"""Transformer Block mejorado"""
|
| 130 |
+
|
| 131 |
+
def __init__(self, d_model, n_heads, d_ff, dropout=0.1, max_seq_len=2048, use_swiglu=True):
|
| 132 |
+
super().__init__()
|
| 133 |
+
self.attention = MultiHeadSelfAttention(d_model, n_heads, dropout, max_seq_len)
|
| 134 |
+
|
| 135 |
+
if use_swiglu:
|
| 136 |
+
self.feed_forward = SwiGLU(d_model, d_ff, dropout)
|
| 137 |
+
else:
|
| 138 |
+
self.feed_forward = FeedForward(d_model, d_ff, dropout)
|
| 139 |
+
|
| 140 |
+
self.norm1 = RMSNorm(d_model)
|
| 141 |
+
self.norm2 = RMSNorm(d_model)
|
| 142 |
+
self.dropout = nn.Dropout(dropout)
|
| 143 |
+
|
| 144 |
+
def forward(self, x, mask=None):
|
| 145 |
+
x = x + self.attention(self.norm1(x), mask)
|
| 146 |
+
x = x + self.feed_forward(self.norm2(x))
|
| 147 |
+
return x
|
| 148 |
+
|
| 149 |
+
|
| 150 |
+
class MTPMiniModel(nn.Module):
|
| 151 |
+
"""MTP Mini - Modelo mejorado para generación coherente"""
|
| 152 |
+
|
| 153 |
+
def __init__(self, vocab_size, d_model=512, n_layers=8, n_heads=8,
|
| 154 |
+
d_ff=2048, max_seq_len=512, dropout=0.2, use_swiglu=True):
|
| 155 |
+
super().__init__()
|
| 156 |
+
|
| 157 |
+
self.vocab_size = vocab_size
|
| 158 |
+
self.d_model = d_model
|
| 159 |
+
self.max_seq_len = max_seq_len
|
| 160 |
+
|
| 161 |
+
self.token_embedding = nn.Embedding(vocab_size, d_model)
|
| 162 |
+
self.dropout = nn.Dropout(dropout)
|
| 163 |
+
|
| 164 |
+
self.blocks = nn.ModuleList([
|
| 165 |
+
TransformerBlock(d_model, n_heads, d_ff, dropout, max_seq_len, use_swiglu)
|
| 166 |
+
for _ in range(n_layers)
|
| 167 |
+
])
|
| 168 |
+
|
| 169 |
+
self.norm_f = RMSNorm(d_model)
|
| 170 |
+
self.lm_head = nn.Linear(d_model, vocab_size, bias=False)
|
| 171 |
+
|
| 172 |
+
# Weight tying
|
| 173 |
+
self.lm_head.weight = self.token_embedding.weight
|
| 174 |
+
|
| 175 |
+
self.apply(self._init_weights)
|
| 176 |
+
|
| 177 |
+
def _init_weights(self, module):
|
| 178 |
+
if isinstance(module, nn.Linear):
|
| 179 |
+
torch.nn.init.normal_(module.weight, mean=0.0, std=0.02)
|
| 180 |
+
if module.bias is not None:
|
| 181 |
+
torch.nn.init.zeros_(module.bias)
|
| 182 |
+
elif isinstance(module, nn.Embedding):
|
| 183 |
+
torch.nn.init.normal_(module.weight, mean=0.0, std=0.02)
|
| 184 |
+
|
| 185 |
+
def forward(self, input_ids, targets=None, use_eos_weight=False):
|
| 186 |
+
batch_size, seq_len = input_ids.size()
|
| 187 |
+
|
| 188 |
+
mask = torch.tril(torch.ones(seq_len, seq_len, device=input_ids.device)).view(1, 1, seq_len, seq_len)
|
| 189 |
+
|
| 190 |
+
x = self.dropout(self.token_embedding(input_ids))
|
| 191 |
+
|
| 192 |
+
for block in self.blocks:
|
| 193 |
+
x = block(x, mask)
|
| 194 |
+
|
| 195 |
+
x = self.norm_f(x)
|
| 196 |
+
logits = self.lm_head(x)
|
| 197 |
+
|
| 198 |
+
loss = None
|
| 199 |
+
if targets is not None:
|
| 200 |
+
if use_eos_weight:
|
| 201 |
+
# Dar más peso al token EOS para aprender a terminar
|
| 202 |
+
weights = torch.ones(self.vocab_size, device=logits.device)
|
| 203 |
+
weights[3] = 2.0 # EOS token
|
| 204 |
+
loss = F.cross_entropy(
|
| 205 |
+
logits.view(-1, self.vocab_size),
|
| 206 |
+
targets.view(-1),
|
| 207 |
+
weight=weights,
|
| 208 |
+
label_smoothing=0.1
|
| 209 |
+
)
|
| 210 |
+
else:
|
| 211 |
+
loss = F.cross_entropy(
|
| 212 |
+
logits.view(-1, self.vocab_size),
|
| 213 |
+
targets.view(-1),
|
| 214 |
+
label_smoothing=0.1
|
| 215 |
+
)
|
| 216 |
+
|
| 217 |
+
return logits, loss
|
| 218 |
+
|
| 219 |
+
def generate(self, input_ids, max_new_tokens=150, temperature=0.7,
|
| 220 |
+
top_k=40, top_p=0.92, repetition_penalty=1.15,
|
| 221 |
+
min_length=20, eos_token_id=3, stop_sequences=None):
|
| 222 |
+
"""Generación mejorada con control de longitud y coherencia"""
|
| 223 |
+
self.eval()
|
| 224 |
+
|
| 225 |
+
generated = input_ids.clone()
|
| 226 |
+
generated_text_tokens = 0
|
| 227 |
+
|
| 228 |
+
with torch.no_grad():
|
| 229 |
+
for step in range(max_new_tokens):
|
| 230 |
+
input_ids_cond = generated if generated.size(1) <= self.max_seq_len else generated[:, -self.max_seq_len:]
|
| 231 |
+
|
| 232 |
+
logits, _ = self(input_ids_cond)
|
| 233 |
+
logits = logits[:, -1, :].clone()
|
| 234 |
+
|
| 235 |
+
# Repetition penalty mejorado
|
| 236 |
+
if repetition_penalty != 1.0:
|
| 237 |
+
for token_id in set(generated[0].tolist()):
|
| 238 |
+
if logits[0, token_id] < 0:
|
| 239 |
+
logits[0, token_id] *= repetition_penalty
|
| 240 |
+
else:
|
| 241 |
+
logits[0, token_id] /= repetition_penalty
|
| 242 |
+
|
| 243 |
+
# Penalizar tokens repetidos recientes más fuertemente
|
| 244 |
+
if generated.size(1) > 10:
|
| 245 |
+
recent_tokens = generated[0, -10:].tolist()
|
| 246 |
+
for token_id in set(recent_tokens):
|
| 247 |
+
count = recent_tokens.count(token_id)
|
| 248 |
+
if count > 2:
|
| 249 |
+
logits[0, token_id] -= count * 2.0
|
| 250 |
+
|
| 251 |
+
# No permitir EOS hasta longitud mínima
|
| 252 |
+
if generated_text_tokens < min_length:
|
| 253 |
+
logits[0, eos_token_id] = float('-inf')
|
| 254 |
+
else:
|
| 255 |
+
# Aumentar probabilidad de EOS gradualmente
|
| 256 |
+
eos_boost = (generated_text_tokens - min_length) * 0.1
|
| 257 |
+
logits[0, eos_token_id] += eos_boost
|
| 258 |
+
|
| 259 |
+
# Temperature
|
| 260 |
+
logits = logits / temperature
|
| 261 |
+
|
| 262 |
+
# Top-k
|
| 263 |
+
if top_k > 0:
|
| 264 |
+
v, _ = torch.topk(logits, min(top_k, logits.size(-1)))
|
| 265 |
+
logits[logits < v[:, [-1]]] = float('-inf')
|
| 266 |
+
|
| 267 |
+
# Top-p (nucleus)
|
| 268 |
+
if top_p < 1.0:
|
| 269 |
+
sorted_logits, sorted_indices = torch.sort(logits, descending=True)
|
| 270 |
+
cumulative_probs = torch.cumsum(F.softmax(sorted_logits, dim=-1), dim=-1)
|
| 271 |
+
sorted_indices_to_remove = cumulative_probs > top_p
|
| 272 |
+
sorted_indices_to_remove[:, 1:] = sorted_indices_to_remove[:, :-1].clone()
|
| 273 |
+
sorted_indices_to_remove[:, 0] = 0
|
| 274 |
+
indices_to_remove = sorted_indices_to_remove.scatter(1, sorted_indices, sorted_indices_to_remove)
|
| 275 |
+
logits[indices_to_remove] = float('-inf')
|
| 276 |
+
|
| 277 |
+
# Sample
|
| 278 |
+
probs = F.softmax(logits, dim=-1)
|
| 279 |
+
next_token = torch.multinomial(probs, num_samples=1)
|
| 280 |
+
|
| 281 |
+
# Check for EOS
|
| 282 |
+
if next_token.item() == eos_token_id and generated_text_tokens >= min_length:
|
| 283 |
+
break
|
| 284 |
+
|
| 285 |
+
generated = torch.cat([generated, next_token], dim=1)
|
| 286 |
+
generated_text_tokens += 1
|
| 287 |
+
|
| 288 |
+
return generated
|
| 289 |
+
|
| 290 |
+
def count_parameters(self):
|
| 291 |
+
return sum(p.numel() for p in self.parameters() if p.requires_grad)
|
mtp_mini.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f3e29a7ad7b45b9bbf84edfb631ffbdf765d811f73caa66d8668ed070c5f24f
|
| 3 |
+
size 150671100
|
mtp_tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:586d888a1a098c3ba77bb2b74e6acb1b4711767eeaea94f0379148821d1eeff2
|
| 3 |
+
size 62552
|
mtp_tokenizer.vocab
ADDED
|
@@ -0,0 +1,4000 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<pad> 0
|
| 2 |
+
<unk> 0
|
| 3 |
+
<s> 0
|
| 4 |
+
</s> 0
|
| 5 |
+
en -0
|
| 6 |
+
es -1
|
| 7 |
+
▁d -2
|
| 8 |
+
on -3
|
| 9 |
+
▁c -4
|
| 10 |
+
la -5
|
| 11 |
+
▁p -6
|
| 12 |
+
os -7
|
| 13 |
+
er -8
|
| 14 |
+
▁a -9
|
| 15 |
+
▁de -10
|
| 16 |
+
ci -11
|
| 17 |
+
as -12
|
| 18 |
+
te -13
|
| 19 |
+
▁s -14
|
| 20 |
+
an -15
|
| 21 |
+
or -16
|
| 22 |
+
ar -17
|
| 23 |
+
▁e -18
|
| 24 |
+
▁m -19
|
| 25 |
+
un -20
|
| 26 |
+
▁es -21
|
| 27 |
+
▁y -22
|
| 28 |
+
ti -23
|
| 29 |
+
al -24
|
| 30 |
+
re -25
|
| 31 |
+
ue -26
|
| 32 |
+
▁la -27
|
| 33 |
+
▁¿ -28
|
| 34 |
+
ad -29
|
| 35 |
+
in -30
|
| 36 |
+
▁B -31
|
| 37 |
+
ic -32
|
| 38 |
+
▁en -33
|
| 39 |
+
om -34
|
| 40 |
+
▁un -35
|
| 41 |
+
▁el -36
|
| 42 |
+
▁l -37
|
| 43 |
+
ta -38
|
| 44 |
+
▁q -39
|
| 45 |
+
to -40
|
| 46 |
+
tr -41
|
| 47 |
+
▁con -42
|
| 48 |
+
is -43
|
| 49 |
+
do -44
|
| 50 |
+
ón -45
|
| 51 |
+
▁f -46
|
| 52 |
+
▁S -47
|
| 53 |
+
▁n -48
|
| 54 |
+
▁in -49
|
| 55 |
+
ro -50
|
| 56 |
+
ra -51
|
| 57 |
+
▁g -52
|
| 58 |
+
▁que -53
|
| 59 |
+
ma -54
|
| 60 |
+
tos -55
|
| 61 |
+
ué -56
|
| 62 |
+
▁com -57
|
| 63 |
+
▁E -58
|
| 64 |
+
de -59
|
| 65 |
+
ción -60
|
| 66 |
+
ien -61
|
| 67 |
+
us -62
|
| 68 |
+
ens -63
|
| 69 |
+
▁h -64
|
| 70 |
+
res -65
|
| 71 |
+
cion -66
|
| 72 |
+
ola -67
|
| 73 |
+
▁o -68
|
| 74 |
+
▁se -69
|
| 75 |
+
▁L -70
|
| 76 |
+
▁H -71
|
| 77 |
+
ente -72
|
| 78 |
+
id -73
|
| 79 |
+
ica -74
|
| 80 |
+
▁te -75
|
| 81 |
+
lo -76
|
| 82 |
+
▁M -77
|
| 83 |
+
▁pro -78
|
| 84 |
+
▁Hola -79
|
| 85 |
+
▁t -80
|
| 86 |
+
mo -81
|
| 87 |
+
pl -82
|
| 88 |
+
▁b -83
|
| 89 |
+
one -84
|
| 90 |
+
▁Bo -85
|
| 91 |
+
enson -86
|
| 92 |
+
▁Boone -87
|
| 93 |
+
▁v -88
|
| 94 |
+
tas -89
|
| 95 |
+
▁re -90
|
| 96 |
+
▁una -91
|
| 97 |
+
am -92
|
| 98 |
+
ec -93
|
| 99 |
+
ud -94
|
| 100 |
+
▁par -95
|
| 101 |
+
im -96
|
| 102 |
+
▁su -97
|
| 103 |
+
▁por -98
|
| 104 |
+
▁C -99
|
| 105 |
+
Qué -100
|
| 106 |
+
▁po -101
|
| 107 |
+
tic -102
|
| 108 |
+
ig -103
|
| 109 |
+
bre -104
|
| 110 |
+
▁del -105
|
| 111 |
+
▁al -106
|
| 112 |
+
▁res -107
|
| 113 |
+
der -108
|
| 114 |
+
▁como -109
|
| 115 |
+
ol -110
|
| 116 |
+
▁para -111
|
| 117 |
+
▁Benson -112
|
| 118 |
+
tes -113
|
| 119 |
+
▁me -114
|
| 120 |
+
▁ex -115
|
| 121 |
+
▁Sí -116
|
| 122 |
+
le -117
|
| 123 |
+
▁pue -118
|
| 124 |
+
▁mo -119
|
| 125 |
+
ales -120
|
| 126 |
+
cu -121
|
| 127 |
+
gu -122
|
| 128 |
+
ia -123
|
| 129 |
+
ado -124
|
| 130 |
+
ciones -125
|
| 131 |
+
ui -126
|
| 132 |
+
cia -127
|
| 133 |
+
des -128
|
| 134 |
+
▁Es -129
|
| 135 |
+
▁La -130
|
| 136 |
+
▁P -131
|
| 137 |
+
gun -132
|
| 138 |
+
▁pre -133
|
| 139 |
+
TP -134
|
| 140 |
+
it -135
|
| 141 |
+
▁resp -136
|
| 142 |
+
▁A -137
|
| 143 |
+
ct -138
|
| 144 |
+
je -139
|
| 145 |
+
ando -140
|
| 146 |
+
orma -141
|
| 147 |
+
▁MTP -142
|
| 148 |
+
▁nom -143
|
| 149 |
+
▁nombre -144
|
| 150 |
+
▁las -145
|
| 151 |
+
di -146
|
| 152 |
+
▁ar -147
|
| 153 |
+
ib -148
|
| 154 |
+
vos -149
|
| 155 |
+
▁pop -150
|
| 156 |
+
ers -151
|
| 157 |
+
▁ay -152
|
| 158 |
+
▁cu -153
|
| 159 |
+
▁ayud -154
|
| 160 |
+
il -155
|
| 161 |
+
dad -156
|
| 162 |
+
▁ti -157
|
| 163 |
+
▁los -158
|
| 164 |
+
án -159
|
| 165 |
+
era -160
|
| 166 |
+
gua -161
|
| 167 |
+
mas -162
|
| 168 |
+
idad -163
|
| 169 |
+
▁fun -164
|
| 170 |
+
▁inf -165
|
| 171 |
+
▁pregun -166
|
| 172 |
+
me -167
|
| 173 |
+
ero -168
|
| 174 |
+
ici -169
|
| 175 |
+
arte -170
|
| 176 |
+
mente -171
|
| 177 |
+
ap -172
|
| 178 |
+
encia -173
|
| 179 |
+
▁expl -174
|
| 180 |
+
iz -175
|
| 181 |
+
▁T -176
|
| 182 |
+
tan -177
|
| 183 |
+
ómo -178
|
| 184 |
+
Cu -179
|
| 185 |
+
io -180
|
| 186 |
+
lu -181
|
| 187 |
+
ada -182
|
| 188 |
+
▁Bra -183
|
| 189 |
+
▁San -184
|
| 190 |
+
▁gen -185
|
| 191 |
+
▁Bravos -186
|
| 192 |
+
▁Santos -187
|
| 193 |
+
ac -188
|
| 194 |
+
én -189
|
| 195 |
+
ía -190
|
| 196 |
+
▁lla -191
|
| 197 |
+
Cómo -192
|
| 198 |
+
at -193
|
| 199 |
+
ás -194
|
| 200 |
+
▁El -195
|
| 201 |
+
▁tr -196
|
| 202 |
+
iv -197
|
| 203 |
+
▁son -198
|
| 204 |
+
▁arti -199
|
| 205 |
+
po -200
|
| 206 |
+
▁mode -201
|
| 207 |
+
uc -202
|
| 208 |
+
ist -203
|
| 209 |
+
tica -204
|
| 210 |
+
▁qué -205
|
| 211 |
+
▁D -206
|
| 212 |
+
ren -207
|
| 213 |
+
iste -208
|
| 214 |
+
▁or -209
|
| 215 |
+
▁so -210
|
| 216 |
+
▁can -211
|
| 217 |
+
go -212
|
| 218 |
+
▁modelo -213
|
| 219 |
+
ab -214
|
| 220 |
+
▁I -215
|
| 221 |
+
▁informa -216
|
| 222 |
+
jo -217
|
| 223 |
+
tin -218
|
| 224 |
+
tiv -219
|
| 225 |
+
▁ap -220
|
| 226 |
+
▁gr -221
|
| 227 |
+
▁dis -222
|
| 228 |
+
▁len -223
|
| 229 |
+
▁respon -224
|
| 230 |
+
las -225
|
| 231 |
+
ues -226
|
| 232 |
+
ones -227
|
| 233 |
+
▁Pue -228
|
| 234 |
+
▁esp -229
|
| 235 |
+
iento -230
|
| 236 |
+
▁lengua -231
|
| 237 |
+
ce -232
|
| 238 |
+
ico -233
|
| 239 |
+
▁as -234
|
| 240 |
+
▁est -235
|
| 241 |
+
▁comp -236
|
| 242 |
+
▁tien -237
|
| 243 |
+
▁lenguaje -238
|
| 244 |
+
▁información -239
|
| 245 |
+
ál -240
|
| 246 |
+
ces -241
|
| 247 |
+
ctu -242
|
| 248 |
+
fer -243
|
| 249 |
+
▁añ -244
|
| 250 |
+
ras -245
|
| 251 |
+
▁des -246
|
| 252 |
+
▁ayudarte -247
|
| 253 |
+
▁preguntas -248
|
| 254 |
+
▁U -249
|
| 255 |
+
ten -250
|
| 256 |
+
ter -251
|
| 257 |
+
enti -252
|
| 258 |
+
▁pla -253
|
| 259 |
+
mi -254
|
| 260 |
+
▁N -255
|
| 261 |
+
man -256
|
| 262 |
+
mos -257
|
| 263 |
+
tro -258
|
| 264 |
+
▁emo -259
|
| 265 |
+
ación -260
|
| 266 |
+
mp -261
|
| 267 |
+
Cuál -262
|
| 268 |
+
▁inte -263
|
| 269 |
+
Benson -264
|
| 270 |
+
almente -265
|
| 271 |
+
▁funcion -266
|
| 272 |
+
oy -267
|
| 273 |
+
▁Un -268
|
| 274 |
+
▁man -269
|
| 275 |
+
▁más -270
|
| 276 |
+
▁ma -271
|
| 277 |
+
erra -272
|
| 278 |
+
▁cla -273
|
| 279 |
+
▁cre -274
|
| 280 |
+
▁hac -275
|
| 281 |
+
ética -276
|
| 282 |
+
▁puedo -277
|
| 283 |
+
da -278
|
| 284 |
+
ent -279
|
| 285 |
+
erg -280
|
| 286 |
+
lig -281
|
| 287 |
+
tre -282
|
| 288 |
+
▁di -283
|
| 289 |
+
ante -284
|
| 290 |
+
usic -285
|
| 291 |
+
▁sig -286
|
| 292 |
+
entes -287
|
| 293 |
+
▁años -288
|
| 294 |
+
fici -289
|
| 295 |
+
icar -290
|
| 296 |
+
▁car -291
|
| 297 |
+
▁music -292
|
| 298 |
+
Qui -293
|
| 299 |
+
ión -294
|
| 300 |
+
oci -295
|
| 301 |
+
ven -296
|
| 302 |
+
xto -297
|
| 303 |
+
▁IA -298
|
| 304 |
+
▁an -299
|
| 305 |
+
▁mú -300
|
| 306 |
+
onde -301
|
| 307 |
+
sica -302
|
| 308 |
+
▁cor -303
|
| 309 |
+
▁ten -304
|
| 310 |
+
▁conv -305
|
| 311 |
+
▁apren -306
|
| 312 |
+
▁intelig -307
|
| 313 |
+
AC -308
|
| 314 |
+
IN -309
|
| 315 |
+
KP -310
|
| 316 |
+
oc -311
|
| 317 |
+
INK -312
|
| 318 |
+
LAC -313
|
| 319 |
+
▁da -314
|
| 320 |
+
átic -315
|
| 321 |
+
KPINK -316
|
| 322 |
+
▁BLAC -317
|
| 323 |
+
▁medi -318
|
| 324 |
+
▁artis -319
|
| 325 |
+
▁BLACKPINK -320
|
| 326 |
+
▁responder -321
|
| 327 |
+
bi -322
|
| 328 |
+
pi -323
|
| 329 |
+
▁F -324
|
| 330 |
+
esi -325
|
| 331 |
+
ime -326
|
| 332 |
+
ina -327
|
| 333 |
+
▁gru -328
|
| 334 |
+
▁entr -329
|
| 335 |
+
▁tiene -330
|
| 336 |
+
ir -331
|
| 337 |
+
ur -332
|
| 338 |
+
cos -333
|
| 339 |
+
das -334
|
| 340 |
+
les -335
|
| 341 |
+
qui -336
|
| 342 |
+
▁pr -337
|
| 343 |
+
ados -338
|
| 344 |
+
▁cap -339
|
| 345 |
+
▁pas -340
|
| 346 |
+
entro -341
|
| 347 |
+
amente -342
|
| 348 |
+
▁donde -343
|
| 349 |
+
▁forma -344
|
| 350 |
+
▁sobre -345
|
| 351 |
+
▁proces -346
|
| 352 |
+
▁funciona -347
|
| 353 |
+
em -348
|
| 354 |
+
uí -349
|
| 355 |
+
ans -350
|
| 356 |
+
cep -351
|
| 357 |
+
dos -352
|
| 358 |
+
▁Ch -353
|
| 359 |
+
▁le -354
|
| 360 |
+
aliz -355
|
| 361 |
+
fica -356
|
| 362 |
+
▁Los -357
|
| 363 |
+
▁nec -358
|
| 364 |
+
Quién -359
|
| 365 |
+
▁gener -360
|
| 366 |
+
▁inter -361
|
| 367 |
+
▁mediante -362
|
| 368 |
+
pue -363
|
| 369 |
+
que -364
|
| 370 |
+
▁No -365
|
| 371 |
+
▁cl -366
|
| 372 |
+
▁nú -367
|
| 373 |
+
▁pa -368
|
| 374 |
+
uman -369
|
| 375 |
+
▁cam -370
|
| 376 |
+
▁actu -371
|
| 377 |
+
▁esta -372
|
| 378 |
+
ficial -373
|
| 379 |
+
▁Puedo -374
|
| 380 |
+
▁energ -375
|
| 381 |
+
▁siste -376
|
| 382 |
+
▁texto -377
|
| 383 |
+
▁ética -378
|
| 384 |
+
▁concep -379
|
| 385 |
+
▁música -380
|
| 386 |
+
▁necesi -381
|
| 387 |
+
▁inteligencia -382
|
| 388 |
+
▁R -383
|
| 389 |
+
ble -384
|
| 390 |
+
lar -385
|
| 391 |
+
luy -386
|
| 392 |
+
toy -387
|
| 393 |
+
▁hi -388
|
| 394 |
+
▁lo -389
|
| 395 |
+
▁tu -390
|
| 396 |
+
dern -391
|
| 397 |
+
eres -392
|
| 398 |
+
inci -393
|
| 399 |
+
tras -394
|
| 400 |
+
▁cal -395
|
| 401 |
+
▁inc -396
|
| 402 |
+
▁datos -397
|
| 403 |
+
▁human -398
|
| 404 |
+
▁trans -399
|
| 405 |
+
▁entren -400
|
| 406 |
+
▁modern -401
|
| 407 |
+
cr -402
|
| 408 |
+
ul -403
|
| 409 |
+
ona -404
|
| 410 |
+
orm -405
|
| 411 |
+
▁Ex -406
|
| 412 |
+
▁lu -407
|
| 413 |
+
▁ta -408
|
| 414 |
+
▁cons -409
|
| 415 |
+
puedes -410
|
| 416 |
+
▁clara -411
|
| 417 |
+
▁entre -412
|
| 418 |
+
▁latin -413
|
| 419 |
+
istente -414
|
| 420 |
+
▁energía -415
|
| 421 |
+
▁respues -416
|
| 422 |
+
▁explicar -417
|
| 423 |
+
▁artificial -418
|
| 424 |
+
av -419
|
| 425 |
+
eñ -420
|
| 426 |
+
aci -421
|
| 427 |
+
tar -422
|
| 428 |
+
▁id -423
|
| 429 |
+
▁im -424
|
| 430 |
+
icas -425
|
| 431 |
+
▁alg -426
|
| 432 |
+
▁Dime -427
|
| 433 |
+
▁tema -428
|
| 434 |
+
▁puede -429
|
| 435 |
+
▁puedes -430
|
| 436 |
+
▁convers -431
|
| 437 |
+
▁asistente -432
|
| 438 |
+
el -433
|
| 439 |
+
za -434
|
| 440 |
+
ín -435
|
| 441 |
+
ís -436
|
| 442 |
+
ún -437
|
| 443 |
+
▁/ -438
|
| 444 |
+
ari -439
|
| 445 |
+
den -440
|
| 446 |
+
qué -441
|
| 447 |
+
rec -442
|
| 448 |
+
yor -443
|
| 449 |
+
▁mi -444
|
| 450 |
+
▁ob -445
|
| 451 |
+
Cuán -446
|
| 452 |
+
crib -447
|
| 453 |
+
▁exp -448
|
| 454 |
+
▁gus -449
|
| 455 |
+
▁luz -450
|
| 456 |
+
▁mar -451
|
| 457 |
+
plica -452
|
| 458 |
+
tante -453
|
| 459 |
+
▁camb -454
|
| 460 |
+
▁esti -455
|
| 461 |
+
▁pers -456
|
| 462 |
+
cional -457
|
| 463 |
+
trones -458
|
| 464 |
+
▁hacer -459
|
| 465 |
+
▁llama -460
|
| 466 |
+
▁mayor -461
|
| 467 |
+
▁conoci -462
|
| 468 |
+
▁princi -463
|
| 469 |
+
▁conceptos -464
|
| 470 |
+
ch -465
|
| 471 |
+
cir -466
|
| 472 |
+
dam -467
|
| 473 |
+
ple -468
|
| 474 |
+
por -469
|
| 475 |
+
pos -470
|
| 476 |
+
uen -471
|
| 477 |
+
▁Se -472
|
| 478 |
+
▁ca -473
|
| 479 |
+
▁ci -474
|
| 480 |
+
▁co -475
|
| 481 |
+
adas -476
|
| 482 |
+
ador -477
|
| 483 |
+
ista -478
|
| 484 |
+
mien -479
|
| 485 |
+
▁Soy -480
|
| 486 |
+
▁bas -481
|
| 487 |
+
▁div -482
|
| 488 |
+
▁cual -483
|
| 489 |
+
miento -484
|
| 490 |
+
▁diseñ -485
|
| 491 |
+
▁ayudar -486
|
| 492 |
+
▁dentro -487
|
| 493 |
+
▁explica -488
|
| 494 |
+
▁canciones -489
|
| 495 |
+
▁( -490
|
| 496 |
+
duc -491
|
| 497 |
+
jor -492
|
| 498 |
+
lan -493
|
| 499 |
+
los -494
|
| 500 |
+
cias -495
|
| 501 |
+
ible -496
|
| 502 |
+
ital -497
|
| 503 |
+
tros -498
|
| 504 |
+
▁enf -499
|
| 505 |
+
▁sin -500
|
| 506 |
+
▁tus -501
|
| 507 |
+
ático -502
|
| 508 |
+
▁agua -503
|
| 509 |
+
▁grupo -504
|
| 510 |
+
▁inici -505
|
| 511 |
+
▁mejor -506
|
| 512 |
+
▁senti -507
|
| 513 |
+
amiento -508
|
| 514 |
+
▁Puedes -509
|
| 515 |
+
▁cuando -510
|
| 516 |
+
▁estilo -511
|
| 517 |
+
▁musical -512
|
| 518 |
+
▁aprender -513
|
| 519 |
+
GP -514
|
| 520 |
+
ca -515
|
| 521 |
+
tu -516
|
| 522 |
+
ve -517
|
| 523 |
+
GPT -518
|
| 524 |
+
gan -519
|
| 525 |
+
gra -520
|
| 526 |
+
ido -521
|
| 527 |
+
min -522
|
| 528 |
+
ías -523
|
| 529 |
+
▁Mi -524
|
| 530 |
+
▁Ti -525
|
| 531 |
+
▁ch -526
|
| 532 |
+
icos -527
|
| 533 |
+
mero -528
|
| 534 |
+
oria -529
|
| 535 |
+
▁ban -530
|
| 536 |
+
▁cer -531
|
| 537 |
+
▁qui -532
|
| 538 |
+
▁sus -533
|
| 539 |
+
atGPT -534
|
| 540 |
+
cribe -535
|
| 541 |
+
rasil -536
|
| 542 |
+
▁comb -537
|
| 543 |
+
▁Brasil -538
|
| 544 |
+
▁Tierra -539
|
| 545 |
+
▁cambio -540
|
| 546 |
+
▁identi -541
|
| 547 |
+
▁número -542
|
| 548 |
+
▁ChatGPT -543
|
| 549 |
+
▁sistema -544
|
| 550 |
+
óg -545
|
| 551 |
+
▁r -546
|
| 552 |
+
cas -547
|
| 553 |
+
ida -548
|
| 554 |
+
til -549
|
| 555 |
+
uta -550
|
| 556 |
+
zar -551
|
| 557 |
+
▁En -552
|
| 558 |
+
▁Me -553
|
| 559 |
+
▁To -554
|
| 560 |
+
adre -555
|
| 561 |
+
▁mor -556
|
| 562 |
+
▁rec -557
|
| 563 |
+
▁sol -558
|
| 564 |
+
▁plan -559
|
| 565 |
+
dament -560
|
| 566 |
+
▁crear -561
|
| 567 |
+
▁actual -562
|
| 568 |
+
▁incluy -563
|
| 569 |
+
▁llamas -564
|
| 570 |
+
▁Explica -565
|
| 571 |
+
▁diseñado -566
|
| 572 |
+
▁fundament -567
|
| 573 |
+
▁respuestas -568
|
| 574 |
+
eo -569
|
| 575 |
+
ni -570
|
| 576 |
+
ato -571
|
| 577 |
+
bla -572
|
| 578 |
+
hos -573
|
| 579 |
+
ran -574
|
| 580 |
+
áci -575
|
| 581 |
+
▁ac -576
|
| 582 |
+
▁ad -577
|
| 583 |
+
▁fu -578
|
| 584 |
+
▁to -579
|
| 585 |
+
Tien -580
|
| 586 |
+
arro -581
|
| 587 |
+
cuch -582
|
| 588 |
+
ento -583
|
| 589 |
+
▁coh -584
|
| 590 |
+
▁inv -585
|
| 591 |
+
▁per -586
|
| 592 |
+
▁ser -587
|
| 593 |
+
iendo -588
|
| 594 |
+
quier -589
|
| 595 |
+
▁caus -590
|
| 596 |
+
▁espe -591
|
| 597 |
+
▁hijo -592
|
| 598 |
+
▁hist -593
|
| 599 |
+
▁paso -594
|
| 600 |
+
Tienes -595
|
| 601 |
+
tantes -596
|
| 602 |
+
▁Estoy -597
|
| 603 |
+
▁conte -598
|
| 604 |
+
▁difer -599
|
| 605 |
+
▁moral -600
|
| 606 |
+
▁padre -601
|
| 607 |
+
▁prote -602
|
| 608 |
+
mientos -603
|
| 609 |
+
▁analiz -604
|
| 610 |
+
▁comple -605
|
| 611 |
+
▁latino -606
|
| 612 |
+
▁person -607
|
| 613 |
+
▁progra -608
|
| 614 |
+
▁artista -609
|
| 615 |
+
▁princip -610
|
| 616 |
+
▁artistas -611
|
| 617 |
+
co -612
|
| 618 |
+
oz -613
|
| 619 |
+
▁ú -614
|
| 620 |
+
cur -615
|
| 621 |
+
kio -616
|
| 622 |
+
ons -617
|
| 623 |
+
uím -618
|
| 624 |
+
zan -619
|
| 625 |
+
▁Re -620
|
| 626 |
+
▁ha -621
|
| 627 |
+
▁ne -622
|
| 628 |
+
bién -623
|
| 629 |
+
cula -624
|
| 630 |
+
dial -625
|
| 631 |
+
tien -626
|
| 632 |
+
▁Las -627
|
| 633 |
+
▁gan -628
|
| 634 |
+
▁lib -629
|
| 635 |
+
▁sim -630
|
| 636 |
+
▁tar -631
|
| 637 |
+
arrol -632
|
| 638 |
+
ormas -633
|
| 639 |
+
▁clim -634
|
| 640 |
+
▁edad -635
|
| 641 |
+
▁eres -636
|
| 642 |
+
▁gato -637
|
| 643 |
+
▁pres -638
|
| 644 |
+
▁prop -639
|
| 645 |
+
▁quím -640
|
| 646 |
+
▁rela -641
|
| 647 |
+
ilidad -642
|
| 648 |
+
nifica -643
|
| 649 |
+
tender -644
|
| 650 |
+
undial -645
|
| 651 |
+
▁Tokio -646
|
| 652 |
+
▁coher -647
|
| 653 |
+
▁temas -648
|
| 654 |
+
▁tengo -649
|
| 655 |
+
▁especi -650
|
| 656 |
+
▁proceso -651
|
| 657 |
+
▁desarrol -652
|
| 658 |
+
▁entender -653
|
| 659 |
+
▁patrones -654
|
| 660 |
+
▁pregunta -655
|
| 661 |
+
▁necesitas -656
|
| 662 |
+
▁sentimientos -657
|
| 663 |
+
dr -658
|
| 664 |
+
du -659
|
| 665 |
+
▁V -660
|
| 666 |
+
act -661
|
| 667 |
+
ame -662
|
| 668 |
+
dor -663
|
| 669 |
+
gen -664
|
| 670 |
+
tor -665
|
| 671 |
+
tra -666
|
| 672 |
+
▁In -667
|
| 673 |
+
▁Si -668
|
| 674 |
+
▁at -669
|
| 675 |
+
▁us -670
|
| 676 |
+
ases -671
|
| 677 |
+
fico -672
|
| 678 |
+
inas -673
|
| 679 |
+
isto -674
|
| 680 |
+
mpor -675
|
| 681 |
+
tivo -676
|
| 682 |
+
ucle -677
|
| 683 |
+
ustr -678
|
| 684 |
+
▁der -679
|
| 685 |
+
▁emp -680
|
| 686 |
+
▁mis -681
|
| 687 |
+
▁rep -682
|
| 688 |
+
▁voz -683
|
| 689 |
+
acter -684
|
| 690 |
+
recta -685
|
| 691 |
+
▁ecos -686
|
| 692 |
+
▁elec -687
|
| 693 |
+
▁está -688
|
| 694 |
+
▁secu -689
|
| 695 |
+
▁vari -690
|
| 696 |
+
▁espec -691
|
| 697 |
+
▁estud -692
|
| 698 |
+
▁organ -693
|
| 699 |
+
▁parte -694
|
| 700 |
+
▁escuch -695
|
| 701 |
+
▁genera -696
|
| 702 |
+
▁capital -697
|
| 703 |
+
▁moderno -698
|
| 704 |
+
▁ecosiste -699
|
| 705 |
+
▁programa -700
|
| 706 |
+
▁climático -701
|
| 707 |
+
▁significa -702
|
| 708 |
+
eb -703
|
| 709 |
+
▁J -704
|
| 710 |
+
elo -705
|
| 711 |
+
ema -706
|
| 712 |
+
erv -707
|
| 713 |
+
fec -708
|
| 714 |
+
ide -709
|
| 715 |
+
isa -710
|
| 716 |
+
lti -711
|
| 717 |
+
olu -712
|
| 718 |
+
pen -713
|
| 719 |
+
quí -714
|
| 720 |
+
tru -715
|
| 721 |
+
élu -716
|
| 722 |
+
▁ab -717
|
| 723 |
+
▁sí -718
|
| 724 |
+
alia -719
|
| 725 |
+
apón -720
|
| 726 |
+
empo -721
|
| 727 |
+
enta -722
|
| 728 |
+
ient -723
|
| 729 |
+
mite -724
|
| 730 |
+
ológ -725
|
| 731 |
+
ores -726
|
| 732 |
+
orit -727
|
| 733 |
+
ples -728
|
| 734 |
+
▁dud -729
|
| 735 |
+
▁mil -730
|
| 736 |
+
▁muc -731
|
| 737 |
+
▁nue -732
|
| 738 |
+
▁ref -733
|
| 739 |
+
▁tam -734
|
| 740 |
+
▁ter -735
|
| 741 |
+
dades -736
|
| 742 |
+
iente -737
|
| 743 |
+
iones -738
|
| 744 |
+
tesis -739
|
| 745 |
+
▁Lisa -740
|
| 746 |
+
▁aquí -741
|
| 747 |
+
▁buen -742
|
| 748 |
+
▁célu -743
|
| 749 |
+
▁fáci -744
|
| 750 |
+
▁gran -745
|
| 751 |
+
▁pero -746
|
| 752 |
+
▁prob -747
|
| 753 |
+
▁teor -748
|
| 754 |
+
▁Japón -749
|
| 755 |
+
▁decir -750
|
| 756 |
+
▁listo -751
|
| 757 |
+
▁nucle -752
|
| 758 |
+
▁orden -753
|
| 759 |
+
▁pobla -754
|
| 760 |
+
▁refer -755
|
| 761 |
+
aciones -756
|
| 762 |
+
tividad -757
|
| 763 |
+
▁espaci -758
|
| 764 |
+
▁manera -759
|
| 765 |
+
▁placas -760
|
| 766 |
+
▁algorit -761
|
| 767 |
+
▁también -762
|
| 768 |
+
▁historia -763
|
| 769 |
+
▁cualquier -764
|
| 770 |
+
▁emocional -765
|
| 771 |
+
▁secuencia -766
|
| 772 |
+
▁fundamental -767
|
| 773 |
+
▁conversación -768
|
| 774 |
+
▁explicaciones -769
|
| 775 |
+
cé -770
|
| 776 |
+
ea -771
|
| 777 |
+
ut -772
|
| 778 |
+
ér -773
|
| 779 |
+
ós -774
|
| 780 |
+
úa -775
|
| 781 |
+
aré -776
|
| 782 |
+
cis -777
|
| 783 |
+
ern -778
|
| 784 |
+
gas -779
|
| 785 |
+
ima -780
|
| 786 |
+
ios -781
|
| 787 |
+
ual -782
|
| 788 |
+
uel -783
|
| 789 |
+
▁am -784
|
| 790 |
+
▁do -785
|
| 791 |
+
▁fo -786
|
| 792 |
+
▁no -787
|
| 793 |
+
▁op -788
|
| 794 |
+
▁si -789
|
| 795 |
+
anos -790
|
| 796 |
+
atur -791
|
| 797 |
+
ensa -792
|
| 798 |
+
ezar -793
|
| 799 |
+
fera -794
|
| 800 |
+
laro -795
|
| 801 |
+
olar -796
|
| 802 |
+
tiva -797
|
| 803 |
+
udad -798
|
| 804 |
+
áneo -799
|
| 805 |
+
▁bus -800
|
| 806 |
+
▁dig -801
|
| 807 |
+
▁océ -802
|
| 808 |
+
▁sup -803
|
| 809 |
+
▁vir -804
|
| 810 |
+
demos -805
|
| 811 |
+
entos -806
|
| 812 |
+
ismos -807
|
| 813 |
+
tados -808
|
| 814 |
+
▁Este -809
|
| 815 |
+
▁algo -810
|
| 816 |
+
▁apro -811
|
| 817 |
+
▁bien -812
|
| 818 |
+
▁hace -813
|
| 819 |
+
▁llam -814
|
| 820 |
+
▁nuev -815
|
| 821 |
+
▁obje -816
|
| 822 |
+
▁ocur -817
|
| 823 |
+
▁popu -818
|
| 824 |
+
▁prof -819
|
| 825 |
+
Cuáles -820
|
| 826 |
+
itales -821
|
| 827 |
+
▁Austr -822
|
| 828 |
+
▁Claro -823
|
| 829 |
+
▁corto -824
|
| 830 |
+
▁derec -825
|
| 831 |
+
▁gases -826
|
| 832 |
+
▁natur -827
|
| 833 |
+
Quiénes -828
|
| 834 |
+
ientras -829
|
| 835 |
+
▁ciudad -830
|
| 836 |
+
▁contin -831
|
| 837 |
+
▁especí -832
|
| 838 |
+
▁grupos -833
|
| 839 |
+
▁letras -834
|
| 840 |
+
▁manzan -835
|
| 841 |
+
▁probab -836
|
| 842 |
+
mporáneo -837
|
| 843 |
+
▁Mundial -838
|
| 844 |
+
▁células -839
|
| 845 |
+
▁espacio -840
|
| 846 |
+
▁generar -841
|
| 847 |
+
▁proteín -842
|
| 848 |
+
▁solista -843
|
| 849 |
+
▁conocido -844
|
| 850 |
+
▁incluyen -845
|
| 851 |
+
▁Australia -846
|
| 852 |
+
▁musicales -847
|
| 853 |
+
▁programación -848
|
| 854 |
+
▁contemporáneo -849
|
| 855 |
+
En -850
|
| 856 |
+
bl -851
|
| 857 |
+
ió -852
|
| 858 |
+
na -853
|
| 859 |
+
és -854
|
| 860 |
+
óm -855
|
| 861 |
+
▁G -856
|
| 862 |
+
▁j -857
|
| 863 |
+
▁u -858
|
| 864 |
+
ajo -859
|
| 865 |
+
gue -860
|
| 866 |
+
olv -861
|
| 867 |
+
olé -862
|
| 868 |
+
ori -863
|
| 869 |
+
pon -864
|
| 870 |
+
taf -865
|
| 871 |
+
tir -866
|
| 872 |
+
uar -867
|
| 873 |
+
xim -868
|
| 874 |
+
▁Al -869
|
| 875 |
+
ater -870
|
| 876 |
+
engo -871
|
| 877 |
+
idos -872
|
| 878 |
+
itud -873
|
| 879 |
+
tura -874
|
| 880 |
+
undo -875
|
| 881 |
+
unto -876
|
| 882 |
+
volu -877
|
| 883 |
+
▁cic -878
|
| 884 |
+
▁def -879
|
| 885 |
+
▁dos -880
|
| 886 |
+
▁fue -881
|
| 887 |
+
▁gra -882
|
| 888 |
+
▁ins -883
|
| 889 |
+
▁pos -884
|
| 890 |
+
▁sal -885
|
| 891 |
+
▁uno -886
|
| 892 |
+
▁vol -887
|
| 893 |
+
minos -888
|
| 894 |
+
tivos -889
|
| 895 |
+
trona -890
|
| 896 |
+
ximad -891
|
| 897 |
+
▁Esta -892
|
| 898 |
+
▁form -893
|
| 899 |
+
▁reci -894
|
| 900 |
+
render -895
|
| 901 |
+
tructu -896
|
| 902 |
+
▁Tengo -897
|
| 903 |
+
▁algún -898
|
| 904 |
+
▁doble -899
|
| 905 |
+
▁enfoc -900
|
| 906 |
+
▁estoy -901
|
| 907 |
+
▁exper -902
|
| 908 |
+
▁fotos -903
|
| 909 |
+
▁llamo -904
|
| 910 |
+
▁recon -905
|
| 911 |
+
▁solar -906
|
| 912 |
+
ersidad -907
|
| 913 |
+
▁distin -908
|
| 914 |
+
▁expres -909
|
| 915 |
+
▁transf -910
|
| 916 |
+
tronauta -911
|
| 917 |
+
▁empezar -912
|
| 918 |
+
▁interes -913
|
| 919 |
+
▁natural -914
|
| 920 |
+
▁podemos -915
|
| 921 |
+
▁simples -916
|
| 922 |
+
▁cantante -917
|
| 923 |
+
▁caracter -918
|
| 924 |
+
▁estructu -919
|
| 925 |
+
▁mientras -920
|
| 926 |
+
▁pobladas -921
|
| 927 |
+
▁aproximad -922
|
| 928 |
+
▁cantantes -923
|
| 929 |
+
▁conversar -924
|
| 930 |
+
▁emociones -925
|
| 931 |
+
▁astronauta -926
|
| 932 |
+
▁diferencia -927
|
| 933 |
+
▁aproximadamente -928
|
| 934 |
+
ga -929
|
| 935 |
+
ja -930
|
| 936 |
+
pa -931
|
| 937 |
+
qu -932
|
| 938 |
+
ña -933
|
| 939 |
+
▁× -934
|
| 940 |
+
ala -935
|
| 941 |
+
anz -936
|
| 942 |
+
bal -937
|
| 943 |
+
cle -938
|
| 944 |
+
dan -939
|
| 945 |
+
div -940
|
| 946 |
+
drá -941
|
| 947 |
+
ena -942
|
| 948 |
+
iza -943
|
| 949 |
+
mós -944
|
| 950 |
+
olo -945
|
| 951 |
+
oma -946
|
| 952 |
+
ong -947
|
| 953 |
+
par -948
|
| 954 |
+
sor -949
|
| 955 |
+
tem -950
|
| 956 |
+
uer -951
|
| 957 |
+
▁Te -952
|
| 958 |
+
▁lí -953
|
| 959 |
+
▁nu -954
|
| 960 |
+
▁pi -955
|
| 961 |
+
▁ra -956
|
| 962 |
+
serv -957
|
| 963 |
+
▁Can -958
|
| 964 |
+
▁boy -959
|
| 965 |
+
▁glo -960
|
| 966 |
+
▁hab -961
|
| 967 |
+
▁int -962
|
| 968 |
+
▁sea -963
|
| 969 |
+
▁soy -964
|
| 970 |
+
fecto -965
|
| 971 |
+
ivers -966
|
| 972 |
+
ticas -967
|
| 973 |
+
uesta -968
|
| 974 |
+
▁band -969
|
| 975 |
+
▁conf -970
|
| 976 |
+
▁este -971
|
| 977 |
+
▁ganó -972
|
| 978 |
+
▁molé -973
|
| 979 |
+
▁util -974
|
| 980 |
+
▁vida -975
|
| 981 |
+
▁últi -976
|
| 982 |
+
ración -977
|
| 983 |
+
tación -978
|
| 984 |
+
▁atmós -979
|
| 985 |
+
▁cereb -980
|
| 986 |
+
▁ciclo -981
|
| 987 |
+
▁decis -982
|
| 988 |
+
▁desde -983
|
| 989 |
+
▁fácil -984
|
| 990 |
+
▁impor -985
|
| 991 |
+
▁mater -986
|
| 992 |
+
▁núcle -987
|
| 993 |
+
▁poema -988
|
| 994 |
+
▁produ -989
|
| 995 |
+
▁resul -990
|
| 996 |
+
▁tacos -991
|
| 997 |
+
íntesis -992
|
| 998 |
+
▁electr -993
|
| 999 |
+
▁explic -994
|
| 1000 |
+
▁global -995
|
| 1001 |
+
▁humano -996
|
| 1002 |
+
▁latina -997
|
| 1003 |
+
▁pastor -998
|
| 1004 |
+
▁plataf -999
|
| 1005 |
+
▁tendrá -1000
|
| 1006 |
+
▁tiempo -1001
|
| 1007 |
+
▁tienes -1002
|
| 1008 |
+
▁Escribe -1003
|
| 1009 |
+
▁calcula -1004
|
| 1010 |
+
▁humanos -1005
|
| 1011 |
+
▁nuclear -1006
|
| 1012 |
+
▁océanos -1007
|
| 1013 |
+
▁popular -1008
|
| 1014 |
+
▁ciudades -1009
|
| 1015 |
+
▁derechos -1010
|
| 1016 |
+
rectamente -1011
|
| 1017 |
+
▁atmósfera -1012
|
| 1018 |
+
▁entrenado -1013
|
| 1019 |
+
▁identidad -1014
|
| 1020 |
+
▁transform -1015
|
| 1021 |
+
▁algoritmos -1016
|
| 1022 |
+
▁personales -1017
|
| 1023 |
+
▁referentes -1018
|
| 1024 |
+
▁plataformas -1019
|
| 1025 |
+
▁fotosíntesis -1020
|
| 1026 |
+
▁probabilidad -1021
|
| 1027 |
+
▁principalmente -1022
|
| 1028 |
+
)? -1023
|
| 1029 |
+
Se -1024
|
| 1030 |
+
be -1025
|
| 1031 |
+
ef -1026
|
| 1032 |
+
gh -1027
|
| 1033 |
+
hi -1028
|
| 1034 |
+
se -1029
|
| 1035 |
+
tb -1030
|
| 1036 |
+
th -1031
|
| 1037 |
+
ái -1032
|
| 1038 |
+
éc -1033
|
| 1039 |
+
ór -1034
|
| 1040 |
+
óx -1035
|
| 1041 |
+
…? -1036
|
| 1042 |
+
▁O -1037
|
| 1043 |
+
▁z -1038
|
| 1044 |
+
▁á -1039
|
| 1045 |
+
ase -1040
|
| 1046 |
+
eas -1041
|
| 1047 |
+
ece -1042
|
| 1048 |
+
emp -1043
|
| 1049 |
+
est -1044
|
| 1050 |
+
gon -1045
|
| 1051 |
+
gún -1046
|
| 1052 |
+
han -1047
|
| 1053 |
+
has -1048
|
| 1054 |
+
iar -1049
|
| 1055 |
+
jas -1050
|
| 1056 |
+
lin -1051
|
| 1057 |
+
nta -1052
|
| 1058 |
+
ono -1053
|
| 1059 |
+
poy -1054
|
| 1060 |
+
uro -1055
|
| 1061 |
+
yth -1056
|
| 1062 |
+
útb -1057
|
| 1063 |
+
▁av -1058
|
| 1064 |
+
▁cr -1059
|
| 1065 |
+
▁ju -1060
|
| 1066 |
+
▁ni -1061
|
| 1067 |
+
▁on -1062
|
| 1068 |
+
▁pe -1063
|
| 1069 |
+
▁…? -1064
|
| 1070 |
+
ampi -1065
|
| 1071 |
+
avés -1066
|
| 1072 |
+
ceta -1067
|
| 1073 |
+
ctúa -1068
|
| 1074 |
+
dora -1069
|
| 1075 |
+
elhi -1070
|
| 1076 |
+
ghái -1071
|
| 1077 |
+
ivas -1072
|
| 1078 |
+
oque -1073
|
| 1079 |
+
rera -1074
|
| 1080 |
+
usti -1075
|
| 1081 |
+
▁Cué -1076
|
| 1082 |
+
▁Lea -1077
|
| 1083 |
+
▁acu -1078
|
| 1084 |
+
▁año -1079
|
| 1085 |
+
▁doy -1080
|
| 1086 |
+
▁eje -1081
|
| 1087 |
+
▁fav -1082
|
| 1088 |
+
▁for -1083
|
| 1089 |
+
▁glu -1084
|
| 1090 |
+
▁mas -1085
|
| 1091 |
+
▁niv -1086
|
| 1092 |
+
▁rad -1087
|
| 1093 |
+
▁sue -1088
|
| 1094 |
+
▁tér -1089
|
| 1095 |
+
▁ver -1090
|
| 1096 |
+
adero -1091
|
| 1097 |
+
berra -1092
|
| 1098 |
+
cidad -1093
|
| 1099 |
+
culas -1094
|
| 1100 |
+
estás -1095
|
| 1101 |
+
ientí -1096
|
| 1102 |
+
isión -1097
|
| 1103 |
+
ntame -1098
|
| 1104 |
+
tagon -1099
|
| 1105 |
+
venil -1100
|
| 1106 |
+
venta -1101
|
| 1107 |
+
ython -1102
|
| 1108 |
+
ántos -1103
|
| 1109 |
+
óxido -1104
|
| 1110 |
+
útbol -1105
|
| 1111 |
+
▁Buen -1106
|
| 1112 |
+
▁Fran -1107
|
| 1113 |
+
▁Shan -1108
|
| 1114 |
+
▁adap -1109
|
| 1115 |
+
▁apoy -1110
|
| 1116 |
+
▁chef -1111
|
| 1117 |
+
▁dame -1112
|
| 1118 |
+
▁elem -1113
|
| 1119 |
+
▁esto -1114
|
| 1120 |
+
▁trat -1115
|
| 1121 |
+
▁velo -1116
|
| 1122 |
+
▁volc -1117
|
| 1123 |
+
Cuánto -1118
|
| 1124 |
+
diendo -1119
|
| 1125 |
+
iación -1120
|
| 1126 |
+
icidad -1121
|
| 1127 |
+
ientes -1122
|
| 1128 |
+
utador -1123
|
| 1129 |
+
▁Actúa -1124
|
| 1130 |
+
▁Delhi -1125
|
| 1131 |
+
▁cerdo -1126
|
| 1132 |
+
▁clima -1127
|
| 1133 |
+
▁comun -1128
|
| 1134 |
+
▁contr -1129
|
| 1135 |
+
▁desta -1130
|
| 1136 |
+
▁dudas -1131
|
| 1137 |
+
▁liber -1132
|
| 1138 |
+
▁matem -1133
|
| 1139 |
+
▁mundo -1134
|
| 1140 |
+
▁otros -1135
|
| 1141 |
+
▁refle -1136
|
| 1142 |
+
▁según -1137
|
| 1143 |
+
▁sigue -1138
|
| 1144 |
+
▁todos -1139
|
| 1145 |
+
Cuántas -1140
|
| 1146 |
+
Cuántos -1141
|
| 1147 |
+
ampions -1142
|
| 1148 |
+
iencias -1143
|
| 1149 |
+
▁Fútbol -1144
|
| 1150 |
+
▁League -1145
|
| 1151 |
+
▁Python -1146
|
| 1152 |
+
▁basado -1147
|
| 1153 |
+
▁chiste -1148
|
| 1154 |
+
▁cientí -1149
|
| 1155 |
+
▁claras -1150
|
| 1156 |
+
▁compos -1151
|
| 1157 |
+
▁consid -1152
|
| 1158 |
+
▁creado -1153
|
| 1159 |
+
▁efecto -1154
|
| 1160 |
+
▁humana -1155
|
| 1161 |
+
▁invern -1156
|
| 1162 |
+
▁muchas -1157
|
| 1163 |
+
▁observ -1158
|
| 1164 |
+
▁ocurre -1159
|
| 1165 |
+
▁opinas -1160
|
| 1166 |
+
▁produc -1161
|
| 1167 |
+
▁quedan -1162
|
| 1168 |
+
▁receta -1163
|
| 1169 |
+
▁teoría -1164
|
| 1170 |
+
▁terres -1165
|
| 1171 |
+
▁través -1166
|
| 1172 |
+
▁último -1167
|
| 1173 |
+
volución -1168
|
| 1174 |
+
▁Inventa -1169
|
| 1175 |
+
▁carrera -1170
|
| 1176 |
+
▁combina -1171
|
| 1177 |
+
▁cuántos -1172
|
| 1178 |
+
▁enfoque -1173
|
| 1179 |
+
▁función -1174
|
| 1180 |
+
▁juvenil -1175
|
| 1181 |
+
▁plantas -1176
|
| 1182 |
+
▁univers -1177
|
| 1183 |
+
tagonista -1178
|
| 1184 |
+
▁Brasilia -1179
|
| 1185 |
+
▁Canberra -1180
|
| 1186 |
+
▁Cuéntame -1181
|
| 1187 |
+
▁Shanghái -1182
|
| 1188 |
+
▁analizar -1183
|
| 1189 |
+
▁combusti -1184
|
| 1190 |
+
▁entrenar -1185
|
| 1191 |
+
▁manzanas -1186
|
| 1192 |
+
▁términos -1187
|
| 1193 |
+
▁Champions -1188
|
| 1194 |
+
▁constante -1189
|
| 1195 |
+
▁digitales -1190
|
| 1196 |
+
▁iniciales -1191
|
| 1197 |
+
▁oraciones -1192
|
| 1198 |
+
▁propuesta -1193
|
| 1199 |
+
▁respuesta -1194
|
| 1200 |
+
▁coherentes -1195
|
| 1201 |
+
▁comprender -1196
|
| 1202 |
+
▁computador -1197
|
| 1203 |
+
▁decisiones -1198
|
| 1204 |
+
▁organismos -1199
|
| 1205 |
+
▁calculadora -1200
|
| 1206 |
+
▁ecosistemas -1201
|
| 1207 |
+
▁invernadero -1202
|
| 1208 |
+
▁conocimiento -1203
|
| 1209 |
+
▁protagonista -1204
|
| 1210 |
+
DN -1205
|
| 1211 |
+
bo -1206
|
| 1212 |
+
gr -1207
|
| 1213 |
+
ló -1208
|
| 1214 |
+
ío -1209
|
| 1215 |
+
ano -1210
|
| 1216 |
+
cra -1211
|
| 1217 |
+
elu -1212
|
| 1218 |
+
iaj -1213
|
| 1219 |
+
ier -1214
|
| 1220 |
+
jos -1215
|
| 1221 |
+
lab -1216
|
| 1222 |
+
mpl -1217
|
| 1223 |
+
omb -1218
|
| 1224 |
+
pec -1219
|
| 1225 |
+
pre -1220
|
| 1226 |
+
tal -1221
|
| 1227 |
+
tom -1222
|
| 1228 |
+
tís -1223
|
| 1229 |
+
una -1224
|
| 1230 |
+
▁Su -1225
|
| 1231 |
+
▁ah -1226
|
| 1232 |
+
▁bi -1227
|
| 1233 |
+
▁ej -1228
|
| 1234 |
+
▁fí -1229
|
| 1235 |
+
▁ig -1230
|
| 1236 |
+
▁ro -1231
|
| 1237 |
+
▁vi -1232
|
| 1238 |
+
able -1233
|
| 1239 |
+
arme -1234
|
| 1240 |
+
asta -1235
|
| 1241 |
+
bono -1236
|
| 1242 |
+
cosa -1237
|
| 1243 |
+
ctón -1238
|
| 1244 |
+
dica -1239
|
| 1245 |
+
diza -1240
|
| 1246 |
+
dose -1241
|
| 1247 |
+
enci -1242
|
| 1248 |
+
enos -1243
|
| 1249 |
+
eras -1244
|
| 1250 |
+
gran -1245
|
| 1251 |
+
itor -1246
|
| 1252 |
+
izan -1247
|
| 1253 |
+
ocal -1248
|
| 1254 |
+
omen -1249
|
| 1255 |
+
orta -1250
|
| 1256 |
+
tico -1251
|
| 1257 |
+
truc -1252
|
| 1258 |
+
▁Por -1253
|
| 1259 |
+
▁Pro -1254
|
| 1260 |
+
▁ade -1255
|
| 1261 |
+
▁agu -1256
|
| 1262 |
+
▁cen -1257
|
| 1263 |
+
▁dar -1258
|
| 1264 |
+
▁fin -1259
|
| 1265 |
+
▁ide -1260
|
| 1266 |
+
▁imp -1261
|
| 1267 |
+
▁lar -1262
|
| 1268 |
+
▁ley -1263
|
| 1269 |
+
▁tal -1264
|
| 1270 |
+
▁tan -1265
|
| 1271 |
+
▁tor -1266
|
| 1272 |
+
empre -1267
|
| 1273 |
+
gunos -1268
|
| 1274 |
+
lones -1269
|
| 1275 |
+
mites -1270
|
| 1276 |
+
mocra -1271
|
| 1277 |
+
mplos -1272
|
| 1278 |
+
pende -1273
|
| 1279 |
+
tando -1274
|
| 1280 |
+
tiene -1275
|
| 1281 |
+
uesto -1276
|
| 1282 |
+
unque -1277
|
| 1283 |
+
▁Cons -1278
|
| 1284 |
+
▁admi -1279
|
| 1285 |
+
▁alim -1280
|
| 1286 |
+
▁blan -1281
|
| 1287 |
+
▁cada -1282
|
| 1288 |
+
▁celu -1283
|
| 1289 |
+
▁dime -1284
|
| 1290 |
+
▁even -1285
|
| 1291 |
+
▁fuer -1286
|
| 1292 |
+
▁haré -1287
|
| 1293 |
+
▁onda -1288
|
| 1294 |
+
▁sens -1289
|
| 1295 |
+
▁átom -1290
|
| 1296 |
+
acidad -1291
|
| 1297 |
+
dizaje -1292
|
| 1298 |
+
oritos -1293
|
| 1299 |
+
ándose -1294
|
| 1300 |
+
áticos -1295
|
| 1301 |
+
▁artís -1296
|
| 1302 |
+
▁darte -1297
|
| 1303 |
+
▁defin -1298
|
| 1304 |
+
▁gusto -1299
|
| 1305 |
+
▁hacia -1300
|
| 1306 |
+
▁hasta -1301
|
| 1307 |
+
▁mensa -1302
|
| 1308 |
+
▁nuevo -1303
|
| 1309 |
+
▁palab -1304
|
| 1310 |
+
▁plane -1305
|
| 1311 |
+
▁propi -1306
|
| 1312 |
+
▁todas -1307
|
| 1313 |
+
▁virus -1308
|
| 1314 |
+
▁vocal -1309
|
| 1315 |
+
grantes -1310
|
| 1316 |
+
ológica -1311
|
| 1317 |
+
ongitud -1312
|
| 1318 |
+
▁Proces -1313
|
| 1319 |
+
▁dispon -1314
|
| 1320 |
+
▁forman -1315
|
| 1321 |
+
▁física -1316
|
| 1322 |
+
▁gustan -1317
|
| 1323 |
+
▁inicio -1318
|
| 1324 |
+
▁manten -1319
|
| 1325 |
+
▁prefer -1320
|
| 1326 |
+
▁proble -1321
|
| 1327 |
+
▁pueden -1322
|
| 1328 |
+
▁quiero -1323
|
| 1329 |
+
▁repres -1324
|
| 1330 |
+
▁resolv -1325
|
| 1331 |
+
▁tareas -1326
|
| 1332 |
+
▁tienen -1327
|
| 1333 |
+
▁usando -1328
|
| 1334 |
+
cionales -1329
|
| 1335 |
+
mocracia -1330
|
| 1336 |
+
▁analiza -1331
|
| 1337 |
+
▁carbono -1332
|
| 1338 |
+
▁dióxido -1333
|
| 1339 |
+
▁escribe -1334
|
| 1340 |
+
▁glucosa -1335
|
| 1341 |
+
▁identif -1336
|
| 1342 |
+
▁instruc -1337
|
| 1343 |
+
▁interna -1338
|
| 1344 |
+
▁límites -1339
|
| 1345 |
+
▁materia -1340
|
| 1346 |
+
▁moderna -1341
|
| 1347 |
+
▁núcleos -1342
|
| 1348 |
+
▁objetos -1343
|
| 1349 |
+
▁persona -1344
|
| 1350 |
+
▁posible -1345
|
| 1351 |
+
▁siempre -1346
|
| 1352 |
+
tivamente -1347
|
| 1353 |
+
▁enfocado -1348
|
| 1354 |
+
▁escuchas -1349
|
| 1355 |
+
▁genética -1350
|
| 1356 |
+
▁interesa -1351
|
| 1357 |
+
▁interpre -1352
|
| 1358 |
+
▁millones -1353
|
| 1359 |
+
▁ordenada -1354
|
| 1360 |
+
▁principi -1355
|
| 1361 |
+
▁químicas -1356
|
| 1362 |
+
▁reconoci -1357
|
| 1363 |
+
▁sistemas -1358
|
| 1364 |
+
▁capacidad -1359
|
| 1365 |
+
▁coherente -1360
|
| 1366 |
+
▁continuar -1361
|
| 1367 |
+
▁favoritos -1362
|
| 1368 |
+
▁generando -1363
|
| 1369 |
+
▁moléculas -1364
|
| 1370 |
+
▁necesites -1365
|
| 1371 |
+
▁preguntar -1366
|
| 1372 |
+
▁proteínas -1367
|
| 1373 |
+
▁terrestre -1368
|
| 1374 |
+
▁velocidad -1369
|
| 1375 |
+
▁compositor -1370
|
| 1376 |
+
▁democracia -1371
|
| 1377 |
+
▁desarrolla -1372
|
| 1378 |
+
▁diferentes -1373
|
| 1379 |
+
▁ecosistema -1374
|
| 1380 |
+
▁aprendizaje -1375
|
| 1381 |
+
▁integrantes -1376
|
| 1382 |
+
▁popularidad -1377
|
| 1383 |
+
▁principales -1378
|
| 1384 |
+
▁relatividad -1379
|
| 1385 |
+
▁transformer -1380
|
| 1386 |
+
▁electricidad -1381
|
| 1387 |
+
▁correctamente -1382
|
| 1388 |
+
▁especialmente -1383
|
| 1389 |
+
▁instrucciones -1384
|
| 1390 |
+
có -1385
|
| 1391 |
+
ed -1386
|
| 1392 |
+
fi -1387
|
| 1393 |
+
lí -1388
|
| 1394 |
+
ov -1389
|
| 1395 |
+
tó -1390
|
| 1396 |
+
va -1391
|
| 1397 |
+
xi -1392
|
| 1398 |
+
xí -1393
|
| 1399 |
+
ág -1394
|
| 1400 |
+
íc -1395
|
| 1401 |
+
▁+ -1396
|
| 1402 |
+
▁K -1397
|
| 1403 |
+
▁Q -1398
|
| 1404 |
+
Con -1399
|
| 1405 |
+
Por -1400
|
| 1406 |
+
cen -1401
|
| 1407 |
+
cla -1402
|
| 1408 |
+
con -1403
|
| 1409 |
+
cta -1404
|
| 1410 |
+
del -1405
|
| 1411 |
+
gía -1406
|
| 1412 |
+
hes -1407
|
| 1413 |
+
ice -1408
|
| 1414 |
+
igo -1409
|
| 1415 |
+
ino -1410
|
| 1416 |
+
ior -1411
|
| 1417 |
+
ita -1412
|
| 1418 |
+
iva -1413
|
| 1419 |
+
lod -1414
|
| 1420 |
+
lód -1415
|
| 1421 |
+
más -1416
|
| 1422 |
+
ora -1417
|
| 1423 |
+
oro -1418
|
| 1424 |
+
ros -1419
|
| 1425 |
+
tad -1420
|
| 1426 |
+
uto -1421
|
| 1427 |
+
vim -1422
|
| 1428 |
+
éto -1423
|
| 1429 |
+
úbl -1424
|
| 1430 |
+
▁Cu -1425
|
| 1431 |
+
▁Gu -1426
|
| 1432 |
+
▁Mo -1427
|
| 1433 |
+
▁fi -1428
|
| 1434 |
+
▁go -1429
|
| 1435 |
+
▁jo -1430
|
| 1436 |
+
▁má -1431
|
| 1437 |
+
▁of -1432
|
| 1438 |
+
▁rá -1433
|
| 1439 |
+
acto -1434
|
| 1440 |
+
amos -1435
|
| 1441 |
+
ario -1436
|
| 1442 |
+
bido -1437
|
| 1443 |
+
bita -1438
|
| 1444 |
+
bles -1439
|
| 1445 |
+
cien -1440
|
| 1446 |
+
esta -1441
|
| 1447 |
+
geno -1442
|
| 1448 |
+
gres -1443
|
| 1449 |
+
ican -1444
|
| 1450 |
+
itan -1445
|
| 1451 |
+
luye -1446
|
| 1452 |
+
mina -1447
|
| 1453 |
+
onas -1448
|
| 1454 |
+
pend -1449
|
| 1455 |
+
plas -1450
|
| 1456 |
+
remo -1451
|
| 1457 |
+
rens -1452
|
| 1458 |
+
tual -1453
|
| 1459 |
+
éctr -1454
|
| 1460 |
+
▁ADN -1455
|
| 1461 |
+
▁ATP -1456
|
| 1462 |
+
▁Par -1457
|
| 1463 |
+
▁Qui -1458
|
| 1464 |
+
▁Sol -1459
|
| 1465 |
+
▁Una -1460
|
| 1466 |
+
▁atr -1461
|
| 1467 |
+
▁bio -1462
|
| 1468 |
+
▁bás -1463
|
| 1469 |
+
▁cad -1464
|
| 1470 |
+
▁cas -1465
|
| 1471 |
+
▁col -1466
|
| 1472 |
+
▁cul -1467
|
| 1473 |
+
▁dur -1468
|
| 1474 |
+
▁esc -1469
|
| 1475 |
+
▁flu -1470
|
| 1476 |
+
▁gén -1471
|
| 1477 |
+
▁her -1472
|
| 1478 |
+
▁mag -1473
|
| 1479 |
+
▁mem -1474
|
| 1480 |
+
▁noc -1475
|
| 1481 |
+
▁oxí -1476
|
| 1482 |
+
▁sab -1477
|
| 1483 |
+
▁val -1478
|
| 1484 |
+
▁var -1479
|
| 1485 |
+
▁vis -1480
|
| 1486 |
+
arios -1481
|
| 1487 |
+
ciona -1482
|
| 1488 |
+
gunda -1483
|
| 1489 |
+
ibles -1484
|
| 1490 |
+
isten -1485
|
| 1491 |
+
junto -1486
|
| 1492 |
+
larar -1487
|
| 1493 |
+
lares -1488
|
| 1494 |
+
quite -1489
|
| 1495 |
+
recer -1490
|
| 1496 |
+
tivas -1491
|
| 1497 |
+
vedad -1492
|
| 1498 |
+
ícame -1493
|
| 1499 |
+
▁Cada -1494
|
| 1500 |
+
▁ante -1495
|
| 1501 |
+
▁cuad -1496
|
| 1502 |
+
▁duda -1497
|
| 1503 |
+
▁días -1498
|
| 1504 |
+
▁educ -1499
|
| 1505 |
+
▁ejec -1500
|
| 1506 |
+
▁luna -1501
|
| 1507 |
+
▁méto -1502
|
| 1508 |
+
▁piña -1503
|
| 1509 |
+
▁polí -1504
|
| 1510 |
+
▁soci -1505
|
| 1511 |
+
▁solo -1506
|
| 1512 |
+
▁tipo -1507
|
| 1513 |
+
▁trab -1508
|
| 1514 |
+
difica -1509
|
| 1515 |
+
edades -1510
|
| 1516 |
+
encias -1511
|
| 1517 |
+
lodías -1512
|
| 1518 |
+
tienen -1513
|
| 1519 |
+
áticas -1514
|
| 1520 |
+
▁absor -1515
|
| 1521 |
+
▁avanz -1516
|
| 1522 |
+
▁banda -1517
|
| 1523 |
+
▁busca -1518
|
| 1524 |
+
▁calor -1519
|
| 1525 |
+
▁canta -1520
|
| 1526 |
+
▁canti -1521
|
| 1527 |
+
▁carga -1522
|
| 1528 |
+
▁comen -1523
|
| 1529 |
+
▁divid -1524
|
| 1530 |
+
▁están -1525
|
| 1531 |
+
▁herra -1526
|
| 1532 |
+
▁igual -1527
|
| 1533 |
+
▁infec -1528
|
| 1534 |
+
▁joven -1529
|
| 1535 |
+
▁melód -1530
|
| 1536 |
+
▁miles -1531
|
| 1537 |
+
▁movim -1532
|
| 1538 |
+
▁nivel -1533
|
| 1539 |
+
▁redes -1534
|
| 1540 |
+
▁refra -1535
|
| 1541 |
+
▁repro -1536
|
| 1542 |
+
▁respi -1537
|
| 1543 |
+
▁separ -1538
|
| 1544 |
+
▁super -1539
|
| 1545 |
+
eratura -1540
|
| 1546 |
+
ológico -1541
|
| 1547 |
+
trospec -1542
|
| 1548 |
+
ísticas -1543
|
| 1549 |
+
▁Buenas -1544
|
| 1550 |
+
▁Cuando -1545
|
| 1551 |
+
▁Guerra -1546
|
| 1552 |
+
▁aunque -1547
|
| 1553 |
+
▁bandas -1548
|
| 1554 |
+
▁basada -1549
|
| 1555 |
+
▁biodiv -1550
|
| 1556 |
+
▁buenas -1551
|
| 1557 |
+
▁centro -1552
|
| 1558 |
+
▁debido -1553
|
| 1559 |
+
▁hablar -1554
|
| 1560 |
+
▁muchos -1555
|
| 1561 |
+
▁noches -1556
|
| 1562 |
+
▁orient -1557
|
| 1563 |
+
▁profun -1558
|
| 1564 |
+
▁propor -1559
|
| 1565 |
+
▁realiz -1560
|
| 1566 |
+
▁tardes -1561
|
| 1567 |
+
▁tectón -1562
|
| 1568 |
+
▁tengas -1563
|
| 1569 |
+
▁varios -1564
|
| 1570 |
+
▁Estados -1565
|
| 1571 |
+
▁Francia -1566
|
| 1572 |
+
▁aclarar -1567
|
| 1573 |
+
▁arquite -1568
|
| 1574 |
+
▁celular -1569
|
| 1575 |
+
▁cerebro -1570
|
| 1576 |
+
▁directa -1571
|
| 1577 |
+
▁durante -1572
|
| 1578 |
+
▁emoción -1573
|
| 1579 |
+
▁estudia -1574
|
| 1580 |
+
▁eventos -1575
|
| 1581 |
+
▁experim -1576
|
| 1582 |
+
▁general -1577
|
| 1583 |
+
▁grandes -1578
|
| 1584 |
+
▁impacto -1579
|
| 1585 |
+
▁incluye -1580
|
| 1586 |
+
▁memoria -1581
|
| 1587 |
+
▁modelos -1582
|
| 1588 |
+
▁ofrecer -1583
|
| 1589 |
+
▁oxígeno -1584
|
| 1590 |
+
▁permite -1585
|
| 1591 |
+
▁quieras -1586
|
| 1592 |
+
▁quieres -1587
|
| 1593 |
+
▁química -1588
|
| 1594 |
+
▁terremo -1589
|
| 1595 |
+
▁transmi -1590
|
| 1596 |
+
▁trataré -1591
|
| 1597 |
+
▁utiliza -1592
|
| 1598 |
+
▁virtual -1593
|
| 1599 |
+
▁actuales -1594
|
| 1600 |
+
▁comporta -1595
|
| 1601 |
+
▁comprens -1596
|
| 1602 |
+
▁concepto -1597
|
| 1603 |
+
▁conjunto -1598
|
| 1604 |
+
▁consider -1599
|
| 1605 |
+
▁contexto -1600
|
| 1606 |
+
▁contiene -1601
|
| 1607 |
+
▁ejemplos -1602
|
| 1608 |
+
▁especies -1603
|
| 1609 |
+
▁estudiar -1604
|
| 1610 |
+
▁gravedad -1605
|
| 1611 |
+
▁libertad -1606
|
| 1612 |
+
▁llamarme -1607
|
| 1613 |
+
▁melodías -1608
|
| 1614 |
+
▁modernas -1609
|
| 1615 |
+
▁necesito -1610
|
| 1616 |
+
▁palabras -1611
|
| 1617 |
+
▁personas -1612
|
| 1618 |
+
▁problema -1613
|
| 1619 |
+
▁producir -1614
|
| 1620 |
+
▁proteína -1615
|
| 1621 |
+
▁resolver -1616
|
| 1622 |
+
▁responde -1617
|
| 1623 |
+
▁transpor -1618
|
| 1624 |
+
▁artística -1619
|
| 1625 |
+
▁complejas -1620
|
| 1626 |
+
▁elementos -1621
|
| 1627 |
+
▁estructur -1622
|
| 1628 |
+
▁herramien -1623
|
| 1629 |
+
▁introspec -1624
|
| 1630 |
+
▁presencia -1625
|
| 1631 |
+
▁radiación -1626
|
| 1632 |
+
▁científico -1627
|
| 1633 |
+
▁desarrollo -1628
|
| 1634 |
+
▁disponible -1629
|
| 1635 |
+
▁diversidad -1630
|
| 1636 |
+
▁electrones -1631
|
| 1637 |
+
▁específica -1632
|
| 1638 |
+
▁explicando -1633
|
| 1639 |
+
▁importante -1634
|
| 1640 |
+
▁principios -1635
|
| 1641 |
+
▁resultados -1636
|
| 1642 |
+
▁tectónicas -1637
|
| 1643 |
+
▁computadora -1638
|
| 1644 |
+
▁inteligente -1639
|
| 1645 |
+
▁propiedades -1640
|
| 1646 |
+
▁experiencias -1641
|
| 1647 |
+
▁respondiendo -1642
|
| 1648 |
+
▁biodiversidad -1643
|
| 1649 |
+
▁entrenamiento -1644
|
| 1650 |
+
▁características -1645
|
| 1651 |
+
). -1646
|
| 1652 |
+
RN -1647
|
| 1653 |
+
Tu -1648
|
| 1654 |
+
cn -1649
|
| 1655 |
+
eg -1650
|
| 1656 |
+
ex -1651
|
| 1657 |
+
fr -1652
|
| 1658 |
+
if -1653
|
| 1659 |
+
mu -1654
|
| 1660 |
+
ne -1655
|
| 1661 |
+
pó -1656
|
| 1662 |
+
sa -1657
|
| 1663 |
+
tá -1658
|
| 1664 |
+
um -1659
|
| 1665 |
+
uy -1660
|
| 1666 |
+
xt -1661
|
| 1667 |
+
zó -1662
|
| 1668 |
+
ír -1663
|
| 1669 |
+
all -1664
|
| 1670 |
+
ben -1665
|
| 1671 |
+
com -1666
|
| 1672 |
+
gos -1667
|
| 1673 |
+
ias -1668
|
| 1674 |
+
idr -1669
|
| 1675 |
+
idu -1670
|
| 1676 |
+
ind -1671
|
| 1677 |
+
ins -1672
|
| 1678 |
+
ito -1673
|
| 1679 |
+
ién -1674
|
| 1680 |
+
lla -1675
|
| 1681 |
+
mir -1676
|
| 1682 |
+
mun -1677
|
| 1683 |
+
nas -1678
|
| 1684 |
+
ole -1679
|
| 1685 |
+
ors -1680
|
| 1686 |
+
pop -1681
|
| 1687 |
+
rel -1682
|
| 1688 |
+
rme -1683
|
| 1689 |
+
rve -1684
|
| 1690 |
+
udo -1685
|
| 1691 |
+
zon -1686
|
| 1692 |
+
zul -1687
|
| 1693 |
+
íos -1688
|
| 1694 |
+
óti -1689
|
| 1695 |
+
▁Ap -1690
|
| 1696 |
+
▁De -1691
|
| 1697 |
+
▁Po -1692
|
| 1698 |
+
▁br -1693
|
| 1699 |
+
▁em -1694
|
| 1700 |
+
▁ev -1695
|
| 1701 |
+
▁fr -1696
|
| 1702 |
+
▁ge -1697
|
| 1703 |
+
▁mí -1698
|
| 1704 |
+
acta -1699
|
| 1705 |
+
anes -1700
|
| 1706 |
+
apor -1701
|
| 1707 |
+
arse -1702
|
| 1708 |
+
cado -1703
|
| 1709 |
+
cesa -1704
|
| 1710 |
+
cial -1705
|
| 1711 |
+
cipl -1706
|
| 1712 |
+
dame -1707
|
| 1713 |
+
ecom -1708
|
| 1714 |
+
eles -1709
|
| 1715 |
+
eliz -1710
|
| 1716 |
+
emis -1711
|
| 1717 |
+
enas -1712
|
| 1718 |
+
enóm -1713
|
| 1719 |
+
eros -1714
|
| 1720 |
+
ersa -1715
|
| 1721 |
+
iajó -1716
|
| 1722 |
+
idas -1717
|
| 1723 |
+
iles -1718
|
| 1724 |
+
iote -1719
|
| 1725 |
+
ique -1720
|
| 1726 |
+
isis -1721
|
| 1727 |
+
itág -1722
|
| 1728 |
+
jero -1723
|
| 1729 |
+
jote -1724
|
| 1730 |
+
ment -1725
|
| 1731 |
+
mple -1726
|
| 1732 |
+
omar -1727
|
| 1733 |
+
omas -1728
|
| 1734 |
+
onal -1729
|
| 1735 |
+
onar -1730
|
| 1736 |
+
oras -1731
|
| 1737 |
+
recu -1732
|
| 1738 |
+
rede -1733
|
| 1739 |
+
tado -1734
|
| 1740 |
+
tein -1735
|
| 1741 |
+
teza -1736
|
| 1742 |
+
tici -1737
|
| 1743 |
+
uego -1738
|
| 1744 |
+
umir -1739
|
| 1745 |
+
utom -1740
|
| 1746 |
+
zcla -1741
|
| 1747 |
+
ángu -1742
|
| 1748 |
+
▁ARN -1743
|
| 1749 |
+
▁Com -1744
|
| 1750 |
+
▁Con -1745
|
| 1751 |
+
▁Don -1746
|
| 1752 |
+
▁Esp -1747
|
| 1753 |
+
▁Fue -1748
|
| 1754 |
+
▁Fui -1749
|
| 1755 |
+
▁Fun -1750
|
| 1756 |
+
▁Inc -1751
|
| 1757 |
+
▁Mis -1752
|
| 1758 |
+
▁Que -1753
|
| 1759 |
+
▁Rep -1754
|
| 1760 |
+
▁Res -1755
|
| 1761 |
+
▁Sus -1756
|
| 1762 |
+
▁ale -1757
|
| 1763 |
+
▁amb -1758
|
| 1764 |
+
▁civ -1759
|
| 1765 |
+
▁cos -1760
|
| 1766 |
+
▁cur -1761
|
| 1767 |
+
▁día -1762
|
| 1768 |
+
▁idi -1763
|
| 1769 |
+
▁lle -1764
|
| 1770 |
+
▁mec -1765
|
| 1771 |
+
▁mic -1766
|
| 1772 |
+
▁mue -1767
|
| 1773 |
+
▁mús -1768
|
| 1774 |
+
▁neu -1769
|
| 1775 |
+
▁orb -1770
|
| 1776 |
+
▁reg -1771
|
| 1777 |
+
▁ren -1772
|
| 1778 |
+
▁úti -1773
|
| 1779 |
+
ables -1774
|
| 1780 |
+
antes -1775
|
| 1781 |
+
arias -1776
|
| 1782 |
+
blece -1777
|
| 1783 |
+
cnolo -1778
|
| 1784 |
+
ctura -1779
|
| 1785 |
+
entar -1780
|
| 1786 |
+
ersos -1781
|
| 1787 |
+
ferme -1782
|
| 1788 |
+
ficos -1783
|
| 1789 |
+
gresó -1784
|
| 1790 |
+
gulan -1785
|
| 1791 |
+
gundo -1786
|
| 1792 |
+
olvió -1787
|
| 1793 |
+
ombra -1788
|
| 1794 |
+
omend -1789
|
| 1795 |
+
organ -1790
|
| 1796 |
+
tamin -1791
|
| 1797 |
+
tones -1792
|
| 1798 |
+
ución -1793
|
| 1799 |
+
uelen -1794
|
| 1800 |
+
ática -1795
|
| 1801 |
+
▁Eins -1796
|
| 1802 |
+
▁Expl -1797
|
| 1803 |
+
▁Solo -1798
|
| 1804 |
+
▁Text -1799
|
| 1805 |
+
▁alma -1800
|
| 1806 |
+
▁atóm -1801
|
| 1807 |
+
▁bajo -1802
|
| 1808 |
+
▁cien -1803
|
| 1809 |
+
▁cito -1804
|
| 1810 |
+
▁corr -1805
|
| 1811 |
+
▁crom -1806
|
| 1812 |
+
▁gené -1807
|
| 1813 |
+
▁hipo -1808
|
| 1814 |
+
▁hipó -1809
|
| 1815 |
+
▁inde -1810
|
| 1816 |
+
▁leer -1811
|
| 1817 |
+
▁máqu -1812
|
| 1818 |
+
▁neur -1813
|
| 1819 |
+
▁norm -1814
|
| 1820 |
+
▁prim -1815
|
| 1821 |
+
▁públ -1816
|
| 1822 |
+
▁rama -1817
|
| 1823 |
+
▁reac -1818
|
| 1824 |
+
▁ríos -1819
|
| 1825 |
+
▁sean -1820
|
| 1826 |
+
▁sigo -1821
|
| 1827 |
+
▁sigu -1822
|
| 1828 |
+
▁zona -1823
|
| 1829 |
+
dición -1824
|
| 1830 |
+
ientar -1825
|
| 1831 |
+
mental -1826
|
| 1832 |
+
metros -1827
|
| 1833 |
+
rellas -1828
|
| 1834 |
+
tentar -1829
|
| 1835 |
+
ticuer -1830
|
| 1836 |
+
tiempo -1831
|
| 1837 |
+
uarios -1832
|
| 1838 |
+
▁Model -1833
|
| 1839 |
+
▁Pitág -1834
|
| 1840 |
+
▁Recom -1835
|
| 1841 |
+
▁Viajó -1836
|
| 1842 |
+
▁acumu -1837
|
| 1843 |
+
▁ahora -1838
|
| 1844 |
+
▁apoyo -1839
|
| 1845 |
+
▁autom -1840
|
| 1846 |
+
▁ayuda -1841
|
| 1847 |
+
▁calma -1842
|
| 1848 |
+
▁cloro -1843
|
| 1849 |
+
▁conec -1844
|
| 1850 |
+
▁creci -1845
|
| 1851 |
+
▁cuadr -1846
|
| 1852 |
+
▁deter -1847
|
| 1853 |
+
▁ellos -1848
|
| 1854 |
+
▁emerg -1849
|
| 1855 |
+
▁escap -1850
|
| 1856 |
+
▁estas -1851
|
| 1857 |
+
▁feliz -1852
|
| 1858 |
+
▁fenóm -1853
|
| 1859 |
+
▁flujo -1854
|
| 1860 |
+
▁frecu -1855
|
| 1861 |
+
▁genes -1856
|
| 1862 |
+
▁hemis -1857
|
| 1863 |
+
▁indiv -1858
|
| 1864 |
+
▁influ -1859
|
| 1865 |
+
▁inmun -1860
|
| 1866 |
+
▁largo -1861
|
| 1867 |
+
▁luego -1862
|
| 1868 |
+
▁manto -1863
|
| 1869 |
+
▁perío -1864
|
| 1870 |
+
▁punto -1865
|
| 1871 |
+
▁razon -1866
|
| 1872 |
+
▁renov -1867
|
| 1873 |
+
▁salud -1868
|
| 1874 |
+
▁senci -1869
|
| 1875 |
+
▁suele -1870
|
| 1876 |
+
▁sírve -1871
|
| 1877 |
+
▁tabla -1872
|
| 1878 |
+
▁tanto -1873
|
| 1879 |
+
▁tarea -1874
|
| 1880 |
+
▁tomar -1875
|
| 1881 |
+
▁zonas -1876
|
| 1882 |
+
ciplina -1877
|
| 1883 |
+
ducción -1878
|
| 1884 |
+
ensidad -1879
|
| 1885 |
+
ización -1880
|
| 1886 |
+
iéndame -1881
|
| 1887 |
+
quieren -1882
|
| 1888 |
+
rededor -1883
|
| 1889 |
+
▁Nombra -1884
|
| 1890 |
+
▁Porque -1885
|
| 1891 |
+
▁Volvió -1886
|
| 1892 |
+
▁ayudas -1887
|
| 1893 |
+
▁bacter -1888
|
| 1894 |
+
▁cambia -1889
|
| 1895 |
+
▁cargas -1890
|
| 1896 |
+
▁contra -1891
|
| 1897 |
+
▁cumple -1892
|
| 1898 |
+
▁define -1893
|
| 1899 |
+
▁divide -1894
|
| 1900 |
+
▁eléctr -1895
|
| 1901 |
+
▁escrib -1896
|
| 1902 |
+
▁exacta -1897
|
| 1903 |
+
▁formas -1898
|
| 1904 |
+
▁fuerza -1899
|
| 1905 |
+
▁gusten -1900
|
| 1906 |
+
▁inclin -1901
|
| 1907 |
+
▁inició -1902
|
| 1908 |
+
▁intera -1903
|
| 1909 |
+
▁libera -1904
|
| 1910 |
+
▁marino -1905
|
| 1911 |
+
▁mezcla -1906
|
| 1912 |
+
▁método -1907
|
| 1913 |
+
▁propia -1908
|
| 1914 |
+
▁propio -1909
|
| 1915 |
+
▁saludo -1910
|
| 1916 |
+
▁sigues -1911
|
| 1917 |
+
▁sonido -1912
|
| 1918 |
+
▁suelen -1913
|
| 1919 |
+
▁volcán -1914
|
| 1920 |
+
▁átomos -1915
|
| 1921 |
+
▁útiles -1916
|
| 1922 |
+
cnología -1917
|
| 1923 |
+
ficiente -1918
|
| 1924 |
+
ibilidad -1919
|
| 1925 |
+
▁Quijote -1920
|
| 1926 |
+
▁Regresó -1921
|
| 1927 |
+
▁Segunda -1922
|
| 1928 |
+
▁admiras -1923
|
| 1929 |
+
▁algunos -1924
|
| 1930 |
+
▁basadas -1925
|
| 1931 |
+
▁ciencia -1926
|
| 1932 |
+
▁colores -1927
|
| 1933 |
+
▁convier -1928
|
| 1934 |
+
▁corteza -1929
|
| 1935 |
+
▁creando -1930
|
| 1936 |
+
▁decirme -1931
|
| 1937 |
+
▁depende -1932
|
| 1938 |
+
▁destaca -1933
|
| 1939 |
+
▁emotiva -1934
|
| 1940 |
+
▁enferme -1935
|
| 1941 |
+
▁entrada -1936
|
| 1942 |
+
▁fuentes -1937
|
| 1943 |
+
▁fáciles -1938
|
| 1944 |
+
▁hacerme -1939
|
| 1945 |
+
▁manzana -1940
|
| 1946 |
+
▁mensaje -1941
|
| 1947 |
+
▁mundial -1942
|
| 1948 |
+
▁partici -1943
|
| 1949 |
+
▁profund -1944
|
| 1950 |
+
▁público -1945
|
| 1951 |
+
▁regulan -1946
|
| 1952 |
+
▁resumir -1947
|
| 1953 |
+
▁talento -1948
|
| 1954 |
+
▁teorema -1949
|
| 1955 |
+
▁trabajo -1950
|
| 1956 |
+
▁visible -1951
|
| 1957 |
+
pendiente -1952
|
| 1958 |
+
ticamente -1953
|
| 1959 |
+
ticuerpos -1954
|
| 1960 |
+
▁Einstein -1955
|
| 1961 |
+
▁causando -1956
|
| 1962 |
+
▁completo -1957
|
| 1963 |
+
▁contamin -1958
|
| 1964 |
+
▁controla -1959
|
| 1965 |
+
▁diversos -1960
|
| 1966 |
+
▁escuchar -1961
|
| 1967 |
+
▁formando -1962
|
| 1968 |
+
▁funciono -1963
|
| 1969 |
+
▁hemisfer -1964
|
| 1970 |
+
▁intentar -1965
|
| 1971 |
+
▁interior -1966
|
| 1972 |
+
▁longitud -1967
|
| 1973 |
+
▁mantener -1968
|
| 1974 |
+
▁máquinas -1969
|
| 1975 |
+
▁nucleóti -1970
|
| 1976 |
+
▁objetivo -1971
|
| 1977 |
+
▁orientar -1972
|
| 1978 |
+
▁planetas -1973
|
| 1979 |
+
▁procesar -1974
|
| 1980 |
+
▁procesos -1975
|
| 1981 |
+
▁producen -1976
|
| 1982 |
+
▁recomend -1977
|
| 1983 |
+
▁refracta -1978
|
| 1984 |
+
▁sencilla -1979
|
| 1985 |
+
▁sociales -1980
|
| 1986 |
+
▁volcanes -1981
|
| 1987 |
+
▁Pitágoras -1982
|
| 1988 |
+
▁Processor -1983
|
| 1989 |
+
▁actividad -1984
|
| 1990 |
+
▁algoritmo -1985
|
| 1991 |
+
▁alrededor -1986
|
| 1992 |
+
▁bacterias -1987
|
| 1993 |
+
▁biológica -1988
|
| 1994 |
+
▁compuesto -1989
|
| 1995 |
+
▁determina -1990
|
| 1996 |
+
▁distintas -1991
|
| 1997 |
+
▁establece -1992
|
| 1998 |
+
▁estrellas -1993
|
| 1999 |
+
▁evolución -1994
|
| 2000 |
+
▁expresión -1995
|
| 2001 |
+
▁funciones -1996
|
| 2002 |
+
▁hipótesis -1997
|
| 2003 |
+
▁preferido -1998
|
| 2004 |
+
▁requieren -1999
|
| 2005 |
+
▁resultado -2000
|
| 2006 |
+
▁siguiente -2001
|
| 2007 |
+
▁transmite -2002
|
| 2008 |
+
▁universal -2003
|
| 2009 |
+
plicaciones -2004
|
| 2010 |
+
▁combustión -2005
|
| 2011 |
+
▁disciplina -2006
|
| 2012 |
+
▁específico -2007
|
| 2013 |
+
▁estructura -2008
|
| 2014 |
+
▁generación -2009
|
| 2015 |
+
▁identifico -2010
|
| 2016 |
+
▁movimiento -2011
|
| 2017 |
+
▁tecnología -2012
|
| 2018 |
+
▁transmitir -2013
|
| 2019 |
+
▁actualmente -2014
|
| 2020 |
+
▁anticuerpos -2015
|
| 2021 |
+
▁caracteriza -2016
|
| 2022 |
+
▁considerado -2017
|
| 2023 |
+
▁crecimiento -2018
|
| 2024 |
+
▁emocionales -2019
|
| 2025 |
+
▁exactamente -2020
|
| 2026 |
+
▁explicación -2021
|
| 2027 |
+
▁herramienta -2022
|
| 2028 |
+
▁importantes -2023
|
| 2029 |
+
▁influencias -2024
|
| 2030 |
+
▁informativo -2025
|
| 2031 |
+
▁matemáticas -2026
|
| 2032 |
+
▁respiración -2027
|
| 2033 |
+
▁sentimental -2028
|
| 2034 |
+
▁Recomiéndame -2029
|
| 2035 |
+
▁arquitectura -2030
|
| 2036 |
+
▁enfermedades -2031
|
| 2037 |
+
▁inmunológico -2032
|
| 2038 |
+
▁musicalmente -2033
|
| 2039 |
+
▁contaminación -2034
|
| 2040 |
+
▁fundamentales -2035
|
| 2041 |
+
▁independiente -2036
|
| 2042 |
+
▁internacional -2037
|
| 2043 |
+
▁procesamiento -2038
|
| 2044 |
+
▁comportamiento -2039
|
| 2045 |
+
▁constantemente -2040
|
| 2046 |
+
▁interpretación -2041
|
| 2047 |
+
), -2042
|
| 2048 |
+
AD -2043
|
| 2049 |
+
ID -2044
|
| 2050 |
+
PH -2045
|
| 2051 |
+
ay -2046
|
| 2052 |
+
az -2047
|
| 2053 |
+
añ -2048
|
| 2054 |
+
gl -2049
|
| 2055 |
+
ho -2050
|
| 2056 |
+
ie -2051
|
| 2057 |
+
ip -2052
|
| 2058 |
+
mb -2053
|
| 2059 |
+
no -2054
|
| 2060 |
+
ps -2055
|
| 2061 |
+
so -2056
|
| 2062 |
+
tí -2057
|
| 2063 |
+
up -2058
|
| 2064 |
+
uv -2059
|
| 2065 |
+
yó -2060
|
| 2066 |
+
ác -2061
|
| 2067 |
+
él -2062
|
| 2068 |
+
íp -2063
|
| 2069 |
+
▁= -2064
|
| 2070 |
+
▁k -2065
|
| 2071 |
+
▁é -2066
|
| 2072 |
+
alo -2067
|
| 2073 |
+
avi -2068
|
| 2074 |
+
bes -2069
|
| 2075 |
+
bot -2070
|
| 2076 |
+
can -2071
|
| 2077 |
+
car -2072
|
| 2078 |
+
cel -2073
|
| 2079 |
+
cha -2074
|
| 2080 |
+
cif -2075
|
| 2081 |
+
ctú -2076
|
| 2082 |
+
cól -2077
|
| 2083 |
+
dmi -2078
|
| 2084 |
+
eno -2079
|
| 2085 |
+
esa -2080
|
| 2086 |
+
ete -2081
|
| 2087 |
+
eto -2082
|
| 2088 |
+
fra -2083
|
| 2089 |
+
gro -2084
|
| 2090 |
+
gul -2085
|
| 2091 |
+
hab -2086
|
| 2092 |
+
ign -2087
|
| 2093 |
+
inf -2088
|
| 2094 |
+
itu -2089
|
| 2095 |
+
izó -2090
|
| 2096 |
+
jes -2091
|
| 2097 |
+
jus -2092
|
| 2098 |
+
lic -2093
|
| 2099 |
+
neo -2094
|
| 2100 |
+
ord -2095
|
| 2101 |
+
oso -2096
|
| 2102 |
+
pas -2097
|
| 2103 |
+
pid -2098
|
| 2104 |
+
ral -2099
|
| 2105 |
+
rib -2100
|
| 2106 |
+
rim -2101
|
| 2107 |
+
señ -2102
|
| 2108 |
+
ton -2103
|
| 2109 |
+
tur -2104
|
| 2110 |
+
ume -2105
|
| 2111 |
+
urb -2106
|
| 2112 |
+
usa -2107
|
| 2113 |
+
ués -2108
|
| 2114 |
+
vio -2109
|
| 2115 |
+
écn -2110
|
| 2116 |
+
ños -2111
|
| 2117 |
+
▁CO -2112
|
| 2118 |
+
▁Le -2113
|
| 2119 |
+
▁er -2114
|
| 2120 |
+
▁qu -2115
|
| 2121 |
+
▁va -2116
|
| 2122 |
+
▁ya -2117
|
| 2123 |
+
▁ór -2118
|
| 2124 |
+
▁ún -2119
|
| 2125 |
+
ADPH -2120
|
| 2126 |
+
Eres -2121
|
| 2127 |
+
aces -2122
|
| 2128 |
+
acil -2123
|
| 2129 |
+
acío -2124
|
| 2130 |
+
adís -2125
|
| 2131 |
+
amin -2126
|
| 2132 |
+
apan -2127
|
| 2133 |
+
aran -2128
|
| 2134 |
+
atóg -2129
|
| 2135 |
+
aves -2130
|
| 2136 |
+
berg -2131
|
| 2137 |
+
bier -2132
|
| 2138 |
+
canz -2133
|
| 2139 |
+
ceán -2134
|
| 2140 |
+
coír -2135
|
| 2141 |
+
dida -2136
|
| 2142 |
+
dria -2137
|
| 2143 |
+
ebol -2138
|
| 2144 |
+
edad -2139
|
| 2145 |
+
edit -2140
|
| 2146 |
+
emos -2141
|
| 2147 |
+
ener -2142
|
| 2148 |
+
enso -2143
|
| 2149 |
+
eran -2144
|
| 2150 |
+
erno -2145
|
| 2151 |
+
eron -2146
|
| 2152 |
+
esti -2147
|
| 2153 |
+
fase -2148
|
| 2154 |
+
fila -2149
|
| 2155 |
+
guro -2150
|
| 2156 |
+
iaja -2151
|
| 2157 |
+
icen -2152
|
| 2158 |
+
ides -2153
|
| 2159 |
+
iene -2154
|
| 2160 |
+
inan -2155
|
| 2161 |
+
ioso -2156
|
| 2162 |
+
irve -2157
|
| 2163 |
+
ismo -2158
|
| 2164 |
+
itar -2159
|
| 2165 |
+
izas -2160
|
| 2166 |
+
mino -2161
|
| 2167 |
+
miti -2162
|
| 2168 |
+
ocín -2163
|
| 2169 |
+
ompa -2164
|
| 2170 |
+
pido -2165
|
| 2171 |
+
pira -2166
|
| 2172 |
+
plem -2167
|
| 2173 |
+
quin -2168
|
| 2174 |
+
resp -2169
|
| 2175 |
+
tigo -2170
|
| 2176 |
+
ulsa -2171
|
| 2177 |
+
vita -2172
|
| 2178 |
+
vuel -2173
|
| 2179 |
+
ándo -2174
|
| 2180 |
+
▁Des -2175
|
| 2181 |
+
▁Eje -2176
|
| 2182 |
+
▁Mar -2177
|
| 2183 |
+
▁Sig -2178
|
| 2184 |
+
▁Tam -2179
|
| 2185 |
+
▁Ter -2180
|
| 2186 |
+
▁Uso -2181
|
| 2187 |
+
▁ach -2182
|
| 2188 |
+
▁ahí -2183
|
| 2189 |
+
▁así -2184
|
| 2190 |
+
▁cab -2185
|
| 2191 |
+
▁cru -2186
|
| 2192 |
+
▁fra -2187
|
| 2193 |
+
▁fus -2188
|
| 2194 |
+
▁fís -2189
|
| 2195 |
+
▁fós -2190
|
| 2196 |
+
▁han -2191
|
| 2197 |
+
▁ind -2192
|
| 2198 |
+
▁lan -2193
|
| 2199 |
+
▁lig -2194
|
| 2200 |
+
▁lit -2195
|
| 2201 |
+
▁loc -2196
|
| 2202 |
+
▁mal -2197
|
| 2203 |
+
▁met -2198
|
| 2204 |
+
▁min -2199
|
| 2205 |
+
▁mon -2200
|
| 2206 |
+
▁muy -2201
|
| 2207 |
+
▁nav -2202
|
| 2208 |
+
▁pan -2203
|
| 2209 |
+
▁paz -2204
|
| 2210 |
+
▁pes -2205
|
| 2211 |
+
▁pin -2206
|
| 2212 |
+
▁soñ -2207
|
| 2213 |
+
▁sub -2208
|
| 2214 |
+
▁típ -2209
|
| 2215 |
+
alada -2210
|
| 2216 |
+
arece -2211
|
| 2217 |
+
atbot -2212
|
| 2218 |
+
cifes -2213
|
| 2219 |
+
conóm -2214
|
| 2220 |
+
ctúan -2215
|
| 2221 |
+
cucho -2216
|
| 2222 |
+
culin -2217
|
| 2223 |
+
decir -2218
|
| 2224 |
+
dirme -2219
|
| 2225 |
+
dmiro -2220
|
| 2226 |
+
endes -2221
|
| 2227 |
+
entan -2222
|
| 2228 |
+
entas -2223
|
| 2229 |
+
ertir -2224
|
| 2230 |
+
erías -2225
|
| 2231 |
+
ficie -2226
|
| 2232 |
+
fruto -2227
|
| 2233 |
+
gunas -2228
|
| 2234 |
+
habla -2229
|
| 2235 |
+
iable -2230
|
| 2236 |
+
iados -2231
|
| 2237 |
+
iajar -2232
|
| 2238 |
+
iduos -2233
|
| 2239 |
+
ienta -2234
|
| 2240 |
+
ienza -2235
|
| 2241 |
+
inión -2236
|
| 2242 |
+
istas -2237
|
| 2243 |
+
istón -2238
|
| 2244 |
+
lados -2239
|
| 2245 |
+
licto -2240
|
| 2246 |
+
luyen -2241
|
| 2247 |
+
nidad -2242
|
| 2248 |
+
nitud -2243
|
| 2249 |
+
ocina -2244
|
| 2250 |
+
oleta -2245
|
| 2251 |
+
ongos -2246
|
| 2252 |
+
orias -2247
|
| 2253 |
+
puedo -2248
|
| 2254 |
+
quién -2249
|
| 2255 |
+
resca -2250
|
| 2256 |
+
ridad -2251
|
| 2257 |
+
tador -2252
|
| 2258 |
+
tarte -2253
|
| 2259 |
+
taría -2254
|
| 2260 |
+
ticos -2255
|
| 2261 |
+
tocon -2256
|
| 2262 |
+
tosis -2257
|
| 2263 |
+
truyó -2258
|
| 2264 |
+
uarda -2259
|
| 2265 |
+
uropa -2260
|
| 2266 |
+
velas -2261
|
| 2267 |
+
xiona -2262
|
| 2268 |
+
ónica -2263
|
| 2269 |
+
órica -2264
|
| 2270 |
+
▁Actu -2265
|
| 2271 |
+
▁Como -2266
|
| 2272 |
+
▁Está -2267
|
| 2273 |
+
▁Olas -2268
|
| 2274 |
+
▁Para -2269
|
| 2275 |
+
▁Prim -2270
|
| 2276 |
+
▁Todo -2271
|
| 2277 |
+
▁afec -2272
|
| 2278 |
+
▁ajus -2273
|
| 2279 |
+
▁ampl -2274
|
| 2280 |
+
▁anim -2275
|
| 2281 |
+
▁anál -2276
|
| 2282 |
+
▁arre -2277
|
| 2283 |
+
▁atra -2278
|
| 2284 |
+
▁azul -2279
|
| 2285 |
+
▁bala -2280
|
| 2286 |
+
▁bomb -2281
|
| 2287 |
+
▁casa -2282
|
| 2288 |
+
▁cero -2283
|
| 2289 |
+
▁cond -2284
|
| 2290 |
+
▁cómo -2285
|
| 2291 |
+
▁debo -2286
|
| 2292 |
+
▁desl -2287
|
| 2293 |
+
▁dors -2288
|
| 2294 |
+
▁duro -2289
|
| 2295 |
+
▁equi -2290
|
| 2296 |
+
▁erup -2291
|
| 2297 |
+
▁escr -2292
|
| 2298 |
+
▁eter -2293
|
| 2299 |
+
▁fase -2294
|
| 2300 |
+
▁fijo -2295
|
| 2301 |
+
▁hidr -2296
|
| 2302 |
+
▁idea -2297
|
| 2303 |
+
▁incl -2298
|
| 2304 |
+
▁linf -2299
|
| 2305 |
+
▁logr -2300
|
| 2306 |
+
▁mide -2301
|
| 2307 |
+
▁muta -2302
|
| 2308 |
+
▁nada -2303
|
| 2309 |
+
▁nube -2304
|
| 2310 |
+
▁nutr -2305
|
| 2311 |
+
▁orig -2306
|
| 2312 |
+
▁otro -2307
|
| 2313 |
+
▁país -2308
|
| 2314 |
+
▁poco -2309
|
| 2315 |
+
▁prov -2310
|
| 2316 |
+
▁prác -2311
|
| 2317 |
+
▁real -2312
|
| 2318 |
+
▁rojo -2313
|
| 2319 |
+
▁temp -2314
|
| 2320 |
+
▁toma -2315
|
| 2321 |
+
▁turb -2316
|
| 2322 |
+
▁técn -2317
|
| 2323 |
+
▁usas -2318
|
| 2324 |
+
▁vuel -2319
|
| 2325 |
+
▁útil -2320
|
| 2326 |
+
aviesa -2321
|
| 2327 |
+
ciende -2322
|
| 2328 |
+
ciendo -2323
|
| 2329 |
+
cionan -2324
|
| 2330 |
+
compon -2325
|
| 2331 |
+
coíris -2326
|
| 2332 |
+
ctarse -2327
|
| 2333 |
+
ctores -2328
|
| 2334 |
+
ebolla -2329
|
| 2335 |
+
ección -2330
|
| 2336 |
+
icarme -2331
|
| 2337 |
+
ificar -2332
|
| 2338 |
+
inario -2333
|
| 2339 |
+
iódica -2334
|
| 2340 |
+
lación -2335
|
| 2341 |
+
minosa -2336
|
| 2342 |
+
omenzó -2337
|
| 2343 |
+
ompaña -2338
|
| 2344 |
+
onales -2339
|
| 2345 |
+
onardo -2340
|
| 2346 |
+
plasma -2341
|
| 2347 |
+
plicar -2342
|
| 2348 |
+
tenusa -2343
|
| 2349 |
+
tiendo -2344
|
| 2350 |
+
tillas -2345
|
| 2351 |
+
tícula -2346
|
| 2352 |
+
ustria -2347
|
| 2353 |
+
ácidos -2348
|
| 2354 |
+
ángulo -2349
|
| 2355 |
+
▁Desta -2350
|
| 2356 |
+
▁Entre -2351
|
| 2357 |
+
▁Estas -2352
|
| 2358 |
+
▁Estos -2353
|
| 2359 |
+
▁Gener -2354
|
| 2360 |
+
▁NADPH -2355
|
| 2361 |
+
▁París -2356
|
| 2362 |
+
▁Queda -2357
|
| 2363 |
+
▁Vinci -2358
|
| 2364 |
+
▁adecu -2359
|
| 2365 |
+
▁aguas -2360
|
| 2366 |
+
▁amino -2361
|
| 2367 |
+
▁brind -2362
|
| 2368 |
+
▁buena -2363
|
| 2369 |
+
▁carne -2364
|
| 2370 |
+
▁causa -2365
|
| 2371 |
+
▁centr -2366
|
| 2372 |
+
▁cielo -2367
|
| 2373 |
+
▁civil -2368
|
| 2374 |
+
▁cocín -2369
|
| 2375 |
+
▁coral -2370
|
| 2376 |
+
▁corta -2371
|
| 2377 |
+
▁crean -2372
|
| 2378 |
+
▁demás -2373
|
| 2379 |
+
▁detal -2374
|
| 2380 |
+
▁educa -2375
|
| 2381 |
+
▁emite -2376
|
| 2382 |
+
▁enseñ -2377
|
| 2383 |
+
▁españ -2378
|
| 2384 |
+
▁estos -2379
|
| 2385 |
+
▁facil -2380
|
| 2386 |
+
▁famos -2381
|
| 2387 |
+
▁fases -2382
|
| 2388 |
+
▁gotas -2383
|
| 2389 |
+
▁gusta -2384
|
| 2390 |
+
▁haces -2385
|
| 2391 |
+
▁ideal -2386
|
| 2392 |
+
▁infin -2387
|
| 2393 |
+
▁invas -2388
|
| 2394 |
+
▁lleva -2389
|
| 2395 |
+
▁magma -2390
|
| 2396 |
+
▁mecan -2391
|
| 2397 |
+
▁micro -2392
|
| 2398 |
+
▁mismo -2393
|
| 2399 |
+
▁motor -2394
|
| 2400 |
+
▁múlti -2395
|
| 2401 |
+
▁negro -2396
|
| 2402 |
+
▁neuro -2397
|
| 2403 |
+
▁nubes -2398
|
| 2404 |
+
▁oceán -2399
|
| 2405 |
+
▁otras -2400
|
| 2406 |
+
▁pasos -2401
|
| 2407 |
+
▁patóg -2402
|
| 2408 |
+
▁peque -2403
|
| 2409 |
+
▁poder -2404
|
| 2410 |
+
▁queda -2405
|
| 2411 |
+
▁quien -2406
|
| 2412 |
+
▁recur -2407
|
| 2413 |
+
▁rápid -2408
|
| 2414 |
+
▁saber -2409
|
| 2415 |
+
▁sabes -2410
|
| 2416 |
+
▁sirve -2411
|
| 2417 |
+
▁suelo -2412
|
| 2418 |
+
▁vacío -2413
|
| 2419 |
+
▁valor -2414
|
| 2420 |
+
▁vapor -2415
|
| 2421 |
+
▁varía -2416
|
| 2422 |
+
▁verde -2417
|
| 2423 |
+
▁versa -2418
|
| 2424 |
+
▁vivas -2419
|
| 2425 |
+
▁vivos -2420
|
| 2426 |
+
▁átomo -2421
|
| 2427 |
+
celente -2422
|
| 2428 |
+
entando -2423
|
| 2429 |
+
esional -2424
|
| 2430 |
+
manente -2425
|
| 2431 |
+
onentes -2426
|
| 2432 |
+
tilidad -2427
|
| 2433 |
+
▁Admiro -2428
|
| 2434 |
+
▁Buenos -2429
|
| 2435 |
+
▁Consta -2430
|
| 2436 |
+
▁Espero -2431
|
| 2437 |
+
▁Europa -2432
|
| 2438 |
+
▁Marina -2433
|
| 2439 |
+
▁Repres -2434
|
| 2440 |
+
▁Unidos -2435
|
| 2441 |
+
▁además -2436
|
| 2442 |
+
▁admiro -2437
|
| 2443 |
+
▁alberg -2438
|
| 2444 |
+
▁alegra -2439
|
| 2445 |
+
▁apoyar -2440
|
| 2446 |
+
▁blanca -2441
|
| 2447 |
+
▁buenos -2442
|
| 2448 |
+
▁buscar -2443
|
| 2449 |
+
▁buscas -2444
|
| 2450 |
+
▁caball -2445
|
| 2451 |
+
▁cadena -2446
|
| 2452 |
+
▁causar -2447
|
| 2453 |
+
▁compar -2448
|
| 2454 |
+
▁conten -2449
|
| 2455 |
+
▁cromos -2450
|
| 2456 |
+
▁cuenta -2451
|
| 2457 |
+
▁cultur -2452
|
| 2458 |
+
▁dedica -2453
|
| 2459 |
+
▁económ -2454
|
| 2460 |
+
▁enfoca -2455
|
| 2461 |
+
▁enfren -2456
|
| 2462 |
+
▁estado -2457
|
| 2463 |
+
▁explor -2458
|
| 2464 |
+
▁explos -2459
|
| 2465 |
+
▁fisión -2460
|
| 2466 |
+
▁fresca -2461
|
| 2467 |
+
▁fuente -2462
|
| 2468 |
+
▁fuerte -2463
|
| 2469 |
+
▁fuiste -2464
|
| 2470 |
+
▁fusión -2465
|
| 2471 |
+
▁ganado -2466
|
| 2472 |
+
▁género -2467
|
| 2473 |
+
▁hongos -2468
|
| 2474 |
+
▁idioma -2469
|
| 2475 |
+
▁inform -2470
|
| 2476 |
+
▁materi -2471
|
| 2477 |
+
▁medici -2472
|
| 2478 |
+
▁mueven -2473
|
| 2479 |
+
▁músico -2474
|
| 2480 |
+
▁normas -2475
|
| 2481 |
+
▁nuevas -2476
|
| 2482 |
+
▁núcleo -2477
|
| 2483 |
+
▁océano -2478
|
| 2484 |
+
▁partir -2479
|
| 2485 |
+
▁pistón -2480
|
| 2486 |
+
▁porque -2481
|
| 2487 |
+
▁precis -2482
|
| 2488 |
+
▁previo -2483
|
| 2489 |
+
▁recibe -2484
|
| 2490 |
+
▁reflex -2485
|
| 2491 |
+
▁resist -2486
|
| 2492 |
+
▁respec -2487
|
| 2493 |
+
▁revolu -2488
|
| 2494 |
+
▁rápido -2489
|
| 2495 |
+
▁salada -2490
|
| 2496 |
+
▁seguro -2491
|
| 2497 |
+
▁sistem -2492
|
| 2498 |
+
▁suaves -2493
|
| 2499 |
+
▁supera -2494
|
| 2500 |
+
▁tempor -2495
|
| 2501 |
+
▁torneo -2496
|
| 2502 |
+
▁tratar -2497
|
| 2503 |
+
▁típica -2498
|
| 2504 |
+
▁unidad -2499
|
| 2505 |
+
▁varias -2500
|
| 2506 |
+
▁viajar -2501
|
| 2507 |
+
▁viento -2502
|
| 2508 |
+
alizadas -2503
|
| 2509 |
+
ergentes -2504
|
| 2510 |
+
hablamos -2505
|
| 2511 |
+
longitud -2506
|
| 2512 |
+
responde -2507
|
| 2513 |
+
▁Algunos -2508
|
| 2514 |
+
▁Comenzó -2509
|
| 2515 |
+
▁Depende -2510
|
| 2516 |
+
▁Escucho -2511
|
| 2517 |
+
▁Existen -2512
|
| 2518 |
+
▁Incluye -2513
|
| 2519 |
+
▁También -2514
|
| 2520 |
+
▁achiote -2515
|
| 2521 |
+
▁adaptar -2516
|
| 2522 |
+
▁agujero -2517
|
| 2523 |
+
▁almacen -2518
|
| 2524 |
+
▁aparece -2519
|
| 2525 |
+
▁atrapan -2520
|
| 2526 |
+
▁baladas -2521
|
| 2527 |
+
▁básicos -2522
|
| 2528 |
+
▁cadenas -2523
|
| 2529 |
+
▁calenta -2524
|
| 2530 |
+
▁capaces -2525
|
| 2531 |
+
▁causada -2526
|
| 2532 |
+
▁causado -2527
|
| 2533 |
+
▁cebolla -2528
|
| 2534 |
+
▁cenizas -2529
|
| 2535 |
+
▁chatbot -2530
|
| 2536 |
+
▁contigo -2531
|
| 2537 |
+
▁derecho -2532
|
| 2538 |
+
▁dividen -2533
|
| 2539 |
+
▁edición -2534
|
| 2540 |
+
▁ejecuta -2535
|
| 2541 |
+
▁entrena -2536
|
| 2542 |
+
▁escapar -2537
|
| 2543 |
+
▁escucho -2538
|
| 2544 |
+
▁estadís -2539
|
| 2545 |
+
▁estilos -2540
|
| 2546 |
+
▁expresa -2541
|
| 2547 |
+
▁formado -2542
|
| 2548 |
+
▁fósiles -2543
|
| 2549 |
+
▁gracias -2544
|
| 2550 |
+
▁gravita -2545
|
| 2551 |
+
▁heredit -2546
|
| 2552 |
+
▁inicial -2547
|
| 2553 |
+
▁inspira -2548
|
| 2554 |
+
▁intensa -2549
|
| 2555 |
+
▁masivas -2550
|
| 2556 |
+
▁mejores -2551
|
| 2557 |
+
▁metales -2552
|
| 2558 |
+
▁mitocon -2553
|
| 2559 |
+
▁mitosis -2554
|
| 2560 |
+
▁niveles -2555
|
| 2561 |
+
▁novelas -2556
|
| 2562 |
+
▁oficial -2557
|
| 2563 |
+
▁opinión -2558
|
| 2564 |
+
▁pedirme -2559
|
| 2565 |
+
▁período -2560
|
| 2566 |
+
▁pesados -2561
|
| 2567 |
+
▁planeta -2562
|
| 2568 |
+
▁presión -2563
|
| 2569 |
+
▁referir -2564
|
| 2570 |
+
▁reprodu -2565
|
| 2571 |
+
▁respeto -2566
|
| 2572 |
+
▁respons -2567
|
| 2573 |
+
▁segundo -2568
|
| 2574 |
+
▁separan -2569
|
| 2575 |
+
▁sírvela -2570
|
| 2576 |
+
▁violeta -2571
|
| 2577 |
+
entiendes -2572
|
| 2578 |
+
▁Aprender -2573
|
| 2579 |
+
▁Francesa -2574
|
| 2580 |
+
▁Funciona -2575
|
| 2581 |
+
▁Leonardo -2576
|
| 2582 |
+
▁absorben -2577
|
| 2583 |
+
▁acompaña -2578
|
| 2584 |
+
▁alimento -2579
|
| 2585 |
+
▁animales -2580
|
| 2586 |
+
▁análisis -2581
|
| 2587 |
+
▁arcoíris -2582
|
| 2588 |
+
▁ayudarme -2583
|
| 2589 |
+
▁calienta -2584
|
| 2590 |
+
▁cantidad -2585
|
| 2591 |
+
▁cerebral -2586
|
| 2592 |
+
▁claridad -2587
|
| 2593 |
+
▁cocínala -2588
|
| 2594 |
+
▁combinan -2589
|
| 2595 |
+
▁comentar -2590
|
| 2596 |
+
▁comenzar -2591
|
| 2597 |
+
▁complejo -2592
|
| 2598 |
+
▁comunica -2593
|
| 2599 |
+
▁conectar -2594
|
| 2600 |
+
▁continúa -2595
|
| 2601 |
+
▁cuadrado -2596
|
| 2602 |
+
▁describe -2597
|
| 2603 |
+
▁división -2598
|
| 2604 |
+
▁dorsales -2599
|
| 2605 |
+
▁elemento -2600
|
| 2606 |
+
▁emotivas -2601
|
| 2607 |
+
▁escribes -2602
|
| 2608 |
+
▁espectro -2603
|
| 2609 |
+
▁explique -2604
|
| 2610 |
+
▁gustaría -2605
|
| 2611 |
+
▁igualdad -2606
|
| 2612 |
+
▁llamadas -2607
|
| 2613 |
+
▁llamarte -2608
|
| 2614 |
+
▁luminosa -2609
|
| 2615 |
+
▁magnitud -2610
|
| 2616 |
+
▁masculin -2611
|
| 2617 |
+
▁melódico -2612
|
| 2618 |
+
▁modifica -2613
|
| 2619 |
+
▁molécula -2614
|
| 2620 |
+
▁personal -2615
|
| 2621 |
+
▁política -2616
|
| 2622 |
+
▁predecir -2617
|
| 2623 |
+
▁presente -2618
|
| 2624 |
+
▁presento -2619
|
| 2625 |
+
▁producto -2620
|
| 2626 |
+
▁profundo -2621
|
| 2627 |
+
▁protegen -2622
|
| 2628 |
+
▁protones -2623
|
| 2629 |
+
▁químicos -2624
|
| 2630 |
+
▁realizan -2625
|
| 2631 |
+
▁realizar -2626
|
| 2632 |
+
▁reciente -2627
|
| 2633 |
+
▁respondo -2628
|
| 2634 |
+
▁sensible -2629
|
| 2635 |
+
▁solistas -2630
|
| 2636 |
+
▁supuesto -2631
|
| 2637 |
+
▁turbinas -2632
|
| 2638 |
+
▁universo -2633
|
| 2639 |
+
▁usuarios -2634
|
| 2640 |
+
▁utilizan -2635
|
| 2641 |
+
▁variados -2636
|
| 2642 |
+
componente -2637
|
| 2643 |
+
organismos -2638
|
| 2644 |
+
▁Construyó -2639
|
| 2645 |
+
▁Explícame -2640
|
| 2646 |
+
▁adaptando -2641
|
| 2647 |
+
▁arrecifes -2642
|
| 2648 |
+
▁atraviesa -2643
|
| 2649 |
+
▁avanzados -2644
|
| 2650 |
+
▁calientes -2645
|
| 2651 |
+
▁capitales -2646
|
| 2652 |
+
▁clorofila -2647
|
| 2653 |
+
▁comunican -2648
|
| 2654 |
+
▁confiable -2649
|
| 2655 |
+
▁conflicto -2650
|
| 2656 |
+
▁considero -2651
|
| 2657 |
+
▁convertir -2652
|
| 2658 |
+
▁convierte -2653
|
| 2659 |
+
▁corriente -2654
|
| 2660 |
+
▁distingue -2655
|
| 2661 |
+
▁distintos -2656
|
| 2662 |
+
▁educación -2657
|
| 2663 |
+
▁ejecución -2658
|
| 2664 |
+
▁emergente -2659
|
| 2665 |
+
▁fenómenos -2660
|
| 2666 |
+
▁generador -2661
|
| 2667 |
+
▁historias -2662
|
| 2668 |
+
▁industria -2663
|
| 2669 |
+
▁intentaré -2664
|
| 2670 |
+
▁mantienen -2665
|
| 2671 |
+
▁melódicas -2666
|
| 2672 |
+
▁múltiples -2667
|
| 2673 |
+
▁neutrones -2668
|
| 2674 |
+
▁oceánicas -2669
|
| 2675 |
+
▁organizan -2670
|
| 2676 |
+
▁participa -2671
|
| 2677 |
+
▁patógenos -2672
|
| 2678 |
+
▁periódica -2673
|
| 2679 |
+
▁populares -2674
|
| 2680 |
+
▁preguntan -2675
|
| 2681 |
+
▁programas -2676
|
| 2682 |
+
▁renovable -2677
|
| 2683 |
+
▁terremoto -2678
|
| 2684 |
+
▁tortillas -2679
|
| 2685 |
+
▁verificar -2680
|
| 2686 |
+
▁Revolución -2681
|
| 2687 |
+
▁analizando -2682
|
| 2688 |
+
▁automático -2683
|
| 2689 |
+
▁cantidades -2684
|
| 2690 |
+
▁científica -2685
|
| 2691 |
+
▁citoplasma -2686
|
| 2692 |
+
▁eléctricas -2687
|
| 2693 |
+
▁estaciones -2688
|
| 2694 |
+
▁explicarme -2689
|
| 2695 |
+
▁explicarte -2690
|
| 2696 |
+
▁hipotenusa -2691
|
| 2697 |
+
▁intensidad -2692
|
| 2698 |
+
▁interpreta -2693
|
| 2699 |
+
▁literatura -2694
|
| 2700 |
+
▁neuronales -2695
|
| 2701 |
+
▁nutrientes -2696
|
| 2702 |
+
▁observador -2697
|
| 2703 |
+
▁orientarte -2698
|
| 2704 |
+
▁permanente -2699
|
| 2705 |
+
▁preferidos -2700
|
| 2706 |
+
▁procesador -2701
|
| 2707 |
+
▁reacciones -2702
|
| 2708 |
+
▁reconocido -2703
|
| 2709 |
+
▁reflexiona -2704
|
| 2710 |
+
▁relaciones -2705
|
| 2711 |
+
▁representa -2706
|
| 2712 |
+
▁revolucion -2707
|
| 2713 |
+
▁subducción -2708
|
| 2714 |
+
▁suficiente -2709
|
| 2715 |
+
▁superficie -2710
|
| 2716 |
+
▁terremotos -2711
|
| 2717 |
+
▁transporte -2712
|
| 2718 |
+
▁Actualmente -2713
|
| 2719 |
+
▁aminoácidos -2714
|
| 2720 |
+
▁componentes -2715
|
| 2721 |
+
▁comprensión -2716
|
| 2722 |
+
▁específicos -2717
|
| 2723 |
+
▁hemisferios -2718
|
| 2724 |
+
▁identificas -2719
|
| 2725 |
+
▁inclinación -2720
|
| 2726 |
+
▁infecciones -2721
|
| 2727 |
+
▁informática -2722
|
| 2728 |
+
▁interesante -2723
|
| 2729 |
+
▁matemáticos -2724
|
| 2730 |
+
▁mitocondria -2725
|
| 2731 |
+
▁normalmente -2726
|
| 2732 |
+
▁nucleótidos -2727
|
| 2733 |
+
▁observación -2728
|
| 2734 |
+
▁preguntarme -2729
|
| 2735 |
+
▁profesional -2730
|
| 2736 |
+
▁profundidad -2731
|
| 2737 |
+
▁resistencia -2732
|
| 2738 |
+
▁rápidamente -2733
|
| 2739 |
+
▁temperatura -2734
|
| 2740 |
+
▁típicamente -2735
|
| 2741 |
+
▁aplicaciones -2736
|
| 2742 |
+
▁combustibles -2737
|
| 2743 |
+
▁computadoras -2738
|
| 2744 |
+
▁directamente -2739
|
| 2745 |
+
▁estructurada -2740
|
| 2746 |
+
▁experimentos -2741
|
| 2747 |
+
▁hereditarias -2742
|
| 2748 |
+
▁proporcional -2743
|
| 2749 |
+
▁razonamiento -2744
|
| 2750 |
+
▁responderlas -2745
|
| 2751 |
+
▁sensibilidad -2746
|
| 2752 |
+
▁versatilidad -2747
|
| 2753 |
+
▁calentamiento -2748
|
| 2754 |
+
▁estructuradas -2749
|
| 2755 |
+
▁gravitacional -2750
|
| 2756 |
+
▁especializadas -2751
|
| 2757 |
+
▁funcionamiento -2752
|
| 2758 |
+
▁introspectivas -2753
|
| 2759 |
+
▁reconocimiento -2754
|
| 2760 |
+
▁microorganismos -2755
|
| 2761 |
+
▁suficientemente -2756
|
| 2762 |
+
AM -2757
|
| 2763 |
+
De -2758
|
| 2764 |
+
PU -2759
|
| 2765 |
+
ak -2760
|
| 2766 |
+
ba -2761
|
| 2767 |
+
br -2762
|
| 2768 |
+
bs -2763
|
| 2769 |
+
cl -2764
|
| 2770 |
+
cí -2765
|
| 2771 |
+
ev -2766
|
| 2772 |
+
ew -2767
|
| 2773 |
+
ez -2768
|
| 2774 |
+
fo -2769
|
| 2775 |
+
ft -2770
|
| 2776 |
+
fé -2771
|
| 2777 |
+
gm -2772
|
| 2778 |
+
gn -2773
|
| 2779 |
+
gó -2774
|
| 2780 |
+
ha -2775
|
| 2781 |
+
hm -2776
|
| 2782 |
+
ox -2777
|
| 2783 |
+
pe -2778
|
| 2784 |
+
pr -2779
|
| 2785 |
+
rr -2780
|
| 2786 |
+
té -2781
|
| 2787 |
+
uo -2782
|
| 2788 |
+
yl -2783
|
| 2789 |
+
zo -2784
|
| 2790 |
+
², -2785
|
| 2791 |
+
éy -2786
|
| 2792 |
+
ód -2787
|
| 2793 |
+
ól -2788
|
| 2794 |
+
ús -2789
|
| 2795 |
+
₁₂ -2790
|
| 2796 |
+
₂, -2791
|
| 2797 |
+
₂. -2792
|
| 2798 |
+
▁. -2793
|
| 2799 |
+
▁Á -2794
|
| 2800 |
+
▁Ú -2795
|
| 2801 |
+
▁→ -2796
|
| 2802 |
+
Ale -2797
|
| 2803 |
+
Pue -2798
|
| 2804 |
+
acr -2799
|
| 2805 |
+
CO -2800
|
| 2806 |
+
fí -2801
|
| 2807 |
+
uj -2802
|
| 2808 |
+
ací -2803
|
| 2809 |
+
aje -2804
|
| 2810 |
+
aki -2805
|
| 2811 |
+
ale -2806
|
| 2812 |
+
alv -2807
|
| 2813 |
+
ana -2808
|
| 2814 |
+
aps -2809
|
| 2815 |
+
are -2810
|
| 2816 |
+
arg -2811
|
| 2817 |
+
arw -2812
|
| 2818 |
+
ate -2813
|
| 2819 |
+
ban -2814
|
| 2820 |
+
ber -2815
|
| 2821 |
+
bió -2816
|
| 2822 |
+
blo -2817
|
| 2823 |
+
ced -2818
|
| 2824 |
+
cin -2819
|
| 2825 |
+
cor -2820
|
| 2826 |
+
cre -2821
|
| 2827 |
+
cto -2822
|
| 2828 |
+
cul -2823
|
| 2829 |
+
cóp -2824
|
| 2830 |
+
dif -2825
|
| 2831 |
+
dió -2826
|
| 2832 |
+
dob -2827
|
| 2833 |
+
don -2828
|
| 2834 |
+
ean -2829
|
| 2835 |
+
egó -2830
|
| 2836 |
+
emb -2831
|
| 2837 |
+
etr -2832
|
| 2838 |
+
fig -2833
|
| 2839 |
+
ftw -2834
|
| 2840 |
+
fun -2835
|
| 2841 |
+
gia -2836
|
| 2842 |
+
gio -2837
|
| 2843 |
+
gor -2838
|
| 2844 |
+
gán -2839
|
| 2845 |
+
iac -2840
|
| 2846 |
+
ibl -2841
|
| 2847 |
+
ibr -2842
|
| 2848 |
+
ibu -2843
|
| 2849 |
+
ich -2844
|
| 2850 |
+
igm -2845
|
| 2851 |
+
igu -2846
|
| 2852 |
+
imo -2847
|
| 2853 |
+
imp -2848
|
| 2854 |
+
ion -2849
|
| 2855 |
+
ipe -2850
|
| 2856 |
+
ire -2851
|
| 2857 |
+
isó -2852
|
| 2858 |
+
itó -2853
|
| 2859 |
+
izo -2854
|
| 2860 |
+
jar -2855
|
| 2861 |
+
len -2856
|
| 2862 |
+
lób -2857
|
| 2863 |
+
mar -2858
|
| 2864 |
+
mis -2859
|
| 2865 |
+
mor -2860
|
| 2866 |
+
nif -2861
|
| 2867 |
+
omó -2862
|
| 2868 |
+
osh -2863
|
| 2869 |
+
osp -2864
|
| 2870 |
+
osq -2865
|
| 2871 |
+
ouv -2866
|
| 2872 |
+
pam -2867
|
| 2873 |
+
ped -2868
|
| 2874 |
+
pic -2869
|
| 2875 |
+
plo -2870
|
| 2876 |
+
rac -2871
|
| 2877 |
+
ray -2872
|
| 2878 |
+
reí -2873
|
| 2879 |
+
rir -2874
|
| 2880 |
+
roc -2875
|
| 2881 |
+
roe -2876
|
| 2882 |
+
ror -2877
|
| 2883 |
+
sia -2878
|
| 2884 |
+
sol -2879
|
| 2885 |
+
sos -2880
|
| 2886 |
+
sta -2881
|
| 2887 |
+
tañ -2882
|
| 2888 |
+
tex -2883
|
| 2889 |
+
tov -2884
|
| 2890 |
+
tri -2885
|
| 2891 |
+
uan -2886
|
| 2892 |
+
uce -2887
|
| 2893 |
+
uir -2888
|
| 2894 |
+
ulo -2889
|
| 2895 |
+
uma -2890
|
| 2896 |
+
ura -2891
|
| 2897 |
+
uró -2892
|
| 2898 |
+
utu -2893
|
| 2899 |
+
vas -2894
|
| 2900 |
+
vat -2895
|
| 2901 |
+
vec -2896
|
| 2902 |
+
ves -2897
|
| 2903 |
+
via -2898
|
| 2904 |
+
viv -2899
|
| 2905 |
+
aba -2900
|
| 2906 |
+
ago -2901
|
| 2907 |
+
cab -2902
|
| 2908 |
+
fel -2903
|
| 2909 |
+
fía -2904
|
| 2910 |
+
iló -2905
|
| 2911 |
+
ovi -2906
|
| 2912 |
+
ría -2907
|
| 2913 |
+
tér -2908
|
| 2914 |
+
yec -2909
|
| 2915 |
+
zas -2910
|
| 2916 |
+
zim -2911
|
| 2917 |
+
áti -2912
|
| 2918 |
+
ául -2913
|
| 2919 |
+
ían -2914
|
| 2920 |
+
▁Da -2915
|
| 2921 |
+
▁IR -2916
|
| 2922 |
+
▁It -2917
|
| 2923 |
+
▁Ma -2918
|
| 2924 |
+
▁Sa -2919
|
| 2925 |
+
▁ag -2920
|
| 2926 |
+
▁cá -2921
|
| 2927 |
+
▁ec -2922
|
| 2928 |
+
▁fó -2923
|
| 2929 |
+
▁ho -2924
|
| 2930 |
+
▁há -2925
|
| 2931 |
+
▁hé -2926
|
| 2932 |
+
▁ic -2927
|
| 2933 |
+
▁il -2928
|
| 2934 |
+
▁km -2929
|
| 2935 |
+
▁li -2930
|
| 2936 |
+
▁na -2931
|
| 2937 |
+
▁oh -2932
|
| 2938 |
+
▁os -2933
|
| 2939 |
+
▁pu -2934
|
| 2940 |
+
▁sú -2935
|
| 2941 |
+
▁án -2936
|
| 2942 |
+
abía -2937
|
| 2943 |
+
acia -2938
|
| 2944 |
+
agas -2939
|
| 2945 |
+
altó -2940
|
| 2946 |
+
ance -2941
|
| 2947 |
+
anio -2942
|
| 2948 |
+
apel -2943
|
| 2949 |
+
arde -2944
|
| 2950 |
+
aria -2945
|
| 2951 |
+
aril -2946
|
| 2952 |
+
arra -2947
|
| 2953 |
+
asar -2948
|
| 2954 |
+
asto -2949
|
| 2955 |
+
atal -2950
|
| 2956 |
+
atir -2951
|
| 2957 |
+
atom -2952
|
| 2958 |
+
atro -2953
|
| 2959 |
+
bian -2954
|
| 2960 |
+
brev -2955
|
| 2961 |
+
brió -2956
|
| 2962 |
+
cede -2957
|
| 2963 |
+
cera -2958
|
| 2964 |
+
cero -2959
|
| 2965 |
+
ceso -2960
|
| 2966 |
+
cida -2961
|
| 2967 |
+
cios -2962
|
| 2968 |
+
cipi -2963
|
| 2969 |
+
coba -2964
|
| 2970 |
+
cupa -2965
|
| 2971 |
+
cura -2966
|
| 2972 |
+
cómo -2967
|
| 2973 |
+
delo -2968
|
| 2974 |
+
duce -2969
|
| 2975 |
+
dura -2970
|
| 2976 |
+
eben -2971
|
| 2977 |
+
eces -2972
|
| 2978 |
+
ecla -2973
|
| 2979 |
+
edra -2974
|
| 2980 |
+
enar -2975
|
| 2981 |
+
endo -2976
|
| 2982 |
+
enom -2977
|
| 2983 |
+
ense -2978
|
| 2984 |
+
ensi -2979
|
| 2985 |
+
entu -2980
|
| 2986 |
+
erce -2981
|
| 2987 |
+
erde -2982
|
| 2988 |
+
erec -2983
|
| 2989 |
+
erio -2984
|
| 2990 |
+
erpo -2985
|
| 2991 |
+
esar -2986
|
| 2992 |
+
esis -2987
|
| 2993 |
+
estr -2988
|
| 2994 |
+
gric -2989
|
| 2995 |
+
guas -2990
|
| 2996 |
+
guen -2991
|
| 2997 |
+
guna -2992
|
| 2998 |
+
iado -2993
|
| 2999 |
+
ibuy -2994
|
| 3000 |
+
ical -2995
|
| 3001 |
+
idim -2996
|
| 3002 |
+
idro -2997
|
| 3003 |
+
iego -2998
|
| 3004 |
+
iero -2999
|
| 3005 |
+
irm -3000
|
| 3006 |
+
iró -3001
|
| 3007 |
+
opi -3002
|
| 3008 |
+
sir -3003
|
| 3009 |
+
uri -3004
|
| 3010 |
+
▁ur -3005
|
| 3011 |
+
Dime -3006
|
| 3012 |
+
entí -3007
|
| 3013 |
+
icev -3008
|
| 3014 |
+
imit -3009
|
| 3015 |
+
ipto -3010
|
| 3016 |
+
ists -3011
|
| 3017 |
+
iten -3012
|
| 3018 |
+
ivén -3013
|
| 3019 |
+
izon -3014
|
| 3020 |
+
lada -3015
|
| 3021 |
+
lama -3016
|
| 3022 |
+
legó -3017
|
| 3023 |
+
libr -3018
|
| 3024 |
+
loso -3019
|
| 3025 |
+
lotó -3020
|
| 3026 |
+
luyó -3021
|
| 3027 |
+
mana -3022
|
| 3028 |
+
mata -3023
|
| 3029 |
+
mica -3024
|
| 3030 |
+
minó -3025
|
| 3031 |
+
mios -3026
|
| 3032 |
+
molo -3027
|
| 3033 |
+
mosf -3028
|
| 3034 |
+
mper -3029
|
| 3035 |
+
mplo -3030
|
| 3036 |
+
nera -3031
|
| 3037 |
+
ocan -3032
|
| 3038 |
+
ocat -3033
|
| 3039 |
+
ocer -3034
|
| 3040 |
+
oció -3035
|
| 3041 |
+
olon -3036
|
| 3042 |
+
olta -3037
|
| 3043 |
+
onap -3038
|
| 3044 |
+
onco -3039
|
| 3045 |
+
ondo -3040
|
| 3046 |
+
orde -3041
|
| 3047 |
+
orre -3042
|
| 3048 |
+
orte -3043
|
| 3049 |
+
ostr -3044
|
| 3050 |
+
oxir -3045
|
| 3051 |
+
ozco -3046
|
| 3052 |
+
para -3047
|
| 3053 |
+
peón -3048
|
| 3054 |
+
pias -3049
|
| 3055 |
+
pite -3050
|
| 3056 |
+
poca -3051
|
| 3057 |
+
pone -3052
|
| 3058 |
+
rase -3053
|
| 3059 |
+
raza -3054
|
| 3060 |
+
rear -3055
|
| 3061 |
+
reas -3056
|
| 3062 |
+
rebs -3057
|
| 3063 |
+
riba -3058
|
| 3064 |
+
tada -3059
|
| 3065 |
+
taje -3060
|
| 3066 |
+
talo -3061
|
| 3067 |
+
tano -3062
|
| 3068 |
+
tera -3063
|
| 3069 |
+
terr -3064
|
| 3070 |
+
teti -3065
|
| 3071 |
+
tios -3066
|
| 3072 |
+
todo -3067
|
| 3073 |
+
trac -3068
|
| 3074 |
+
tral -3069
|
| 3075 |
+
tres -3070
|
| 3076 |
+
trib -3071
|
| 3077 |
+
trón -3072
|
| 3078 |
+
turo -3073
|
| 3079 |
+
ulos -3074
|
| 3080 |
+
ultó -3075
|
| 3081 |
+
umid -3076
|
| 3082 |
+
unca -3077
|
| 3083 |
+
unid -3078
|
| 3084 |
+
urra -3079
|
| 3085 |
+
usco -3080
|
| 3086 |
+
useo -3081
|
| 3087 |
+
usto -3082
|
| 3088 |
+
uían -3083
|
| 3089 |
+
vici -3084
|
| 3090 |
+
xias -3085
|
| 3091 |
+
xima -3086
|
| 3092 |
+
xtos -3087
|
| 3093 |
+
zado -3088
|
| 3094 |
+
ífer -3089
|
| 3095 |
+
ónde -3090
|
| 3096 |
+
óven -3091
|
| 3097 |
+
▁Ade -3092
|
| 3098 |
+
▁Bas -3093
|
| 3099 |
+
▁COV -3094
|
| 3100 |
+
▁CPU -3095
|
| 3101 |
+
▁Cor -3096
|
| 3102 |
+
▁Dis -3097
|
| 3103 |
+
▁Dmi -3098
|
| 3104 |
+
▁Eif -3099
|
| 3105 |
+
eza -3100
|
| 3106 |
+
ifi -3101
|
| 3107 |
+
ísm -3102
|
| 3108 |
+
erva -3103
|
| 3109 |
+
pora -3104
|
| 3110 |
+
ulta -3105
|
| 3111 |
+
ulti -3106
|
| 3112 |
+
éyev -3107
|
| 3113 |
+
▁Esa -3108
|
| 3114 |
+
▁Fin -3109
|
| 3115 |
+
▁Hir -3110
|
| 3116 |
+
▁Hoy -3111
|
| 3117 |
+
▁Ind -3112
|
| 3118 |
+
▁Man -3113
|
| 3119 |
+
▁Men -3114
|
| 3120 |
+
▁Mig -3115
|
| 3121 |
+
▁Muc -3116
|
| 3122 |
+
▁Nap -3117
|
| 3123 |
+
▁New -3118
|
| 3124 |
+
▁Nos -3119
|
| 3125 |
+
▁Per -3120
|
| 3126 |
+
▁Pre -3121
|
| 3127 |
+
▁Ren -3122
|
| 3128 |
+
▁SID -3123
|
| 3129 |
+
▁Sin -3124
|
| 3130 |
+
▁Son -3125
|
| 3131 |
+
▁adi -3126
|
| 3132 |
+
▁adm -3127
|
| 3133 |
+
▁ago -3128
|
| 3134 |
+
▁ana -3129
|
| 3135 |
+
▁apl -3130
|
| 3136 |
+
▁asc -3131
|
| 3137 |
+
▁aud -3132
|
| 3138 |
+
▁aún -3133
|
| 3139 |
+
▁bar -3134
|
| 3140 |
+
▁ben -3135
|
| 3141 |
+
▁bél -3136
|
| 3142 |
+
▁cae -3137
|
| 3143 |
+
▁cat -3138
|
| 3144 |
+
▁cel -3139
|
| 3145 |
+
▁cil -3140
|
| 3146 |
+
▁cir -3141
|
| 3147 |
+
▁cál -3142
|
| 3148 |
+
▁dan -3143
|
| 3149 |
+
▁dij -3144
|
| 3150 |
+
▁ecu -3145
|
| 3151 |
+
▁ele -3146
|
| 3152 |
+
▁enr -3147
|
| 3153 |
+
▁eta -3148
|
| 3154 |
+
▁fil -3149
|
| 3155 |
+
▁flo -3150
|
| 3156 |
+
▁frí -3151
|
| 3157 |
+
▁fui -3152
|
| 3158 |
+
▁ful -3153
|
| 3159 |
+
▁gig -3154
|
| 3160 |
+
▁hor -3155
|
| 3161 |
+
▁ima -3156
|
| 3162 |
+
▁imá -3157
|
| 3163 |
+
▁lee -3158
|
| 3164 |
+
▁leo -3159
|
| 3165 |
+
▁llu -3160
|
| 3166 |
+
▁men -3161
|
| 3167 |
+
▁mer -3162
|
| 3168 |
+
▁nos -3163
|
| 3169 |
+
▁num -3164
|
| 3170 |
+
▁ojo -3165
|
| 3171 |
+
▁pad -3166
|
| 3172 |
+
▁pel -3167
|
| 3173 |
+
▁pir -3168
|
| 3174 |
+
▁pot -3169
|
| 3175 |
+
▁pun -3170
|
| 3176 |
+
▁pér -3171
|
| 3177 |
+
▁ras -3172
|
| 3178 |
+
▁red -3173
|
| 3179 |
+
▁sel -3174
|
| 3180 |
+
▁señ -3175
|
| 3181 |
+
▁sil -3176
|
| 3182 |
+
▁sur -3177
|
| 3183 |
+
▁tej -3178
|
| 3184 |
+
▁tri -3179
|
| 3185 |
+
▁vib -3180
|
| 3186 |
+
▁vul -3181
|
| 3187 |
+
▁Áfr -3182
|
| 3188 |
+
▁áci -3183
|
| 3189 |
+
Puedo -3184
|
| 3190 |
+
acido -3185
|
| 3191 |
+
agocí -3186
|
| 3192 |
+
alien -3187
|
| 3193 |
+
aliza -3188
|
| 3194 |
+
alizó -3189
|
| 3195 |
+
alvin -3190
|
| 3196 |
+
anqui -3191
|
| 3197 |
+
anzas -3192
|
| 3198 |
+
arles -3193
|
| 3199 |
+
arwin -3194
|
| 3200 |
+
ayesi -3195
|
| 3201 |
+
bleci -3196
|
| 3202 |
+
bserv -3197
|
| 3203 |
+
cando -3198
|
| 3204 |
+
cción -3199
|
| 3205 |
+
eve -3200
|
| 3206 |
+
Dame -3201
|
| 3207 |
+
bida -3202
|
| 3208 |
+
cala -3203
|
| 3209 |
+
clan -3204
|
| 3210 |
+
laco -3205
|
| 3211 |
+
onso -3206
|
| 3212 |
+
posi -3207
|
| 3213 |
+
tías -3208
|
| 3214 |
+
▁Usa -3209
|
| 3215 |
+
▁cór -3210
|
| 3216 |
+
▁geo -3211
|
| 3217 |
+
▁hay -3212
|
| 3218 |
+
▁igu -3213
|
| 3219 |
+
▁lóg -3214
|
| 3220 |
+
▁rit -3215
|
| 3221 |
+
chaza -3216
|
| 3222 |
+
cible -3217
|
| 3223 |
+
ciles -3218
|
| 3224 |
+
ciono -3219
|
| 3225 |
+
cirse -3220
|
| 3226 |
+
ctuar -3221
|
| 3227 |
+
culos -3222
|
| 3228 |
+
curre -3223
|
| 3229 |
+
deado -3224
|
| 3230 |
+
dente -3225
|
| 3231 |
+
didos -3226
|
| 3232 |
+
dific -3227
|
| 3233 |
+
dones -3228
|
| 3234 |
+
doras -3229
|
| 3235 |
+
drías -3230
|
| 3236 |
+
ducen -3231
|
| 3237 |
+
ducta -3232
|
| 3238 |
+
ecuen -3233
|
| 3239 |
+
empos -3234
|
| 3240 |
+
ensan -3235
|
| 3241 |
+
entor -3236
|
| 3242 |
+
erada -3237
|
| 3243 |
+
erras -3238
|
| 3244 |
+
ertos -3239
|
| 3245 |
+
estig -3240
|
| 3246 |
+
exual -3241
|
| 3247 |
+
ferir -3242
|
| 3248 |
+
ganos -3243
|
| 3249 |
+
genes -3244
|
| 3250 |
+
glios -3245
|
| 3251 |
+
gular -3246
|
| 3252 |
+
ición -3247
|
| 3253 |
+
idada -3248
|
| 3254 |
+
idero -3249
|
| 3255 |
+
idual -3250
|
| 3256 |
+
illan -3251
|
| 3257 |
+
illas -3252
|
| 3258 |
+
inada -3253
|
| 3259 |
+
inado -3254
|
| 3260 |
+
incip -3255
|
| 3261 |
+
indro -3256
|
| 3262 |
+
inici -3257
|
| 3263 |
+
ismas -3258
|
| 3264 |
+
istes -3259
|
| 3265 |
+
istro -3260
|
| 3266 |
+
itali -3261
|
| 3267 |
+
ivada -3262
|
| 3268 |
+
izada -3263
|
| 3269 |
+
jidad -3264
|
| 3270 |
+
laces -3265
|
| 3271 |
+
lando -3266
|
| 3272 |
+
lante -3267
|
| 3273 |
+
lotar -3268
|
| 3274 |
+
mados -3269
|
| 3275 |
+
manas -3270
|
| 3276 |
+
mania -3271
|
| 3277 |
+
mbres -3272
|
| 3278 |
+
minar -3273
|
| 3279 |
+
ocado -3274
|
| 3280 |
+
olaps -3275
|
| 3281 |
+
oleón -3276
|
| 3282 |
+
oloca -3277
|
| 3283 |
+
omagn -3278
|
| 3284 |
+
omasa -3279
|
| 3285 |
+
omolé -3280
|
| 3286 |
+
orama -3281
|
| 3287 |
+
orman -3282
|
| 3288 |
+
pondo -3283
|
| 3289 |
+
queda -3284
|
| 3290 |
+
rarro -3285
|
| 3291 |
+
teada -3286
|
| 3292 |
+
tenos -3287
|
| 3293 |
+
tento -3288
|
| 3294 |
+
terar -3289
|
| 3295 |
+
tetos -3290
|
| 3296 |
+
tidad -3291
|
| 3297 |
+
tilla -3292
|
| 3298 |
+
tinúa -3293
|
| 3299 |
+
topos -3294
|
| 3300 |
+
trans -3295
|
| 3301 |
+
troso -3296
|
| 3302 |
+
uarlo -3297
|
| 3303 |
+
ueron -3298
|
| 3304 |
+
vando -3299
|
| 3305 |
+
bert -3300
|
| 3306 |
+
blic -3301
|
| 3307 |
+
cena -3302
|
| 3308 |
+
dral -3303
|
| 3309 |
+
olum -3304
|
| 3310 |
+
▁Gra -3305
|
| 3311 |
+
▁RAM -3306
|
| 3312 |
+
▁Vis -3307
|
| 3313 |
+
▁bió -3308
|
| 3314 |
+
▁jue -3309
|
| 3315 |
+
adual -3310
|
| 3316 |
+
canos -3311
|
| 3317 |
+
dores -3312
|
| 3318 |
+
ernos -3313
|
| 3319 |
+
estra -3314
|
| 3320 |
+
iltra -3315
|
| 3321 |
+
itiva -3316
|
| 3322 |
+
ltima -3317
|
| 3323 |
+
orial -3318
|
| 3324 |
+
zimas -3319
|
| 3325 |
+
ágica -3320
|
| 3326 |
+
ánico -3321
|
| 3327 |
+
ásica -3322
|
| 3328 |
+
élice -3323
|
| 3329 |
+
éndon -3324
|
| 3330 |
+
érico -3325
|
| 3331 |
+
ético -3326
|
| 3332 |
+
ógeno -3327
|
| 3333 |
+
ólica -3328
|
| 3334 |
+
▁Agua -3329
|
| 3335 |
+
▁Bajo -3330
|
| 3336 |
+
▁Cena -3331
|
| 3337 |
+
▁Cerv -3332
|
| 3338 |
+
▁Entr -3333
|
| 3339 |
+
▁Esto -3334
|
| 3340 |
+
▁Luna -3335
|
| 3341 |
+
▁Mona -3336
|
| 3342 |
+
▁Nada -3337
|
| 3343 |
+
▁Pací -3338
|
| 3344 |
+
▁Quij -3339
|
| 3345 |
+
▁Saav -3340
|
| 3346 |
+
▁Sigo -3341
|
| 3347 |
+
▁Sovi -3342
|
| 3348 |
+
▁Tomó -3343
|
| 3349 |
+
▁aber -3344
|
| 3350 |
+
▁abió -3345
|
| 3351 |
+
▁abol -3346
|
| 3352 |
+
▁aden -3347
|
| 3353 |
+
▁aire -3348
|
| 3354 |
+
▁alin -3349
|
| 3355 |
+
▁amor -3350
|
| 3356 |
+
▁anti -3351
|
| 3357 |
+
▁aten -3352
|
| 3358 |
+
▁auto -3353
|
| 3359 |
+
▁ayer -3354
|
| 3360 |
+
▁azar -3355
|
| 3361 |
+
▁añil -3356
|
| 3362 |
+
▁ball -3357
|
| 3363 |
+
▁basa -3358
|
| 3364 |
+
▁base -3359
|
| 3365 |
+
▁bent -3360
|
| 3366 |
+
▁bibl -3361
|
| 3367 |
+
▁caen -3362
|
| 3368 |
+
▁capa -3363
|
| 3369 |
+
▁conm -3364
|
| 3370 |
+
▁cuál -3365
|
| 3371 |
+
▁cáps -3366
|
| 3372 |
+
▁dato -3367
|
| 3373 |
+
▁debe -3368
|
| 3374 |
+
▁deco -3369
|
| 3375 |
+
▁desp -3370
|
| 3376 |
+
▁dete -3371
|
| 3377 |
+
▁dibu -3372
|
| 3378 |
+
▁difí -3373
|
| 3379 |
+
▁dijo -3374
|
| 3380 |
+
▁dist -3375
|
| 3381 |
+
▁dual -3376
|
| 3382 |
+
▁efec -3377
|
| 3383 |
+
▁eleg -3378
|
| 3384 |
+
▁ella -3379
|
| 3385 |
+
▁empu -3380
|
| 3386 |
+
▁estr -3381
|
| 3387 |
+
▁evid -3382
|
| 3388 |
+
▁fran -3383
|
| 3389 |
+
▁fric -3384
|
| 3390 |
+
▁geom -3385
|
| 3391 |
+
▁glób -3386
|
| 3392 |
+
▁gota -3387
|
| 3393 |
+
▁guan -3388
|
| 3394 |
+
▁idén -3389
|
| 3395 |
+
▁inac -3390
|
| 3396 |
+
▁invi -3391
|
| 3397 |
+
▁libr -3392
|
| 3398 |
+
▁masa -3393
|
| 3399 |
+
▁miró -3394
|
| 3400 |
+
▁mist -3395
|
| 3401 |
+
▁muer -3396
|
| 3402 |
+
▁nave -3397
|
| 3403 |
+
▁nega -3398
|
| 3404 |
+
▁negr -3399
|
| 3405 |
+
ADN -3400
|
| 3406 |
+
aja -3401
|
| 3407 |
+
grá -3402
|
| 3408 |
+
neos -3403
|
| 3409 |
+
quía -3404
|
| 3410 |
+
▁dór -3405
|
| 3411 |
+
canzó -3406
|
| 3412 |
+
encio -3407
|
| 3413 |
+
explo -3408
|
| 3414 |
+
gajos -3409
|
| 3415 |
+
idrio -3410
|
| 3416 |
+
ieron -3411
|
| 3417 |
+
josos -3412
|
| 3418 |
+
mbico -3413
|
| 3419 |
+
quina -3414
|
| 3420 |
+
uerme -3415
|
| 3421 |
+
uería -3416
|
| 3422 |
+
xitos -3417
|
| 3423 |
+
▁Louv -3418
|
| 3424 |
+
▁aguj -3419
|
| 3425 |
+
▁fría -3420
|
| 3426 |
+
▁gala -3421
|
| 3427 |
+
▁lava -3422
|
| 3428 |
+
▁nerv -3423
|
| 3429 |
+
▁nues -3424
|
| 3430 |
+
▁obra -3425
|
| 3431 |
+
▁otra -3426
|
| 3432 |
+
▁pará -3427
|
| 3433 |
+
▁pens -3428
|
| 3434 |
+
▁pica -3429
|
| 3435 |
+
▁prac -3430
|
| 3436 |
+
▁pred -3431
|
| 3437 |
+
▁prom -3432
|
| 3438 |
+
▁raza -3433
|
| 3439 |
+
▁rect -3434
|
| 3440 |
+
▁reem -3435
|
| 3441 |
+
▁sero -3436
|
| 3442 |
+
▁será -3437
|
| 3443 |
+
▁sido -3438
|
| 3444 |
+
▁siga -3439
|
| 3445 |
+
▁simi -3440
|
| 3446 |
+
▁sino -3441
|
| 3447 |
+
▁situ -3442
|
| 3448 |
+
▁sola -3443
|
| 3449 |
+
▁soñó -3444
|
| 3450 |
+
▁stre -3445
|
| 3451 |
+
▁suma -3446
|
| 3452 |
+
▁sísm -3447
|
| 3453 |
+
▁telo -3448
|
| 3454 |
+
▁todo -3449
|
| 3455 |
+
▁tono -3450
|
| 3456 |
+
▁trad -3451
|
| 3457 |
+
▁tras -3452
|
| 3458 |
+
▁tres -3453
|
| 3459 |
+
▁unos -3454
|
| 3460 |
+
▁usan -3455
|
| 3461 |
+
▁usar -3456
|
| 3462 |
+
▁viol -3457
|
| 3463 |
+
▁vola -3458
|
| 3464 |
+
adicen -3459
|
| 3465 |
+
alizan -3460
|
| 3466 |
+
ansión -3461
|
| 3467 |
+
aranja -3462
|
| 3468 |
+
arillo -3463
|
| 3469 |
+
bierno -3464
|
| 3470 |
+
bierta -3465
|
| 3471 |
+
bservó -3466
|
| 3472 |
+
centro -3467
|
| 3473 |
+
ciales -3468
|
| 3474 |
+
cionas -3469
|
| 3475 |
+
clamar -3470
|
| 3476 |
+
cretos -3471
|
| 3477 |
+
cultor -3472
|
| 3478 |
+
cólico -3473
|
| 3479 |
+
cópico -3474
|
| 3480 |
+
embros -3475
|
| 3481 |
+
enazas -3476
|
| 3482 |
+
enomin -3477
|
| 3483 |
+
entada -3478
|
| 3484 |
+
erales -3479
|
| 3485 |
+
eranza -3480
|
| 3486 |
+
genada -3481
|
| 3487 |
+
icador -3482
|
| 3488 |
+
ichter -3483
|
| 3489 |
+
icitas -3484
|
| 3490 |
+
ienden -3485
|
| 3491 |
+
ientos -3486
|
| 3492 |
+
ienzan -3487
|
| 3493 |
+
iertos -3488
|
| 3494 |
+
itando -3489
|
| 3495 |
+
izando -3490
|
| 3496 |
+
lantro -3491
|
| 3497 |
+
lastos -3492
|
| 3498 |
+
librio -3493
|
| 3499 |
+
ligión -3494
|
| 3500 |
+
ligros -3495
|
| 3501 |
+
mitida -3496
|
| 3502 |
+
occios -3497
|
| 3503 |
+
ocitos -3498
|
| 3504 |
+
olonia -3499
|
| 3505 |
+
▁aum -3500
|
| 3506 |
+
▁baz -3501
|
| 3507 |
+
bitat -3502
|
| 3508 |
+
pasos -3503
|
| 3509 |
+
írica -3504
|
| 3510 |
+
▁bazo -3505
|
| 3511 |
+
▁caso -3506
|
| 3512 |
+
▁pigm -3507
|
| 3513 |
+
eléctr -3508
|
| 3514 |
+
erosos -3509
|
| 3515 |
+
esario -3510
|
| 3516 |
+
fieres -3511
|
| 3517 |
+
ftware -3512
|
| 3518 |
+
onucle -3513
|
| 3519 |
+
orpora -3514
|
| 3520 |
+
orsion -3515
|
| 3521 |
+
oshima -3516
|
| 3522 |
+
osofía -3517
|
| 3523 |
+
pación -3518
|
| 3524 |
+
pectos -3519
|
| 3525 |
+
plasti -3520
|
| 3526 |
+
plasto -3521
|
| 3527 |
+
quiera -3522
|
| 3528 |
+
rectas -3523
|
| 3529 |
+
rencia -3524
|
| 3530 |
+
rendió -3525
|
| 3531 |
+
rentes -3526
|
| 3532 |
+
resión -3527
|
| 3533 |
+
soluta -3528
|
| 3534 |
+
tafase -3529
|
| 3535 |
+
tancia -3530
|
| 3536 |
+
tintos -3531
|
| 3537 |
+
tonina -3532
|
| 3538 |
+
tosina -3533
|
| 3539 |
+
uelven -3534
|
| 3540 |
+
uestas -3535
|
| 3541 |
+
ultura -3536
|
| 3542 |
+
umanos -3537
|
| 3543 |
+
uésped -3538
|
| 3544 |
+
ándote -3539
|
| 3545 |
+
ónicos -3540
|
| 3546 |
+
ública -3541
|
| 3547 |
+
▁Camin -3542
|
| 3548 |
+
▁China -3543
|
| 3549 |
+
▁Corta -3544
|
| 3550 |
+
▁Flotó -3545
|
| 3551 |
+
▁Krebs -3546
|
| 3552 |
+
▁Llegó -3547
|
| 3553 |
+
▁Marte -3548
|
| 3554 |
+
▁Matem -3549
|
| 3555 |
+
▁Multi -3550
|
| 3556 |
+
▁Music -3551
|
| 3557 |
+
▁Nagas -3552
|
| 3558 |
+
▁Notre -3553
|
| 3559 |
+
▁Otros -3554
|
| 3560 |
+
▁Poten -3555
|
| 3561 |
+
▁Reino -3556
|
| 3562 |
+
▁Saltó -3557
|
| 3563 |
+
▁Texto -3558
|
| 3564 |
+
▁Unido -3559
|
| 3565 |
+
▁Unión -3560
|
| 3566 |
+
▁abajo -3561
|
| 3567 |
+
▁abrev -3562
|
| 3568 |
+
▁acces -3563
|
| 3569 |
+
▁adqui -3564
|
| 3570 |
+
▁agric -3565
|
| 3571 |
+
▁algas -3566
|
| 3572 |
+
▁amigo -3567
|
| 3573 |
+
▁arena -3568
|
| 3574 |
+
▁armas -3569
|
| 3575 |
+
▁ascen -3570
|
| 3576 |
+
▁barrr -3571
|
| 3577 |
+
▁bases -3572
|
| 3578 |
+
▁batal -3573
|
| 3579 |
+
▁bater -3574
|
| 3580 |
+
▁borde -3575
|
| 3581 |
+
▁bueno -3576
|
| 3582 |
+
▁buses -3577
|
| 3583 |
+
▁campo -3578
|
| 3584 |
+
▁capas -3579
|
| 3585 |
+
▁casos -3580
|
| 3586 |
+
▁ceros -3581
|
| 3587 |
+
▁claro -3582
|
| 3588 |
+
▁clave -3583
|
| 3589 |
+
▁colec -3584
|
| 3590 |
+
▁colum -3585
|
| 3591 |
+
▁común -3586
|
| 3592 |
+
▁conci -3587
|
| 3593 |
+
▁condu -3588
|
| 3594 |
+
▁conex -3589
|
| 3595 |
+
▁contá -3590
|
| 3596 |
+
▁cosas -3591
|
| 3597 |
+
▁costu -3592
|
| 3598 |
+
▁dando -3593
|
| 3599 |
+
▁demas -3594
|
| 3600 |
+
▁depen -3595
|
| 3601 |
+
▁depor -3596
|
| 3602 |
+
▁difra -3597
|
| 3603 |
+
▁digno -3598
|
| 3604 |
+
▁direc -3599
|
| 3605 |
+
azón -3600
|
| 3606 |
+
glés -3601
|
| 3607 |
+
pués -3602
|
| 3608 |
+
▁Hay -3603
|
| 3609 |
+
aming -3604
|
| 3610 |
+
cioso -3605
|
| 3611 |
+
ignos -3606
|
| 3612 |
+
itura -3607
|
| 3613 |
+
jarse -3608
|
| 3614 |
+
ordar -3609
|
| 3615 |
+
rmelo -3610
|
| 3616 |
+
tañas -3611
|
| 3617 |
+
uvato -3612
|
| 3618 |
+
▁Azul -3613
|
| 3619 |
+
▁eval -3614
|
| 3620 |
+
▁limp -3615
|
| 3621 |
+
▁ángu -3616
|
| 3622 |
+
ignado -3617
|
| 3623 |
+
ordina -3618
|
| 3624 |
+
reíble -3619
|
| 3625 |
+
vuelto -3620
|
| 3626 |
+
▁Derec -3621
|
| 3627 |
+
▁Descu -3622
|
| 3628 |
+
▁Tiene -3623
|
| 3629 |
+
▁Viaja -3624
|
| 3630 |
+
▁abier -3625
|
| 3631 |
+
▁ambos -3626
|
| 3632 |
+
▁daños -3627
|
| 3633 |
+
▁denso -3628
|
| 3634 |
+
▁disco -3629
|
| 3635 |
+
▁dopam -3630
|
| 3636 |
+
▁dónde -3631
|
| 3637 |
+
▁ellas -3632
|
| 3638 |
+
▁empez -3633
|
| 3639 |
+
▁engul -3634
|
| 3640 |
+
▁equin -3635
|
| 3641 |
+
▁estab -3636
|
| 3642 |
+
▁estás -3637
|
| 3643 |
+
▁estén -3638
|
| 3644 |
+
▁favor -3639
|
| 3645 |
+
▁fijar -3640
|
| 3646 |
+
▁filas -3641
|
| 3647 |
+
▁final -3642
|
| 3648 |
+
▁fluye -3643
|
| 3649 |
+
▁fondo -3644
|
| 3650 |
+
▁forme -3645
|
| 3651 |
+
▁formu -3646
|
| 3652 |
+
▁fotov -3647
|
| 3653 |
+
▁frase -3648
|
| 3654 |
+
▁ganar -3649
|
| 3655 |
+
▁garan -3650
|
| 3656 |
+
▁gesti -3651
|
| 3657 |
+
▁hacen -3652
|
| 3658 |
+
▁hijas -3653
|
| 3659 |
+
▁hijos -3654
|
| 3660 |
+
▁hojas -3655
|
| 3661 |
+
▁hones -3656
|
| 3662 |
+
▁héroe -3657
|
| 3663 |
+
▁impar -3658
|
| 3664 |
+
▁impos -3659
|
| 3665 |
+
▁ingen -3660
|
| 3666 |
+
▁intro -3661
|
| 3667 |
+
▁lados -3662
|
| 3668 |
+
▁lagos -3663
|
| 3669 |
+
▁larga -3664
|
| 3670 |
+
▁later -3665
|
| 3671 |
+
▁lento -3666
|
| 3672 |
+
▁letra -3667
|
| 3673 |
+
▁libro -3668
|
| 3674 |
+
▁liger -3669
|
| 3675 |
+
▁lista -3670
|
| 3676 |
+
▁madre -3671
|
| 3677 |
+
▁mares -3672
|
| 3678 |
+
▁masas -3673
|
| 3679 |
+
▁melan -3674
|
| 3680 |
+
▁menos -3675
|
| 3681 |
+
▁monar -3676
|
| 3682 |
+
▁monum -3677
|
| 3683 |
+
▁mueve -3678
|
| 3684 |
+
▁narra -3679
|
| 3685 |
+
▁nieve -3680
|
| 3686 |
+
▁nitro -3681
|
| 3687 |
+
▁norte -3682
|
| 3688 |
+
▁nueva -3683
|
| 3689 |
+
▁nunca -3684
|
| 3690 |
+
▁obras -3685
|
| 3691 |
+
▁ofici -3686
|
| 3692 |
+
▁ondas -3687
|
| 3693 |
+
▁orgul -3688
|
| 3694 |
+
▁orgán -3689
|
| 3695 |
+
▁piroc -3690
|
| 3696 |
+
▁plano -3691
|
| 3697 |
+
▁playl -3692
|
| 3698 |
+
▁plazo -3693
|
| 3699 |
+
▁polin -3694
|
| 3700 |
+
▁poten -3695
|
| 3701 |
+
▁quema -3696
|
| 3702 |
+
▁quién -3697
|
| 3703 |
+
▁recom -3698
|
| 3704 |
+
▁regen -3699
|
| 3705 |
+
clus -3700
|
| 3706 |
+
ujía -3701
|
| 3707 |
+
vale -3702
|
| 3708 |
+
▁Ohm -3703
|
| 3709 |
+
▁bús -3704
|
| 3710 |
+
▁cód -3705
|
| 3711 |
+
etría -3706
|
| 3712 |
+
▁café -3707
|
| 3713 |
+
▁macr -3708
|
| 3714 |
+
atomía -3709
|
| 3715 |
+
▁COVID -3710
|
| 3716 |
+
▁Sigue -3711
|
| 3717 |
+
▁ajust -3712
|
| 3718 |
+
▁bujía -3713
|
| 3719 |
+
▁eleva -3714
|
| 3720 |
+
▁fragm -3715
|
| 3721 |
+
▁locus -3716
|
| 3722 |
+
▁naveg -3717
|
| 3723 |
+
▁repar -3718
|
| 3724 |
+
▁rocas -3719
|
| 3725 |
+
▁salir -3720
|
| 3726 |
+
▁sazón -3721
|
| 3727 |
+
▁serie -3722
|
| 3728 |
+
▁sería -3723
|
| 3729 |
+
▁simpl -3724
|
| 3730 |
+
▁sinté -3725
|
| 3731 |
+
▁suces -3726
|
| 3732 |
+
▁sufra -3727
|
| 3733 |
+
▁tener -3728
|
| 3734 |
+
▁tenía -3729
|
| 3735 |
+
▁testa -3730
|
| 3736 |
+
▁tipos -3731
|
| 3737 |
+
▁tiras -3732
|
| 3738 |
+
▁total -3733
|
| 3739 |
+
▁traje -3734
|
| 3740 |
+
▁vemos -3735
|
| 3741 |
+
▁venta -3736
|
| 3742 |
+
▁viaja -3737
|
| 3743 |
+
▁vicev -3738
|
| 3744 |
+
▁vidas -3739
|
| 3745 |
+
▁vista -3740
|
| 3746 |
+
▁vital -3741
|
| 3747 |
+
▁volar -3742
|
| 3748 |
+
▁áreas -3743
|
| 3749 |
+
▁óxido -3744
|
| 3750 |
+
▁única -3745
|
| 3751 |
+
▁único -3746
|
| 3752 |
+
acentes -3747
|
| 3753 |
+
argando -3748
|
| 3754 |
+
cabezar -3749
|
| 3755 |
+
canzado -3750
|
| 3756 |
+
cciones -3751
|
| 3757 |
+
cepción -3752
|
| 3758 |
+
cidades -3753
|
| 3759 |
+
cólisis -3754
|
| 3760 |
+
deléyev -3755
|
| 3761 |
+
entario -3756
|
| 3762 |
+
entarla -3757
|
| 3763 |
+
entista -3758
|
| 3764 |
+
fotones -3759
|
| 3765 |
+
gresiva -3760
|
| 3766 |
+
iduales -3761
|
| 3767 |
+
ifiesta -3762
|
| 3768 |
+
iosidad -3763
|
| 3769 |
+
iotecas -3764
|
| 3770 |
+
iptográ -3765
|
| 3771 |
+
iquecen -3766
|
| 3772 |
+
irmadas -3767
|
| 3773 |
+
itantes -3768
|
| 3774 |
+
iversal -3769
|
| 3775 |
+
lándose -3770
|
| 3776 |
+
mología -3771
|
| 3777 |
+
mperios -3772
|
| 3778 |
+
nifican -3773
|
| 3779 |
+
olapsan -3774
|
| 3780 |
+
olución -3775
|
| 3781 |
+
ondeada -3776
|
| 3782 |
+
ospital -3777
|
| 3783 |
+
plement -3778
|
| 3784 |
+
princip -3779
|
| 3785 |
+
rarroja -3780
|
| 3786 |
+
rectivo -3781
|
| 3787 |
+
tadoras -3782
|
| 3788 |
+
tadores -3783
|
| 3789 |
+
terrizó -3784
|
| 3790 |
+
tetizar -3785
|
| 3791 |
+
tiendes -3786
|
| 3792 |
+
tosfera -3787
|
| 3793 |
+
trastar -3788
|
| 3794 |
+
térmica -3789
|
| 3795 |
+
urifica -3790
|
| 3796 |
+
utación -3791
|
| 3797 |
+
vuelven -3792
|
| 3798 |
+
ándolas -3793
|
| 3799 |
+
áulicos -3794
|
| 3800 |
+
éndonos -3795
|
| 3801 |
+
▁Alonso -3796
|
| 3802 |
+
▁Aunque -3797
|
| 3803 |
+
▁Caminó -3798
|
| 3804 |
+
▁Cocina -3799
|
| 3805 |
+
▁isó -3800
|
| 3806 |
+
apsis -3801
|
| 3807 |
+
vecha -3802
|
| 3808 |
+
vivir -3803
|
| 3809 |
+
▁Asia -3804
|
| 3810 |
+
▁Cate -3805
|
| 3811 |
+
▁Fría -3806
|
| 3812 |
+
▁adob -3807
|
| 3813 |
+
▁bosq -3808
|
| 3814 |
+
▁epic -3809
|
| 3815 |
+
▁kiló -3810
|
| 3816 |
+
▁mutu -3811
|
| 3817 |
+
ardeos -3812
|
| 3818 |
+
figuró -3813
|
| 3819 |
+
ibuyen -3814
|
| 3820 |
+
izonte -3815
|
| 3821 |
+
ostrar -3816
|
| 3822 |
+
sirves -3817
|
| 3823 |
+
talgia -3818
|
| 3824 |
+
vatura -3819
|
| 3825 |
+
yectos -3820
|
| 3826 |
+
átidas -3821
|
| 3827 |
+
▁Bonap -3822
|
| 3828 |
+
▁Crear -3823
|
| 3829 |
+
▁Deben -3824
|
| 3830 |
+
▁Decla -3825
|
| 3831 |
+
▁Había -3826
|
| 3832 |
+
▁Llama -3827
|
| 3833 |
+
▁Torre -3828
|
| 3834 |
+
▁centí -3829
|
| 3835 |
+
▁cesar -3830
|
| 3836 |
+
▁devas -3831
|
| 3837 |
+
▁gripe -3832
|
| 3838 |
+
▁hidro -3833
|
| 3839 |
+
▁ocupa -3834
|
| 3840 |
+
▁papel -3835
|
| 3841 |
+
▁temor -3836
|
| 3842 |
+
▁vasto -3837
|
| 3843 |
+
▁veces -3838
|
| 3844 |
+
▁ánimo -3839
|
| 3845 |
+
▁época -3840
|
| 3846 |
+
aciable -3841
|
| 3847 |
+
cinesis -3842
|
| 3848 |
+
compone -3843
|
| 3849 |
+
enturas -3844
|
| 3850 |
+
imitada -3845
|
| 3851 |
+
misores -3846
|
| 3852 |
+
oxirrib -3847
|
| 3853 |
+
▁Albert -3848
|
| 3854 |
+
▁Dentro -3849
|
| 3855 |
+
▁Eiffel -3850
|
| 3856 |
+
▁Espuma -3851
|
| 3857 |
+
▁Fueron -3852
|
| 3858 |
+
▁Guarda -3853
|
| 3859 |
+
▁Italia -3854
|
| 3860 |
+
▁Mancha -3855
|
| 3861 |
+
▁Miguel -3856
|
| 3862 |
+
▁Modelo -3857
|
| 3863 |
+
▁Muchos -3858
|
| 3864 |
+
▁Newton -3859
|
| 3865 |
+
▁Ocurre -3860
|
| 3866 |
+
▁Quería -3861
|
| 3867 |
+
▁Resume -3862
|
| 3868 |
+
▁Terror -3863
|
| 3869 |
+
▁Unidas -3864
|
| 3870 |
+
▁abraza -3865
|
| 3871 |
+
▁activa -3866
|
| 3872 |
+
▁actúan -3867
|
| 3873 |
+
▁adelan -3868
|
| 3874 |
+
▁afecta -3869
|
| 3875 |
+
▁agente -3870
|
| 3876 |
+
▁agotan -3871
|
| 3877 |
+
▁alguna -3872
|
| 3878 |
+
▁altera -3873
|
| 3879 |
+
▁amplía -3874
|
| 3880 |
+
▁apoyan -3875
|
| 3881 |
+
▁arriba -3876
|
| 3882 |
+
▁asunto -3877
|
| 3883 |
+
▁atmosf -3878
|
| 3884 |
+
▁atraen -3879
|
| 3885 |
+
▁atraer -3880
|
| 3886 |
+
▁avance -3881
|
| 3887 |
+
▁ayuden -3882
|
| 3888 |
+
▁bayesi -3883
|
| 3889 |
+
▁blanco -3884
|
| 3890 |
+
▁blanda -3885
|
| 3891 |
+
▁básica -3886
|
| 3892 |
+
▁campos -3887
|
| 3893 |
+
▁cantan -3888
|
| 3894 |
+
▁causan -3889
|
| 3895 |
+
▁centra -3890
|
| 3896 |
+
▁chocan -3891
|
| 3897 |
+
▁ciclos -3892
|
| 3898 |
+
▁cocina -3893
|
| 3899 |
+
▁cohete -3894
|
| 3900 |
+
▁copias -3895
|
| 3901 |
+
▁cuatro -3896
|
| 3902 |
+
▁cuerpo -3897
|
| 3903 |
+
▁célula -3898
|
| 3904 |
+
▁córtex -3899
|
| 3905 |
+
▁SIDA -3900
|
| 3906 |
+
vicios -3901
|
| 3907 |
+
íferos -3902
|
| 3908 |
+
óvenes -3903
|
| 3909 |
+
▁Busco -3904
|
| 3910 |
+
▁Museo -3905
|
| 3911 |
+
▁guían -3906
|
| 3912 |
+
▁itali -3907
|
| 3913 |
+
▁ácido -3908
|
| 3914 |
+
▁ -3909
|
| 3915 |
+
e -3910
|
| 3916 |
+
a -3911
|
| 3917 |
+
o -3912
|
| 3918 |
+
n -3913
|
| 3919 |
+
s -3914
|
| 3920 |
+
i -3915
|
| 3921 |
+
r -3916
|
| 3922 |
+
t -3917
|
| 3923 |
+
l -3918
|
| 3924 |
+
c -3919
|
| 3925 |
+
d -3920
|
| 3926 |
+
u -3921
|
| 3927 |
+
m -3922
|
| 3928 |
+
p -3923
|
| 3929 |
+
. -3924
|
| 3930 |
+
g -3925
|
| 3931 |
+
y -3926
|
| 3932 |
+
, -3927
|
| 3933 |
+
b -3928
|
| 3934 |
+
f -3929
|
| 3935 |
+
v -3930
|
| 3936 |
+
ó -3931
|
| 3937 |
+
? -3932
|
| 3938 |
+
¿ -3933
|
| 3939 |
+
B -3934
|
| 3940 |
+
q -3935
|
| 3941 |
+
é -3936
|
| 3942 |
+
í -3937
|
| 3943 |
+
h -3938
|
| 3944 |
+
á -3939
|
| 3945 |
+
C -3940
|
| 3946 |
+
S -3941
|
| 3947 |
+
P -3942
|
| 3948 |
+
j -3943
|
| 3949 |
+
E -3944
|
| 3950 |
+
x -3945
|
| 3951 |
+
z -3946
|
| 3952 |
+
L -3947
|
| 3953 |
+
T -3948
|
| 3954 |
+
H -3949
|
| 3955 |
+
A -3950
|
| 3956 |
+
Q -3951
|
| 3957 |
+
M -3952
|
| 3958 |
+
ú -3953
|
| 3959 |
+
ñ -3954
|
| 3960 |
+
I -3955
|
| 3961 |
+
N -3956
|
| 3962 |
+
K -3957
|
| 3963 |
+
D -3958
|
| 3964 |
+
0 -3959
|
| 3965 |
+
2 -3960
|
| 3966 |
+
3 -3961
|
| 3967 |
+
1 -3962
|
| 3968 |
+
U -3963
|
| 3969 |
+
5 -3964
|
| 3970 |
+
F -3965
|
| 3971 |
+
R -3966
|
| 3972 |
+
G -3967
|
| 3973 |
+
4 -3968
|
| 3974 |
+
: -3969
|
| 3975 |
+
/ -3970
|
| 3976 |
+
( -3971
|
| 3977 |
+
) -3972
|
| 3978 |
+
k -3973
|
| 3979 |
+
6 -3974
|
| 3980 |
+
8 -3975
|
| 3981 |
+
- -3976
|
| 3982 |
+
9 -3977
|
| 3983 |
+
O -3978
|
| 3984 |
+
V -3979
|
| 3985 |
+
J -3980
|
| 3986 |
+
; -3981
|
| 3987 |
+
× -3982
|
| 3988 |
+
… -3983
|
| 3989 |
+
₂ -3984
|
| 3990 |
+
+ -3985
|
| 3991 |
+
7 -3986
|
| 3992 |
+
w -3987
|
| 3993 |
+
² -3988
|
| 3994 |
+
= -3989
|
| 3995 |
+
₆ -3990
|
| 3996 |
+
% -3991
|
| 3997 |
+
Á -3992
|
| 3998 |
+
Ú -3993
|
| 3999 |
+
₁ -3994
|
| 4000 |
+
→ -3995
|
tokenizer.py
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import sentencepiece as spm
|
| 2 |
+
import os
|
| 3 |
+
import json
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
class MTPTokenizer:
|
| 7 |
+
"""Tokenizer using SentencePiece BPE"""
|
| 8 |
+
|
| 9 |
+
def __init__(self, model_path=None):
|
| 10 |
+
self.sp = None
|
| 11 |
+
self.model_path = model_path
|
| 12 |
+
|
| 13 |
+
if model_path and os.path.exists(model_path):
|
| 14 |
+
self.load(model_path)
|
| 15 |
+
|
| 16 |
+
def train(self, corpus_path, vocab_size=4000, model_prefix='mtp_tokenizer'):
|
| 17 |
+
"""Train SentencePiece BPE tokenizer on corpus"""
|
| 18 |
+
|
| 19 |
+
# Extract text from JSONL corpus
|
| 20 |
+
texts = []
|
| 21 |
+
with open(corpus_path, 'r', encoding='utf-8') as f:
|
| 22 |
+
for line in f:
|
| 23 |
+
data = json.loads(line)
|
| 24 |
+
if 'instruction' in data:
|
| 25 |
+
texts.append(data['instruction'])
|
| 26 |
+
if 'response' in data:
|
| 27 |
+
texts.append(data['response'])
|
| 28 |
+
|
| 29 |
+
# Save temporary text file
|
| 30 |
+
temp_file = 'temp_corpus.txt'
|
| 31 |
+
with open(temp_file, 'w', encoding='utf-8') as f:
|
| 32 |
+
f.write('\n'.join(texts))
|
| 33 |
+
|
| 34 |
+
# Calculate optimal vocab size based on corpus
|
| 35 |
+
total_chars = sum(len(text) for text in texts)
|
| 36 |
+
max_vocab = min(vocab_size, int(total_chars * 0.15)) # Heuristic: ~15% of chars
|
| 37 |
+
|
| 38 |
+
print(f" → Corpus stats: {len(texts)} texts, {total_chars} characters")
|
| 39 |
+
print(f" → Adjusted vocab size: {max_vocab} (requested: {vocab_size})")
|
| 40 |
+
|
| 41 |
+
# Train SentencePiece with adjusted parameters
|
| 42 |
+
try:
|
| 43 |
+
spm.SentencePieceTrainer.train(
|
| 44 |
+
input=temp_file,
|
| 45 |
+
model_prefix=model_prefix,
|
| 46 |
+
vocab_size=max_vocab,
|
| 47 |
+
model_type='bpe',
|
| 48 |
+
pad_id=0,
|
| 49 |
+
unk_id=1,
|
| 50 |
+
bos_id=2,
|
| 51 |
+
eos_id=3,
|
| 52 |
+
character_coverage=1.0,
|
| 53 |
+
normalization_rule_name='identity',
|
| 54 |
+
num_threads=4,
|
| 55 |
+
split_digits=True,
|
| 56 |
+
allow_whitespace_only_pieces=False,
|
| 57 |
+
byte_fallback=False,
|
| 58 |
+
max_sentencepiece_length=16
|
| 59 |
+
)
|
| 60 |
+
except RuntimeError as e:
|
| 61 |
+
if "Vocabulary size too high" in str(e):
|
| 62 |
+
# Extract suggested max from error and retry
|
| 63 |
+
import re
|
| 64 |
+
match = re.search(r'value <= (\d+)', str(e))
|
| 65 |
+
if match:
|
| 66 |
+
suggested_max = int(match.group(1))
|
| 67 |
+
print(f" → Retrying with vocab size: {suggested_max}")
|
| 68 |
+
spm.SentencePieceTrainer.train(
|
| 69 |
+
input=temp_file,
|
| 70 |
+
model_prefix=model_prefix,
|
| 71 |
+
vocab_size=suggested_max,
|
| 72 |
+
model_type='bpe',
|
| 73 |
+
pad_id=0,
|
| 74 |
+
unk_id=1,
|
| 75 |
+
bos_id=2,
|
| 76 |
+
eos_id=3,
|
| 77 |
+
character_coverage=1.0,
|
| 78 |
+
normalization_rule_name='identity',
|
| 79 |
+
num_threads=4,
|
| 80 |
+
split_digits=True,
|
| 81 |
+
allow_whitespace_only_pieces=False,
|
| 82 |
+
byte_fallback=False,
|
| 83 |
+
max_sentencepiece_length=16
|
| 84 |
+
)
|
| 85 |
+
else:
|
| 86 |
+
raise
|
| 87 |
+
else:
|
| 88 |
+
raise
|
| 89 |
+
|
| 90 |
+
# Clean up
|
| 91 |
+
os.remove(temp_file)
|
| 92 |
+
|
| 93 |
+
# Load the trained model
|
| 94 |
+
self.model_path = f"{model_prefix}.model"
|
| 95 |
+
self.load(self.model_path)
|
| 96 |
+
|
| 97 |
+
print(f"✓ Tokenizer trained: {self.vocab_size()} tokens")
|
| 98 |
+
print(f"✓ Model saved: {self.model_path}")
|
| 99 |
+
|
| 100 |
+
def load(self, model_path):
|
| 101 |
+
"""Load trained tokenizer"""
|
| 102 |
+
self.sp = spm.SentencePieceProcessor()
|
| 103 |
+
self.sp.load(model_path)
|
| 104 |
+
self.model_path = model_path
|
| 105 |
+
|
| 106 |
+
def encode(self, text):
|
| 107 |
+
"""Encode text to token IDs"""
|
| 108 |
+
if self.sp is None:
|
| 109 |
+
raise ValueError("Tokenizer not loaded. Train or load a model first.")
|
| 110 |
+
return self.sp.encode_as_ids(text)
|
| 111 |
+
|
| 112 |
+
def decode(self, ids):
|
| 113 |
+
"""Decode token IDs to text"""
|
| 114 |
+
if self.sp is None:
|
| 115 |
+
raise ValueError("Tokenizer not loaded. Train or load a model first.")
|
| 116 |
+
return self.sp.decode_ids(ids)
|
| 117 |
+
|
| 118 |
+
def vocab_size(self):
|
| 119 |
+
"""Get vocabulary size"""
|
| 120 |
+
if self.sp is None:
|
| 121 |
+
return 0
|
| 122 |
+
return self.sp.get_piece_size()
|
| 123 |
+
|
| 124 |
+
def bos_id(self):
|
| 125 |
+
"""Beginning of sentence token ID"""
|
| 126 |
+
return self.sp.bos_id()
|
| 127 |
+
|
| 128 |
+
def eos_id(self):
|
| 129 |
+
"""End of sentence token ID"""
|
| 130 |
+
return self.sp.eos_id()
|
| 131 |
+
|
| 132 |
+
def pad_id(self):
|
| 133 |
+
"""Padding token ID"""
|
| 134 |
+
return self.sp.pad_id()
|
| 135 |
+
|
| 136 |
+
def unk_id(self):
|
| 137 |
+
"""Unknown token ID"""
|
| 138 |
+
return self.sp.unk_id()
|