Chess Challenge submission by MDaytek
Browse files- README.md +31 -26
- config.json +18 -19
- model.py +48 -190
- model.safetensors +2 -2
- pytorch_model.bin +3 -0
- tokenizer.py +42 -171
- tokenizer_config.json +13 -50
- vocab.json +1797 -1076
README.md
CHANGED
|
@@ -1,26 +1,31 @@
|
|
| 1 |
-
---
|
| 2 |
-
library_name: transformers
|
| 3 |
-
tags:
|
| 4 |
-
- chess
|
| 5 |
-
- llm-course
|
| 6 |
-
- chess-challenge
|
| 7 |
-
license: mit
|
| 8 |
-
---
|
| 9 |
-
|
| 10 |
-
# chess-submission-v21-MDaytek
|
| 11 |
-
|
| 12 |
-
Chess model submitted to the LLM Course Chess Challenge.
|
| 13 |
-
|
| 14 |
-
## Submission Info
|
| 15 |
-
|
| 16 |
-
- **Submitted by**: [MDaytek](https://huggingface.co/MDaytek)
|
| 17 |
-
- **Parameters**:
|
| 18 |
-
- **Organization**: LLM-course
|
| 19 |
-
|
| 20 |
-
##
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
tags:
|
| 4 |
+
- chess
|
| 5 |
+
- llm-course
|
| 6 |
+
- chess-challenge
|
| 7 |
+
license: mit
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# chess-submission-v21-MDaytek
|
| 11 |
+
|
| 12 |
+
Chess model submitted to the LLM Course Chess Challenge.
|
| 13 |
+
|
| 14 |
+
## Submission Info
|
| 15 |
+
|
| 16 |
+
- **Submitted by**: [MDaytek](https://huggingface.co/MDaytek)
|
| 17 |
+
- **Parameters**: 1,040,640
|
| 18 |
+
- **Organization**: LLM-course
|
| 19 |
+
|
| 20 |
+
## Usage
|
| 21 |
+
|
| 22 |
+
```python
|
| 23 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 24 |
+
|
| 25 |
+
model = AutoModelForCausalLM.from_pretrained("LLM-course/chess-submission-v21-MDaytek", trust_remote_code=True)
|
| 26 |
+
tokenizer = AutoTokenizer.from_pretrained("LLM-course/chess-submission-v21-MDaytek", trust_remote_code=True)
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
## Evaluation
|
| 30 |
+
|
| 31 |
+
This model is evaluated at the [Chess Challenge Arena](https://huggingface.co/spaces/LLM-course/Chess1MChallenge).
|
config.json
CHANGED
|
@@ -1,19 +1,18 @@
|
|
| 1 |
-
{
|
| 2 |
-
"architectures": [
|
| 3 |
-
"ChessForCausalLM"
|
| 4 |
-
],
|
| 5 |
-
"
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
"
|
| 10 |
-
"
|
| 11 |
-
"
|
| 12 |
-
"
|
| 13 |
-
"
|
| 14 |
-
"
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
}
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"ChessForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"dropout": 0.1,
|
| 6 |
+
"dtype": "float32",
|
| 7 |
+
"model_type": "chess_gpt",
|
| 8 |
+
"n_embd": 96,
|
| 9 |
+
"n_head": 8,
|
| 10 |
+
"n_layer": 6,
|
| 11 |
+
"n_positions": 256,
|
| 12 |
+
"transformers_version": "4.57.6",
|
| 13 |
+
"vocab_size": 1796,
|
| 14 |
+
"auto_map": {
|
| 15 |
+
"AutoConfig": "model.ChessConfig",
|
| 16 |
+
"AutoModelForCausalLM": "model.ChessForCausalLM"
|
| 17 |
+
}
|
| 18 |
+
}
|
|
|
model.py
CHANGED
|
@@ -1,190 +1,48 @@
|
|
| 1 |
-
import math
|
| 2 |
-
import torch
|
| 3 |
-
import torch.nn as
|
| 4 |
-
|
| 5 |
-
from transformers import
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
self
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
):
|
| 22 |
-
super().__init__(
|
| 23 |
-
self.
|
| 24 |
-
self.
|
| 25 |
-
self.
|
| 26 |
-
self.
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
self.
|
| 31 |
-
self.
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
super().__init__()
|
| 50 |
-
assert config.n_embd % config.n_head == 0
|
| 51 |
-
|
| 52 |
-
self.c_attn = nn.Linear(config.n_embd, 3 * config.n_embd)
|
| 53 |
-
self.c_proj = nn.Linear(config.n_embd, config.n_embd)
|
| 54 |
-
|
| 55 |
-
self.attn_dropout = nn.Dropout(config.dropout)
|
| 56 |
-
self.resid_dropout = nn.Dropout(config.dropout)
|
| 57 |
-
|
| 58 |
-
self.n_head = config.n_head
|
| 59 |
-
self.n_embd = config.n_embd
|
| 60 |
-
|
| 61 |
-
def forward(self, x):
|
| 62 |
-
B, T, C = x.size()
|
| 63 |
-
|
| 64 |
-
q, k, v = self.c_attn(x).split(self.n_embd, dim=2)
|
| 65 |
-
|
| 66 |
-
k = k.view(B, T, self.n_head, C // self.n_head).transpose(1, 2)
|
| 67 |
-
q = q.view(B, T, self.n_head, C // self.n_head).transpose(1, 2)
|
| 68 |
-
v = v.view(B, T, self.n_head, C // self.n_head).transpose(1, 2)
|
| 69 |
-
|
| 70 |
-
att = (q @ k.transpose(-2, -1)) * (1.0 / math.sqrt(k.size(-1)))
|
| 71 |
-
|
| 72 |
-
mask = torch.triu(torch.ones(T, T, device=x.device, dtype=torch.bool), diagonal=1)
|
| 73 |
-
att = att.masked_fill(mask, -1e9)
|
| 74 |
-
|
| 75 |
-
att = F.softmax(att, dim=-1)
|
| 76 |
-
att = self.attn_dropout(att)
|
| 77 |
-
|
| 78 |
-
y = att @ v
|
| 79 |
-
y = y.transpose(1, 2).contiguous().view(B, T, C)
|
| 80 |
-
|
| 81 |
-
y = self.resid_dropout(self.c_proj(y))
|
| 82 |
-
return y
|
| 83 |
-
|
| 84 |
-
class GPTBlock(nn.Module):
|
| 85 |
-
def __init__(self, config):
|
| 86 |
-
super().__init__()
|
| 87 |
-
self.ln_1 = nn.LayerNorm(config.n_embd)
|
| 88 |
-
self.attn = CausalSelfAttention(config)
|
| 89 |
-
self.ln_2 = nn.LayerNorm(config.n_embd)
|
| 90 |
-
self.mlp = nn.Sequential(
|
| 91 |
-
nn.Linear(config.n_embd, 4 * config.n_embd),
|
| 92 |
-
nn.GELU(),
|
| 93 |
-
nn.Linear(4 * config.n_embd, config.n_embd),
|
| 94 |
-
nn.Dropout(config.dropout)
|
| 95 |
-
)
|
| 96 |
-
|
| 97 |
-
def forward(self, x):
|
| 98 |
-
x = x + self.attn(self.ln_1(x))
|
| 99 |
-
x = x + self.mlp(self.ln_2(x))
|
| 100 |
-
return x
|
| 101 |
-
|
| 102 |
-
class ChessForCausalLM(PreTrainedModel):
|
| 103 |
-
config_class = ChessConfig
|
| 104 |
-
_no_split_modules = ["GPTBlock"]
|
| 105 |
-
_tied_weights_keys = ["lm_head.weight"]
|
| 106 |
-
|
| 107 |
-
def __init__(self, config):
|
| 108 |
-
super().__init__(config)
|
| 109 |
-
|
| 110 |
-
self.token_emb = nn.Embedding(config.vocab_size, config.n_embd)
|
| 111 |
-
|
| 112 |
-
if config.use_sinusoidal_pos:
|
| 113 |
-
self.register_buffer(
|
| 114 |
-
"pos_emb",
|
| 115 |
-
sinusoidal_positional_encoding(config.n_positions, config.n_embd)
|
| 116 |
-
)
|
| 117 |
-
self.use_learned_pos = False
|
| 118 |
-
else:
|
| 119 |
-
self.pos_emb = nn.Embedding(config.n_positions, config.n_embd)
|
| 120 |
-
self.use_learned_pos = True
|
| 121 |
-
|
| 122 |
-
self.dropout = nn.Dropout(config.dropout)
|
| 123 |
-
|
| 124 |
-
self.blocks = nn.ModuleList([GPTBlock(config) for _ in range(config.n_layer)])
|
| 125 |
-
|
| 126 |
-
self.ln_f = nn.LayerNorm(config.n_embd)
|
| 127 |
-
self.lm_head = nn.Linear(config.n_embd, config.vocab_size, bias=False)
|
| 128 |
-
|
| 129 |
-
self.apply(self._init_weights)
|
| 130 |
-
self.post_init()
|
| 131 |
-
|
| 132 |
-
def _init_weights(self, module):
|
| 133 |
-
if isinstance(module, nn.Linear):
|
| 134 |
-
torch.nn.init.normal_(module.weight, mean=0.0, std=0.02)
|
| 135 |
-
if module.bias is not None:
|
| 136 |
-
torch.nn.init.zeros_(module.bias)
|
| 137 |
-
elif isinstance(module, nn.Embedding):
|
| 138 |
-
torch.nn.init.normal_(module.weight, mean=0.0, std=0.02)
|
| 139 |
-
elif isinstance(module, nn.LayerNorm):
|
| 140 |
-
torch.nn.init.zeros_(module.bias)
|
| 141 |
-
torch.nn.init.ones_(module.weight)
|
| 142 |
-
|
| 143 |
-
def get_input_embeddings(self):
|
| 144 |
-
return self.token_emb
|
| 145 |
-
|
| 146 |
-
def set_input_embeddings(self, value):
|
| 147 |
-
self.token_emb = value
|
| 148 |
-
|
| 149 |
-
def get_output_embeddings(self):
|
| 150 |
-
return self.lm_head
|
| 151 |
-
|
| 152 |
-
def set_output_embeddings(self, new_embeddings):
|
| 153 |
-
self.lm_head = new_embeddings
|
| 154 |
-
|
| 155 |
-
def tie_weights(self):
|
| 156 |
-
if self.config.tie_word_embeddings:
|
| 157 |
-
self._tie_or_clone_weights(self.lm_head, self.token_emb)
|
| 158 |
-
|
| 159 |
-
def forward(self, input_ids, labels=None, **kwargs):
|
| 160 |
-
B, T = input_ids.shape
|
| 161 |
-
device = input_ids.device
|
| 162 |
-
|
| 163 |
-
tok_emb = self.token_emb(input_ids)
|
| 164 |
-
|
| 165 |
-
if self.use_learned_pos:
|
| 166 |
-
pos = torch.arange(0, T, dtype=torch.long, device=device)
|
| 167 |
-
pos_emb = self.pos_emb(pos)
|
| 168 |
-
else:
|
| 169 |
-
pos_emb = self.pos_emb[:T, :].to(device)
|
| 170 |
-
|
| 171 |
-
x = self.dropout(tok_emb + pos_emb)
|
| 172 |
-
|
| 173 |
-
for block in self.blocks:
|
| 174 |
-
x = block(x)
|
| 175 |
-
|
| 176 |
-
x = self.ln_f(x)
|
| 177 |
-
logits = self.lm_head(x)
|
| 178 |
-
|
| 179 |
-
loss = None
|
| 180 |
-
if labels is not None:
|
| 181 |
-
shift_logits = logits[..., :-1, :].contiguous()
|
| 182 |
-
shift_labels = labels[..., 1:].contiguous()
|
| 183 |
-
|
| 184 |
-
loss_fct = nn.CrossEntropyLoss(ignore_index=0)
|
| 185 |
-
loss = loss_fct(
|
| 186 |
-
shift_logits.view(-1, shift_logits.size(-1)),
|
| 187 |
-
shift_labels.view(-1)
|
| 188 |
-
)
|
| 189 |
-
|
| 190 |
-
return CausalLMOutputWithPast(loss=loss, logits=logits)
|
|
|
|
| 1 |
+
import math, torch
|
| 2 |
+
import torch.nn as nn
|
| 3 |
+
import torch.nn.functional as F
|
| 4 |
+
from transformers import PreTrainedModel, PretrainedConfig
|
| 5 |
+
from transformers.modeling_outputs import CausalLMOutputWithPast
|
| 6 |
+
|
| 7 |
+
class ChessConfig(PretrainedConfig):
|
| 8 |
+
model_type = "chess_gpt"
|
| 9 |
+
def __init__(self, vocab_size=1804, n_positions=256, n_embd=96, n_layer=6, n_head=8, dropout=0.1, **kwargs):
|
| 10 |
+
super().__init__(**kwargs)
|
| 11 |
+
self.vocab_size = vocab_size
|
| 12 |
+
self.n_positions = n_positions
|
| 13 |
+
self.n_embd = n_embd
|
| 14 |
+
self.n_layer = n_layer
|
| 15 |
+
self.n_head = n_head
|
| 16 |
+
self.dropout = dropout
|
| 17 |
+
self.tie_word_embeddings = True
|
| 18 |
+
|
| 19 |
+
class ChessForCausalLM(PreTrainedModel):
|
| 20 |
+
config_class = ChessConfig
|
| 21 |
+
def __init__(self, config):
|
| 22 |
+
super().__init__(config)
|
| 23 |
+
self.token_emb = nn.Embedding(config.vocab_size, config.n_embd)
|
| 24 |
+
self.pos_emb = nn.Embedding(config.n_positions, config.n_embd)
|
| 25 |
+
self.dropout = nn.Dropout(config.dropout)
|
| 26 |
+
self.blocks = nn.ModuleList([nn.TransformerEncoderLayer(
|
| 27 |
+
d_model=config.n_embd, nhead=config.n_head,
|
| 28 |
+
dim_feedforward=4*config.n_embd, dropout=config.dropout,
|
| 29 |
+
batch_first=True) for _ in range(config.n_layer)])
|
| 30 |
+
self.ln_f = nn.LayerNorm(config.n_embd)
|
| 31 |
+
self.lm_head = nn.Linear(config.n_embd, config.vocab_size, bias=False)
|
| 32 |
+
self.post_init()
|
| 33 |
+
|
| 34 |
+
def forward(self, input_ids, labels=None, **kwargs):
|
| 35 |
+
B, T = input_ids.shape
|
| 36 |
+
pos = torch.arange(0, T, dtype=torch.long, device=input_ids.device).unsqueeze(0)
|
| 37 |
+
x = self.token_emb(input_ids) + self.pos_emb(pos)
|
| 38 |
+
x = self.dropout(x)
|
| 39 |
+
mask = nn.Transformer.generate_square_subsequent_mask(T, device=input_ids.device)
|
| 40 |
+
for block in self.blocks:
|
| 41 |
+
x = block(x, src_mask=mask, is_causal=True)
|
| 42 |
+
x = self.ln_f(x)
|
| 43 |
+
logits = self.lm_head(x)
|
| 44 |
+
loss = None
|
| 45 |
+
if labels is not None:
|
| 46 |
+
loss_fct = nn.CrossEntropyLoss(ignore_index=-100)
|
| 47 |
+
loss = loss_fct(logits.view(-1, logits.size(-1)), labels.view(-1))
|
| 48 |
+
return CausalLMOutputWithPast(loss=loss, logits=logits)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:971af605f1f266eba24bf507782307628735cbaf1a7b21d12e087d5b51faa6e2
|
| 3 |
+
size 4169488
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf70ce190a12abf05b43834e09a83188ee82d7d4dff636aa14a866e7ba097661
|
| 3 |
+
size 4189781
|
tokenizer.py
CHANGED
|
@@ -1,171 +1,42 @@
|
|
| 1 |
-
import json
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
self.
|
| 32 |
-
|
| 33 |
-
self.
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
self.model_max_length = 256
|
| 44 |
-
|
| 45 |
-
@property
|
| 46 |
-
def vocab_size(self):
|
| 47 |
-
return len(self.vocab)
|
| 48 |
-
|
| 49 |
-
def _convert_token_to_id(self, token):
|
| 50 |
-
return self.vocab.get(token, self.unk_token_id)
|
| 51 |
-
|
| 52 |
-
def _convert_id_to_token(self, id):
|
| 53 |
-
return self.id_to_token.get(id, self.unk_token)
|
| 54 |
-
|
| 55 |
-
def convert_tokens_to_ids(self, tokens):
|
| 56 |
-
if isinstance(tokens, str):
|
| 57 |
-
return self._convert_token_to_id(tokens)
|
| 58 |
-
return [self._convert_token_to_id(t) for t in tokens]
|
| 59 |
-
|
| 60 |
-
def convert_ids_to_tokens(self, ids):
|
| 61 |
-
if isinstance(ids, int):
|
| 62 |
-
return self._convert_id_to_token(ids)
|
| 63 |
-
return [self._convert_id_to_token(i) for i in ids]
|
| 64 |
-
|
| 65 |
-
def encode(self, text, add_special_tokens=True, return_tensors=None):
|
| 66 |
-
"""Encode text to token IDs"""
|
| 67 |
-
tokens = text.split()
|
| 68 |
-
ids = []
|
| 69 |
-
|
| 70 |
-
if add_special_tokens:
|
| 71 |
-
ids.append(self.bos_token_id)
|
| 72 |
-
|
| 73 |
-
for token in tokens:
|
| 74 |
-
ids.append(self._convert_token_to_id(token))
|
| 75 |
-
|
| 76 |
-
if add_special_tokens:
|
| 77 |
-
ids.append(self.eos_token_id)
|
| 78 |
-
|
| 79 |
-
if return_tensors == "pt":
|
| 80 |
-
return BatchEncoding({"input_ids": torch.tensor([ids], dtype=torch.long)})
|
| 81 |
-
|
| 82 |
-
return ids
|
| 83 |
-
|
| 84 |
-
def __call__(self, text, return_tensors=None, padding=False, truncation=False, max_length=None, **kwargs):
|
| 85 |
-
"""
|
| 86 |
-
Make tokenizer callable (HuggingFace compatibility).
|
| 87 |
-
Returns dict with input_ids that can be moved to device.
|
| 88 |
-
"""
|
| 89 |
-
if isinstance(text, str):
|
| 90 |
-
text = [text]
|
| 91 |
-
|
| 92 |
-
all_ids = []
|
| 93 |
-
for t in text:
|
| 94 |
-
ids = self.encode(t, add_special_tokens=True, return_tensors=None)
|
| 95 |
-
all_ids.append(ids)
|
| 96 |
-
|
| 97 |
-
# Padding
|
| 98 |
-
if padding:
|
| 99 |
-
max_len = max(len(ids) for ids in all_ids)
|
| 100 |
-
if max_length:
|
| 101 |
-
max_len = min(max_len, max_length)
|
| 102 |
-
|
| 103 |
-
all_ids = [
|
| 104 |
-
ids[:max_len] + [self.pad_token_id] * (max_len - len(ids[:max_len]))
|
| 105 |
-
for ids in all_ids
|
| 106 |
-
]
|
| 107 |
-
|
| 108 |
-
if return_tensors == "pt":
|
| 109 |
-
return BatchEncoding({"input_ids": torch.tensor(all_ids, dtype=torch.long)})
|
| 110 |
-
|
| 111 |
-
return BatchEncoding({"input_ids": all_ids})
|
| 112 |
-
|
| 113 |
-
def decode(self, ids, skip_special_tokens=True):
|
| 114 |
-
"""Decode token IDs to text"""
|
| 115 |
-
if isinstance(ids, torch.Tensor):
|
| 116 |
-
ids = ids.tolist()
|
| 117 |
-
|
| 118 |
-
tokens = []
|
| 119 |
-
for id in ids:
|
| 120 |
-
if skip_special_tokens and id in [
|
| 121 |
-
self.pad_token_id,
|
| 122 |
-
self.bos_token_id,
|
| 123 |
-
self.eos_token_id
|
| 124 |
-
]:
|
| 125 |
-
continue
|
| 126 |
-
tokens.append(self._convert_id_to_token(id))
|
| 127 |
-
|
| 128 |
-
return " ".join(tokens)
|
| 129 |
-
|
| 130 |
-
def save_pretrained(self, path):
|
| 131 |
-
os.makedirs(path, exist_ok=True)
|
| 132 |
-
with open(os.path.join(path, "vocab.json"), "w") as f:
|
| 133 |
-
json.dump(self.vocab, f, indent=2)
|
| 134 |
-
|
| 135 |
-
@classmethod
|
| 136 |
-
def from_pretrained(cls, pretrained_model_name_or_path, **kwargs):
|
| 137 |
-
"""
|
| 138 |
-
Load tokenizer from path or HuggingFace repo.
|
| 139 |
-
|
| 140 |
-
Args:
|
| 141 |
-
pretrained_model_name_or_path: Local path or "org/model" repo name
|
| 142 |
-
**kwargs: Additional arguments (trust_remote_code, etc.)
|
| 143 |
-
"""
|
| 144 |
-
# Si c'est un nom de repo HF (contient "/")
|
| 145 |
-
if "/" in pretrained_model_name_or_path and not os.path.exists(pretrained_model_name_or_path):
|
| 146 |
-
from huggingface_hub import hf_hub_download
|
| 147 |
-
try:
|
| 148 |
-
vocab_file = hf_hub_download(
|
| 149 |
-
repo_id=pretrained_model_name_or_path,
|
| 150 |
-
filename="vocab.json"
|
| 151 |
-
)
|
| 152 |
-
vocab_dir = os.path.dirname(vocab_file)
|
| 153 |
-
except Exception as e:
|
| 154 |
-
raise RuntimeError(f"Failed to download vocab.json from {pretrained_model_name_or_path}: {e}")
|
| 155 |
-
else:
|
| 156 |
-
vocab_dir = pretrained_model_name_or_path
|
| 157 |
-
|
| 158 |
-
vocab_path = os.path.join(vocab_dir, "vocab.json")
|
| 159 |
-
|
| 160 |
-
if not os.path.exists(vocab_path):
|
| 161 |
-
raise FileNotFoundError(f"vocab.json not found in {vocab_dir}")
|
| 162 |
-
|
| 163 |
-
with open(vocab_path, "r") as f:
|
| 164 |
-
vocab = json.load(f)
|
| 165 |
-
|
| 166 |
-
return cls(vocab)
|
| 167 |
-
|
| 168 |
-
@classmethod
|
| 169 |
-
def register_for_auto_class(cls, auto_class="AutoTokenizer"):
|
| 170 |
-
"""Register tokenizer for AutoTokenizer"""
|
| 171 |
-
return cls
|
|
|
|
| 1 |
+
import json, os, torch
|
| 2 |
+
class BatchEncoding(dict):
|
| 3 |
+
def to(self, device):
|
| 4 |
+
for key, value in self.items():
|
| 5 |
+
if isinstance(value, torch.Tensor):
|
| 6 |
+
self[key] = value.to(device)
|
| 7 |
+
return self
|
| 8 |
+
def __getattr__(self, item):
|
| 9 |
+
try:
|
| 10 |
+
return self[item]
|
| 11 |
+
except KeyError:
|
| 12 |
+
raise AttributeError(f"'{type(self).__name__}' object has no attribute '{item}'")
|
| 13 |
+
|
| 14 |
+
class ChessTokenizer:
|
| 15 |
+
def __init__(self, vocab):
|
| 16 |
+
self.vocab = vocab
|
| 17 |
+
self.id_to_token = {v: k for k, v in vocab.items()}
|
| 18 |
+
self.pad_token_id = vocab["[PAD]"]
|
| 19 |
+
self.bos_token_id = vocab["[BOS]"]
|
| 20 |
+
self.eos_token_id = vocab["[EOS]"]
|
| 21 |
+
self.unk_token_id = vocab["[UNK]"]
|
| 22 |
+
self.pad_token = "[PAD]"
|
| 23 |
+
self.bos_token = "[BOS]"
|
| 24 |
+
self.eos_token = "[EOS]"
|
| 25 |
+
self.unk_token = "[UNK]"
|
| 26 |
+
self.model_max_length = 256
|
| 27 |
+
@property
|
| 28 |
+
def vocab_size(self):
|
| 29 |
+
return len(self.vocab)
|
| 30 |
+
def _convert_token_to_id(self, token):
|
| 31 |
+
return self.vocab.get(token, self.unk_token_id)
|
| 32 |
+
def _convert_id_to_token(self, id):
|
| 33 |
+
return self.id_to_token.get(id, self.unk_token)
|
| 34 |
+
def save_pretrained(self, path):
|
| 35 |
+
os.makedirs(path, exist_ok=True)
|
| 36 |
+
with open(os.path.join(path, "vocab.json"), "w") as f:
|
| 37 |
+
json.dump(self.vocab, f, indent=2)
|
| 38 |
+
@classmethod
|
| 39 |
+
def from_pretrained(cls, path, **kwargs):
|
| 40 |
+
with open(os.path.join(path, "vocab.json")) as f:
|
| 41 |
+
vocab = json.load(f)
|
| 42 |
+
return cls(vocab)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tokenizer_config.json
CHANGED
|
@@ -1,50 +1,13 @@
|
|
| 1 |
-
{
|
| 2 |
-
"
|
| 3 |
-
"
|
| 4 |
-
"
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
"normalized": false,
|
| 15 |
-
"rstrip": false,
|
| 16 |
-
"single_word": false,
|
| 17 |
-
"special": true
|
| 18 |
-
},
|
| 19 |
-
"2": {
|
| 20 |
-
"content": "[EOS]",
|
| 21 |
-
"lstrip": false,
|
| 22 |
-
"normalized": false,
|
| 23 |
-
"rstrip": false,
|
| 24 |
-
"single_word": false,
|
| 25 |
-
"special": true
|
| 26 |
-
},
|
| 27 |
-
"3": {
|
| 28 |
-
"content": "[UNK]",
|
| 29 |
-
"lstrip": false,
|
| 30 |
-
"normalized": false,
|
| 31 |
-
"rstrip": false,
|
| 32 |
-
"single_word": false,
|
| 33 |
-
"special": true
|
| 34 |
-
}
|
| 35 |
-
},
|
| 36 |
-
"auto_map": {
|
| 37 |
-
"AutoTokenizer": [
|
| 38 |
-
"tokenizer.ChessTokenizer",
|
| 39 |
-
null
|
| 40 |
-
]
|
| 41 |
-
},
|
| 42 |
-
"bos_token": "[BOS]",
|
| 43 |
-
"clean_up_tokenization_spaces": false,
|
| 44 |
-
"eos_token": "[EOS]",
|
| 45 |
-
"extra_special_tokens": {},
|
| 46 |
-
"model_max_length": 1000000000000000019884624838656,
|
| 47 |
-
"pad_token": "[PAD]",
|
| 48 |
-
"tokenizer_class": "ChessTokenizer",
|
| 49 |
-
"unk_token": "[UNK]"
|
| 50 |
-
}
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"auto_map": {
|
| 3 |
+
"AutoTokenizer": [
|
| 4 |
+
"tokenizer.ChessTokenizer",
|
| 5 |
+
null
|
| 6 |
+
]
|
| 7 |
+
},
|
| 8 |
+
"model_max_length": 256,
|
| 9 |
+
"pad_token": "[PAD]",
|
| 10 |
+
"bos_token": "[BOS]",
|
| 11 |
+
"eos_token": "[EOS]",
|
| 12 |
+
"unk_token": "[UNK]"
|
| 13 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
vocab.json
CHANGED
|
@@ -1,1077 +1,1798 @@
|
|
| 1 |
-
{
|
| 2 |
-
"[PAD]": 0,
|
| 3 |
-
"[BOS]": 1,
|
| 4 |
-
"[EOS]": 2,
|
| 5 |
-
"[UNK]": 3,
|
| 6 |
-
"
|
| 7 |
-
"
|
| 8 |
-
"
|
| 9 |
-
"
|
| 10 |
-
"
|
| 11 |
-
"
|
| 12 |
-
"
|
| 13 |
-
"
|
| 14 |
-
"
|
| 15 |
-
"
|
| 16 |
-
"
|
| 17 |
-
"
|
| 18 |
-
"
|
| 19 |
-
"
|
| 20 |
-
"
|
| 21 |
-
"
|
| 22 |
-
"
|
| 23 |
-
"
|
| 24 |
-
"
|
| 25 |
-
"
|
| 26 |
-
"
|
| 27 |
-
"
|
| 28 |
-
"
|
| 29 |
-
"
|
| 30 |
-
"
|
| 31 |
-
"
|
| 32 |
-
"
|
| 33 |
-
"
|
| 34 |
-
"
|
| 35 |
-
"
|
| 36 |
-
"
|
| 37 |
-
"
|
| 38 |
-
"
|
| 39 |
-
"
|
| 40 |
-
"
|
| 41 |
-
"
|
| 42 |
-
"
|
| 43 |
-
"
|
| 44 |
-
"
|
| 45 |
-
"
|
| 46 |
-
"
|
| 47 |
-
"
|
| 48 |
-
"
|
| 49 |
-
"
|
| 50 |
-
"
|
| 51 |
-
"
|
| 52 |
-
"
|
| 53 |
-
"
|
| 54 |
-
"
|
| 55 |
-
"
|
| 56 |
-
"
|
| 57 |
-
"
|
| 58 |
-
"
|
| 59 |
-
"
|
| 60 |
-
"
|
| 61 |
-
"
|
| 62 |
-
"
|
| 63 |
-
"
|
| 64 |
-
"
|
| 65 |
-
"
|
| 66 |
-
"
|
| 67 |
-
"
|
| 68 |
-
"
|
| 69 |
-
"
|
| 70 |
-
"
|
| 71 |
-
"
|
| 72 |
-
"
|
| 73 |
-
"
|
| 74 |
-
"
|
| 75 |
-
"
|
| 76 |
-
"
|
| 77 |
-
"
|
| 78 |
-
"
|
| 79 |
-
"
|
| 80 |
-
"
|
| 81 |
-
"
|
| 82 |
-
"
|
| 83 |
-
"
|
| 84 |
-
"
|
| 85 |
-
"
|
| 86 |
-
"
|
| 87 |
-
"
|
| 88 |
-
"
|
| 89 |
-
"
|
| 90 |
-
"
|
| 91 |
-
"
|
| 92 |
-
"
|
| 93 |
-
"
|
| 94 |
-
"
|
| 95 |
-
"
|
| 96 |
-
"
|
| 97 |
-
"
|
| 98 |
-
"
|
| 99 |
-
"
|
| 100 |
-
"
|
| 101 |
-
"
|
| 102 |
-
"
|
| 103 |
-
"
|
| 104 |
-
"
|
| 105 |
-
"
|
| 106 |
-
"
|
| 107 |
-
"
|
| 108 |
-
"
|
| 109 |
-
"
|
| 110 |
-
"
|
| 111 |
-
"
|
| 112 |
-
"
|
| 113 |
-
"
|
| 114 |
-
"
|
| 115 |
-
"
|
| 116 |
-
"
|
| 117 |
-
"
|
| 118 |
-
"
|
| 119 |
-
"
|
| 120 |
-
"
|
| 121 |
-
"
|
| 122 |
-
"
|
| 123 |
-
"
|
| 124 |
-
"
|
| 125 |
-
"
|
| 126 |
-
"
|
| 127 |
-
"
|
| 128 |
-
"
|
| 129 |
-
"
|
| 130 |
-
"
|
| 131 |
-
"
|
| 132 |
-
"
|
| 133 |
-
"
|
| 134 |
-
"
|
| 135 |
-
"
|
| 136 |
-
"
|
| 137 |
-
"
|
| 138 |
-
"
|
| 139 |
-
"
|
| 140 |
-
"
|
| 141 |
-
"
|
| 142 |
-
"
|
| 143 |
-
"
|
| 144 |
-
"
|
| 145 |
-
"
|
| 146 |
-
"
|
| 147 |
-
"
|
| 148 |
-
"
|
| 149 |
-
"
|
| 150 |
-
"
|
| 151 |
-
"
|
| 152 |
-
"
|
| 153 |
-
"
|
| 154 |
-
"
|
| 155 |
-
"
|
| 156 |
-
"
|
| 157 |
-
"
|
| 158 |
-
"
|
| 159 |
-
"
|
| 160 |
-
"
|
| 161 |
-
"
|
| 162 |
-
"
|
| 163 |
-
"
|
| 164 |
-
"
|
| 165 |
-
"
|
| 166 |
-
"
|
| 167 |
-
"
|
| 168 |
-
"
|
| 169 |
-
"
|
| 170 |
-
"
|
| 171 |
-
"
|
| 172 |
-
"
|
| 173 |
-
"
|
| 174 |
-
"
|
| 175 |
-
"
|
| 176 |
-
"
|
| 177 |
-
"
|
| 178 |
-
"
|
| 179 |
-
"
|
| 180 |
-
"
|
| 181 |
-
"
|
| 182 |
-
"
|
| 183 |
-
"
|
| 184 |
-
"
|
| 185 |
-
"
|
| 186 |
-
"
|
| 187 |
-
"
|
| 188 |
-
"
|
| 189 |
-
"
|
| 190 |
-
"
|
| 191 |
-
"
|
| 192 |
-
"
|
| 193 |
-
"
|
| 194 |
-
"
|
| 195 |
-
"
|
| 196 |
-
"
|
| 197 |
-
"
|
| 198 |
-
"
|
| 199 |
-
"
|
| 200 |
-
"
|
| 201 |
-
"
|
| 202 |
-
"
|
| 203 |
-
"
|
| 204 |
-
"
|
| 205 |
-
"
|
| 206 |
-
"
|
| 207 |
-
"
|
| 208 |
-
"
|
| 209 |
-
"
|
| 210 |
-
"
|
| 211 |
-
"
|
| 212 |
-
"
|
| 213 |
-
"
|
| 214 |
-
"
|
| 215 |
-
"
|
| 216 |
-
"
|
| 217 |
-
"
|
| 218 |
-
"
|
| 219 |
-
"
|
| 220 |
-
"
|
| 221 |
-
"
|
| 222 |
-
"
|
| 223 |
-
"
|
| 224 |
-
"
|
| 225 |
-
"
|
| 226 |
-
"
|
| 227 |
-
"
|
| 228 |
-
"
|
| 229 |
-
"
|
| 230 |
-
"
|
| 231 |
-
"
|
| 232 |
-
"
|
| 233 |
-
"
|
| 234 |
-
"
|
| 235 |
-
"
|
| 236 |
-
"
|
| 237 |
-
"
|
| 238 |
-
"
|
| 239 |
-
"
|
| 240 |
-
"
|
| 241 |
-
"
|
| 242 |
-
"
|
| 243 |
-
"
|
| 244 |
-
"
|
| 245 |
-
"
|
| 246 |
-
"
|
| 247 |
-
"
|
| 248 |
-
"
|
| 249 |
-
"
|
| 250 |
-
"
|
| 251 |
-
"
|
| 252 |
-
"
|
| 253 |
-
"
|
| 254 |
-
"
|
| 255 |
-
"
|
| 256 |
-
"
|
| 257 |
-
"
|
| 258 |
-
"
|
| 259 |
-
"
|
| 260 |
-
"
|
| 261 |
-
"
|
| 262 |
-
"
|
| 263 |
-
"
|
| 264 |
-
"
|
| 265 |
-
"
|
| 266 |
-
"
|
| 267 |
-
"
|
| 268 |
-
"
|
| 269 |
-
"
|
| 270 |
-
"
|
| 271 |
-
"
|
| 272 |
-
"
|
| 273 |
-
"
|
| 274 |
-
"
|
| 275 |
-
"
|
| 276 |
-
"
|
| 277 |
-
"
|
| 278 |
-
"
|
| 279 |
-
"
|
| 280 |
-
"
|
| 281 |
-
"
|
| 282 |
-
"
|
| 283 |
-
"
|
| 284 |
-
"
|
| 285 |
-
"
|
| 286 |
-
"
|
| 287 |
-
"
|
| 288 |
-
"
|
| 289 |
-
"
|
| 290 |
-
"
|
| 291 |
-
"
|
| 292 |
-
"
|
| 293 |
-
"
|
| 294 |
-
"
|
| 295 |
-
"
|
| 296 |
-
"
|
| 297 |
-
"
|
| 298 |
-
"
|
| 299 |
-
"
|
| 300 |
-
"
|
| 301 |
-
"
|
| 302 |
-
"
|
| 303 |
-
"
|
| 304 |
-
"
|
| 305 |
-
"
|
| 306 |
-
"
|
| 307 |
-
"
|
| 308 |
-
"
|
| 309 |
-
"
|
| 310 |
-
"
|
| 311 |
-
"
|
| 312 |
-
"
|
| 313 |
-
"
|
| 314 |
-
"
|
| 315 |
-
"
|
| 316 |
-
"
|
| 317 |
-
"
|
| 318 |
-
"
|
| 319 |
-
"
|
| 320 |
-
"
|
| 321 |
-
"
|
| 322 |
-
"
|
| 323 |
-
"
|
| 324 |
-
"
|
| 325 |
-
"
|
| 326 |
-
"
|
| 327 |
-
"
|
| 328 |
-
"
|
| 329 |
-
"
|
| 330 |
-
"
|
| 331 |
-
"
|
| 332 |
-
"
|
| 333 |
-
"
|
| 334 |
-
"
|
| 335 |
-
"
|
| 336 |
-
"
|
| 337 |
-
"
|
| 338 |
-
"
|
| 339 |
-
"
|
| 340 |
-
"
|
| 341 |
-
"
|
| 342 |
-
"
|
| 343 |
-
"
|
| 344 |
-
"
|
| 345 |
-
"
|
| 346 |
-
"
|
| 347 |
-
"
|
| 348 |
-
"
|
| 349 |
-
"
|
| 350 |
-
"
|
| 351 |
-
"
|
| 352 |
-
"
|
| 353 |
-
"
|
| 354 |
-
"
|
| 355 |
-
"
|
| 356 |
-
"
|
| 357 |
-
"
|
| 358 |
-
"
|
| 359 |
-
"
|
| 360 |
-
"
|
| 361 |
-
"
|
| 362 |
-
"
|
| 363 |
-
"
|
| 364 |
-
"
|
| 365 |
-
"
|
| 366 |
-
"
|
| 367 |
-
"
|
| 368 |
-
"
|
| 369 |
-
"
|
| 370 |
-
"
|
| 371 |
-
"
|
| 372 |
-
"
|
| 373 |
-
"
|
| 374 |
-
"
|
| 375 |
-
"
|
| 376 |
-
"
|
| 377 |
-
"
|
| 378 |
-
"
|
| 379 |
-
"
|
| 380 |
-
"
|
| 381 |
-
"
|
| 382 |
-
"
|
| 383 |
-
"
|
| 384 |
-
"
|
| 385 |
-
"
|
| 386 |
-
"
|
| 387 |
-
"
|
| 388 |
-
"
|
| 389 |
-
"
|
| 390 |
-
"
|
| 391 |
-
"
|
| 392 |
-
"
|
| 393 |
-
"
|
| 394 |
-
"
|
| 395 |
-
"
|
| 396 |
-
"
|
| 397 |
-
"
|
| 398 |
-
"
|
| 399 |
-
"
|
| 400 |
-
"
|
| 401 |
-
"
|
| 402 |
-
"
|
| 403 |
-
"
|
| 404 |
-
"
|
| 405 |
-
"
|
| 406 |
-
"
|
| 407 |
-
"
|
| 408 |
-
"
|
| 409 |
-
"
|
| 410 |
-
"
|
| 411 |
-
"
|
| 412 |
-
"
|
| 413 |
-
"
|
| 414 |
-
"
|
| 415 |
-
"
|
| 416 |
-
"
|
| 417 |
-
"
|
| 418 |
-
"
|
| 419 |
-
"
|
| 420 |
-
"
|
| 421 |
-
"
|
| 422 |
-
"
|
| 423 |
-
"
|
| 424 |
-
"
|
| 425 |
-
"
|
| 426 |
-
"
|
| 427 |
-
"
|
| 428 |
-
"
|
| 429 |
-
"
|
| 430 |
-
"
|
| 431 |
-
"
|
| 432 |
-
"
|
| 433 |
-
"
|
| 434 |
-
"
|
| 435 |
-
"
|
| 436 |
-
"
|
| 437 |
-
"
|
| 438 |
-
"
|
| 439 |
-
"
|
| 440 |
-
"
|
| 441 |
-
"
|
| 442 |
-
"
|
| 443 |
-
"
|
| 444 |
-
"
|
| 445 |
-
"
|
| 446 |
-
"
|
| 447 |
-
"
|
| 448 |
-
"
|
| 449 |
-
"
|
| 450 |
-
"
|
| 451 |
-
"
|
| 452 |
-
"
|
| 453 |
-
"
|
| 454 |
-
"
|
| 455 |
-
"
|
| 456 |
-
"
|
| 457 |
-
"
|
| 458 |
-
"
|
| 459 |
-
"
|
| 460 |
-
"
|
| 461 |
-
"
|
| 462 |
-
"
|
| 463 |
-
"
|
| 464 |
-
"
|
| 465 |
-
"
|
| 466 |
-
"
|
| 467 |
-
"
|
| 468 |
-
"
|
| 469 |
-
"
|
| 470 |
-
"
|
| 471 |
-
"
|
| 472 |
-
"
|
| 473 |
-
"
|
| 474 |
-
"
|
| 475 |
-
"
|
| 476 |
-
"
|
| 477 |
-
"
|
| 478 |
-
"
|
| 479 |
-
"
|
| 480 |
-
"
|
| 481 |
-
"
|
| 482 |
-
"
|
| 483 |
-
"
|
| 484 |
-
"
|
| 485 |
-
"
|
| 486 |
-
"
|
| 487 |
-
"
|
| 488 |
-
"
|
| 489 |
-
"
|
| 490 |
-
"
|
| 491 |
-
"
|
| 492 |
-
"
|
| 493 |
-
"
|
| 494 |
-
"
|
| 495 |
-
"
|
| 496 |
-
"
|
| 497 |
-
"
|
| 498 |
-
"
|
| 499 |
-
"
|
| 500 |
-
"
|
| 501 |
-
"
|
| 502 |
-
"
|
| 503 |
-
"
|
| 504 |
-
"
|
| 505 |
-
"
|
| 506 |
-
"
|
| 507 |
-
"
|
| 508 |
-
"
|
| 509 |
-
"
|
| 510 |
-
"
|
| 511 |
-
"
|
| 512 |
-
"
|
| 513 |
-
"
|
| 514 |
-
"
|
| 515 |
-
"
|
| 516 |
-
"
|
| 517 |
-
"
|
| 518 |
-
"
|
| 519 |
-
"
|
| 520 |
-
"
|
| 521 |
-
"
|
| 522 |
-
"
|
| 523 |
-
"
|
| 524 |
-
"
|
| 525 |
-
"
|
| 526 |
-
"
|
| 527 |
-
"
|
| 528 |
-
"
|
| 529 |
-
"
|
| 530 |
-
"
|
| 531 |
-
"
|
| 532 |
-
"
|
| 533 |
-
"
|
| 534 |
-
"
|
| 535 |
-
"
|
| 536 |
-
"
|
| 537 |
-
"
|
| 538 |
-
"
|
| 539 |
-
"
|
| 540 |
-
"
|
| 541 |
-
"
|
| 542 |
-
"
|
| 543 |
-
"
|
| 544 |
-
"
|
| 545 |
-
"
|
| 546 |
-
"
|
| 547 |
-
"
|
| 548 |
-
"
|
| 549 |
-
"
|
| 550 |
-
"
|
| 551 |
-
"
|
| 552 |
-
"
|
| 553 |
-
"
|
| 554 |
-
"
|
| 555 |
-
"
|
| 556 |
-
"
|
| 557 |
-
"
|
| 558 |
-
"
|
| 559 |
-
"
|
| 560 |
-
"
|
| 561 |
-
"
|
| 562 |
-
"
|
| 563 |
-
"
|
| 564 |
-
"
|
| 565 |
-
"
|
| 566 |
-
"
|
| 567 |
-
"
|
| 568 |
-
"
|
| 569 |
-
"
|
| 570 |
-
"
|
| 571 |
-
"
|
| 572 |
-
"
|
| 573 |
-
"
|
| 574 |
-
"
|
| 575 |
-
"
|
| 576 |
-
"
|
| 577 |
-
"
|
| 578 |
-
"
|
| 579 |
-
"
|
| 580 |
-
"
|
| 581 |
-
"
|
| 582 |
-
"
|
| 583 |
-
"
|
| 584 |
-
"
|
| 585 |
-
"
|
| 586 |
-
"
|
| 587 |
-
"
|
| 588 |
-
"
|
| 589 |
-
"
|
| 590 |
-
"
|
| 591 |
-
"
|
| 592 |
-
"
|
| 593 |
-
"
|
| 594 |
-
"
|
| 595 |
-
"
|
| 596 |
-
"
|
| 597 |
-
"
|
| 598 |
-
"
|
| 599 |
-
"
|
| 600 |
-
"
|
| 601 |
-
"
|
| 602 |
-
"
|
| 603 |
-
"
|
| 604 |
-
"
|
| 605 |
-
"
|
| 606 |
-
"
|
| 607 |
-
"
|
| 608 |
-
"
|
| 609 |
-
"
|
| 610 |
-
"
|
| 611 |
-
"
|
| 612 |
-
"
|
| 613 |
-
"
|
| 614 |
-
"
|
| 615 |
-
"
|
| 616 |
-
"
|
| 617 |
-
"
|
| 618 |
-
"
|
| 619 |
-
"
|
| 620 |
-
"
|
| 621 |
-
"
|
| 622 |
-
"
|
| 623 |
-
"
|
| 624 |
-
"
|
| 625 |
-
"
|
| 626 |
-
"
|
| 627 |
-
"
|
| 628 |
-
"
|
| 629 |
-
"
|
| 630 |
-
"
|
| 631 |
-
"
|
| 632 |
-
"
|
| 633 |
-
"
|
| 634 |
-
"
|
| 635 |
-
"
|
| 636 |
-
"
|
| 637 |
-
"
|
| 638 |
-
"
|
| 639 |
-
"
|
| 640 |
-
"
|
| 641 |
-
"
|
| 642 |
-
"
|
| 643 |
-
"
|
| 644 |
-
"
|
| 645 |
-
"
|
| 646 |
-
"
|
| 647 |
-
"
|
| 648 |
-
"
|
| 649 |
-
"
|
| 650 |
-
"
|
| 651 |
-
"
|
| 652 |
-
"
|
| 653 |
-
"
|
| 654 |
-
"
|
| 655 |
-
"
|
| 656 |
-
"
|
| 657 |
-
"
|
| 658 |
-
"
|
| 659 |
-
"
|
| 660 |
-
"
|
| 661 |
-
"
|
| 662 |
-
"
|
| 663 |
-
"
|
| 664 |
-
"
|
| 665 |
-
"
|
| 666 |
-
"
|
| 667 |
-
"
|
| 668 |
-
"
|
| 669 |
-
"
|
| 670 |
-
"
|
| 671 |
-
"
|
| 672 |
-
"
|
| 673 |
-
"
|
| 674 |
-
"
|
| 675 |
-
"
|
| 676 |
-
"
|
| 677 |
-
"
|
| 678 |
-
"
|
| 679 |
-
"
|
| 680 |
-
"
|
| 681 |
-
"
|
| 682 |
-
"
|
| 683 |
-
"
|
| 684 |
-
"
|
| 685 |
-
"
|
| 686 |
-
"
|
| 687 |
-
"
|
| 688 |
-
"
|
| 689 |
-
"
|
| 690 |
-
"
|
| 691 |
-
"
|
| 692 |
-
"
|
| 693 |
-
"
|
| 694 |
-
"
|
| 695 |
-
"
|
| 696 |
-
"
|
| 697 |
-
"
|
| 698 |
-
"
|
| 699 |
-
"
|
| 700 |
-
"
|
| 701 |
-
"
|
| 702 |
-
"
|
| 703 |
-
"
|
| 704 |
-
"
|
| 705 |
-
"
|
| 706 |
-
"
|
| 707 |
-
"
|
| 708 |
-
"
|
| 709 |
-
"
|
| 710 |
-
"
|
| 711 |
-
"
|
| 712 |
-
"
|
| 713 |
-
"
|
| 714 |
-
"
|
| 715 |
-
"
|
| 716 |
-
"
|
| 717 |
-
"
|
| 718 |
-
"
|
| 719 |
-
"
|
| 720 |
-
"
|
| 721 |
-
"
|
| 722 |
-
"
|
| 723 |
-
"
|
| 724 |
-
"
|
| 725 |
-
"
|
| 726 |
-
"
|
| 727 |
-
"
|
| 728 |
-
"
|
| 729 |
-
"
|
| 730 |
-
"
|
| 731 |
-
"
|
| 732 |
-
"
|
| 733 |
-
"
|
| 734 |
-
"
|
| 735 |
-
"
|
| 736 |
-
"
|
| 737 |
-
"
|
| 738 |
-
"
|
| 739 |
-
"
|
| 740 |
-
"
|
| 741 |
-
"
|
| 742 |
-
"
|
| 743 |
-
"
|
| 744 |
-
"
|
| 745 |
-
"
|
| 746 |
-
"
|
| 747 |
-
"
|
| 748 |
-
"
|
| 749 |
-
"
|
| 750 |
-
"
|
| 751 |
-
"
|
| 752 |
-
"
|
| 753 |
-
"
|
| 754 |
-
"
|
| 755 |
-
"
|
| 756 |
-
"
|
| 757 |
-
"
|
| 758 |
-
"
|
| 759 |
-
"
|
| 760 |
-
"
|
| 761 |
-
"
|
| 762 |
-
"
|
| 763 |
-
"
|
| 764 |
-
"
|
| 765 |
-
"
|
| 766 |
-
"
|
| 767 |
-
"
|
| 768 |
-
"
|
| 769 |
-
"
|
| 770 |
-
"
|
| 771 |
-
"
|
| 772 |
-
"
|
| 773 |
-
"
|
| 774 |
-
"
|
| 775 |
-
"
|
| 776 |
-
"
|
| 777 |
-
"
|
| 778 |
-
"
|
| 779 |
-
"
|
| 780 |
-
"
|
| 781 |
-
"
|
| 782 |
-
"
|
| 783 |
-
"
|
| 784 |
-
"
|
| 785 |
-
"
|
| 786 |
-
"
|
| 787 |
-
"
|
| 788 |
-
"
|
| 789 |
-
"
|
| 790 |
-
"
|
| 791 |
-
"
|
| 792 |
-
"
|
| 793 |
-
"
|
| 794 |
-
"
|
| 795 |
-
"
|
| 796 |
-
"
|
| 797 |
-
"
|
| 798 |
-
"
|
| 799 |
-
"
|
| 800 |
-
"
|
| 801 |
-
"
|
| 802 |
-
"
|
| 803 |
-
"
|
| 804 |
-
"
|
| 805 |
-
"
|
| 806 |
-
"
|
| 807 |
-
"
|
| 808 |
-
"
|
| 809 |
-
"
|
| 810 |
-
"
|
| 811 |
-
"
|
| 812 |
-
"
|
| 813 |
-
"
|
| 814 |
-
"
|
| 815 |
-
"
|
| 816 |
-
"
|
| 817 |
-
"
|
| 818 |
-
"
|
| 819 |
-
"
|
| 820 |
-
"
|
| 821 |
-
"
|
| 822 |
-
"
|
| 823 |
-
"
|
| 824 |
-
"
|
| 825 |
-
"
|
| 826 |
-
"
|
| 827 |
-
"
|
| 828 |
-
"
|
| 829 |
-
"
|
| 830 |
-
"
|
| 831 |
-
"
|
| 832 |
-
"
|
| 833 |
-
"
|
| 834 |
-
"
|
| 835 |
-
"
|
| 836 |
-
"
|
| 837 |
-
"
|
| 838 |
-
"
|
| 839 |
-
"
|
| 840 |
-
"
|
| 841 |
-
"
|
| 842 |
-
"
|
| 843 |
-
"
|
| 844 |
-
"
|
| 845 |
-
"
|
| 846 |
-
"
|
| 847 |
-
"
|
| 848 |
-
"
|
| 849 |
-
"
|
| 850 |
-
"
|
| 851 |
-
"
|
| 852 |
-
"
|
| 853 |
-
"
|
| 854 |
-
"
|
| 855 |
-
"
|
| 856 |
-
"
|
| 857 |
-
"
|
| 858 |
-
"
|
| 859 |
-
"
|
| 860 |
-
"
|
| 861 |
-
"
|
| 862 |
-
"
|
| 863 |
-
"
|
| 864 |
-
"
|
| 865 |
-
"
|
| 866 |
-
"
|
| 867 |
-
"
|
| 868 |
-
"
|
| 869 |
-
"
|
| 870 |
-
"
|
| 871 |
-
"
|
| 872 |
-
"
|
| 873 |
-
"
|
| 874 |
-
"
|
| 875 |
-
"
|
| 876 |
-
"
|
| 877 |
-
"
|
| 878 |
-
"
|
| 879 |
-
"
|
| 880 |
-
"
|
| 881 |
-
"
|
| 882 |
-
"
|
| 883 |
-
"
|
| 884 |
-
"
|
| 885 |
-
"
|
| 886 |
-
"
|
| 887 |
-
"
|
| 888 |
-
"
|
| 889 |
-
"
|
| 890 |
-
"
|
| 891 |
-
"
|
| 892 |
-
"
|
| 893 |
-
"
|
| 894 |
-
"
|
| 895 |
-
"
|
| 896 |
-
"
|
| 897 |
-
"
|
| 898 |
-
"
|
| 899 |
-
"
|
| 900 |
-
"
|
| 901 |
-
"
|
| 902 |
-
"
|
| 903 |
-
"
|
| 904 |
-
"
|
| 905 |
-
"
|
| 906 |
-
"
|
| 907 |
-
"
|
| 908 |
-
"
|
| 909 |
-
"
|
| 910 |
-
"
|
| 911 |
-
"
|
| 912 |
-
"
|
| 913 |
-
"
|
| 914 |
-
"
|
| 915 |
-
"
|
| 916 |
-
"
|
| 917 |
-
"
|
| 918 |
-
"
|
| 919 |
-
"
|
| 920 |
-
"
|
| 921 |
-
"
|
| 922 |
-
"
|
| 923 |
-
"
|
| 924 |
-
"
|
| 925 |
-
"
|
| 926 |
-
"
|
| 927 |
-
"
|
| 928 |
-
"
|
| 929 |
-
"
|
| 930 |
-
"
|
| 931 |
-
"
|
| 932 |
-
"
|
| 933 |
-
"
|
| 934 |
-
"
|
| 935 |
-
"
|
| 936 |
-
"
|
| 937 |
-
"
|
| 938 |
-
"
|
| 939 |
-
"
|
| 940 |
-
"
|
| 941 |
-
"
|
| 942 |
-
"
|
| 943 |
-
"
|
| 944 |
-
"
|
| 945 |
-
"
|
| 946 |
-
"
|
| 947 |
-
"
|
| 948 |
-
"
|
| 949 |
-
"
|
| 950 |
-
"
|
| 951 |
-
"
|
| 952 |
-
"
|
| 953 |
-
"
|
| 954 |
-
"
|
| 955 |
-
"
|
| 956 |
-
"
|
| 957 |
-
"
|
| 958 |
-
"
|
| 959 |
-
"
|
| 960 |
-
"
|
| 961 |
-
"
|
| 962 |
-
"
|
| 963 |
-
"
|
| 964 |
-
"
|
| 965 |
-
"
|
| 966 |
-
"
|
| 967 |
-
"
|
| 968 |
-
"
|
| 969 |
-
"
|
| 970 |
-
"
|
| 971 |
-
"
|
| 972 |
-
"
|
| 973 |
-
"
|
| 974 |
-
"
|
| 975 |
-
"
|
| 976 |
-
"
|
| 977 |
-
"
|
| 978 |
-
"
|
| 979 |
-
"
|
| 980 |
-
"
|
| 981 |
-
"
|
| 982 |
-
"
|
| 983 |
-
"
|
| 984 |
-
"
|
| 985 |
-
"
|
| 986 |
-
"
|
| 987 |
-
"
|
| 988 |
-
"
|
| 989 |
-
"
|
| 990 |
-
"
|
| 991 |
-
"
|
| 992 |
-
"
|
| 993 |
-
"
|
| 994 |
-
"
|
| 995 |
-
"
|
| 996 |
-
"
|
| 997 |
-
"
|
| 998 |
-
"
|
| 999 |
-
"
|
| 1000 |
-
"
|
| 1001 |
-
"
|
| 1002 |
-
"
|
| 1003 |
-
"
|
| 1004 |
-
"
|
| 1005 |
-
"
|
| 1006 |
-
"
|
| 1007 |
-
"
|
| 1008 |
-
"
|
| 1009 |
-
"
|
| 1010 |
-
"
|
| 1011 |
-
"
|
| 1012 |
-
"
|
| 1013 |
-
"
|
| 1014 |
-
"
|
| 1015 |
-
"
|
| 1016 |
-
"
|
| 1017 |
-
"
|
| 1018 |
-
"
|
| 1019 |
-
"
|
| 1020 |
-
"
|
| 1021 |
-
"
|
| 1022 |
-
"
|
| 1023 |
-
"
|
| 1024 |
-
"
|
| 1025 |
-
"
|
| 1026 |
-
"
|
| 1027 |
-
"
|
| 1028 |
-
"
|
| 1029 |
-
"
|
| 1030 |
-
"
|
| 1031 |
-
"
|
| 1032 |
-
"
|
| 1033 |
-
"
|
| 1034 |
-
"
|
| 1035 |
-
"
|
| 1036 |
-
"
|
| 1037 |
-
"
|
| 1038 |
-
"
|
| 1039 |
-
"
|
| 1040 |
-
"
|
| 1041 |
-
"
|
| 1042 |
-
"
|
| 1043 |
-
"
|
| 1044 |
-
"
|
| 1045 |
-
"
|
| 1046 |
-
"
|
| 1047 |
-
"
|
| 1048 |
-
"
|
| 1049 |
-
"
|
| 1050 |
-
"
|
| 1051 |
-
"
|
| 1052 |
-
"
|
| 1053 |
-
"
|
| 1054 |
-
"
|
| 1055 |
-
"
|
| 1056 |
-
"
|
| 1057 |
-
"
|
| 1058 |
-
"
|
| 1059 |
-
"
|
| 1060 |
-
"
|
| 1061 |
-
"
|
| 1062 |
-
"
|
| 1063 |
-
"
|
| 1064 |
-
"
|
| 1065 |
-
"
|
| 1066 |
-
"
|
| 1067 |
-
"
|
| 1068 |
-
"
|
| 1069 |
-
"
|
| 1070 |
-
"
|
| 1071 |
-
"
|
| 1072 |
-
"
|
| 1073 |
-
"
|
| 1074 |
-
"
|
| 1075 |
-
"
|
| 1076 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1077 |
}
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"[PAD]": 0,
|
| 3 |
+
"[BOS]": 1,
|
| 4 |
+
"[EOS]": 2,
|
| 5 |
+
"[UNK]": 3,
|
| 6 |
+
"g1f3": 4,
|
| 7 |
+
"g8f6": 5,
|
| 8 |
+
"e2e4": 6,
|
| 9 |
+
"d2d4": 7,
|
| 10 |
+
"e1g1": 8,
|
| 11 |
+
"b1c3": 9,
|
| 12 |
+
"b8c6": 10,
|
| 13 |
+
"e8g8": 11,
|
| 14 |
+
"d7d5": 12,
|
| 15 |
+
"e7e6": 13,
|
| 16 |
+
"e7e5": 14,
|
| 17 |
+
"d7d6": 15,
|
| 18 |
+
"c2c3": 16,
|
| 19 |
+
"g7g6": 17,
|
| 20 |
+
"h2h3": 18,
|
| 21 |
+
"c7c6": 19,
|
| 22 |
+
"h7h6": 20,
|
| 23 |
+
"c7c5": 21,
|
| 24 |
+
"a7a6": 22,
|
| 25 |
+
"f8e7": 23,
|
| 26 |
+
"e2e3": 24,
|
| 27 |
+
"g2g3": 25,
|
| 28 |
+
"c2c4": 26,
|
| 29 |
+
"d2d3": 27,
|
| 30 |
+
"f3e5": 28,
|
| 31 |
+
"a2a3": 29,
|
| 32 |
+
"f1e1": 30,
|
| 33 |
+
"f7f6": 31,
|
| 34 |
+
"f2f4": 32,
|
| 35 |
+
"e4e5": 33,
|
| 36 |
+
"b7b6": 34,
|
| 37 |
+
"b8d7": 35,
|
| 38 |
+
"f1c4": 36,
|
| 39 |
+
"f2f3": 37,
|
| 40 |
+
"b2b3": 38,
|
| 41 |
+
"b1d2": 39,
|
| 42 |
+
"e4d5": 40,
|
| 43 |
+
"f1e2": 41,
|
| 44 |
+
"f1d3": 42,
|
| 45 |
+
"f8e8": 43,
|
| 46 |
+
"b7b5": 44,
|
| 47 |
+
"f6e4": 45,
|
| 48 |
+
"f8g7": 46,
|
| 49 |
+
"c1g5": 47,
|
| 50 |
+
"c5d4": 48,
|
| 51 |
+
"c1e3": 49,
|
| 52 |
+
"c8g4": 50,
|
| 53 |
+
"f7f5": 51,
|
| 54 |
+
"c8b7": 52,
|
| 55 |
+
"c8d7": 53,
|
| 56 |
+
"f3d4": 54,
|
| 57 |
+
"b2b4": 55,
|
| 58 |
+
"d4e5": 56,
|
| 59 |
+
"d1d2": 57,
|
| 60 |
+
"c1f4": 58,
|
| 61 |
+
"d4d5": 59,
|
| 62 |
+
"c3d5": 60,
|
| 63 |
+
"c6d4": 61,
|
| 64 |
+
"a2a4": 62,
|
| 65 |
+
"g2g4": 63,
|
| 66 |
+
"c4d5": 64,
|
| 67 |
+
"f6d5": 65,
|
| 68 |
+
"e6d5": 66,
|
| 69 |
+
"e5d4": 67,
|
| 70 |
+
"d6e5": 68,
|
| 71 |
+
"f8d6": 69,
|
| 72 |
+
"e6e5": 70,
|
| 73 |
+
"a7a5": 71,
|
| 74 |
+
"d1e2": 72,
|
| 75 |
+
"h2h4": 73,
|
| 76 |
+
"d8d7": 74,
|
| 77 |
+
"d5e4": 75,
|
| 78 |
+
"d8e7": 76,
|
| 79 |
+
"c8e6": 77,
|
| 80 |
+
"a8c8": 78,
|
| 81 |
+
"a1d1": 79,
|
| 82 |
+
"c1d2": 80,
|
| 83 |
+
"c6e5": 81,
|
| 84 |
+
"f8c5": 82,
|
| 85 |
+
"c3e4": 83,
|
| 86 |
+
"e1c1": 84,
|
| 87 |
+
"h7h5": 85,
|
| 88 |
+
"e7f6": 86,
|
| 89 |
+
"c6c5": 87,
|
| 90 |
+
"g8e7": 88,
|
| 91 |
+
"f1g2": 89,
|
| 92 |
+
"a8d8": 90,
|
| 93 |
+
"b7c6": 91,
|
| 94 |
+
"c8f5": 92,
|
| 95 |
+
"c1b2": 93,
|
| 96 |
+
"e5e4": 94,
|
| 97 |
+
"d6d5": 95,
|
| 98 |
+
"g7f6": 96,
|
| 99 |
+
"f3g5": 97,
|
| 100 |
+
"g1h1": 98,
|
| 101 |
+
"a1c1": 99,
|
| 102 |
+
"d1f3": 100,
|
| 103 |
+
"d5d4": 101,
|
| 104 |
+
"g8g7": 102,
|
| 105 |
+
"f4e5": 103,
|
| 106 |
+
"h4h5": 104,
|
| 107 |
+
"g4f3": 105,
|
| 108 |
+
"e8c8": 106,
|
| 109 |
+
"b2c3": 107,
|
| 110 |
+
"c6d5": 108,
|
| 111 |
+
"d8c7": 109,
|
| 112 |
+
"g5f6": 110,
|
| 113 |
+
"g7g5": 111,
|
| 114 |
+
"c3c4": 112,
|
| 115 |
+
"e3e4": 113,
|
| 116 |
+
"g8h8": 114,
|
| 117 |
+
"f1b5": 115,
|
| 118 |
+
"c3d4": 116,
|
| 119 |
+
"e3d4": 117,
|
| 120 |
+
"g4g5": 118,
|
| 121 |
+
"f4f5": 119,
|
| 122 |
+
"f8b4": 120,
|
| 123 |
+
"a8b8": 121,
|
| 124 |
+
"d3e4": 122,
|
| 125 |
+
"e2f3": 123,
|
| 126 |
+
"g2f3": 124,
|
| 127 |
+
"b5b4": 125,
|
| 128 |
+
"d3d4": 126,
|
| 129 |
+
"f3f4": 127,
|
| 130 |
+
"f6f5": 128,
|
| 131 |
+
"h3h4": 129,
|
| 132 |
+
"a1b1": 130,
|
| 133 |
+
"g6g5": 131,
|
| 134 |
+
"g1g2": 132,
|
| 135 |
+
"g3g4": 133,
|
| 136 |
+
"a5a4": 134,
|
| 137 |
+
"d8f6": 135,
|
| 138 |
+
"d8d5": 136,
|
| 139 |
+
"c5c4": 137,
|
| 140 |
+
"d1c2": 138,
|
| 141 |
+
"c4c5": 139,
|
| 142 |
+
"h5h4": 140,
|
| 143 |
+
"f6e5": 141,
|
| 144 |
+
"f6g4": 142,
|
| 145 |
+
"d5c4": 143,
|
| 146 |
+
"g5g4": 144,
|
| 147 |
+
"f7e6": 145,
|
| 148 |
+
"f5f4": 146,
|
| 149 |
+
"d7c6": 147,
|
| 150 |
+
"b4b5": 148,
|
| 151 |
+
"h6h5": 149,
|
| 152 |
+
"a4a5": 150,
|
| 153 |
+
"d4c5": 151,
|
| 154 |
+
"a1e1": 152,
|
| 155 |
+
"b4c3": 153,
|
| 156 |
+
"d1d3": 154,
|
| 157 |
+
"f8d8": 155,
|
| 158 |
+
"b5c6": 156,
|
| 159 |
+
"f1d1": 157,
|
| 160 |
+
"a6a5": 158,
|
| 161 |
+
"g1h2": 159,
|
| 162 |
+
"d7e5": 160,
|
| 163 |
+
"e7d6": 161,
|
| 164 |
+
"f5e4": 162,
|
| 165 |
+
"g1e2": 163,
|
| 166 |
+
"e8e7": 164,
|
| 167 |
+
"d8b6": 165,
|
| 168 |
+
"d1d4": 166,
|
| 169 |
+
"f6d7": 167,
|
| 170 |
+
"c4b3": 168,
|
| 171 |
+
"g8h7": 169,
|
| 172 |
+
"f2e3": 170,
|
| 173 |
+
"a8e8": 171,
|
| 174 |
+
"g8f8": 172,
|
| 175 |
+
"d2f3": 173,
|
| 176 |
+
"e1e2": 174,
|
| 177 |
+
"e5f6": 175,
|
| 178 |
+
"g1f1": 176,
|
| 179 |
+
"f3e4": 177,
|
| 180 |
+
"g4h5": 178,
|
| 181 |
+
"b6b5": 179,
|
| 182 |
+
"d7f6": 180,
|
| 183 |
+
"d1e1": 181,
|
| 184 |
+
"c3e2": 182,
|
| 185 |
+
"e8d8": 183,
|
| 186 |
+
"e2d3": 184,
|
| 187 |
+
"h8g8": 185,
|
| 188 |
+
"d8e8": 186,
|
| 189 |
+
"e1d1": 187,
|
| 190 |
+
"h5g6": 188,
|
| 191 |
+
"g5h4": 189,
|
| 192 |
+
"e5f4": 190,
|
| 193 |
+
"e6f5": 191,
|
| 194 |
+
"b3b4": 192,
|
| 195 |
+
"g1f2": 193,
|
| 196 |
+
"d8d6": 194,
|
| 197 |
+
"h1g1": 195,
|
| 198 |
+
"h6g5": 196,
|
| 199 |
+
"d3c4": 197,
|
| 200 |
+
"g8f7": 198,
|
| 201 |
+
"d2c3": 199,
|
| 202 |
+
"c3b5": 200,
|
| 203 |
+
"g7h6": 201,
|
| 204 |
+
"a3a4": 202,
|
| 205 |
+
"d2e4": 203,
|
| 206 |
+
"e3f4": 204,
|
| 207 |
+
"f6h5": 205,
|
| 208 |
+
"f8f7": 206,
|
| 209 |
+
"f7g6": 207,
|
| 210 |
+
"e4f5": 208,
|
| 211 |
+
"c6e7": 209,
|
| 212 |
+
"f4g3": 210,
|
| 213 |
+
"h7g6": 211,
|
| 214 |
+
"c1b1": 212,
|
| 215 |
+
"h3g4": 213,
|
| 216 |
+
"d6c5": 214,
|
| 217 |
+
"e8f8": 215,
|
| 218 |
+
"f1f2": 216,
|
| 219 |
+
"g4f5": 217,
|
| 220 |
+
"e5e6": 218,
|
| 221 |
+
"g5f4": 219,
|
| 222 |
+
"h4g3": 220,
|
| 223 |
+
"d5d6": 221,
|
| 224 |
+
"d1b3": 222,
|
| 225 |
+
"e5d6": 223,
|
| 226 |
+
"f5g6": 224,
|
| 227 |
+
"c8b8": 225,
|
| 228 |
+
"f3d2": 226,
|
| 229 |
+
"c6b4": 227,
|
| 230 |
+
"c4b5": 228,
|
| 231 |
+
"f2g3": 229,
|
| 232 |
+
"e7f5": 230,
|
| 233 |
+
"f4g5": 231,
|
| 234 |
+
"f3h4": 232,
|
| 235 |
+
"h2g3": 233,
|
| 236 |
+
"e1f1": 234,
|
| 237 |
+
"g6f5": 235,
|
| 238 |
+
"h5h6": 236,
|
| 239 |
+
"b5c4": 237,
|
| 240 |
+
"d7c5": 238,
|
| 241 |
+
"d4d3": 239,
|
| 242 |
+
"d5c6": 240,
|
| 243 |
+
"g2h3": 241,
|
| 244 |
+
"c7d6": 242,
|
| 245 |
+
"f6g5": 243,
|
| 246 |
+
"c5b6": 244,
|
| 247 |
+
"d8c8": 245,
|
| 248 |
+
"d2e3": 246,
|
| 249 |
+
"c2d3": 247,
|
| 250 |
+
"c4d3": 248,
|
| 251 |
+
"e4e3": 249,
|
| 252 |
+
"f3g4": 250,
|
| 253 |
+
"d7e6": 251,
|
| 254 |
+
"d4c3": 252,
|
| 255 |
+
"h4g5": 253,
|
| 256 |
+
"e4f3": 254,
|
| 257 |
+
"h5g4": 255,
|
| 258 |
+
"d1d8": 256,
|
| 259 |
+
"e4f6": 257,
|
| 260 |
+
"c6a5": 258,
|
| 261 |
+
"a6b5": 259,
|
| 262 |
+
"d1c1": 260,
|
| 263 |
+
"e7g6": 261,
|
| 264 |
+
"b4c5": 262,
|
| 265 |
+
"f3g3": 263,
|
| 266 |
+
"d5e6": 264,
|
| 267 |
+
"g3f4": 265,
|
| 268 |
+
"d8d1": 266,
|
| 269 |
+
"d3e2": 267,
|
| 270 |
+
"d7b6": 268,
|
| 271 |
+
"a4a3": 269,
|
| 272 |
+
"e8f7": 270,
|
| 273 |
+
"a3b4": 271,
|
| 274 |
+
"e5f3": 272,
|
| 275 |
+
"f5g4": 273,
|
| 276 |
+
"f5f6": 274,
|
| 277 |
+
"d4c6": 275,
|
| 278 |
+
"b3c4": 276,
|
| 279 |
+
"e2g3": 277,
|
| 280 |
+
"h4h3": 278,
|
| 281 |
+
"e8d7": 279,
|
| 282 |
+
"b6c5": 280,
|
| 283 |
+
"f4f3": 281,
|
| 284 |
+
"d6e7": 282,
|
| 285 |
+
"d2c4": 283,
|
| 286 |
+
"g5g6": 284,
|
| 287 |
+
"d1h5": 285,
|
| 288 |
+
"d8a5": 286,
|
| 289 |
+
"c5b4": 287,
|
| 290 |
+
"a4b5": 288,
|
| 291 |
+
"c7b6": 289,
|
| 292 |
+
"f4e3": 290,
|
| 293 |
+
"a5a6": 291,
|
| 294 |
+
"b5a4": 292,
|
| 295 |
+
"e2d2": 293,
|
| 296 |
+
"c2b3": 294,
|
| 297 |
+
"c5c6": 295,
|
| 298 |
+
"e5c6": 296,
|
| 299 |
+
"f5e6": 297,
|
| 300 |
+
"a5b4": 298,
|
| 301 |
+
"f6g6": 299,
|
| 302 |
+
"e7d7": 300,
|
| 303 |
+
"g4g3": 301,
|
| 304 |
+
"d6d7": 302,
|
| 305 |
+
"d3c2": 303,
|
| 306 |
+
"e7g5": 304,
|
| 307 |
+
"d3d2": 305,
|
| 308 |
+
"c5d6": 306,
|
| 309 |
+
"d4f3": 307,
|
| 310 |
+
"c8c7": 308,
|
| 311 |
+
"c4c3": 309,
|
| 312 |
+
"a1f1": 310,
|
| 313 |
+
"e2f4": 311,
|
| 314 |
+
"f8g8": 312,
|
| 315 |
+
"c1c2": 313,
|
| 316 |
+
"a8f8": 314,
|
| 317 |
+
"d8d4": 315,
|
| 318 |
+
"g6h5": 316,
|
| 319 |
+
"d4e3": 317,
|
| 320 |
+
"c3a4": 318,
|
| 321 |
+
"c6b5": 319,
|
| 322 |
+
"a4b3": 320,
|
| 323 |
+
"e4d3": 321,
|
| 324 |
+
"f1g1": 322,
|
| 325 |
+
"f8c8": 323,
|
| 326 |
+
"b4b3": 324,
|
| 327 |
+
"g3h4": 325,
|
| 328 |
+
"e3d2": 326,
|
| 329 |
+
"c3b4": 327,
|
| 330 |
+
"e7c5": 328,
|
| 331 |
+
"d1d5": 329,
|
| 332 |
+
"h6g7": 330,
|
| 333 |
+
"f6e7": 331,
|
| 334 |
+
"f3e2": 332,
|
| 335 |
+
"d5f6": 333,
|
| 336 |
+
"d2b3": 334,
|
| 337 |
+
"b5b6": 335,
|
| 338 |
+
"d7e7": 336,
|
| 339 |
+
"d7c7": 337,
|
| 340 |
+
"h1h2": 338,
|
| 341 |
+
"e6e7": 339,
|
| 342 |
+
"a5b6": 340,
|
| 343 |
+
"c8d8": 341,
|
| 344 |
+
"f7e7": 342,
|
| 345 |
+
"e3e2": 343,
|
| 346 |
+
"e1d2": 344,
|
| 347 |
+
"f3e3": 345,
|
| 348 |
+
"d2e2": 346,
|
| 349 |
+
"e7f7": 347,
|
| 350 |
+
"h8h7": 348,
|
| 351 |
+
"c6c7": 349,
|
| 352 |
+
"a2b3": 350,
|
| 353 |
+
"e7d5": 351,
|
| 354 |
+
"e1e3": 352,
|
| 355 |
+
"b7a6": 353,
|
| 356 |
+
"e5c4": 354,
|
| 357 |
+
"c1d1": 355,
|
| 358 |
+
"f1c1": 356,
|
| 359 |
+
"b4a5": 357,
|
| 360 |
+
"g5e7": 358,
|
| 361 |
+
"h1e1": 359,
|
| 362 |
+
"b3c2": 360,
|
| 363 |
+
"e4c3": 361,
|
| 364 |
+
"e2f2": 362,
|
| 365 |
+
"e6d7": 363,
|
| 366 |
+
"d2c2": 364,
|
| 367 |
+
"g5h6": 365,
|
| 368 |
+
"f6f7": 366,
|
| 369 |
+
"h8f8": 367,
|
| 370 |
+
"b2a3": 368,
|
| 371 |
+
"e5d7": 369,
|
| 372 |
+
"f3f2": 370,
|
| 373 |
+
"d5c3": 371,
|
| 374 |
+
"h6h7": 372,
|
| 375 |
+
"c8a6": 373,
|
| 376 |
+
"f6g7": 374,
|
| 377 |
+
"g7f8": 375,
|
| 378 |
+
"a3a2": 376,
|
| 379 |
+
"h8e8": 377,
|
| 380 |
+
"e4d6": 378,
|
| 381 |
+
"d8h4": 379,
|
| 382 |
+
"e2g4": 380,
|
| 383 |
+
"d1g4": 381,
|
| 384 |
+
"f2e2": 382,
|
| 385 |
+
"d6c7": 383,
|
| 386 |
+
"d1d7": 384,
|
| 387 |
+
"c3c2": 385,
|
| 388 |
+
"a6a7": 386,
|
| 389 |
+
"h7h8": 387,
|
| 390 |
+
"f1f3": 388,
|
| 391 |
+
"b6c7": 389,
|
| 392 |
+
"e2d4": 390,
|
| 393 |
+
"e2c4": 391,
|
| 394 |
+
"e5d3": 392,
|
| 395 |
+
"f7g7": 393,
|
| 396 |
+
"e7f8": 394,
|
| 397 |
+
"e7d8": 395,
|
| 398 |
+
"d8g5": 396,
|
| 399 |
+
"d1a4": 397,
|
| 400 |
+
"e4c5": 398,
|
| 401 |
+
"a7b6": 399,
|
| 402 |
+
"d3f5": 400,
|
| 403 |
+
"b6b7": 401,
|
| 404 |
+
"c7d7": 402,
|
| 405 |
+
"e1f2": 403,
|
| 406 |
+
"e3f3": 404,
|
| 407 |
+
"e3c5": 405,
|
| 408 |
+
"c4e6": 406,
|
| 409 |
+
"f6e6": 407,
|
| 410 |
+
"g7e5": 408,
|
| 411 |
+
"c7b7": 409,
|
| 412 |
+
"g5e3": 410,
|
| 413 |
+
"e3f2": 411,
|
| 414 |
+
"e6f7": 412,
|
| 415 |
+
"d4f5": 413,
|
| 416 |
+
"g6g7": 414,
|
| 417 |
+
"d8f8": 415,
|
| 418 |
+
"f4d6": 416,
|
| 419 |
+
"g5e6": 417,
|
| 420 |
+
"e4g5": 418,
|
| 421 |
+
"g3f3": 419,
|
| 422 |
+
"f8f6": 420,
|
| 423 |
+
"h3h2": 421,
|
| 424 |
+
"h2h1": 422,
|
| 425 |
+
"e1e4": 423,
|
| 426 |
+
"e8e1": 424,
|
| 427 |
+
"d5f4": 425,
|
| 428 |
+
"e8e6": 426,
|
| 429 |
+
"g7g8": 427,
|
| 430 |
+
"e7c6": 428,
|
| 431 |
+
"b8a6": 429,
|
| 432 |
+
"d8d2": 430,
|
| 433 |
+
"e1e5": 431,
|
| 434 |
+
"d1f1": 432,
|
| 435 |
+
"e5g4": 433,
|
| 436 |
+
"e3d3": 434,
|
| 437 |
+
"d3e3": 435,
|
| 438 |
+
"e3g5": 436,
|
| 439 |
+
"e1e8": 437,
|
| 440 |
+
"e5g6": 438,
|
| 441 |
+
"b7d5": 439,
|
| 442 |
+
"d6f4": 440,
|
| 443 |
+
"f5d3": 441,
|
| 444 |
+
"b3a4": 442,
|
| 445 |
+
"e7e8": 443,
|
| 446 |
+
"h1f1": 444,
|
| 447 |
+
"g7f7": 445,
|
| 448 |
+
"b3b2": 446,
|
| 449 |
+
"g6f6": 447,
|
| 450 |
+
"g8h6": 448,
|
| 451 |
+
"d1d6": 449,
|
| 452 |
+
"e4g3": 450,
|
| 453 |
+
"f2g2": 451,
|
| 454 |
+
"e2d1": 452,
|
| 455 |
+
"c2d2": 453,
|
| 456 |
+
"g4h3": 454,
|
| 457 |
+
"d7d8": 455,
|
| 458 |
+
"a2a1": 456,
|
| 459 |
+
"f7f8": 457,
|
| 460 |
+
"g3g2": 458,
|
| 461 |
+
"h3g2": 459,
|
| 462 |
+
"c2b2": 460,
|
| 463 |
+
"g2f1": 461,
|
| 464 |
+
"e1e7": 462,
|
| 465 |
+
"d7e8": 463,
|
| 466 |
+
"b5d7": 464,
|
| 467 |
+
"e6f6": 465,
|
| 468 |
+
"e6d6": 466,
|
| 469 |
+
"g6f7": 467,
|
| 470 |
+
"b6a5": 468,
|
| 471 |
+
"b1c1": 469,
|
| 472 |
+
"d6c6": 470,
|
| 473 |
+
"d3b5": 471,
|
| 474 |
+
"g5f3": 472,
|
| 475 |
+
"d2f4": 473,
|
| 476 |
+
"c5e3": 474,
|
| 477 |
+
"f3g2": 475,
|
| 478 |
+
"b8c8": 476,
|
| 479 |
+
"d3c3": 477,
|
| 480 |
+
"g3f2": 478,
|
| 481 |
+
"a8a7": 479,
|
| 482 |
+
"e8e5": 480,
|
| 483 |
+
"b8b7": 481,
|
| 484 |
+
"c4f7": 482,
|
| 485 |
+
"d5e7": 483,
|
| 486 |
+
"b1a3": 484,
|
| 487 |
+
"f2f1": 485,
|
| 488 |
+
"g4e2": 486,
|
| 489 |
+
"d6e6": 487,
|
| 490 |
+
"c7c8": 488,
|
| 491 |
+
"a7a8": 489,
|
| 492 |
+
"h1d1": 490,
|
| 493 |
+
"e2f1": 491,
|
| 494 |
+
"h8d8": 492,
|
| 495 |
+
"e4d2": 493,
|
| 496 |
+
"e7h4": 494,
|
| 497 |
+
"g4e6": 495,
|
| 498 |
+
"g2g1": 496,
|
| 499 |
+
"d8d3": 497,
|
| 500 |
+
"g2f2": 498,
|
| 501 |
+
"d5e3": 499,
|
| 502 |
+
"d2d1": 500,
|
| 503 |
+
"g4e3": 501,
|
| 504 |
+
"e2e1": 502,
|
| 505 |
+
"b7e4": 503,
|
| 506 |
+
"d7b5": 504,
|
| 507 |
+
"a1a2": 505,
|
| 508 |
+
"d4e6": 506,
|
| 509 |
+
"e7b4": 507,
|
| 510 |
+
"b1b2": 508,
|
| 511 |
+
"h8g7": 509,
|
| 512 |
+
"h7g8": 510,
|
| 513 |
+
"d3g6": 511,
|
| 514 |
+
"g4f6": 512,
|
| 515 |
+
"e2c3": 513,
|
| 516 |
+
"h5f4": 514,
|
| 517 |
+
"g7h7": 515,
|
| 518 |
+
"e8e2": 516,
|
| 519 |
+
"c6d7": 517,
|
| 520 |
+
"d7f5": 518,
|
| 521 |
+
"f3h2": 519,
|
| 522 |
+
"c4e5": 520,
|
| 523 |
+
"d4e2": 521,
|
| 524 |
+
"g5e4": 522,
|
| 525 |
+
"h7g7": 523,
|
| 526 |
+
"h1g2": 524,
|
| 527 |
+
"e1e6": 525,
|
| 528 |
+
"b5d6": 526,
|
| 529 |
+
"g5f7": 527,
|
| 530 |
+
"h2g2": 528,
|
| 531 |
+
"c2c1": 529,
|
| 532 |
+
"h2g1": 530,
|
| 533 |
+
"g4e5": 531,
|
| 534 |
+
"e6c4": 532,
|
| 535 |
+
"e2b5": 533,
|
| 536 |
+
"d2g5": 534,
|
| 537 |
+
"c5e4": 535,
|
| 538 |
+
"f4g4": 536,
|
| 539 |
+
"b7c8": 537,
|
| 540 |
+
"b8a8": 538,
|
| 541 |
+
"e2h5": 539,
|
| 542 |
+
"f7e8": 540,
|
| 543 |
+
"h5f3": 541,
|
| 544 |
+
"f4e4": 542,
|
| 545 |
+
"c1a3": 543,
|
| 546 |
+
"d5e5": 544,
|
| 547 |
+
"b2a2": 545,
|
| 548 |
+
"c1h6": 546,
|
| 549 |
+
"d5d8": 547,
|
| 550 |
+
"b7b8": 548,
|
| 551 |
+
"e4f4": 549,
|
| 552 |
+
"f7g8": 550,
|
| 553 |
+
"d2e1": 551,
|
| 554 |
+
"b4d2": 552,
|
| 555 |
+
"a5c4": 553,
|
| 556 |
+
"e3h6": 554,
|
| 557 |
+
"h4f5": 555,
|
| 558 |
+
"g3f5": 556,
|
| 559 |
+
"g4f4": 557,
|
| 560 |
+
"e8e4": 558,
|
| 561 |
+
"g4h4": 559,
|
| 562 |
+
"g3h3": 560,
|
| 563 |
+
"d7c8": 561,
|
| 564 |
+
"b1a1": 562,
|
| 565 |
+
"e5d5": 563,
|
| 566 |
+
"c2e4": 564,
|
| 567 |
+
"e5f5": 565,
|
| 568 |
+
"d4e4": 566,
|
| 569 |
+
"g7d4": 567,
|
| 570 |
+
"b2b1": 568,
|
| 571 |
+
"f5g5": 569,
|
| 572 |
+
"c8c2": 570,
|
| 573 |
+
"f5e5": 571,
|
| 574 |
+
"b5d3": 572,
|
| 575 |
+
"b2d4": 573,
|
| 576 |
+
"f6d4": 574,
|
| 577 |
+
"g5f5": 575,
|
| 578 |
+
"f6e8": 576,
|
| 579 |
+
"c4e2": 577,
|
| 580 |
+
"g2h2": 578,
|
| 581 |
+
"e6g4": 579,
|
| 582 |
+
"b6c4": 580,
|
| 583 |
+
"d5c5": 581,
|
| 584 |
+
"e4d4": 582,
|
| 585 |
+
"d4c4": 583,
|
| 586 |
+
"d2b4": 584,
|
| 587 |
+
"b7a7": 585,
|
| 588 |
+
"b6c6": 586,
|
| 589 |
+
"f5d4": 587,
|
| 590 |
+
"f8f5": 588,
|
| 591 |
+
"c7e5": 589,
|
| 592 |
+
"c3d2": 590,
|
| 593 |
+
"g6h6": 591,
|
| 594 |
+
"d7f8": 592,
|
| 595 |
+
"d4b5": 593,
|
| 596 |
+
"d2f1": 594,
|
| 597 |
+
"g6f4": 595,
|
| 598 |
+
"d7g4": 596,
|
| 599 |
+
"g7h8": 597,
|
| 600 |
+
"d5b6": 598,
|
| 601 |
+
"c1c7": 599,
|
| 602 |
+
"c5d3": 600,
|
| 603 |
+
"c6b7": 601,
|
| 604 |
+
"f8b8": 602,
|
| 605 |
+
"h5g5": 603,
|
| 606 |
+
"c6b6": 604,
|
| 607 |
+
"b2c2": 605,
|
| 608 |
+
"h4g4": 606,
|
| 609 |
+
"b3d5": 607,
|
| 610 |
+
"b7c7": 608,
|
| 611 |
+
"f6h7": 609,
|
| 612 |
+
"g2e4": 610,
|
| 613 |
+
"c7d8": 611,
|
| 614 |
+
"h3g3": 612,
|
| 615 |
+
"f3d5": 613,
|
| 616 |
+
"b6d5": 614,
|
| 617 |
+
"c5e7": 615,
|
| 618 |
+
"c4e3": 616,
|
| 619 |
+
"d2c1": 617,
|
| 620 |
+
"b6d4": 618,
|
| 621 |
+
"b7f3": 619,
|
| 622 |
+
"b5c3": 620,
|
| 623 |
+
"d6g3": 621,
|
| 624 |
+
"c6d6": 622,
|
| 625 |
+
"e5f7": 623,
|
| 626 |
+
"d6b4": 624,
|
| 627 |
+
"h6g6": 625,
|
| 628 |
+
"g3e4": 626,
|
| 629 |
+
"c3b2": 627,
|
| 630 |
+
"d8b8": 628,
|
| 631 |
+
"f5e3": 629,
|
| 632 |
+
"c5e6": 630,
|
| 633 |
+
"c4d6": 631,
|
| 634 |
+
"c3b3": 632,
|
| 635 |
+
"g5h5": 633,
|
| 636 |
+
"b4d3": 634,
|
| 637 |
+
"g6e5": 635,
|
| 638 |
+
"h5f6": 636,
|
| 639 |
+
"g1h3": 637,
|
| 640 |
+
"b4c6": 638,
|
| 641 |
+
"a4c5": 639,
|
| 642 |
+
"g6h7": 640,
|
| 643 |
+
"c3d3": 641,
|
| 644 |
+
"f1f4": 642,
|
| 645 |
+
"g3e5": 643,
|
| 646 |
+
"d5c7": 644,
|
| 647 |
+
"e8e3": 645,
|
| 648 |
+
"b4d6": 646,
|
| 649 |
+
"d4b3": 647,
|
| 650 |
+
"d4c2": 648,
|
| 651 |
+
"c5f2": 649,
|
| 652 |
+
"h4f6": 650,
|
| 653 |
+
"b3c5": 651,
|
| 654 |
+
"b8b2": 652,
|
| 655 |
+
"b2e5": 653,
|
| 656 |
+
"a6b7": 654,
|
| 657 |
+
"f2e1": 655,
|
| 658 |
+
"f1b1": 656,
|
| 659 |
+
"d5b4": 657,
|
| 660 |
+
"b3c3": 658,
|
| 661 |
+
"d1b1": 659,
|
| 662 |
+
"b2c1": 660,
|
| 663 |
+
"c8c1": 661,
|
| 664 |
+
"d1g1": 662,
|
| 665 |
+
"g3h2": 663,
|
| 666 |
+
"b4a3": 664,
|
| 667 |
+
"f3e1": 665,
|
| 668 |
+
"b8d8": 666,
|
| 669 |
+
"c1c3": 667,
|
| 670 |
+
"c8h3": 668,
|
| 671 |
+
"b5c7": 669,
|
| 672 |
+
"c7e7": 670,
|
| 673 |
+
"b5a6": 671,
|
| 674 |
+
"c8c6": 672,
|
| 675 |
+
"c4d4": 673,
|
| 676 |
+
"d2h6": 674,
|
| 677 |
+
"c8c3": 675,
|
| 678 |
+
"c8e8": 676,
|
| 679 |
+
"f5e7": 677,
|
| 680 |
+
"e4f2": 678,
|
| 681 |
+
"f3h5": 679,
|
| 682 |
+
"a5c7": 680,
|
| 683 |
+
"b1b7": 681,
|
| 684 |
+
"d8a8": 682,
|
| 685 |
+
"c8c4": 683,
|
| 686 |
+
"c2e2": 684,
|
| 687 |
+
"c1e1": 685,
|
| 688 |
+
"f4d5": 686,
|
| 689 |
+
"b6b2": 687,
|
| 690 |
+
"d1a1": 688,
|
| 691 |
+
"c4b4": 689,
|
| 692 |
+
"g4d7": 690,
|
| 693 |
+
"d3h7": 691,
|
| 694 |
+
"f5d6": 692,
|
| 695 |
+
"g6e4": 693,
|
| 696 |
+
"h6f5": 694,
|
| 697 |
+
"b3d4": 695,
|
| 698 |
+
"c2d1": 696,
|
| 699 |
+
"a2b2": 697,
|
| 700 |
+
"b2f6": 698,
|
| 701 |
+
"b1d1": 699,
|
| 702 |
+
"b4e7": 700,
|
| 703 |
+
"c3d1": 701,
|
| 704 |
+
"f1f8": 702,
|
| 705 |
+
"d8g8": 703,
|
| 706 |
+
"f1f7": 704,
|
| 707 |
+
"b6a6": 705,
|
| 708 |
+
"c5b5": 706,
|
| 709 |
+
"d4f6": 707,
|
| 710 |
+
"c5d5": 708,
|
| 711 |
+
"d4d1": 709,
|
| 712 |
+
"d5a5": 710,
|
| 713 |
+
"c2b1": 711,
|
| 714 |
+
"c4a2": 712,
|
| 715 |
+
"f4e6": 713,
|
| 716 |
+
"a3b2": 714,
|
| 717 |
+
"h4f3": 715,
|
| 718 |
+
"f8f4": 716,
|
| 719 |
+
"f2g1": 717,
|
| 720 |
+
"f4d2": 718,
|
| 721 |
+
"f3h3": 719,
|
| 722 |
+
"b7a8": 720,
|
| 723 |
+
"e3b6": 721,
|
| 724 |
+
"f1f5": 722,
|
| 725 |
+
"g5d2": 723,
|
| 726 |
+
"c1c8": 724,
|
| 727 |
+
"c6d8": 725,
|
| 728 |
+
"b4c2": 726,
|
| 729 |
+
"f4d3": 727,
|
| 730 |
+
"g2d5": 728,
|
| 731 |
+
"a7b7": 729,
|
| 732 |
+
"c7b8": 730,
|
| 733 |
+
"h5g3": 731,
|
| 734 |
+
"f3d1": 732,
|
| 735 |
+
"f1f6": 733,
|
| 736 |
+
"e7c7": 734,
|
| 737 |
+
"d5f3": 735,
|
| 738 |
+
"b3a3": 736,
|
| 739 |
+
"b1a2": 737,
|
| 740 |
+
"c6e4": 738,
|
| 741 |
+
"h4g6": 739,
|
| 742 |
+
"d7f7": 740,
|
| 743 |
+
"d2f2": 741,
|
| 744 |
+
"g2h1": 742,
|
| 745 |
+
"g4f2": 743,
|
| 746 |
+
"e2c2": 744,
|
| 747 |
+
"d3f3": 745,
|
| 748 |
+
"c5d7": 746,
|
| 749 |
+
"b2a1": 747,
|
| 750 |
+
"a5c6": 748,
|
| 751 |
+
"a4c2": 749,
|
| 752 |
+
"h4e7": 750,
|
| 753 |
+
"f8a8": 751,
|
| 754 |
+
"e3g3": 752,
|
| 755 |
+
"c1c6": 753,
|
| 756 |
+
"a5b5": 754,
|
| 757 |
+
"f4c7": 755,
|
| 758 |
+
"f6h4": 756,
|
| 759 |
+
"f8h6": 757,
|
| 760 |
+
"d4d2": 758,
|
| 761 |
+
"d7b7": 759,
|
| 762 |
+
"e5g3": 760,
|
| 763 |
+
"b5d4": 761,
|
| 764 |
+
"b5e2": 762,
|
| 765 |
+
"a8g8": 763,
|
| 766 |
+
"f3f6": 764,
|
| 767 |
+
"f8f2": 765,
|
| 768 |
+
"d2b2": 766,
|
| 769 |
+
"b1c2": 767,
|
| 770 |
+
"h2g4": 768,
|
| 771 |
+
"f5c2": 769,
|
| 772 |
+
"e5g7": 770,
|
| 773 |
+
"f8f1": 771,
|
| 774 |
+
"a1g1": 772,
|
| 775 |
+
"a8a6": 773,
|
| 776 |
+
"f8f3": 774,
|
| 777 |
+
"f1a1": 775,
|
| 778 |
+
"b5c5": 776,
|
| 779 |
+
"f8h8": 777,
|
| 780 |
+
"b3b7": 778,
|
| 781 |
+
"g7c3": 779,
|
| 782 |
+
"c8c5": 780,
|
| 783 |
+
"a4b4": 781,
|
| 784 |
+
"a6c5": 782,
|
| 785 |
+
"b8c7": 783,
|
| 786 |
+
"e4e2": 784,
|
| 787 |
+
"f4e2": 785,
|
| 788 |
+
"b4c4": 786,
|
| 789 |
+
"e4c6": 787,
|
| 790 |
+
"f4h6": 788,
|
| 791 |
+
"b8a7": 789,
|
| 792 |
+
"d6e4": 790,
|
| 793 |
+
"b3a2": 791,
|
| 794 |
+
"b5a5": 792,
|
| 795 |
+
"e4g6": 793,
|
| 796 |
+
"d7h3": 794,
|
| 797 |
+
"f3c6": 795,
|
| 798 |
+
"f3d3": 796,
|
| 799 |
+
"a3b3": 797,
|
| 800 |
+
"f6b2": 798,
|
| 801 |
+
"e2e5": 799,
|
| 802 |
+
"d7a4": 800,
|
| 803 |
+
"d6f5": 801,
|
| 804 |
+
"b4d5": 802,
|
| 805 |
+
"f3b7": 803,
|
| 806 |
+
"b6d7": 804,
|
| 807 |
+
"d5d7": 805,
|
| 808 |
+
"c3e5": 806,
|
| 809 |
+
"f6f3": 807,
|
| 810 |
+
"b3e6": 808,
|
| 811 |
+
"c1c5": 809,
|
| 812 |
+
"c2f5": 810,
|
| 813 |
+
"d5b7": 811,
|
| 814 |
+
"c6b8": 812,
|
| 815 |
+
"d5b3": 813,
|
| 816 |
+
"e6g6": 814,
|
| 817 |
+
"h5e2": 815,
|
| 818 |
+
"e7g7": 816,
|
| 819 |
+
"e5c3": 817,
|
| 820 |
+
"a4c3": 818,
|
| 821 |
+
"a6b6": 819,
|
| 822 |
+
"b1e1": 820,
|
| 823 |
+
"a3c4": 821,
|
| 824 |
+
"d1h1": 822,
|
| 825 |
+
"e3f5": 823,
|
| 826 |
+
"e6h3": 824,
|
| 827 |
+
"c8f8": 825,
|
| 828 |
+
"g3h5": 826,
|
| 829 |
+
"c1c4": 827,
|
| 830 |
+
"g5d8": 828,
|
| 831 |
+
"b4a4": 829,
|
| 832 |
+
"g6e7": 830,
|
| 833 |
+
"f5h4": 831,
|
| 834 |
+
"f6d8": 832,
|
| 835 |
+
"f5d7": 833,
|
| 836 |
+
"d4b2": 834,
|
| 837 |
+
"g3e2": 835,
|
| 838 |
+
"c4d2": 836,
|
| 839 |
+
"a6c4": 837,
|
| 840 |
+
"a1a3": 838,
|
| 841 |
+
"b8e8": 839,
|
| 842 |
+
"f3f7": 840,
|
| 843 |
+
"f5g3": 841,
|
| 844 |
+
"e5e7": 842,
|
| 845 |
+
"a1a7": 843,
|
| 846 |
+
"f1h1": 844,
|
| 847 |
+
"b1b3": 845,
|
| 848 |
+
"f1h3": 846,
|
| 849 |
+
"d3f4": 847,
|
| 850 |
+
"c7f4": 848,
|
| 851 |
+
"d8h8": 849,
|
| 852 |
+
"a4c6": 850,
|
| 853 |
+
"b8b6": 851,
|
| 854 |
+
"g4h6": 852,
|
| 855 |
+
"d5f7": 853,
|
| 856 |
+
"e4g4": 854,
|
| 857 |
+
"e6f4": 855,
|
| 858 |
+
"f5h6": 856,
|
| 859 |
+
"a5c3": 857,
|
| 860 |
+
"c6f3": 858,
|
| 861 |
+
"e3d5": 859,
|
| 862 |
+
"d4b6": 860,
|
| 863 |
+
"d6f6": 861,
|
| 864 |
+
"e4c2": 862,
|
| 865 |
+
"a2b1": 863,
|
| 866 |
+
"b6a7": 864,
|
| 867 |
+
"c8a8": 865,
|
| 868 |
+
"c2a2": 866,
|
| 869 |
+
"f6h6": 867,
|
| 870 |
+
"f6c3": 868,
|
| 871 |
+
"e6b3": 869,
|
| 872 |
+
"g4d1": 870,
|
| 873 |
+
"b6e3": 871,
|
| 874 |
+
"c7f7": 872,
|
| 875 |
+
"a8a2": 873,
|
| 876 |
+
"c7a7": 874,
|
| 877 |
+
"d3a6": 875,
|
| 878 |
+
"e5g5": 876,
|
| 879 |
+
"h6g4": 877,
|
| 880 |
+
"e4b7": 878,
|
| 881 |
+
"f6f4": 879,
|
| 882 |
+
"d6d8": 880,
|
| 883 |
+
"a5b3": 881,
|
| 884 |
+
"d3e5": 882,
|
| 885 |
+
"f3f5": 883,
|
| 886 |
+
"d2a5": 884,
|
| 887 |
+
"e2e6": 885,
|
| 888 |
+
"b6d8": 886,
|
| 889 |
+
"d6h2": 887,
|
| 890 |
+
"h4f2": 888,
|
| 891 |
+
"h8c8": 889,
|
| 892 |
+
"f6g8": 890,
|
| 893 |
+
"e3a7": 891,
|
| 894 |
+
"c1a1": 892,
|
| 895 |
+
"f4h5": 893,
|
| 896 |
+
"h6e3": 894,
|
| 897 |
+
"d3b1": 895,
|
| 898 |
+
"e1b1": 896,
|
| 899 |
+
"c1f1": 897,
|
| 900 |
+
"d3g3": 898,
|
| 901 |
+
"c2a4": 899,
|
| 902 |
+
"c7d5": 900,
|
| 903 |
+
"g3d6": 901,
|
| 904 |
+
"d6c4": 902,
|
| 905 |
+
"e6d4": 903,
|
| 906 |
+
"e5c7": 904,
|
| 907 |
+
"d4f2": 905,
|
| 908 |
+
"d6b6": 906,
|
| 909 |
+
"h6f4": 907,
|
| 910 |
+
"c5a7": 908,
|
| 911 |
+
"h3g5": 909,
|
| 912 |
+
"b4b2": 910,
|
| 913 |
+
"h3f4": 911,
|
| 914 |
+
"h7g5": 912,
|
| 915 |
+
"f4h3": 913,
|
| 916 |
+
"c5b3": 914,
|
| 917 |
+
"d4g7": 915,
|
| 918 |
+
"d3b3": 916,
|
| 919 |
+
"c4b6": 917,
|
| 920 |
+
"g7b2": 918,
|
| 921 |
+
"g6h4": 919,
|
| 922 |
+
"f4g6": 920,
|
| 923 |
+
"e7e4": 921,
|
| 924 |
+
"e2g2": 922,
|
| 925 |
+
"h5f7": 923,
|
| 926 |
+
"e5b2": 924,
|
| 927 |
+
"a8a1": 925,
|
| 928 |
+
"g6d3": 926,
|
| 929 |
+
"g5h3": 927,
|
| 930 |
+
"a5c5": 928,
|
| 931 |
+
"d3f1": 929,
|
| 932 |
+
"c2f2": 930,
|
| 933 |
+
"f1g3": 931,
|
| 934 |
+
"b3d2": 932,
|
| 935 |
+
"d3c5": 933,
|
| 936 |
+
"f4h2": 934,
|
| 937 |
+
"c7a5": 935,
|
| 938 |
+
"b6b4": 936,
|
| 939 |
+
"d4f4": 937,
|
| 940 |
+
"a6b4": 938,
|
| 941 |
+
"b7g2": 939,
|
| 942 |
+
"a1a8": 940,
|
| 943 |
+
"a1a4": 941,
|
| 944 |
+
"h8h6": 942,
|
| 945 |
+
"d5f5": 943,
|
| 946 |
+
"d3d1": 944,
|
| 947 |
+
"h1h3": 945,
|
| 948 |
+
"e3g4": 946,
|
| 949 |
+
"a3c5": 947,
|
| 950 |
+
"b5b7": 948,
|
| 951 |
+
"b2g7": 949,
|
| 952 |
+
"c2e3": 950,
|
| 953 |
+
"e8b8": 951,
|
| 954 |
+
"c2a1": 952,
|
| 955 |
+
"a6c7": 953,
|
| 956 |
+
"d2d5": 954,
|
| 957 |
+
"f5h5": 955,
|
| 958 |
+
"h4f4": 956,
|
| 959 |
+
"a6d3": 957,
|
| 960 |
+
"e4g2": 958,
|
| 961 |
+
"g8g6": 959,
|
| 962 |
+
"c6a7": 960,
|
| 963 |
+
"c7a8": 961,
|
| 964 |
+
"e7b7": 962,
|
| 965 |
+
"a8a5": 963,
|
| 966 |
+
"c7e6": 964,
|
| 967 |
+
"e2b2": 965,
|
| 968 |
+
"f6d6": 966,
|
| 969 |
+
"g2c6": 967,
|
| 970 |
+
"c2g6": 968,
|
| 971 |
+
"e6g5": 969,
|
| 972 |
+
"f5h3": 970,
|
| 973 |
+
"h5e5": 971,
|
| 974 |
+
"f4f6": 972,
|
| 975 |
+
"a4c4": 973,
|
| 976 |
+
"e1a1": 974,
|
| 977 |
+
"e3c3": 975,
|
| 978 |
+
"a8h8": 976,
|
| 979 |
+
"c2d4": 977,
|
| 980 |
+
"a7c7": 978,
|
| 981 |
+
"g5g3": 979,
|
| 982 |
+
"f4h4": 980,
|
| 983 |
+
"h1c1": 981,
|
| 984 |
+
"b3d1": 982,
|
| 985 |
+
"c3f6": 983,
|
| 986 |
+
"d3d5": 984,
|
| 987 |
+
"d7d4": 985,
|
| 988 |
+
"a4b6": 986,
|
| 989 |
+
"b6d6": 987,
|
| 990 |
+
"e3c4": 988,
|
| 991 |
+
"f6f2": 989,
|
| 992 |
+
"b8b5": 990,
|
| 993 |
+
"a1h1": 991,
|
| 994 |
+
"a7b8": 992,
|
| 995 |
+
"e6c5": 993,
|
| 996 |
+
"e3c1": 994,
|
| 997 |
+
"e6a2": 995,
|
| 998 |
+
"e7a3": 996,
|
| 999 |
+
"c3b1": 997,
|
| 1000 |
+
"e5e3": 998,
|
| 1001 |
+
"d6f8": 999,
|
| 1002 |
+
"e3e5": 1000,
|
| 1003 |
+
"d7a7": 1001,
|
| 1004 |
+
"c3e3": 1002,
|
| 1005 |
+
"e5c5": 1003,
|
| 1006 |
+
"a1a6": 1004,
|
| 1007 |
+
"e5e2": 1005,
|
| 1008 |
+
"c5c7": 1006,
|
| 1009 |
+
"g3e3": 1007,
|
| 1010 |
+
"d4d8": 1008,
|
| 1011 |
+
"e4c4": 1009,
|
| 1012 |
+
"c3a3": 1010,
|
| 1013 |
+
"e6c6": 1011,
|
| 1014 |
+
"c4b2": 1012,
|
| 1015 |
+
"d5d3": 1013,
|
| 1016 |
+
"h6f7": 1014,
|
| 1017 |
+
"f4f2": 1015,
|
| 1018 |
+
"d2a2": 1016,
|
| 1019 |
+
"d4b4": 1017,
|
| 1020 |
+
"g1g3": 1018,
|
| 1021 |
+
"h5f5": 1019,
|
| 1022 |
+
"c4c2": 1020,
|
| 1023 |
+
"d5b5": 1021,
|
| 1024 |
+
"h3f5": 1022,
|
| 1025 |
+
"a8a4": 1023,
|
| 1026 |
+
"f7d7": 1024,
|
| 1027 |
+
"c7c4": 1025,
|
| 1028 |
+
"d6b7": 1026,
|
| 1029 |
+
"d6d4": 1027,
|
| 1030 |
+
"c4a6": 1028,
|
| 1031 |
+
"a3b5": 1029,
|
| 1032 |
+
"e7c8": 1030,
|
| 1033 |
+
"e2a6": 1031,
|
| 1034 |
+
"g4e4": 1032,
|
| 1035 |
+
"b3b5": 1033,
|
| 1036 |
+
"e3e1": 1034,
|
| 1037 |
+
"f5f3": 1035,
|
| 1038 |
+
"e6e8": 1036,
|
| 1039 |
+
"g5e5": 1037,
|
| 1040 |
+
"g4g6": 1038,
|
| 1041 |
+
"f2d2": 1039,
|
| 1042 |
+
"h5h7": 1040,
|
| 1043 |
+
"e4h4": 1041,
|
| 1044 |
+
"e6f8": 1042,
|
| 1045 |
+
"h8h5": 1043,
|
| 1046 |
+
"e4e6": 1044,
|
| 1047 |
+
"b8b4": 1045,
|
| 1048 |
+
"b7d7": 1046,
|
| 1049 |
+
"c3a2": 1047,
|
| 1050 |
+
"d5g2": 1048,
|
| 1051 |
+
"d4d6": 1049,
|
| 1052 |
+
"h2f3": 1050,
|
| 1053 |
+
"b1b4": 1051,
|
| 1054 |
+
"b3d3": 1052,
|
| 1055 |
+
"f2d4": 1053,
|
| 1056 |
+
"f5f7": 1054,
|
| 1057 |
+
"a2c2": 1055,
|
| 1058 |
+
"g6e6": 1056,
|
| 1059 |
+
"e1g3": 1057,
|
| 1060 |
+
"c7b5": 1058,
|
| 1061 |
+
"c5a4": 1059,
|
| 1062 |
+
"h3e6": 1060,
|
| 1063 |
+
"e5e8": 1061,
|
| 1064 |
+
"b8f8": 1062,
|
| 1065 |
+
"a3c2": 1063,
|
| 1066 |
+
"e7e2": 1064,
|
| 1067 |
+
"h6f8": 1065,
|
| 1068 |
+
"h1h5": 1066,
|
| 1069 |
+
"a8a3": 1067,
|
| 1070 |
+
"g3g5": 1068,
|
| 1071 |
+
"a8b7": 1069,
|
| 1072 |
+
"b1b5": 1070,
|
| 1073 |
+
"a3d6": 1071,
|
| 1074 |
+
"c4a5": 1072,
|
| 1075 |
+
"e8a8": 1073,
|
| 1076 |
+
"c7c3": 1074,
|
| 1077 |
+
"g2b7": 1075,
|
| 1078 |
+
"c6e6": 1076,
|
| 1079 |
+
"c6a6": 1077,
|
| 1080 |
+
"b8b3": 1078,
|
| 1081 |
+
"a5d8": 1079,
|
| 1082 |
+
"d2d8": 1080,
|
| 1083 |
+
"d5d2": 1081,
|
| 1084 |
+
"a1a5": 1082,
|
| 1085 |
+
"b2d2": 1083,
|
| 1086 |
+
"d6f7": 1084,
|
| 1087 |
+
"g1g7": 1085,
|
| 1088 |
+
"c7g3": 1086,
|
| 1089 |
+
"b3f7": 1087,
|
| 1090 |
+
"a5a2": 1088,
|
| 1091 |
+
"c5e5": 1089,
|
| 1092 |
+
"a1b2": 1090,
|
| 1093 |
+
"a5d2": 1091,
|
| 1094 |
+
"f3c3": 1092,
|
| 1095 |
+
"e6e4": 1093,
|
| 1096 |
+
"d5d1": 1094,
|
| 1097 |
+
"c5b7": 1095,
|
| 1098 |
+
"e8f6": 1096,
|
| 1099 |
+
"f4d4": 1097,
|
| 1100 |
+
"g4g7": 1098,
|
| 1101 |
+
"h3f3": 1099,
|
| 1102 |
+
"d4d7": 1100,
|
| 1103 |
+
"e2e7": 1101,
|
| 1104 |
+
"f7d5": 1102,
|
| 1105 |
+
"e8g6": 1103,
|
| 1106 |
+
"f7e5": 1104,
|
| 1107 |
+
"e5h5": 1105,
|
| 1108 |
+
"e5e1": 1106,
|
| 1109 |
+
"a3c3": 1107,
|
| 1110 |
+
"f8g6": 1108,
|
| 1111 |
+
"e7e3": 1109,
|
| 1112 |
+
"c4c7": 1110,
|
| 1113 |
+
"d2d6": 1111,
|
| 1114 |
+
"h4e4": 1112,
|
| 1115 |
+
"e8h8": 1113,
|
| 1116 |
+
"a6c6": 1114,
|
| 1117 |
+
"c5a5": 1115,
|
| 1118 |
+
"d7g7": 1116,
|
| 1119 |
+
"e3f1": 1117,
|
| 1120 |
+
"f7h7": 1118,
|
| 1121 |
+
"c6a4": 1119,
|
| 1122 |
+
"h1h4": 1120,
|
| 1123 |
+
"g6g4": 1121,
|
| 1124 |
+
"d4a4": 1122,
|
| 1125 |
+
"d6a3": 1123,
|
| 1126 |
+
"b8b1": 1124,
|
| 1127 |
+
"f3g1": 1125,
|
| 1128 |
+
"d2d7": 1126,
|
| 1129 |
+
"d6g6": 1127,
|
| 1130 |
+
"f2h4": 1128,
|
| 1131 |
+
"f5d5": 1129,
|
| 1132 |
+
"c6a8": 1130,
|
| 1133 |
+
"c3a5": 1131,
|
| 1134 |
+
"f8e6": 1132,
|
| 1135 |
+
"c4e4": 1133,
|
| 1136 |
+
"c7c2": 1134,
|
| 1137 |
+
"a4d7": 1135,
|
| 1138 |
+
"h5h3": 1136,
|
| 1139 |
+
"b7c5": 1137,
|
| 1140 |
+
"g5h7": 1138,
|
| 1141 |
+
"b7e7": 1139,
|
| 1142 |
+
"e1h1": 1140,
|
| 1143 |
+
"e2c1": 1141,
|
| 1144 |
+
"e6c7": 1142,
|
| 1145 |
+
"a6e2": 1143,
|
| 1146 |
+
"b1f1": 1144,
|
| 1147 |
+
"h1h7": 1145,
|
| 1148 |
+
"f2c2": 1146,
|
| 1149 |
+
"h8h4": 1147,
|
| 1150 |
+
"f1e3": 1148,
|
| 1151 |
+
"e4e1": 1149,
|
| 1152 |
+
"h4h6": 1150,
|
| 1153 |
+
"h7f6": 1151,
|
| 1154 |
+
"a2d5": 1152,
|
| 1155 |
+
"f2h2": 1153,
|
| 1156 |
+
"g6f8": 1154,
|
| 1157 |
+
"g5c1": 1155,
|
| 1158 |
+
"f5g7": 1156,
|
| 1159 |
+
"d2g2": 1157,
|
| 1160 |
+
"f5h7": 1158,
|
| 1161 |
+
"c6c4": 1159,
|
| 1162 |
+
"g8g2": 1160,
|
| 1163 |
+
"b4a6": 1161,
|
| 1164 |
+
"d6b5": 1162,
|
| 1165 |
+
"e7e1": 1163,
|
| 1166 |
+
"h8h3": 1164,
|
| 1167 |
+
"e6c8": 1165,
|
| 1168 |
+
"b4d4": 1166,
|
| 1169 |
+
"b5a7": 1167,
|
| 1170 |
+
"c5c3": 1168,
|
| 1171 |
+
"d4g4": 1169,
|
| 1172 |
+
"c4a4": 1170,
|
| 1173 |
+
"b6f2": 1171,
|
| 1174 |
+
"g8g5": 1172,
|
| 1175 |
+
"g5g2": 1173,
|
| 1176 |
+
"d7d1": 1174,
|
| 1177 |
+
"c4c6": 1175,
|
| 1178 |
+
"c3c1": 1176,
|
| 1179 |
+
"b1b8": 1177,
|
| 1180 |
+
"d6b8": 1178,
|
| 1181 |
+
"g1g4": 1179,
|
| 1182 |
+
"d3b2": 1180,
|
| 1183 |
+
"c5f8": 1181,
|
| 1184 |
+
"c5a6": 1182,
|
| 1185 |
+
"e4e7": 1183,
|
| 1186 |
+
"h1h6": 1184,
|
| 1187 |
+
"d3f2": 1185,
|
| 1188 |
+
"g8e8": 1186,
|
| 1189 |
+
"e3c2": 1187,
|
| 1190 |
+
"b6b3": 1188,
|
| 1191 |
+
"g4h2": 1189,
|
| 1192 |
+
"f7d6": 1190,
|
| 1193 |
+
"a4a2": 1191,
|
| 1194 |
+
"e2e8": 1192,
|
| 1195 |
+
"c2c7": 1193,
|
| 1196 |
+
"a2c4": 1194,
|
| 1197 |
+
"c4f1": 1195,
|
| 1198 |
+
"f7c7": 1196,
|
| 1199 |
+
"e3e6": 1197,
|
| 1200 |
+
"g3g6": 1198,
|
| 1201 |
+
"b4b6": 1199,
|
| 1202 |
+
"e8d6": 1200,
|
| 1203 |
+
"h4h2": 1201,
|
| 1204 |
+
"f2e4": 1202,
|
| 1205 |
+
"f7h8": 1203,
|
| 1206 |
+
"f8a3": 1204,
|
| 1207 |
+
"d5h5": 1205,
|
| 1208 |
+
"d1e3": 1206,
|
| 1209 |
+
"b5a3": 1207,
|
| 1210 |
+
"b2e2": 1208,
|
| 1211 |
+
"h5g7": 1209,
|
| 1212 |
+
"d3b4": 1210,
|
| 1213 |
+
"c5a3": 1211,
|
| 1214 |
+
"g1e1": 1212,
|
| 1215 |
+
"h6f6": 1213,
|
| 1216 |
+
"a3e7": 1214,
|
| 1217 |
+
"b1b6": 1215,
|
| 1218 |
+
"e3h3": 1216,
|
| 1219 |
+
"h3f2": 1217,
|
| 1220 |
+
"f4g2": 1218,
|
| 1221 |
+
"b2f2": 1219,
|
| 1222 |
+
"c3c5": 1220,
|
| 1223 |
+
"d4h4": 1221,
|
| 1224 |
+
"a5a3": 1222,
|
| 1225 |
+
"b6a4": 1223,
|
| 1226 |
+
"f6c6": 1224,
|
| 1227 |
+
"g8g4": 1225,
|
| 1228 |
+
"f4f7": 1226,
|
| 1229 |
+
"f3f1": 1227,
|
| 1230 |
+
"g7f5": 1228,
|
| 1231 |
+
"h8h2": 1229,
|
| 1232 |
+
"c3a1": 1230,
|
| 1233 |
+
"c3c7": 1231,
|
| 1234 |
+
"c2b4": 1232,
|
| 1235 |
+
"d6d2": 1233,
|
| 1236 |
+
"b4a2": 1234,
|
| 1237 |
+
"h8a8": 1235,
|
| 1238 |
+
"e5h2": 1236,
|
| 1239 |
+
"d7d3": 1237,
|
| 1240 |
+
"g3f1": 1238,
|
| 1241 |
+
"c6c8": 1239,
|
| 1242 |
+
"a4a7": 1240,
|
| 1243 |
+
"b3b6": 1241,
|
| 1244 |
+
"b2c4": 1242,
|
| 1245 |
+
"c6g2": 1243,
|
| 1246 |
+
"h1h8": 1244,
|
| 1247 |
+
"h1a1": 1245,
|
| 1248 |
+
"a5a7": 1246,
|
| 1249 |
+
"d5a2": 1247,
|
| 1250 |
+
"e6g7": 1248,
|
| 1251 |
+
"c2c5": 1249,
|
| 1252 |
+
"a7d7": 1250,
|
| 1253 |
+
"f4c1": 1251,
|
| 1254 |
+
"d3d6": 1252,
|
| 1255 |
+
"d7b8": 1253,
|
| 1256 |
+
"f6f8": 1254,
|
| 1257 |
+
"c3g7": 1255,
|
| 1258 |
+
"f7h5": 1256,
|
| 1259 |
+
"a5d5": 1257,
|
| 1260 |
+
"g3g7": 1258,
|
| 1261 |
+
"g1d1": 1259,
|
| 1262 |
+
"e6e2": 1260,
|
| 1263 |
+
"h8b8": 1261,
|
| 1264 |
+
"c4a3": 1262,
|
| 1265 |
+
"g6c2": 1263,
|
| 1266 |
+
"d7d2": 1264,
|
| 1267 |
+
"d3d7": 1265,
|
| 1268 |
+
"c3f3": 1266,
|
| 1269 |
+
"e1f3": 1267,
|
| 1270 |
+
"d6d1": 1268,
|
| 1271 |
+
"e4h7": 1269,
|
| 1272 |
+
"g5g7": 1270,
|
| 1273 |
+
"g4g2": 1271,
|
| 1274 |
+
"a7b5": 1272,
|
| 1275 |
+
"a3a1": 1273,
|
| 1276 |
+
"a4d1": 1274,
|
| 1277 |
+
"b6e6": 1275,
|
| 1278 |
+
"g3c7": 1276,
|
| 1279 |
+
"g1g5": 1277,
|
| 1280 |
+
"d4a7": 1278,
|
| 1281 |
+
"a5e5": 1279,
|
| 1282 |
+
"f2g4": 1280,
|
| 1283 |
+
"d6c8": 1281,
|
| 1284 |
+
"a6a8": 1282,
|
| 1285 |
+
"c3c6": 1283,
|
| 1286 |
+
"c5c2": 1284,
|
| 1287 |
+
"d5g5": 1285,
|
| 1288 |
+
"f1a6": 1286,
|
| 1289 |
+
"c6e8": 1287,
|
| 1290 |
+
"c6c3": 1288,
|
| 1291 |
+
"b5d5": 1289,
|
| 1292 |
+
"c2c6": 1290,
|
| 1293 |
+
"a5b7": 1291,
|
| 1294 |
+
"h6h4": 1292,
|
| 1295 |
+
"b3a5": 1293,
|
| 1296 |
+
"f2b2": 1294,
|
| 1297 |
+
"e3e7": 1295,
|
| 1298 |
+
"e6e1": 1296,
|
| 1299 |
+
"a7d4": 1297,
|
| 1300 |
+
"a4a6": 1298,
|
| 1301 |
+
"c2g2": 1299,
|
| 1302 |
+
"c6c2": 1300,
|
| 1303 |
+
"e7a7": 1301,
|
| 1304 |
+
"f7g5": 1302,
|
| 1305 |
+
"f2d3": 1303,
|
| 1306 |
+
"f3b3": 1304,
|
| 1307 |
+
"f7b7": 1305,
|
| 1308 |
+
"h6d2": 1306,
|
| 1309 |
+
"g6g3": 1307,
|
| 1310 |
+
"f5c8": 1308,
|
| 1311 |
+
"a8c6": 1309,
|
| 1312 |
+
"a2d2": 1310,
|
| 1313 |
+
"f4b8": 1311,
|
| 1314 |
+
"d6a6": 1312,
|
| 1315 |
+
"f2f5": 1313,
|
| 1316 |
+
"d2b1": 1314,
|
| 1317 |
+
"a7c5": 1315,
|
| 1318 |
+
"g3d3": 1316,
|
| 1319 |
+
"d8e6": 1317,
|
| 1320 |
+
"d3d8": 1318,
|
| 1321 |
+
"h8h1": 1319,
|
| 1322 |
+
"b5b2": 1320,
|
| 1323 |
+
"f7f4": 1321,
|
| 1324 |
+
"h3h5": 1322,
|
| 1325 |
+
"h2e5": 1323,
|
| 1326 |
+
"f5f2": 1324,
|
| 1327 |
+
"a6c8": 1325,
|
| 1328 |
+
"g8d8": 1326,
|
| 1329 |
+
"h1b1": 1327,
|
| 1330 |
+
"h7f7": 1328,
|
| 1331 |
+
"e2a2": 1329,
|
| 1332 |
+
"b7f7": 1330,
|
| 1333 |
+
"e1h4": 1331,
|
| 1334 |
+
"b5e8": 1332,
|
| 1335 |
+
"b6b8": 1333,
|
| 1336 |
+
"e4e8": 1334,
|
| 1337 |
+
"c3e1": 1335,
|
| 1338 |
+
"b4b7": 1336,
|
| 1339 |
+
"a7e3": 1337,
|
| 1340 |
+
"h3f1": 1338,
|
| 1341 |
+
"e6e3": 1339,
|
| 1342 |
+
"h5d1": 1340,
|
| 1343 |
+
"e3g2": 1341,
|
| 1344 |
+
"h3h6": 1342,
|
| 1345 |
+
"c7g7": 1343,
|
| 1346 |
+
"b3b1": 1344,
|
| 1347 |
+
"b7d6": 1345,
|
| 1348 |
+
"b2d3": 1346,
|
| 1349 |
+
"h2f4": 1347,
|
| 1350 |
+
"g1g6": 1348,
|
| 1351 |
+
"g4c8": 1349,
|
| 1352 |
+
"e1d3": 1350,
|
| 1353 |
+
"d8c6": 1351,
|
| 1354 |
+
"d5a8": 1352,
|
| 1355 |
+
"d6d3": 1353,
|
| 1356 |
+
"h4d8": 1354,
|
| 1357 |
+
"b5b3": 1355,
|
| 1358 |
+
"b1e4": 1356,
|
| 1359 |
+
"a2e6": 1357,
|
| 1360 |
+
"b7b4": 1358,
|
| 1361 |
+
"f7f3": 1359,
|
| 1362 |
+
"e8c6": 1360,
|
| 1363 |
+
"e6d8": 1361,
|
| 1364 |
+
"b6c8": 1362,
|
| 1365 |
+
"a7c6": 1363,
|
| 1366 |
+
"a2b4": 1364,
|
| 1367 |
+
"b5f1": 1365,
|
| 1368 |
+
"a6f1": 1366,
|
| 1369 |
+
"g2f4": 1367,
|
| 1370 |
+
"a2a5": 1368,
|
| 1371 |
+
"e1c3": 1369,
|
| 1372 |
+
"f2c5": 1370,
|
| 1373 |
+
"e8h5": 1371,
|
| 1374 |
+
"f7f2": 1372,
|
| 1375 |
+
"e7h7": 1373,
|
| 1376 |
+
"a3c1": 1374,
|
| 1377 |
+
"c8g8": 1375,
|
| 1378 |
+
"f5b1": 1376,
|
| 1379 |
+
"a4d4": 1377,
|
| 1380 |
+
"f2f7": 1378,
|
| 1381 |
+
"b3e3": 1379,
|
| 1382 |
+
"a3a5": 1380,
|
| 1383 |
+
"d3c1": 1381,
|
| 1384 |
+
"f3a8": 1382,
|
| 1385 |
+
"a7e7": 1383,
|
| 1386 |
+
"g3e1": 1384,
|
| 1387 |
+
"g8g3": 1385,
|
| 1388 |
+
"a2e2": 1386,
|
| 1389 |
+
"c4f4": 1387,
|
| 1390 |
+
"b1d3": 1388,
|
| 1391 |
+
"e3b3": 1389,
|
| 1392 |
+
"a7f7": 1390,
|
| 1393 |
+
"h8f6": 1391,
|
| 1394 |
+
"f4c4": 1392,
|
| 1395 |
+
"e5a5": 1393,
|
| 1396 |
+
"d6e8": 1394,
|
| 1397 |
+
"a1c3": 1395,
|
| 1398 |
+
"a2f2": 1396,
|
| 1399 |
+
"d3h3": 1397,
|
| 1400 |
+
"f8d7": 1398,
|
| 1401 |
+
"f2f6": 1399,
|
| 1402 |
+
"d3a3": 1400,
|
| 1403 |
+
"h4g2": 1401,
|
| 1404 |
+
"d6h6": 1402,
|
| 1405 |
+
"e8c7": 1403,
|
| 1406 |
+
"g6e8": 1404,
|
| 1407 |
+
"d1c3": 1405,
|
| 1408 |
+
"h3d7": 1406,
|
| 1409 |
+
"e5b5": 1407,
|
| 1410 |
+
"b4e1": 1408,
|
| 1411 |
+
"b7b2": 1409,
|
| 1412 |
+
"f4f1": 1410,
|
| 1413 |
+
"g7e7": 1411,
|
| 1414 |
+
"b4e4": 1412,
|
| 1415 |
+
"d4a1": 1413,
|
| 1416 |
+
"f7d8": 1414,
|
| 1417 |
+
"b8e5": 1415,
|
| 1418 |
+
"h5d5": 1416,
|
| 1419 |
+
"g6g2": 1417,
|
| 1420 |
+
"h7e4": 1418,
|
| 1421 |
+
"g4d4": 1419,
|
| 1422 |
+
"b2b6": 1420,
|
| 1423 |
+
"f5f8": 1421,
|
| 1424 |
+
"e7g8": 1422,
|
| 1425 |
+
"h3e3": 1423,
|
| 1426 |
+
"h6h3": 1424,
|
| 1427 |
+
"h2f2": 1425,
|
| 1428 |
+
"a4b2": 1426,
|
| 1429 |
+
"c5c8": 1427,
|
| 1430 |
+
"e3e8": 1428,
|
| 1431 |
+
"h4d4": 1429,
|
| 1432 |
+
"e6b6": 1430,
|
| 1433 |
+
"a7a4": 1431,
|
| 1434 |
+
"c3g3": 1432,
|
| 1435 |
+
"a1e5": 1433,
|
| 1436 |
+
"e6h6": 1434,
|
| 1437 |
+
"b2b5": 1435,
|
| 1438 |
+
"f7h6": 1436,
|
| 1439 |
+
"c6f6": 1437,
|
| 1440 |
+
"c7c1": 1438,
|
| 1441 |
+
"c8h8": 1439,
|
| 1442 |
+
"h7f5": 1440,
|
| 1443 |
+
"e3d1": 1441,
|
| 1444 |
+
"a3f8": 1442,
|
| 1445 |
+
"a6d6": 1443,
|
| 1446 |
+
"b7b3": 1444,
|
| 1447 |
+
"a2c3": 1445,
|
| 1448 |
+
"b3f3": 1446,
|
| 1449 |
+
"a4e4": 1447,
|
| 1450 |
+
"c4c1": 1448,
|
| 1451 |
+
"f6a1": 1449,
|
| 1452 |
+
"c2c8": 1450,
|
| 1453 |
+
"b4f8": 1451,
|
| 1454 |
+
"h6e6": 1452,
|
| 1455 |
+
"h5h8": 1453,
|
| 1456 |
+
"e5h8": 1454,
|
| 1457 |
+
"e2h2": 1455,
|
| 1458 |
+
"f7c4": 1456,
|
| 1459 |
+
"h7d3": 1457,
|
| 1460 |
+
"a4a1": 1458,
|
| 1461 |
+
"e4b1": 1459,
|
| 1462 |
+
"f6b6": 1460,
|
| 1463 |
+
"c8d6": 1461,
|
| 1464 |
+
"b2b7": 1462,
|
| 1465 |
+
"g2e2": 1463,
|
| 1466 |
+
"a1d4": 1464,
|
| 1467 |
+
"b2g2": 1465,
|
| 1468 |
+
"a8d5": 1466,
|
| 1469 |
+
"f6h8": 1467,
|
| 1470 |
+
"c5f5": 1468,
|
| 1471 |
+
"f2d1": 1469,
|
| 1472 |
+
"c7e8": 1470,
|
| 1473 |
+
"h6h8": 1471,
|
| 1474 |
+
"g7g4": 1472,
|
| 1475 |
+
"d3e1": 1473,
|
| 1476 |
+
"g5d5": 1474,
|
| 1477 |
+
"b8d6": 1475,
|
| 1478 |
+
"a8e4": 1476,
|
| 1479 |
+
"h4h7": 1477,
|
| 1480 |
+
"d2h2": 1478,
|
| 1481 |
+
"a5a8": 1479,
|
| 1482 |
+
"g7e6": 1480,
|
| 1483 |
+
"a6a4": 1481,
|
| 1484 |
+
"g7a1": 1482,
|
| 1485 |
+
"h3h1": 1483,
|
| 1486 |
+
"c1g1": 1484,
|
| 1487 |
+
"b3c1": 1485,
|
| 1488 |
+
"g6d6": 1486,
|
| 1489 |
+
"e4b4": 1487,
|
| 1490 |
+
"h2d6": 1488,
|
| 1491 |
+
"e2g1": 1489,
|
| 1492 |
+
"g8c8": 1490,
|
| 1493 |
+
"f5f1": 1491,
|
| 1494 |
+
"f3h1": 1492,
|
| 1495 |
+
"b5b8": 1493,
|
| 1496 |
+
"b5e5": 1494,
|
| 1497 |
+
"b8g8": 1495,
|
| 1498 |
+
"b6f6": 1496,
|
| 1499 |
+
"e4a8": 1497,
|
| 1500 |
+
"c3c8": 1498,
|
| 1501 |
+
"f5c5": 1499,
|
| 1502 |
+
"c1h1": 1500,
|
| 1503 |
+
"f1d2": 1501,
|
| 1504 |
+
"c1d3": 1502,
|
| 1505 |
+
"h4e1": 1503,
|
| 1506 |
+
"a3e3": 1504,
|
| 1507 |
+
"a3d3": 1505,
|
| 1508 |
+
"h7e7": 1506,
|
| 1509 |
+
"f3f8": 1507,
|
| 1510 |
+
"g8g1": 1508,
|
| 1511 |
+
"h5e8": 1509,
|
| 1512 |
+
"b4b1": 1510,
|
| 1513 |
+
"h3h7": 1511,
|
| 1514 |
+
"e4a4": 1512,
|
| 1515 |
+
"c7a6": 1513,
|
| 1516 |
+
"c6g6": 1514,
|
| 1517 |
+
"b7g7": 1515,
|
| 1518 |
+
"f7b3": 1516,
|
| 1519 |
+
"d7h7": 1517,
|
| 1520 |
+
"a5f5": 1518,
|
| 1521 |
+
"f6f1": 1519,
|
| 1522 |
+
"b1g1": 1520,
|
| 1523 |
+
"a7g7": 1521,
|
| 1524 |
+
"g2g5": 1522,
|
| 1525 |
+
"d8f7": 1523,
|
| 1526 |
+
"e5a1": 1524,
|
| 1527 |
+
"c4c8": 1525,
|
| 1528 |
+
"e5b8": 1526,
|
| 1529 |
+
"c4g4": 1527,
|
| 1530 |
+
"e3a3": 1528,
|
| 1531 |
+
"h4h1": 1529,
|
| 1532 |
+
"f2a2": 1530,
|
| 1533 |
+
"h5h2": 1531,
|
| 1534 |
+
"c8e7": 1532,
|
| 1535 |
+
"f4f8": 1533,
|
| 1536 |
+
"a3a7": 1534,
|
| 1537 |
+
"e8g7": 1535,
|
| 1538 |
+
"g1g8": 1536,
|
| 1539 |
+
"f2h1": 1537,
|
| 1540 |
+
"c8b6": 1538,
|
| 1541 |
+
"h1f3": 1539,
|
| 1542 |
+
"e1c2": 1540,
|
| 1543 |
+
"d1f2": 1541,
|
| 1544 |
+
"a1c2": 1542,
|
| 1545 |
+
"g7g3": 1543,
|
| 1546 |
+
"h7h4": 1544,
|
| 1547 |
+
"a5a1": 1545,
|
| 1548 |
+
"g2g6": 1546,
|
| 1549 |
+
"f7a7": 1547,
|
| 1550 |
+
"f2b6": 1548,
|
| 1551 |
+
"g6h8": 1549,
|
| 1552 |
+
"c5c1": 1550,
|
| 1553 |
+
"a3a6": 1551,
|
| 1554 |
+
"g1c1": 1552,
|
| 1555 |
+
"e6a6": 1553,
|
| 1556 |
+
"a8c7": 1554,
|
| 1557 |
+
"e6g8": 1555,
|
| 1558 |
+
"f7f1": 1556,
|
| 1559 |
+
"f2h3": 1557,
|
| 1560 |
+
"e8b5": 1558,
|
| 1561 |
+
"e4h1": 1559,
|
| 1562 |
+
"g2e3": 1560,
|
| 1563 |
+
"a7a3": 1561,
|
| 1564 |
+
"a2g2": 1562,
|
| 1565 |
+
"h8e5": 1563,
|
| 1566 |
+
"g6g8": 1564,
|
| 1567 |
+
"g2d2": 1565,
|
| 1568 |
+
"g5c5": 1566,
|
| 1569 |
+
"c6c1": 1567,
|
| 1570 |
+
"b1h1": 1568,
|
| 1571 |
+
"c2h7": 1569,
|
| 1572 |
+
"a6e6": 1570,
|
| 1573 |
+
"h6c1": 1571,
|
| 1574 |
+
"a5g5": 1572,
|
| 1575 |
+
"e1b4": 1573,
|
| 1576 |
+
"a8f3": 1574,
|
| 1577 |
+
"c5g5": 1575,
|
| 1578 |
+
"a6a3": 1576,
|
| 1579 |
+
"h2f1": 1577,
|
| 1580 |
+
"h2h5": 1578,
|
| 1581 |
+
"g4c4": 1579,
|
| 1582 |
+
"a6a2": 1580,
|
| 1583 |
+
"g7d7": 1581,
|
| 1584 |
+
"b1f5": 1582,
|
| 1585 |
+
"h7f8": 1583,
|
| 1586 |
+
"h7d7": 1584,
|
| 1587 |
+
"b8h8": 1585,
|
| 1588 |
+
"e3g1": 1586,
|
| 1589 |
+
"g1b1": 1587,
|
| 1590 |
+
"a4e8": 1588,
|
| 1591 |
+
"c2e1": 1589,
|
| 1592 |
+
"f2f8": 1590,
|
| 1593 |
+
"b6a8": 1591,
|
| 1594 |
+
"g3c3": 1592,
|
| 1595 |
+
"b4b8": 1593,
|
| 1596 |
+
"b3g3": 1594,
|
| 1597 |
+
"h2e2": 1595,
|
| 1598 |
+
"g7c7": 1596,
|
| 1599 |
+
"f8h7": 1597,
|
| 1600 |
+
"c4g8": 1598,
|
| 1601 |
+
"c7h7": 1599,
|
| 1602 |
+
"b5b1": 1600,
|
| 1603 |
+
"g2a8": 1601,
|
| 1604 |
+
"c2h2": 1602,
|
| 1605 |
+
"h8f7": 1603,
|
| 1606 |
+
"a4g4": 1604,
|
| 1607 |
+
"c5h5": 1605,
|
| 1608 |
+
"b2b8": 1606,
|
| 1609 |
+
"b5f5": 1607,
|
| 1610 |
+
"h5c5": 1608,
|
| 1611 |
+
"c1b3": 1609,
|
| 1612 |
+
"c7h2": 1610,
|
| 1613 |
+
"f3a3": 1611,
|
| 1614 |
+
"g1a1": 1612,
|
| 1615 |
+
"a4a8": 1613,
|
| 1616 |
+
"a4f4": 1614,
|
| 1617 |
+
"h6h2": 1615,
|
| 1618 |
+
"a1f6": 1616,
|
| 1619 |
+
"g7h5": 1617,
|
| 1620 |
+
"c1e2": 1618,
|
| 1621 |
+
"b3a1": 1619,
|
| 1622 |
+
"b4f4": 1620,
|
| 1623 |
+
"a2a6": 1621,
|
| 1624 |
+
"g3g1": 1622,
|
| 1625 |
+
"b7b1": 1623,
|
| 1626 |
+
"h6d6": 1624,
|
| 1627 |
+
"g2b2": 1625,
|
| 1628 |
+
"g7b7": 1626,
|
| 1629 |
+
"c2a3": 1627,
|
| 1630 |
+
"h1e4": 1628,
|
| 1631 |
+
"h7c7": 1629,
|
| 1632 |
+
"a5h5": 1630,
|
| 1633 |
+
"g2c2": 1631,
|
| 1634 |
+
"b3b8": 1632,
|
| 1635 |
+
"a2h2": 1633,
|
| 1636 |
+
"b4g4": 1634,
|
| 1637 |
+
"g3h1": 1635,
|
| 1638 |
+
"a7h7": 1636,
|
| 1639 |
+
"g7g2": 1637,
|
| 1640 |
+
"g5g8": 1638,
|
| 1641 |
+
"h3d3": 1639,
|
| 1642 |
+
"h4c4": 1640,
|
| 1643 |
+
"h2b2": 1641,
|
| 1644 |
+
"d5g8": 1642,
|
| 1645 |
+
"b6g6": 1643,
|
| 1646 |
+
"g2g7": 1644,
|
| 1647 |
+
"g6c6": 1645,
|
| 1648 |
+
"a7a2": 1646,
|
| 1649 |
+
"g8b8": 1647,
|
| 1650 |
+
"a2a7": 1648,
|
| 1651 |
+
"f1h2": 1649,
|
| 1652 |
+
"b8f4": 1650,
|
| 1653 |
+
"a6f6": 1651,
|
| 1654 |
+
"f4b4": 1652,
|
| 1655 |
+
"a3f3": 1653,
|
| 1656 |
+
"h3c8": 1654,
|
| 1657 |
+
"h7b7": 1655,
|
| 1658 |
+
"a6b8": 1656,
|
| 1659 |
+
"a5e1": 1657,
|
| 1660 |
+
"c5g1": 1658,
|
| 1661 |
+
"h2c2": 1659,
|
| 1662 |
+
"f4a4": 1660,
|
| 1663 |
+
"d4h8": 1661,
|
| 1664 |
+
"h4h8": 1662,
|
| 1665 |
+
"g4g1": 1663,
|
| 1666 |
+
"e8a4": 1664,
|
| 1667 |
+
"b2a4": 1665,
|
| 1668 |
+
"b7h7": 1666,
|
| 1669 |
+
"g4g8": 1667,
|
| 1670 |
+
"b5g5": 1668,
|
| 1671 |
+
"g5g1": 1669,
|
| 1672 |
+
"g2h4": 1670,
|
| 1673 |
+
"a6a1": 1671,
|
| 1674 |
+
"b6b1": 1672,
|
| 1675 |
+
"g5a5": 1673,
|
| 1676 |
+
"a8b6": 1674,
|
| 1677 |
+
"g3b8": 1675,
|
| 1678 |
+
"h2d2": 1676,
|
| 1679 |
+
"g3b3": 1677,
|
| 1680 |
+
"c4h4": 1678,
|
| 1681 |
+
"a2a8": 1679,
|
| 1682 |
+
"f6a6": 1680,
|
| 1683 |
+
"b7a5": 1681,
|
| 1684 |
+
"f5a5": 1682,
|
| 1685 |
+
"h7h3": 1683,
|
| 1686 |
+
"h7a7": 1684,
|
| 1687 |
+
"b7d8": 1685,
|
| 1688 |
+
"h5h1": 1686,
|
| 1689 |
+
"h3c3": 1687,
|
| 1690 |
+
"h8d4": 1688,
|
| 1691 |
+
"a2f7": 1689,
|
| 1692 |
+
"h2h6": 1690,
|
| 1693 |
+
"c3h3": 1691,
|
| 1694 |
+
"h2h7": 1692,
|
| 1695 |
+
"b4h4": 1693,
|
| 1696 |
+
"a4h4": 1694,
|
| 1697 |
+
"g8a8": 1695,
|
| 1698 |
+
"f5b5": 1696,
|
| 1699 |
+
"a7a1": 1697,
|
| 1700 |
+
"e1g2": 1698,
|
| 1701 |
+
"h2a2": 1699,
|
| 1702 |
+
"a3g3": 1700,
|
| 1703 |
+
"g7a7": 1701,
|
| 1704 |
+
"h5a5": 1702,
|
| 1705 |
+
"d8b7": 1703,
|
| 1706 |
+
"b2h2": 1704,
|
| 1707 |
+
"a1b3": 1705,
|
| 1708 |
+
"b5h5": 1706,
|
| 1709 |
+
"b1g6": 1707,
|
| 1710 |
+
"h4b4": 1708,
|
| 1711 |
+
"e1a5": 1709,
|
| 1712 |
+
"a3a8": 1710,
|
| 1713 |
+
"g4a4": 1711,
|
| 1714 |
+
"g6b1": 1712,
|
| 1715 |
+
"h8g6": 1713,
|
| 1716 |
+
"d4g1": 1714,
|
| 1717 |
+
"g8d5": 1715,
|
| 1718 |
+
"f2a7": 1716,
|
| 1719 |
+
"g1e3": 1717,
|
| 1720 |
+
"b2d1": 1718,
|
| 1721 |
+
"a7f2": 1719,
|
| 1722 |
+
"c3h8": 1720,
|
| 1723 |
+
"h3h8": 1721,
|
| 1724 |
+
"h6g8": 1722,
|
| 1725 |
+
"h5b5": 1723,
|
| 1726 |
+
"g8e6": 1724,
|
| 1727 |
+
"a7c8": 1725,
|
| 1728 |
+
"g2a2": 1726,
|
| 1729 |
+
"a3b1": 1727,
|
| 1730 |
+
"d5h1": 1728,
|
| 1731 |
+
"f7a2": 1729,
|
| 1732 |
+
"g4b4": 1730,
|
| 1733 |
+
"b8g3": 1731,
|
| 1734 |
+
"d1b2": 1732,
|
| 1735 |
+
"h7h1": 1733,
|
| 1736 |
+
"a6g6": 1734,
|
| 1737 |
+
"h2c7": 1735,
|
| 1738 |
+
"h6h1": 1736,
|
| 1739 |
+
"h3g1": 1737,
|
| 1740 |
+
"a2c1": 1738,
|
| 1741 |
+
"b7h1": 1739,
|
| 1742 |
+
"g7e8": 1740,
|
| 1743 |
+
"g3g8": 1741,
|
| 1744 |
+
"a8g2": 1742,
|
| 1745 |
+
"b3h3": 1743,
|
| 1746 |
+
"g6g1": 1744,
|
| 1747 |
+
"h1f2": 1745,
|
| 1748 |
+
"a1g7": 1746,
|
| 1749 |
+
"h4a4": 1747,
|
| 1750 |
+
"h1d5": 1748,
|
| 1751 |
+
"a3h3": 1749,
|
| 1752 |
+
"b6h6": 1750,
|
| 1753 |
+
"h7c2": 1751,
|
| 1754 |
+
"g6b6": 1752,
|
| 1755 |
+
"c6h6": 1753,
|
| 1756 |
+
"g5b5": 1754,
|
| 1757 |
+
"h6c6": 1755,
|
| 1758 |
+
"h7h2": 1756,
|
| 1759 |
+
"h2h8": 1757,
|
| 1760 |
+
"h3b3": 1758,
|
| 1761 |
+
"g1d4": 1759,
|
| 1762 |
+
"c6h1": 1760,
|
| 1763 |
+
"c1a2": 1761,
|
| 1764 |
+
"c8a7": 1762,
|
| 1765 |
+
"g3a3": 1763,
|
| 1766 |
+
"g6a6": 1764,
|
| 1767 |
+
"g7g1": 1765,
|
| 1768 |
+
"h6b6": 1766,
|
| 1769 |
+
"g1c5": 1767,
|
| 1770 |
+
"b3g8": 1768,
|
| 1771 |
+
"a6h6": 1769,
|
| 1772 |
+
"h6a6": 1770,
|
| 1773 |
+
"h1g3": 1771,
|
| 1774 |
+
"h8c3": 1772,
|
| 1775 |
+
"b2h8": 1773,
|
| 1776 |
+
"h3a3": 1774,
|
| 1777 |
+
"g2e1": 1775,
|
| 1778 |
+
"g8c4": 1776,
|
| 1779 |
+
"b6g1": 1777,
|
| 1780 |
+
"h1c6": 1778,
|
| 1781 |
+
"g2g8": 1779,
|
| 1782 |
+
"g8b3": 1780,
|
| 1783 |
+
"h8b2": 1781,
|
| 1784 |
+
"b1h7": 1782,
|
| 1785 |
+
"g1b6": 1783,
|
| 1786 |
+
"b8h2": 1784,
|
| 1787 |
+
"h1b7": 1785,
|
| 1788 |
+
"h8a1": 1786,
|
| 1789 |
+
"g1a7": 1787,
|
| 1790 |
+
"a1h8": 1788,
|
| 1791 |
+
"a7g1": 1789,
|
| 1792 |
+
"a2g8": 1790,
|
| 1793 |
+
"h1a8": 1791,
|
| 1794 |
+
"h7b1": 1792,
|
| 1795 |
+
"a8h1": 1793,
|
| 1796 |
+
"h2b8": 1794,
|
| 1797 |
+
"g8a2": 1795
|
| 1798 |
}
|