filomeneroquefort commited on
Commit
0518123
·
verified ·
1 Parent(s): dbc5326

Chess Challenge submission by filomeneroquefort

Browse files
Files changed (7) hide show
  1. README.md +20 -0
  2. config.json +20 -0
  3. model.safetensors +3 -0
  4. special_tokens_map.json +6 -0
  5. tokenizer.py +278 -0
  6. tokenizer_config.json +50 -0
  7. vocab.json +1106 -0
README.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ tags:
4
+ - chess
5
+ - llm-course
6
+ - chess-challenge
7
+ license: mit
8
+ ---
9
+ # chess_filo_6
10
+ Chess model submitted to the LLM Course Chess Challenge.
11
+ ## Submission Info
12
+ - **Submitted by**: [filomeneroquefort](https://huggingface.co/filomeneroquefort)
13
+ - **Parameters**: 2,201,760
14
+ - **Organization**: LLM-course
15
+ ## Model Details
16
+ - **Architecture**: Chess Transformer (GPT-style)
17
+ - **Vocab size**: 1104
18
+ - **Embedding dim**: 144
19
+ - **Layers**: 8
20
+ - **Heads**: 6
config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "ChessForCausalLM"
4
+ ],
5
+ "bos_token_id": 1,
6
+ "dropout": 0.0,
7
+ "dtype": "float32",
8
+ "eos_token_id": 2,
9
+ "layer_norm_epsilon": 1e-05,
10
+ "model_type": "chess_transformer",
11
+ "n_ctx": 256,
12
+ "n_embd": 144,
13
+ "n_head": 6,
14
+ "n_inner": 576,
15
+ "n_layer": 8,
16
+ "pad_token_id": 0,
17
+ "tie_weights": true,
18
+ "transformers_version": "4.57.6",
19
+ "vocab_size": 1104
20
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0a4981c6c650d2723a87e16a15d83dd853da7c1c05412630f7b56e336e3d3fc
3
+ size 8815560
special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "[BOS]",
3
+ "eos_token": "[EOS]",
4
+ "pad_token": "[PAD]",
5
+ "unk_token": "[UNK]"
6
+ }
tokenizer.py ADDED
@@ -0,0 +1,278 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Custom Chess Tokenizer for the Chess Challenge.
3
+
4
+ This tokenizer treats each move as a single token using the extended UCI notation
5
+ from the Lichess dataset (e.g., WPe2e4, BNg8f6).
6
+
7
+ The dataset format uses:
8
+ - W/B prefix for White/Black
9
+ - Piece letter: P=Pawn, N=Knight, B=Bishop, R=Rook, Q=Queen, K=King
10
+ - Source and destination squares (e.g., e2e4)
11
+ - Special suffixes: (x)=capture, (+)=check, (+*)=checkmate, (o)/(O)=castling
12
+ """
13
+
14
+ from __future__ import annotations
15
+
16
+ import json
17
+ import os
18
+ from pathlib import Path
19
+ from typing import Dict, List, Optional
20
+
21
+ from transformers import PreTrainedTokenizer
22
+
23
+
24
+ class ChessTokenizer(PreTrainedTokenizer):
25
+ """
26
+ A custom tokenizer for chess moves using extended UCI notation.
27
+
28
+ This tokenizer maps each possible chess move to a unique token ID.
29
+ The vocabulary is built from the training dataset to ensure all moves
30
+ encountered during training have a corresponding token.
31
+
32
+ Example:
33
+ >>> tokenizer = ChessTokenizer()
34
+ >>> tokenizer.encode("WPe2e4 BPe7e5")
35
+ [1, 42, 87, 2] # [BOS, e2e4, e7e5, EOS]
36
+ """
37
+
38
+ model_input_names = ["input_ids", "attention_mask"]
39
+ vocab_files_names = {"vocab_file": "vocab.json"}
40
+
41
+ # Special tokens
42
+ PAD_TOKEN = "[PAD]"
43
+ BOS_TOKEN = "[BOS]"
44
+ EOS_TOKEN = "[EOS]"
45
+ UNK_TOKEN = "[UNK]"
46
+
47
+ def __init__(
48
+ self,
49
+ vocab_file: Optional[str] = None,
50
+ vocab: Optional[Dict[str, int]] = None,
51
+ **kwargs,
52
+ ):
53
+ """
54
+ Initialize the chess tokenizer.
55
+
56
+ Args:
57
+ vocab_file: Path to a JSON file containing the vocabulary mapping.
58
+ vocab: Dictionary mapping tokens to IDs (alternative to vocab_file).
59
+ **kwargs: Additional arguments passed to PreTrainedTokenizer.
60
+ """
61
+ # Initialize special tokens
62
+ self._pad_token = self.PAD_TOKEN
63
+ self._bos_token = self.BOS_TOKEN
64
+ self._eos_token = self.EOS_TOKEN
65
+ self._unk_token = self.UNK_TOKEN
66
+
67
+ # Remove any duplicate special-token entries passed through kwargs
68
+ # to avoid "multiple values for keyword" errors when loading from disk.
69
+ kwargs.pop("pad_token", None)
70
+ kwargs.pop("bos_token", None)
71
+ kwargs.pop("eos_token", None)
72
+ kwargs.pop("unk_token", None)
73
+
74
+ # Load or create vocabulary
75
+ if vocab is not None:
76
+ self._vocab = vocab
77
+ elif vocab_file is not None and os.path.exists(vocab_file):
78
+ with open(vocab_file, "r", encoding="utf-8") as f:
79
+ self._vocab = json.load(f)
80
+ else:
81
+ # Create a minimal vocabulary with just special tokens
82
+ # The full vocabulary should be built from the dataset
83
+ self._vocab = self._create_default_vocab()
84
+
85
+ # Create reverse mapping
86
+ self._ids_to_tokens = {v: k for k, v in self._vocab.items()}
87
+
88
+ # Call parent init AFTER setting up vocab
89
+ super().__init__(
90
+ pad_token=self._pad_token,
91
+ bos_token=self._bos_token,
92
+ eos_token=self._eos_token,
93
+ unk_token=self._unk_token,
94
+ **kwargs,
95
+ )
96
+
97
+ def _create_default_vocab(self) -> Dict[str, int]:
98
+ """
99
+ Create a minimal default vocabulary with just special tokens.
100
+
101
+ For the full vocabulary, use `build_vocab_from_dataset()`.
102
+ This minimal vocab is just a placeholder - you should build from data.
103
+ """
104
+ special_tokens = [self.PAD_TOKEN, self.BOS_TOKEN, self.EOS_TOKEN, self.UNK_TOKEN]
105
+ vocab = {token: idx for idx, token in enumerate(special_tokens)}
106
+ return vocab
107
+
108
+ @classmethod
109
+ def build_vocab_from_iterator(
110
+ cls,
111
+ iterator,
112
+ min_frequency: int = 1,
113
+ ) -> "ChessTokenizer":
114
+ """
115
+ Build a tokenizer vocabulary from an iterator of game strings.
116
+
117
+ Args:
118
+ iterator: An iterator yielding game strings (space-separated moves).
119
+ min_frequency: Minimum frequency for a token to be included.
120
+
121
+ Returns:
122
+ A ChessTokenizer with the built vocabulary.
123
+ """
124
+ from collections import Counter
125
+
126
+ token_counts = Counter()
127
+
128
+ for game in iterator:
129
+ moves = game.strip().split()
130
+ token_counts.update(moves)
131
+
132
+ # Filter by frequency
133
+ tokens = [
134
+ token for token, count in token_counts.items()
135
+ if count >= min_frequency
136
+ ]
137
+
138
+ # Sort for reproducibility
139
+ tokens = sorted(tokens)
140
+
141
+ # Build vocabulary
142
+ special_tokens = [cls.PAD_TOKEN, cls.BOS_TOKEN, cls.EOS_TOKEN, cls.UNK_TOKEN]
143
+ vocab = {token: idx for idx, token in enumerate(special_tokens + tokens)}
144
+
145
+ return cls(vocab=vocab)
146
+
147
+ @classmethod
148
+ def build_vocab_from_dataset(
149
+ cls,
150
+ dataset_name: str = "dlouapre/lichess_2025-01_1M",
151
+ split: str = "train",
152
+ column: str = "text",
153
+ min_frequency: int = 500,
154
+ max_samples: Optional[int] = 100000,
155
+ ) -> "ChessTokenizer":
156
+ """
157
+ Build a tokenizer vocabulary from a Hugging Face dataset.
158
+
159
+ Args:
160
+ dataset_name: Name of the dataset on Hugging Face Hub.
161
+ split: Dataset split to use.
162
+ column: Column containing the game strings.
163
+ min_frequency: Minimum frequency for a token to be included (default: 500).
164
+ max_samples: Maximum number of samples to process (default: 100k).
165
+
166
+ Returns:
167
+ A ChessTokenizer with the built vocabulary.
168
+ """
169
+ from datasets import load_dataset
170
+
171
+ dataset = load_dataset(dataset_name, split=split)
172
+
173
+ if max_samples is not None:
174
+ dataset = dataset.select(range(min(max_samples, len(dataset))))
175
+
176
+ def game_iterator():
177
+ for example in dataset:
178
+ yield example[column]
179
+
180
+ return cls.build_vocab_from_iterator(game_iterator(), min_frequency=min_frequency)
181
+
182
+ @property
183
+ def vocab_size(self) -> int:
184
+ """Return the size of the vocabulary."""
185
+ return len(self._vocab)
186
+
187
+ def get_vocab(self) -> Dict[str, int]:
188
+ """Return the vocabulary as a dictionary."""
189
+ return dict(self._vocab)
190
+
191
+ def _tokenize(self, text: str) -> List[str]:
192
+ """
193
+ Tokenize a string of moves into a list of tokens.
194
+
195
+ Args:
196
+ text: A string of space-separated moves.
197
+
198
+ Returns:
199
+ List of move tokens.
200
+ """
201
+ return text.strip().split()
202
+
203
+ def _convert_token_to_id(self, token: str) -> int:
204
+ """Convert a token to its ID."""
205
+ return self._vocab.get(token, self._vocab.get(self.UNK_TOKEN, 0))
206
+
207
+ def _convert_id_to_token(self, index: int) -> str:
208
+ """Convert an ID to its token."""
209
+ return self._ids_to_tokens.get(index, self.UNK_TOKEN)
210
+
211
+ def convert_tokens_to_string(self, tokens: List[str]) -> str:
212
+ """Convert a list of tokens back to a string."""
213
+ # Filter out special tokens for cleaner output
214
+ special = {self.PAD_TOKEN, self.BOS_TOKEN, self.EOS_TOKEN, self.UNK_TOKEN}
215
+ return " ".join(t for t in tokens if t not in special)
216
+
217
+ def save_vocabulary(
218
+ self,
219
+ save_directory: str,
220
+ filename_prefix: Optional[str] = None,
221
+ ) -> tuple:
222
+ """
223
+ Save the vocabulary to a JSON file.
224
+
225
+ Args:
226
+ save_directory: Directory to save the vocabulary.
227
+ filename_prefix: Optional prefix for the filename.
228
+
229
+ Returns:
230
+ Tuple containing the path to the saved vocabulary file.
231
+ """
232
+ if not os.path.isdir(save_directory):
233
+ os.makedirs(save_directory, exist_ok=True)
234
+
235
+ vocab_file = os.path.join(
236
+ save_directory,
237
+ (filename_prefix + "-" if filename_prefix else "") + "vocab.json",
238
+ )
239
+
240
+ with open(vocab_file, "w", encoding="utf-8") as f:
241
+ json.dump(self._vocab, f, ensure_ascii=False, indent=2)
242
+
243
+ return (vocab_file,)
244
+
245
+
246
+ def count_vocab_from_dataset(
247
+ dataset_name: str = "dlouapre/lichess_2025-01_1M",
248
+ split: str = "train",
249
+ column: str = "text",
250
+ max_samples: Optional[int] = 10000,
251
+ ) -> Dict[str, int]:
252
+ """
253
+ Count token frequencies in a dataset (useful for vocabulary analysis).
254
+
255
+ Args:
256
+ dataset_name: Name of the dataset on Hugging Face Hub.
257
+ split: Dataset split to use.
258
+ column: Column containing the game strings.
259
+ max_samples: Maximum number of samples to process.
260
+
261
+ Returns:
262
+ Dictionary mapping tokens to their frequencies.
263
+ """
264
+ from collections import Counter
265
+ from datasets import load_dataset
266
+
267
+ dataset = load_dataset(dataset_name, split=split)
268
+
269
+ if max_samples is not None:
270
+ dataset = dataset.select(range(min(max_samples, len(dataset))))
271
+
272
+ token_counts = Counter()
273
+
274
+ for example in dataset:
275
+ moves = example[column].strip().split()
276
+ token_counts.update(moves)
277
+
278
+ return dict(token_counts)
tokenizer_config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "[BOS]",
13
+ "lstrip": false,
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
+ }
vocab.json ADDED
@@ -0,0 +1,1106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "[PAD]": 0,
3
+ "[BOS]": 1,
4
+ "[EOS]": 2,
5
+ "[UNK]": 3,
6
+ "BBa5b6": 4,
7
+ "BBa6b7": 5,
8
+ "BBb4a5": 6,
9
+ "BBb4c3(x)": 7,
10
+ "BBb4c3(x+)": 8,
11
+ "BBb4c5": 9,
12
+ "BBb4d2(x+)": 10,
13
+ "BBb4d6": 11,
14
+ "BBb4e7": 12,
15
+ "BBb7a6": 13,
16
+ "BBb7c6": 14,
17
+ "BBb7c6(x)": 15,
18
+ "BBb7c8": 16,
19
+ "BBb7d5": 17,
20
+ "BBb7d5(x)": 18,
21
+ "BBb7e4(x)": 19,
22
+ "BBb7f3(x)": 20,
23
+ "BBc5b4": 21,
24
+ "BBc5b6": 22,
25
+ "BBc5d4": 23,
26
+ "BBc5d4(x)": 24,
27
+ "BBc5d6": 25,
28
+ "BBc5e3(x)": 26,
29
+ "BBc5e7": 27,
30
+ "BBc5f2(x+)": 28,
31
+ "BBc8a6": 29,
32
+ "BBc8b7": 30,
33
+ "BBc8d7": 31,
34
+ "BBc8e6": 32,
35
+ "BBc8e6(x)": 33,
36
+ "BBc8f5": 34,
37
+ "BBc8f5(x)": 35,
38
+ "BBc8g4": 36,
39
+ "BBc8g4(x)": 37,
40
+ "BBc8h3(x)": 38,
41
+ "BBd6b4": 39,
42
+ "BBd6c5": 40,
43
+ "BBd6c7": 41,
44
+ "BBd6e5": 42,
45
+ "BBd6e5(x)": 43,
46
+ "BBd6e7": 44,
47
+ "BBd6f4(x)": 45,
48
+ "BBd6g3(x)": 46,
49
+ "BBd7b5": 47,
50
+ "BBd7b5(x)": 48,
51
+ "BBd7c6": 49,
52
+ "BBd7c6(x)": 50,
53
+ "BBd7e6": 51,
54
+ "BBd7e8": 52,
55
+ "BBd7f5": 53,
56
+ "BBd7g4": 54,
57
+ "BBe6c4(x)": 55,
58
+ "BBe6d5": 56,
59
+ "BBe6d5(x)": 57,
60
+ "BBe6d7": 58,
61
+ "BBe6f5": 59,
62
+ "BBe6f7": 60,
63
+ "BBe6g4": 61,
64
+ "BBe7b4": 62,
65
+ "BBe7c5": 63,
66
+ "BBe7c5(x)": 64,
67
+ "BBe7d6": 65,
68
+ "BBe7d6(x)": 66,
69
+ "BBe7d8": 67,
70
+ "BBe7f6": 68,
71
+ "BBe7f6(x)": 69,
72
+ "BBe7f8": 70,
73
+ "BBe7g5": 71,
74
+ "BBe7g5(x)": 72,
75
+ "BBf5c2(x)": 73,
76
+ "BBf5d3(x)": 74,
77
+ "BBf5e4": 75,
78
+ "BBf5e4(x)": 76,
79
+ "BBf5e6": 77,
80
+ "BBf5g4": 78,
81
+ "BBf5g6": 79,
82
+ "BBf6e5(x)": 80,
83
+ "BBf6e7": 81,
84
+ "BBf6g5": 82,
85
+ "BBf6g7": 83,
86
+ "BBf8b4": 84,
87
+ "BBf8b4(+)": 85,
88
+ "BBf8c5": 86,
89
+ "BBf8c5(x)": 87,
90
+ "BBf8d6": 88,
91
+ "BBf8d6(x)": 89,
92
+ "BBf8e7": 90,
93
+ "BBf8g7": 91,
94
+ "BBf8h6": 92,
95
+ "BBg4d7": 93,
96
+ "BBg4e2(x)": 94,
97
+ "BBg4e6": 95,
98
+ "BBg4f3(x)": 96,
99
+ "BBg4f5": 97,
100
+ "BBg4h5": 98,
101
+ "BBg7b2(x)": 99,
102
+ "BBg7c3(x)": 100,
103
+ "BBg7d4(x)": 101,
104
+ "BBg7e5(x)": 102,
105
+ "BBg7f6": 103,
106
+ "BBg7f6(x)": 104,
107
+ "BBg7f8": 105,
108
+ "BBg7h6": 106,
109
+ "BBh5g6": 107,
110
+ "BKb8a7": 108,
111
+ "BKb8a8": 109,
112
+ "BKc6b5": 110,
113
+ "BKc6b6": 111,
114
+ "BKc7b6": 112,
115
+ "BKc7b7": 113,
116
+ "BKc7c6": 114,
117
+ "BKc7d6": 115,
118
+ "BKc7d7": 116,
119
+ "BKc8b7": 117,
120
+ "BKc8b8": 118,
121
+ "BKc8c7": 119,
122
+ "BKc8d7": 120,
123
+ "BKc8d8": 121,
124
+ "BKd5c4": 122,
125
+ "BKd6c5": 123,
126
+ "BKd6c6": 124,
127
+ "BKd6c7": 125,
128
+ "BKd6d5": 126,
129
+ "BKd6e5": 127,
130
+ "BKd6e6": 128,
131
+ "BKd6e7": 129,
132
+ "BKd7c6": 130,
133
+ "BKd7c7": 131,
134
+ "BKd7c8": 132,
135
+ "BKd7d6": 133,
136
+ "BKd7e6": 134,
137
+ "BKd7e7": 135,
138
+ "BKd7e8": 136,
139
+ "BKd8c7": 137,
140
+ "BKd8c8": 138,
141
+ "BKd8d7": 139,
142
+ "BKd8e7": 140,
143
+ "BKd8e8": 141,
144
+ "BKe5d4": 142,
145
+ "BKe6d5": 143,
146
+ "BKe6d6": 144,
147
+ "BKe6d7": 145,
148
+ "BKe6e5": 146,
149
+ "BKe6e7": 147,
150
+ "BKe6f5": 148,
151
+ "BKe6f6": 149,
152
+ "BKe6f7": 150,
153
+ "BKe7d6": 151,
154
+ "BKe7d7": 152,
155
+ "BKe7d8": 153,
156
+ "BKe7e6": 154,
157
+ "BKe7e8": 155,
158
+ "BKe7f6": 156,
159
+ "BKe7f7": 157,
160
+ "BKe7f8": 158,
161
+ "BKe8c8(O)": 159,
162
+ "BKe8d7": 160,
163
+ "BKe8d8": 161,
164
+ "BKe8d8(x)": 162,
165
+ "BKe8e7": 163,
166
+ "BKe8f7": 164,
167
+ "BKe8f7(x)": 165,
168
+ "BKe8f8": 166,
169
+ "BKe8g8(o)": 167,
170
+ "BKf5e4": 168,
171
+ "BKf5g4": 169,
172
+ "BKf6e5": 170,
173
+ "BKf6e6": 171,
174
+ "BKf6e7": 172,
175
+ "BKf6f5": 173,
176
+ "BKf6f7": 174,
177
+ "BKf6g5": 175,
178
+ "BKf6g6": 176,
179
+ "BKf6g7": 177,
180
+ "BKf7e6": 178,
181
+ "BKf7e7": 179,
182
+ "BKf7e8": 180,
183
+ "BKf7f6": 181,
184
+ "BKf7f8": 182,
185
+ "BKf7g6": 183,
186
+ "BKf7g7": 184,
187
+ "BKf7g8": 185,
188
+ "BKf8e7": 186,
189
+ "BKf8e8": 187,
190
+ "BKf8f7": 188,
191
+ "BKf8g7": 189,
192
+ "BKf8g8": 190,
193
+ "BKg5f4": 191,
194
+ "BKg6f5": 192,
195
+ "BKg6f6": 193,
196
+ "BKg6f7": 194,
197
+ "BKg6g5": 195,
198
+ "BKg6h5": 196,
199
+ "BKg7f6": 197,
200
+ "BKg7f7": 198,
201
+ "BKg7f8": 199,
202
+ "BKg7g6": 200,
203
+ "BKg7g8": 201,
204
+ "BKg7h6": 202,
205
+ "BKg7h7": 203,
206
+ "BKg7h8": 204,
207
+ "BKg8f7": 205,
208
+ "BKg8f7(x)": 206,
209
+ "BKg8f8": 207,
210
+ "BKg8f8(x)": 208,
211
+ "BKg8g7": 209,
212
+ "BKg8g7(x)": 210,
213
+ "BKg8h7": 211,
214
+ "BKg8h7(x)": 212,
215
+ "BKg8h8": 213,
216
+ "BKh6g5": 214,
217
+ "BKh6g7": 215,
218
+ "BKh6h5": 216,
219
+ "BKh7g6": 217,
220
+ "BKh7g7": 218,
221
+ "BKh7g8": 219,
222
+ "BKh7h6": 220,
223
+ "BKh7h8": 221,
224
+ "BKh8g7": 222,
225
+ "BKh8g8": 223,
226
+ "BKh8h7": 224,
227
+ "BNa5c4": 225,
228
+ "BNa5c6": 226,
229
+ "BNa6b4": 227,
230
+ "BNa6c5": 228,
231
+ "BNa6c7": 229,
232
+ "BNb4c6": 230,
233
+ "BNb4d5": 231,
234
+ "BNb6c4": 232,
235
+ "BNb6d5": 233,
236
+ "BNb6d7": 234,
237
+ "BNb8a6": 235,
238
+ "BNb8c6": 236,
239
+ "BNb8c6(x)": 237,
240
+ "BNb8d7": 238,
241
+ "BNb8d7(x)": 239,
242
+ "BNc2a1(x)": 240,
243
+ "BNc5e4": 241,
244
+ "BNc5e4(x)": 242,
245
+ "BNc5e6": 243,
246
+ "BNc6a5": 244,
247
+ "BNc6b4": 245,
248
+ "BNc6b4(x)": 246,
249
+ "BNc6b8": 247,
250
+ "BNc6d4": 248,
251
+ "BNc6d4(x)": 249,
252
+ "BNc6d8": 250,
253
+ "BNc6e5": 251,
254
+ "BNc6e5(x)": 252,
255
+ "BNc6e7": 253,
256
+ "BNd4c6": 254,
257
+ "BNd4e6": 255,
258
+ "BNd4f3(x+)": 256,
259
+ "BNd5b4": 257,
260
+ "BNd5b6": 258,
261
+ "BNd5c3(x)": 259,
262
+ "BNd5e3(x)": 260,
263
+ "BNd5f4": 261,
264
+ "BNd5f6": 262,
265
+ "BNd7b6": 263,
266
+ "BNd7c5": 264,
267
+ "BNd7c5(x)": 265,
268
+ "BNd7e5": 266,
269
+ "BNd7e5(x)": 267,
270
+ "BNd7f6": 268,
271
+ "BNd7f6(x)": 269,
272
+ "BNd7f8": 270,
273
+ "BNe4c3(x)": 271,
274
+ "BNe4c5": 272,
275
+ "BNe4d2(x)": 273,
276
+ "BNe4d6": 274,
277
+ "BNe4f6": 275,
278
+ "BNe4g5": 276,
279
+ "BNe5c4": 277,
280
+ "BNe5c4(x)": 278,
281
+ "BNe5c6": 279,
282
+ "BNe5d3": 280,
283
+ "BNe5d3(x)": 281,
284
+ "BNe5f3(x+)": 282,
285
+ "BNe5g4": 283,
286
+ "BNe5g6": 284,
287
+ "BNe7c6": 285,
288
+ "BNe7d5": 286,
289
+ "BNe7d5(x)": 287,
290
+ "BNe7f5": 288,
291
+ "BNe7f5(x)": 289,
292
+ "BNe7g6": 290,
293
+ "BNf5d4": 291,
294
+ "BNf5d4(x)": 292,
295
+ "BNf5e3(x)": 293,
296
+ "BNf5h4": 294,
297
+ "BNf6d5": 295,
298
+ "BNf6d5(x)": 296,
299
+ "BNf6d7": 297,
300
+ "BNf6d7(x)": 298,
301
+ "BNf6e4": 299,
302
+ "BNf6e4(x)": 300,
303
+ "BNf6e8": 301,
304
+ "BNf6g4": 302,
305
+ "BNf6g4(x)": 303,
306
+ "BNf6g8": 304,
307
+ "BNf6h5": 305,
308
+ "BNf6h5(x)": 306,
309
+ "BNf6h7": 307,
310
+ "BNf8g6": 308,
311
+ "BNg4e3(x)": 309,
312
+ "BNg4e5": 310,
313
+ "BNg4e5(x)": 311,
314
+ "BNg4f6": 312,
315
+ "BNg4h6": 313,
316
+ "BNg6e5": 314,
317
+ "BNg6e5(x)": 315,
318
+ "BNg6e7": 316,
319
+ "BNg6f4": 317,
320
+ "BNg8e7": 318,
321
+ "BNg8f6": 319,
322
+ "BNg8f6(x)": 320,
323
+ "BNg8h6": 321,
324
+ "BNh5f4": 322,
325
+ "BNh5f6": 323,
326
+ "BNh6f5": 324,
327
+ "BPa2a1(Q)": 325,
328
+ "BPa3a2": 326,
329
+ "BPa4a3": 327,
330
+ "BPa4b3(x)": 328,
331
+ "BPa5a4": 329,
332
+ "BPa5b4(x)": 330,
333
+ "BPa6a5": 331,
334
+ "BPa6b5(x)": 332,
335
+ "BPa7a5": 333,
336
+ "BPa7a6": 334,
337
+ "BPa7b6(x)": 335,
338
+ "BPb3b2": 336,
339
+ "BPb4b3": 337,
340
+ "BPb4c3(x)": 338,
341
+ "BPb5a4(x)": 339,
342
+ "BPb5b4": 340,
343
+ "BPb5c4(x)": 341,
344
+ "BPb6a5(x)": 342,
345
+ "BPb6b5": 343,
346
+ "BPb6c5(x)": 344,
347
+ "BPb7a6(x)": 345,
348
+ "BPb7b5": 346,
349
+ "BPb7b6": 347,
350
+ "BPb7c6(x)": 348,
351
+ "BPc3c2": 349,
352
+ "BPc4b3(x)": 350,
353
+ "BPc4c3": 351,
354
+ "BPc4d3(x)": 352,
355
+ "BPc5b4(x)": 353,
356
+ "BPc5c4": 354,
357
+ "BPc5d4(x)": 355,
358
+ "BPc6b5(x)": 356,
359
+ "BPc6c5": 357,
360
+ "BPc6d5(x)": 358,
361
+ "BPc7b6(x)": 359,
362
+ "BPc7c5": 360,
363
+ "BPc7c6": 361,
364
+ "BPc7d6(x)": 362,
365
+ "BPd3d2": 363,
366
+ "BPd4c3(x)": 364,
367
+ "BPd4d3": 365,
368
+ "BPd4e3(x)": 366,
369
+ "BPd5c4(x)": 367,
370
+ "BPd5d4": 368,
371
+ "BPd5e4(x)": 369,
372
+ "BPd6c5(x)": 370,
373
+ "BPd6d5": 371,
374
+ "BPd6e5(x)": 372,
375
+ "BPd7c6(x)": 373,
376
+ "BPd7d5": 374,
377
+ "BPd7d6": 375,
378
+ "BPe3e2": 376,
379
+ "BPe4d3(x)": 377,
380
+ "BPe4e3": 378,
381
+ "BPe4f3(x)": 379,
382
+ "BPe5d4(x)": 380,
383
+ "BPe5e4": 381,
384
+ "BPe5f4(x)": 382,
385
+ "BPe6d5(x)": 383,
386
+ "BPe6e5": 384,
387
+ "BPe6f5(x)": 385,
388
+ "BPe7e5": 386,
389
+ "BPe7e6": 387,
390
+ "BPe7f6(x)": 388,
391
+ "BPf3f2": 389,
392
+ "BPf4f3": 390,
393
+ "BPf4g3(x)": 391,
394
+ "BPf5e4(x)": 392,
395
+ "BPf5f4": 393,
396
+ "BPf5g4(x)": 394,
397
+ "BPf6e5(x)": 395,
398
+ "BPf6f5": 396,
399
+ "BPf6g5(x)": 397,
400
+ "BPf7e6(x)": 398,
401
+ "BPf7f5": 399,
402
+ "BPf7f6": 400,
403
+ "BPf7g6(x)": 401,
404
+ "BPg3g2": 402,
405
+ "BPg4g3": 403,
406
+ "BPg5f4(x)": 404,
407
+ "BPg5g4": 405,
408
+ "BPg5h4(x)": 406,
409
+ "BPg6f5(x)": 407,
410
+ "BPg6g5": 408,
411
+ "BPg6h5(x)": 409,
412
+ "BPg7f6(x)": 410,
413
+ "BPg7g5": 411,
414
+ "BPg7g6": 412,
415
+ "BPg7h6(x)": 413,
416
+ "BPh3h2": 414,
417
+ "BPh4g3(x)": 415,
418
+ "BPh4h3": 416,
419
+ "BPh5g4(x)": 417,
420
+ "BPh5h4": 418,
421
+ "BPh6g5(x)": 419,
422
+ "BPh6h5": 420,
423
+ "BPh7g6(x)": 421,
424
+ "BPh7h5": 422,
425
+ "BPh7h6": 423,
426
+ "BQa5b6": 424,
427
+ "BQa5c7": 425,
428
+ "BQb6b2(x)": 426,
429
+ "BQb6c7": 427,
430
+ "BQc7b6": 428,
431
+ "BQc7c6": 429,
432
+ "BQc7d7": 430,
433
+ "BQc7d8": 431,
434
+ "BQc7e5(x)": 432,
435
+ "BQc7e7": 433,
436
+ "BQd5a5": 434,
437
+ "BQd5d8": 435,
438
+ "BQd7c6": 436,
439
+ "BQd7c7": 437,
440
+ "BQd7e6": 438,
441
+ "BQd7e7": 439,
442
+ "BQd8a5": 440,
443
+ "BQd8a5(+)": 441,
444
+ "BQd8b6": 442,
445
+ "BQd8c7": 443,
446
+ "BQd8c8": 444,
447
+ "BQd8d1(x+)": 445,
448
+ "BQd8d4(x)": 446,
449
+ "BQd8d5": 447,
450
+ "BQd8d5(x)": 448,
451
+ "BQd8d6": 449,
452
+ "BQd8d6(x)": 450,
453
+ "BQd8d7": 451,
454
+ "BQd8d7(x)": 452,
455
+ "BQd8e7": 453,
456
+ "BQd8e7(x)": 454,
457
+ "BQd8e8": 455,
458
+ "BQd8f6": 456,
459
+ "BQd8f6(x)": 457,
460
+ "BQd8g5": 458,
461
+ "BQd8g5(x)": 459,
462
+ "BQd8h4": 460,
463
+ "BQd8h4(+)": 461,
464
+ "BQe7d6": 462,
465
+ "BQe7d7": 463,
466
+ "BQe7e6": 464,
467
+ "BQe7f6": 465,
468
+ "BQe7f7": 466,
469
+ "BQf6e7": 467,
470
+ "BQf6g6": 468,
471
+ "BRa8a7": 469,
472
+ "BRa8b8": 470,
473
+ "BRa8c8": 471,
474
+ "BRa8d8": 472,
475
+ "BRa8d8(x)": 473,
476
+ "BRa8e8": 474,
477
+ "BRa8e8(x)": 475,
478
+ "BRa8f8": 476,
479
+ "BRa8f8(x)": 477,
480
+ "BRa8g8": 478,
481
+ "BRb8a8": 479,
482
+ "BRb8b2(x)": 480,
483
+ "BRb8b7": 481,
484
+ "BRb8c8": 482,
485
+ "BRb8d8": 483,
486
+ "BRb8e8": 484,
487
+ "BRc8a8": 485,
488
+ "BRc8b8": 486,
489
+ "BRc8c2": 487,
490
+ "BRc8c2(x)": 488,
491
+ "BRc8c3(x)": 489,
492
+ "BRc8c4": 490,
493
+ "BRc8c4(x)": 491,
494
+ "BRc8c6": 492,
495
+ "BRc8c7": 493,
496
+ "BRc8d8": 494,
497
+ "BRc8e8": 495,
498
+ "BRc8f8": 496,
499
+ "BRd8b8": 497,
500
+ "BRd8c8": 498,
501
+ "BRd8d1(x)": 499,
502
+ "BRd8d1(x+)": 500,
503
+ "BRd8d2": 501,
504
+ "BRd8d3": 502,
505
+ "BRd8d3(x)": 503,
506
+ "BRd8d4": 504,
507
+ "BRd8d4(x)": 505,
508
+ "BRd8d5": 506,
509
+ "BRd8d5(x)": 507,
510
+ "BRd8d6": 508,
511
+ "BRd8d6(x)": 509,
512
+ "BRd8d7": 510,
513
+ "BRd8d7(x)": 511,
514
+ "BRd8e8": 512,
515
+ "BRd8f8": 513,
516
+ "BRd8g8": 514,
517
+ "BRe8c8": 515,
518
+ "BRe8d8": 516,
519
+ "BRe8e1(x+)": 517,
520
+ "BRe8e2": 518,
521
+ "BRe8e3(x)": 519,
522
+ "BRe8e4(x)": 520,
523
+ "BRe8e5": 521,
524
+ "BRe8e5(x)": 522,
525
+ "BRe8e6": 523,
526
+ "BRe8e6(x)": 524,
527
+ "BRe8e7": 525,
528
+ "BRe8e7(x)": 526,
529
+ "BRe8f8": 527,
530
+ "BRf8a8": 528,
531
+ "BRf8b8": 529,
532
+ "BRf8c8": 530,
533
+ "BRf8d8": 531,
534
+ "BRf8d8(x)": 532,
535
+ "BRf8e8": 533,
536
+ "BRf8e8(+)": 534,
537
+ "BRf8f1(x+)": 535,
538
+ "BRf8f3(x)": 536,
539
+ "BRf8f4(x)": 537,
540
+ "BRf8f5": 538,
541
+ "BRf8f5(x)": 539,
542
+ "BRf8f6": 540,
543
+ "BRf8f6(x)": 541,
544
+ "BRf8f7": 542,
545
+ "BRf8f7(x)": 543,
546
+ "BRf8g8": 544,
547
+ "BRf8h8": 545,
548
+ "BRg8g7": 546,
549
+ "BRh8c8": 547,
550
+ "BRh8d8": 548,
551
+ "BRh8e8": 549,
552
+ "BRh8f8": 550,
553
+ "BRh8g8": 551,
554
+ "WBa4b3": 552,
555
+ "WBb2a3": 553,
556
+ "WBb2c1": 554,
557
+ "WBb2c3": 555,
558
+ "WBb2d4(x)": 556,
559
+ "WBb2e5(x)": 557,
560
+ "WBb2f6(x)": 558,
561
+ "WBb3c2": 559,
562
+ "WBb3d5(x)": 560,
563
+ "WBb5a4": 561,
564
+ "WBb5c4": 562,
565
+ "WBb5c6(x)": 563,
566
+ "WBb5c6(x+)": 564,
567
+ "WBb5d3": 565,
568
+ "WBb5d7(x+)": 566,
569
+ "WBb5e2": 567,
570
+ "WBc1a3": 568,
571
+ "WBc1b2": 569,
572
+ "WBc1d2": 570,
573
+ "WBc1e3": 571,
574
+ "WBc1f4": 572,
575
+ "WBc1f4(x)": 573,
576
+ "WBc1g5": 574,
577
+ "WBc1g5(x)": 575,
578
+ "WBc1h6": 576,
579
+ "WBc1h6(x)": 577,
580
+ "WBc2b3": 578,
581
+ "WBc4a2": 579,
582
+ "WBc4b3": 580,
583
+ "WBc4b5": 581,
584
+ "WBc4b5(+)": 582,
585
+ "WBc4d3": 583,
586
+ "WBc4d5": 584,
587
+ "WBc4d5(x)": 585,
588
+ "WBc4e2": 586,
589
+ "WBc4e6(x)": 587,
590
+ "WBc4f7(x+)": 588,
591
+ "WBd2b4": 589,
592
+ "WBd2b4(x)": 590,
593
+ "WBd2c3": 591,
594
+ "WBd2c3(x)": 592,
595
+ "WBd2e3": 593,
596
+ "WBd2f4": 594,
597
+ "WBd2g5": 595,
598
+ "WBd3b1": 596,
599
+ "WBd3b5": 597,
600
+ "WBd3c2": 598,
601
+ "WBd3c4": 599,
602
+ "WBd3c4(x)": 600,
603
+ "WBd3e2": 601,
604
+ "WBd3e4": 602,
605
+ "WBd3e4(x)": 603,
606
+ "WBd3f5(x)": 604,
607
+ "WBd3g6(x)": 605,
608
+ "WBd3h7(x+)": 606,
609
+ "WBe2b5": 607,
610
+ "WBe2c4": 608,
611
+ "WBe2c4(x)": 609,
612
+ "WBe2d3": 610,
613
+ "WBe2f1": 611,
614
+ "WBe2f3": 612,
615
+ "WBe2f3(x)": 613,
616
+ "WBe2g4": 614,
617
+ "WBe2g4(x)": 615,
618
+ "WBe3a7(x)": 616,
619
+ "WBe3b6(x)": 617,
620
+ "WBe3c5": 618,
621
+ "WBe3c5(x)": 619,
622
+ "WBe3d2": 620,
623
+ "WBe3d4": 621,
624
+ "WBe3d4(x)": 622,
625
+ "WBe3f2": 623,
626
+ "WBe3f4": 624,
627
+ "WBe3f4(x)": 625,
628
+ "WBe3g5": 626,
629
+ "WBe3h6": 627,
630
+ "WBf1b5": 628,
631
+ "WBf1b5(+)": 629,
632
+ "WBf1c4": 630,
633
+ "WBf1c4(x)": 631,
634
+ "WBf1d3": 632,
635
+ "WBf1e2": 633,
636
+ "WBf1g2": 634,
637
+ "WBf1h3": 635,
638
+ "WBf3e2": 636,
639
+ "WBf4c7(x)": 637,
640
+ "WBf4d2": 638,
641
+ "WBf4d6(x)": 639,
642
+ "WBf4e3": 640,
643
+ "WBf4e5": 641,
644
+ "WBf4e5(x)": 642,
645
+ "WBf4g3": 643,
646
+ "WBf4g5": 644,
647
+ "WBg2d5(x)": 645,
648
+ "WBg2e4(x)": 646,
649
+ "WBg2f1": 647,
650
+ "WBg2f3(x)": 648,
651
+ "WBg2h3": 649,
652
+ "WBg3e5(x)": 650,
653
+ "WBg5d2": 651,
654
+ "WBg5e3": 652,
655
+ "WBg5e7(x)": 653,
656
+ "WBg5f4": 654,
657
+ "WBg5f6(x)": 655,
658
+ "WBg5h4": 656,
659
+ "WBg5h6": 657,
660
+ "WBh4g3": 658,
661
+ "WBh6g7(x)": 659,
662
+ "WKb1a1": 660,
663
+ "WKb1a2": 661,
664
+ "WKb1c1": 662,
665
+ "WKb1c2": 663,
666
+ "WKc1b1": 664,
667
+ "WKc1b2": 665,
668
+ "WKc1c2": 666,
669
+ "WKc1d1": 667,
670
+ "WKc1d2": 668,
671
+ "WKc2b3": 669,
672
+ "WKc2d2": 670,
673
+ "WKc2d3": 671,
674
+ "WKc3b4": 672,
675
+ "WKd1c1": 673,
676
+ "WKd1c2": 674,
677
+ "WKd1d2": 675,
678
+ "WKd1e1": 676,
679
+ "WKd1e2": 677,
680
+ "WKd2c1": 678,
681
+ "WKd2c2": 679,
682
+ "WKd2c3": 680,
683
+ "WKd2d3": 681,
684
+ "WKd2e1": 682,
685
+ "WKd2e2": 683,
686
+ "WKd2e3": 684,
687
+ "WKd3c2": 685,
688
+ "WKd3c3": 686,
689
+ "WKd3c4": 687,
690
+ "WKd3d4": 688,
691
+ "WKd3e2": 689,
692
+ "WKd3e3": 690,
693
+ "WKd3e4": 691,
694
+ "WKd4c5": 692,
695
+ "WKe1c1(O)": 693,
696
+ "WKe1d1": 694,
697
+ "WKe1d1(x)": 695,
698
+ "WKe1d2": 696,
699
+ "WKe1e2": 697,
700
+ "WKe1f1": 698,
701
+ "WKe1f2": 699,
702
+ "WKe1f2(x)": 700,
703
+ "WKe1g1(o)": 701,
704
+ "WKe2d1": 702,
705
+ "WKe2d2": 703,
706
+ "WKe2d3": 704,
707
+ "WKe2e1": 705,
708
+ "WKe2e3": 706,
709
+ "WKe2f1": 707,
710
+ "WKe2f2": 708,
711
+ "WKe2f3": 709,
712
+ "WKe3d2": 710,
713
+ "WKe3d3": 711,
714
+ "WKe3d4": 712,
715
+ "WKe3e4": 713,
716
+ "WKe3f2": 714,
717
+ "WKe3f3": 715,
718
+ "WKe3f4": 716,
719
+ "WKe4d5": 717,
720
+ "WKf1e1": 718,
721
+ "WKf1e2": 719,
722
+ "WKf1f2": 720,
723
+ "WKf1g1": 721,
724
+ "WKf1g2": 722,
725
+ "WKf2e1": 723,
726
+ "WKf2e2": 724,
727
+ "WKf2e3": 725,
728
+ "WKf2f1": 726,
729
+ "WKf2f3": 727,
730
+ "WKf2g1": 728,
731
+ "WKf2g2": 729,
732
+ "WKf2g3": 730,
733
+ "WKf3e2": 731,
734
+ "WKf3e3": 732,
735
+ "WKf3e4": 733,
736
+ "WKf3f2": 734,
737
+ "WKf3f4": 735,
738
+ "WKf3g2": 736,
739
+ "WKf3g3": 737,
740
+ "WKf3g4": 738,
741
+ "WKf4e3": 739,
742
+ "WKf4e5": 740,
743
+ "WKf4g5": 741,
744
+ "WKg1f1": 742,
745
+ "WKg1f1(x)": 743,
746
+ "WKg1f2": 744,
747
+ "WKg1f2(x)": 745,
748
+ "WKg1g2": 746,
749
+ "WKg1g2(x)": 747,
750
+ "WKg1h1": 748,
751
+ "WKg1h2": 749,
752
+ "WKg2f1": 750,
753
+ "WKg2f2": 751,
754
+ "WKg2f3": 752,
755
+ "WKg2g1": 753,
756
+ "WKg2g3": 754,
757
+ "WKg2h1": 755,
758
+ "WKg2h2": 756,
759
+ "WKg2h3": 757,
760
+ "WKg3f2": 758,
761
+ "WKg3f3": 759,
762
+ "WKg3f4": 760,
763
+ "WKg3g2": 761,
764
+ "WKg3g4": 762,
765
+ "WKg3h4": 763,
766
+ "WKg4g5": 764,
767
+ "WKh1g1": 765,
768
+ "WKh1g2": 766,
769
+ "WKh1h2": 767,
770
+ "WKh2g1": 768,
771
+ "WKh2g2": 769,
772
+ "WKh2g3": 770,
773
+ "WKh2h1": 771,
774
+ "WKh2h3": 772,
775
+ "WKh3g2": 773,
776
+ "WKh3g4": 774,
777
+ "WKh3h4": 775,
778
+ "WNa3c2": 776,
779
+ "WNa3c4": 777,
780
+ "WNa4c3": 778,
781
+ "WNa4c5": 779,
782
+ "WNb1a3": 780,
783
+ "WNb1c3": 781,
784
+ "WNb1c3(x)": 782,
785
+ "WNb1d2": 783,
786
+ "WNb3c5": 784,
787
+ "WNb3d2": 785,
788
+ "WNb3d4": 786,
789
+ "WNb5c3": 787,
790
+ "WNb5d4": 788,
791
+ "WNb5d6": 789,
792
+ "WNc3a4": 790,
793
+ "WNc3b1": 791,
794
+ "WNc3b5": 792,
795
+ "WNc3b5(x)": 793,
796
+ "WNc3d1": 794,
797
+ "WNc3d5": 795,
798
+ "WNc3d5(x)": 796,
799
+ "WNc3e2": 797,
800
+ "WNc3e4": 798,
801
+ "WNc3e4(x)": 799,
802
+ "WNc4e3": 800,
803
+ "WNc4e5": 801,
804
+ "WNc7a8(x)": 802,
805
+ "WNd2b3": 803,
806
+ "WNd2c4": 804,
807
+ "WNd2c4(x)": 805,
808
+ "WNd2e4": 806,
809
+ "WNd2e4(x)": 807,
810
+ "WNd2f1": 808,
811
+ "WNd2f3": 809,
812
+ "WNd2f3(x)": 810,
813
+ "WNd4b3": 811,
814
+ "WNd4b5": 812,
815
+ "WNd4c6": 813,
816
+ "WNd4c6(x)": 814,
817
+ "WNd4e6(x)": 815,
818
+ "WNd4f3": 816,
819
+ "WNd4f5": 817,
820
+ "WNd5e3": 818,
821
+ "WNd5f6(x+)": 819,
822
+ "WNe2c3": 820,
823
+ "WNe2d4": 821,
824
+ "WNe2d4(x)": 822,
825
+ "WNe2f4": 823,
826
+ "WNe2f4(x)": 824,
827
+ "WNe2g3": 825,
828
+ "WNe4c3": 826,
829
+ "WNe4c5": 827,
830
+ "WNe4c5(x)": 828,
831
+ "WNe4d6": 829,
832
+ "WNe4f6(+)": 830,
833
+ "WNe4f6(x+)": 831,
834
+ "WNe4g3": 832,
835
+ "WNe4g5": 833,
836
+ "WNe5c4": 834,
837
+ "WNe5c6": 835,
838
+ "WNe5c6(x)": 836,
839
+ "WNe5d3": 837,
840
+ "WNe5d7(x)": 838,
841
+ "WNe5f3": 839,
842
+ "WNe5f7(x)": 840,
843
+ "WNe5g4": 841,
844
+ "WNe5g6(x)": 842,
845
+ "WNf1g3": 843,
846
+ "WNf3d2": 844,
847
+ "WNf3d4": 845,
848
+ "WNf3d4(x)": 846,
849
+ "WNf3e1": 847,
850
+ "WNf3e5": 848,
851
+ "WNf3e5(x)": 849,
852
+ "WNf3g5": 850,
853
+ "WNf3g5(+)": 851,
854
+ "WNf3g5(x)": 852,
855
+ "WNf3h2": 853,
856
+ "WNf3h4": 854,
857
+ "WNf3h4(x)": 855,
858
+ "WNg1e2": 856,
859
+ "WNg1f3": 857,
860
+ "WNg1h3": 858,
861
+ "WNg3e2": 859,
862
+ "WNg3e4": 860,
863
+ "WNg3f5": 861,
864
+ "WNg3h5": 862,
865
+ "WNg5e4": 863,
866
+ "WNg5e4(x)": 864,
867
+ "WNg5e6": 865,
868
+ "WNg5e6(x)": 866,
869
+ "WNg5f3": 867,
870
+ "WNg5f7(x)": 868,
871
+ "WNg5h3": 869,
872
+ "WNh2g4": 870,
873
+ "WNh3f4": 871,
874
+ "WNh4f3": 872,
875
+ "WNh4f5": 873,
876
+ "WNh4g6(x)": 874,
877
+ "WPa2a3": 875,
878
+ "WPa2a4": 876,
879
+ "WPa2b3(x)": 877,
880
+ "WPa3a4": 878,
881
+ "WPa3b4(x)": 879,
882
+ "WPa4a5": 880,
883
+ "WPa4b5(x)": 881,
884
+ "WPa5a6": 882,
885
+ "WPa5b6(x)": 883,
886
+ "WPa6a7": 884,
887
+ "WPa7a8(Q)": 885,
888
+ "WPb2a3(x)": 886,
889
+ "WPb2b3": 887,
890
+ "WPb2b4": 888,
891
+ "WPb2c3(x)": 889,
892
+ "WPb3a4(x)": 890,
893
+ "WPb3b4": 891,
894
+ "WPb3c4(x)": 892,
895
+ "WPb4a5(x)": 893,
896
+ "WPb4b5": 894,
897
+ "WPb4c5(x)": 895,
898
+ "WPb5b6": 896,
899
+ "WPb5c6(x)": 897,
900
+ "WPb6b7": 898,
901
+ "WPc2b3(x)": 899,
902
+ "WPc2c3": 900,
903
+ "WPc2c4": 901,
904
+ "WPc2d3(x)": 902,
905
+ "WPc3b4(x)": 903,
906
+ "WPc3c4": 904,
907
+ "WPc3d4(x)": 905,
908
+ "WPc4b5(x)": 906,
909
+ "WPc4c5": 907,
910
+ "WPc4d5(x)": 908,
911
+ "WPc5b6(x)": 909,
912
+ "WPc5c6": 910,
913
+ "WPc5d6(x)": 911,
914
+ "WPc6c7": 912,
915
+ "WPd2d3": 913,
916
+ "WPd2d4": 914,
917
+ "WPd3c4(x)": 915,
918
+ "WPd3d4": 916,
919
+ "WPd3e4(x)": 917,
920
+ "WPd4c5(x)": 918,
921
+ "WPd4d5": 919,
922
+ "WPd4e5(x)": 920,
923
+ "WPd5c6(x)": 921,
924
+ "WPd5d6": 922,
925
+ "WPd5e6(x)": 923,
926
+ "WPd6d7": 924,
927
+ "WPe2e3": 925,
928
+ "WPe2e4": 926,
929
+ "WPe3d4(x)": 927,
930
+ "WPe3e4": 928,
931
+ "WPe3f4(x)": 929,
932
+ "WPe4d5(x)": 930,
933
+ "WPe4e5": 931,
934
+ "WPe4f5(x)": 932,
935
+ "WPe5d6(x)": 933,
936
+ "WPe5e6": 934,
937
+ "WPe5f6(x)": 935,
938
+ "WPe6e7": 936,
939
+ "WPf2e3(x)": 937,
940
+ "WPf2f3": 938,
941
+ "WPf2f4": 939,
942
+ "WPf2g3(x)": 940,
943
+ "WPf3e4(x)": 941,
944
+ "WPf3f4": 942,
945
+ "WPf3g4(x)": 943,
946
+ "WPf4e5(x)": 944,
947
+ "WPf4f5": 945,
948
+ "WPf4g5(x)": 946,
949
+ "WPf5e6(x)": 947,
950
+ "WPf5f6": 948,
951
+ "WPf5g6(x)": 949,
952
+ "WPf6f7": 950,
953
+ "WPg2f3(x)": 951,
954
+ "WPg2g3": 952,
955
+ "WPg2g4": 953,
956
+ "WPg2h3(x)": 954,
957
+ "WPg3f4(x)": 955,
958
+ "WPg3g4": 956,
959
+ "WPg3h4(x)": 957,
960
+ "WPg4f5(x)": 958,
961
+ "WPg4g5": 959,
962
+ "WPg4h5(x)": 960,
963
+ "WPg5f6(x)": 961,
964
+ "WPg5g6": 962,
965
+ "WPg6g7": 963,
966
+ "WPh2g3(x)": 964,
967
+ "WPh2h3": 965,
968
+ "WPh2h4": 966,
969
+ "WPh3g4(x)": 967,
970
+ "WPh3h4": 968,
971
+ "WPh4g5(x)": 969,
972
+ "WPh4h5": 970,
973
+ "WPh5g6(x)": 971,
974
+ "WPh5h6": 972,
975
+ "WPh6h7": 973,
976
+ "WPh7h8(Q)": 974,
977
+ "WQb3b7(x)": 975,
978
+ "WQb3c2": 976,
979
+ "WQc2b3": 977,
980
+ "WQc2d2": 978,
981
+ "WQc2e2": 979,
982
+ "WQd1a4": 980,
983
+ "WQd1a4(+)": 981,
984
+ "WQd1b3": 982,
985
+ "WQd1c1": 983,
986
+ "WQd1c2": 984,
987
+ "WQd1d2": 985,
988
+ "WQd1d2(x)": 986,
989
+ "WQd1d3": 987,
990
+ "WQd1d3(x)": 988,
991
+ "WQd1d4": 989,
992
+ "WQd1d4(x)": 990,
993
+ "WQd1d5(x)": 991,
994
+ "WQd1d8(x+)": 992,
995
+ "WQd1e1": 993,
996
+ "WQd1e2": 994,
997
+ "WQd1e2(x)": 995,
998
+ "WQd1f3": 996,
999
+ "WQd1f3(x)": 997,
1000
+ "WQd1g4": 998,
1001
+ "WQd1g4(x)": 999,
1002
+ "WQd1h5": 1000,
1003
+ "WQd1h5(+)": 1001,
1004
+ "WQd2d3": 1002,
1005
+ "WQd2e2": 1003,
1006
+ "WQd2e3": 1004,
1007
+ "WQd2f4": 1005,
1008
+ "WQd3d2": 1006,
1009
+ "WQd3e2": 1007,
1010
+ "WQd3e3": 1008,
1011
+ "WQd4d1": 1009,
1012
+ "WQe2d2": 1010,
1013
+ "WQe2d3": 1011,
1014
+ "WQe2e3": 1012,
1015
+ "WQe2e4(x)": 1013,
1016
+ "WQe2f2": 1014,
1017
+ "WQe2f3": 1015,
1018
+ "WQe2g4": 1016,
1019
+ "WQf3e2": 1017,
1020
+ "WQf3e3": 1018,
1021
+ "WQf3g3": 1019,
1022
+ "WQh5f3": 1020,
1023
+ "WRa1a2": 1021,
1024
+ "WRa1b1": 1022,
1025
+ "WRa1c1": 1023,
1026
+ "WRa1d1": 1024,
1027
+ "WRa1d1(x)": 1025,
1028
+ "WRa1e1": 1026,
1029
+ "WRa1e1(x)": 1027,
1030
+ "WRa1f1": 1028,
1031
+ "WRa1g1": 1029,
1032
+ "WRb1a1": 1030,
1033
+ "WRb1b7(x)": 1031,
1034
+ "WRb1c1": 1032,
1035
+ "WRb1d1": 1033,
1036
+ "WRb1e1": 1034,
1037
+ "WRc1b1": 1035,
1038
+ "WRc1c2": 1036,
1039
+ "WRc1c3": 1037,
1040
+ "WRc1c6(x)": 1038,
1041
+ "WRc1c7": 1039,
1042
+ "WRc1d1": 1040,
1043
+ "WRc1e1": 1041,
1044
+ "WRd1b1": 1042,
1045
+ "WRd1c1": 1043,
1046
+ "WRd1d2": 1044,
1047
+ "WRd1d2(x)": 1045,
1048
+ "WRd1d3": 1046,
1049
+ "WRd1d3(x)": 1047,
1050
+ "WRd1d4": 1048,
1051
+ "WRd1d4(x)": 1049,
1052
+ "WRd1d5(x)": 1050,
1053
+ "WRd1d6": 1051,
1054
+ "WRd1d6(x)": 1052,
1055
+ "WRd1d7": 1053,
1056
+ "WRd1d7(x)": 1054,
1057
+ "WRd1d8(x)": 1055,
1058
+ "WRd1d8(x+)": 1056,
1059
+ "WRd1e1": 1057,
1060
+ "WRd1f1": 1058,
1061
+ "WRd1g1": 1059,
1062
+ "WRe1b1": 1060,
1063
+ "WRe1c1": 1061,
1064
+ "WRe1d1": 1062,
1065
+ "WRe1d1(x)": 1063,
1066
+ "WRe1e2": 1064,
1067
+ "WRe1e2(x)": 1065,
1068
+ "WRe1e3": 1066,
1069
+ "WRe1e3(x)": 1067,
1070
+ "WRe1e4": 1068,
1071
+ "WRe1e4(x)": 1069,
1072
+ "WRe1e5": 1070,
1073
+ "WRe1e5(x)": 1071,
1074
+ "WRe1e6(x)": 1072,
1075
+ "WRe1e7": 1073,
1076
+ "WRe1e7(x)": 1074,
1077
+ "WRe1e8(x)": 1075,
1078
+ "WRe1e8(x+)": 1076,
1079
+ "WRe1f1": 1077,
1080
+ "WRe1g1": 1078,
1081
+ "WRf1a1": 1079,
1082
+ "WRf1b1": 1080,
1083
+ "WRf1c1": 1081,
1084
+ "WRf1d1": 1082,
1085
+ "WRf1d1(x)": 1083,
1086
+ "WRf1e1": 1084,
1087
+ "WRf1e1(+)": 1085,
1088
+ "WRf1f2": 1086,
1089
+ "WRf1f2(x)": 1087,
1090
+ "WRf1f3": 1088,
1091
+ "WRf1f3(x)": 1089,
1092
+ "WRf1f4": 1090,
1093
+ "WRf1f4(x)": 1091,
1094
+ "WRf1f5(x)": 1092,
1095
+ "WRf1f6(x)": 1093,
1096
+ "WRf1f8(x+)": 1094,
1097
+ "WRf1g1": 1095,
1098
+ "WRf1h1": 1096,
1099
+ "WRf3g3": 1097,
1100
+ "WRg1g2": 1098,
1101
+ "WRh1c1": 1099,
1102
+ "WRh1d1": 1100,
1103
+ "WRh1e1": 1101,
1104
+ "WRh1f1": 1102,
1105
+ "WRh1g1": 1103
1106
+ }