vamsin07 commited on
Commit
8e85f09
·
verified ·
1 Parent(s): 31b7de9

BuzzASR Sindhi (FFT)

Browse files
README.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: sd
3
+ license: mit
4
+ library_name: transformers
5
+ pipeline_tag: automatic-speech-recognition
6
+ base_model: openai/whisper-large-v3
7
+ tags: [automatic-speech-recognition, whisper, sindhi, buzzasr]
8
+ datasets: [google/fleurs]
9
+ metrics: [cer, wer]
10
+ ---
11
+
12
+ # BuzzASR — Sindhi
13
+
14
+ A monolingual automatic speech recognition model for **Sindhi**, fine-tuned from
15
+ [openai/whisper-large-v3](https://huggingface.co/openai/whisper-large-v3). Part of **BuzzASR**,
16
+ a suite of 102 language-specialized ASR models (Findings of EMNLP 2026).
17
+
18
+ This model uses **full fine-tuning (native per-language tokenizer replacement + text multitask fine-tuning)**.
19
+
20
+ ## Results (normalized CER / WER, %)
21
+
22
+ | Test set | CER | WER | Whisper-large-v3 (zero-shot) CER |
23
+ |---|---|---|---|
24
+ | FLEURS | 11.74 | 25.83 | 93.97 |
25
+ | Common Voice 25 | 0.46 | 0.61 | 93.3 |
26
+ | Combined | 11.59 | 25.48 | 84.65 |
27
+
28
+ ~7.3x CER reduction over Whisper zero-shot on the combined test set.
29
+
30
+ ## Usage
31
+
32
+ ```python
33
+ import torch, torchaudio
34
+ from transformers import WhisperForConditionalGeneration, WhisperProcessor
35
+
36
+ model = WhisperForConditionalGeneration.from_pretrained("BuzzASR/sindhi", torch_dtype=torch.float16).to("cuda").eval()
37
+ proc = WhisperProcessor.from_pretrained("BuzzASR/sindhi")
38
+
39
+ wav, sr = torchaudio.load("audio.wav") # 16 kHz mono
40
+ feats = proc(wav[0], sampling_rate=16000, return_tensors="pt").input_features.to("cuda").half()
41
+ ids = model.generate(feats, num_beams=1, no_repeat_ngram_size=3, repetition_penalty=1.2)
42
+ print(proc.batch_decode(ids, skip_special_tokens=True)[0])
43
+ ```
44
+ The language/task prompt is baked into the generation config, so no `language=` argument is needed.
45
+
46
+ ## Training data
47
+ [FLEURS](https://huggingface.co/datasets/google/fleurs) + **Common Voice Corpus 25.0** (Mozilla, March 2025; https://commonvoice.mozilla.org/en/datasets), capped per the paper. Text-only data from the **Goldfish** corpus (Chang et al., 2026).
48
+
49
+ ## Limitations
50
+ Monolingual (Sindhi only). Evaluated on FLEURS / Common Voice test splits; other domains or dialects may differ.
51
+
52
+ ## Citation
53
+ Project page: https://lemn-lab.github.io/buzzasr-docs/
added_tokens.json ADDED
@@ -0,0 +1,1611 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "<|0.00|>": 51973,
3
+ "<|0.02|>": 51974,
4
+ "<|0.04|>": 51975,
5
+ "<|0.06|>": 51976,
6
+ "<|0.08|>": 51977,
7
+ "<|0.10|>": 51978,
8
+ "<|0.12|>": 51979,
9
+ "<|0.14|>": 51980,
10
+ "<|0.16|>": 51981,
11
+ "<|0.18|>": 51982,
12
+ "<|0.20|>": 51983,
13
+ "<|0.22|>": 51984,
14
+ "<|0.24|>": 51985,
15
+ "<|0.26|>": 51986,
16
+ "<|0.28|>": 51987,
17
+ "<|0.30|>": 51988,
18
+ "<|0.32|>": 51989,
19
+ "<|0.34|>": 51990,
20
+ "<|0.36|>": 51991,
21
+ "<|0.38|>": 51992,
22
+ "<|0.40|>": 51993,
23
+ "<|0.42|>": 51994,
24
+ "<|0.44|>": 51995,
25
+ "<|0.46|>": 51996,
26
+ "<|0.48|>": 51997,
27
+ "<|0.50|>": 51998,
28
+ "<|0.52|>": 51999,
29
+ "<|0.54|>": 52000,
30
+ "<|0.56|>": 52001,
31
+ "<|0.58|>": 52002,
32
+ "<|0.60|>": 52003,
33
+ "<|0.62|>": 52004,
34
+ "<|0.64|>": 52005,
35
+ "<|0.66|>": 52006,
36
+ "<|0.68|>": 52007,
37
+ "<|0.70|>": 52008,
38
+ "<|0.72|>": 52009,
39
+ "<|0.74|>": 52010,
40
+ "<|0.76|>": 52011,
41
+ "<|0.78|>": 52012,
42
+ "<|0.80|>": 52013,
43
+ "<|0.82|>": 52014,
44
+ "<|0.84|>": 52015,
45
+ "<|0.86|>": 52016,
46
+ "<|0.88|>": 52017,
47
+ "<|0.90|>": 52018,
48
+ "<|0.92|>": 52019,
49
+ "<|0.94|>": 52020,
50
+ "<|0.96|>": 52021,
51
+ "<|0.98|>": 52022,
52
+ "<|1.00|>": 52023,
53
+ "<|1.02|>": 52024,
54
+ "<|1.04|>": 52025,
55
+ "<|1.06|>": 52026,
56
+ "<|1.08|>": 52027,
57
+ "<|1.10|>": 52028,
58
+ "<|1.12|>": 52029,
59
+ "<|1.14|>": 52030,
60
+ "<|1.16|>": 52031,
61
+ "<|1.18|>": 52032,
62
+ "<|1.20|>": 52033,
63
+ "<|1.22|>": 52034,
64
+ "<|1.24|>": 52035,
65
+ "<|1.26|>": 52036,
66
+ "<|1.28|>": 52037,
67
+ "<|1.30|>": 52038,
68
+ "<|1.32|>": 52039,
69
+ "<|1.34|>": 52040,
70
+ "<|1.36|>": 52041,
71
+ "<|1.38|>": 52042,
72
+ "<|1.40|>": 52043,
73
+ "<|1.42|>": 52044,
74
+ "<|1.44|>": 52045,
75
+ "<|1.46|>": 52046,
76
+ "<|1.48|>": 52047,
77
+ "<|1.50|>": 52048,
78
+ "<|1.52|>": 52049,
79
+ "<|1.54|>": 52050,
80
+ "<|1.56|>": 52051,
81
+ "<|1.58|>": 52052,
82
+ "<|1.60|>": 52053,
83
+ "<|1.62|>": 52054,
84
+ "<|1.64|>": 52055,
85
+ "<|1.66|>": 52056,
86
+ "<|1.68|>": 52057,
87
+ "<|1.70|>": 52058,
88
+ "<|1.72|>": 52059,
89
+ "<|1.74|>": 52060,
90
+ "<|1.76|>": 52061,
91
+ "<|1.78|>": 52062,
92
+ "<|1.80|>": 52063,
93
+ "<|1.82|>": 52064,
94
+ "<|1.84|>": 52065,
95
+ "<|1.86|>": 52066,
96
+ "<|1.88|>": 52067,
97
+ "<|1.90|>": 52068,
98
+ "<|1.92|>": 52069,
99
+ "<|1.94|>": 52070,
100
+ "<|1.96|>": 52071,
101
+ "<|1.98|>": 52072,
102
+ "<|10.00|>": 52473,
103
+ "<|10.02|>": 52474,
104
+ "<|10.04|>": 52475,
105
+ "<|10.06|>": 52476,
106
+ "<|10.08|>": 52477,
107
+ "<|10.10|>": 52478,
108
+ "<|10.12|>": 52479,
109
+ "<|10.14|>": 52480,
110
+ "<|10.16|>": 52481,
111
+ "<|10.18|>": 52482,
112
+ "<|10.20|>": 52483,
113
+ "<|10.22|>": 52484,
114
+ "<|10.24|>": 52485,
115
+ "<|10.26|>": 52486,
116
+ "<|10.28|>": 52487,
117
+ "<|10.30|>": 52488,
118
+ "<|10.32|>": 52489,
119
+ "<|10.34|>": 52490,
120
+ "<|10.36|>": 52491,
121
+ "<|10.38|>": 52492,
122
+ "<|10.40|>": 52493,
123
+ "<|10.42|>": 52494,
124
+ "<|10.44|>": 52495,
125
+ "<|10.46|>": 52496,
126
+ "<|10.48|>": 52497,
127
+ "<|10.50|>": 52498,
128
+ "<|10.52|>": 52499,
129
+ "<|10.54|>": 52500,
130
+ "<|10.56|>": 52501,
131
+ "<|10.58|>": 52502,
132
+ "<|10.60|>": 52503,
133
+ "<|10.62|>": 52504,
134
+ "<|10.64|>": 52505,
135
+ "<|10.66|>": 52506,
136
+ "<|10.68|>": 52507,
137
+ "<|10.70|>": 52508,
138
+ "<|10.72|>": 52509,
139
+ "<|10.74|>": 52510,
140
+ "<|10.76|>": 52511,
141
+ "<|10.78|>": 52512,
142
+ "<|10.80|>": 52513,
143
+ "<|10.82|>": 52514,
144
+ "<|10.84|>": 52515,
145
+ "<|10.86|>": 52516,
146
+ "<|10.88|>": 52517,
147
+ "<|10.90|>": 52518,
148
+ "<|10.92|>": 52519,
149
+ "<|10.94|>": 52520,
150
+ "<|10.96|>": 52521,
151
+ "<|10.98|>": 52522,
152
+ "<|11.00|>": 52523,
153
+ "<|11.02|>": 52524,
154
+ "<|11.04|>": 52525,
155
+ "<|11.06|>": 52526,
156
+ "<|11.08|>": 52527,
157
+ "<|11.10|>": 52528,
158
+ "<|11.12|>": 52529,
159
+ "<|11.14|>": 52530,
160
+ "<|11.16|>": 52531,
161
+ "<|11.18|>": 52532,
162
+ "<|11.20|>": 52533,
163
+ "<|11.22|>": 52534,
164
+ "<|11.24|>": 52535,
165
+ "<|11.26|>": 52536,
166
+ "<|11.28|>": 52537,
167
+ "<|11.30|>": 52538,
168
+ "<|11.32|>": 52539,
169
+ "<|11.34|>": 52540,
170
+ "<|11.36|>": 52541,
171
+ "<|11.38|>": 52542,
172
+ "<|11.40|>": 52543,
173
+ "<|11.42|>": 52544,
174
+ "<|11.44|>": 52545,
175
+ "<|11.46|>": 52546,
176
+ "<|11.48|>": 52547,
177
+ "<|11.50|>": 52548,
178
+ "<|11.52|>": 52549,
179
+ "<|11.54|>": 52550,
180
+ "<|11.56|>": 52551,
181
+ "<|11.58|>": 52552,
182
+ "<|11.60|>": 52553,
183
+ "<|11.62|>": 52554,
184
+ "<|11.64|>": 52555,
185
+ "<|11.66|>": 52556,
186
+ "<|11.68|>": 52557,
187
+ "<|11.70|>": 52558,
188
+ "<|11.72|>": 52559,
189
+ "<|11.74|>": 52560,
190
+ "<|11.76|>": 52561,
191
+ "<|11.78|>": 52562,
192
+ "<|11.80|>": 52563,
193
+ "<|11.82|>": 52564,
194
+ "<|11.84|>": 52565,
195
+ "<|11.86|>": 52566,
196
+ "<|11.88|>": 52567,
197
+ "<|11.90|>": 52568,
198
+ "<|11.92|>": 52569,
199
+ "<|11.94|>": 52570,
200
+ "<|11.96|>": 52571,
201
+ "<|11.98|>": 52572,
202
+ "<|12.00|>": 52573,
203
+ "<|12.02|>": 52574,
204
+ "<|12.04|>": 52575,
205
+ "<|12.06|>": 52576,
206
+ "<|12.08|>": 52577,
207
+ "<|12.10|>": 52578,
208
+ "<|12.12|>": 52579,
209
+ "<|12.14|>": 52580,
210
+ "<|12.16|>": 52581,
211
+ "<|12.18|>": 52582,
212
+ "<|12.20|>": 52583,
213
+ "<|12.22|>": 52584,
214
+ "<|12.24|>": 52585,
215
+ "<|12.26|>": 52586,
216
+ "<|12.28|>": 52587,
217
+ "<|12.30|>": 52588,
218
+ "<|12.32|>": 52589,
219
+ "<|12.34|>": 52590,
220
+ "<|12.36|>": 52591,
221
+ "<|12.38|>": 52592,
222
+ "<|12.40|>": 52593,
223
+ "<|12.42|>": 52594,
224
+ "<|12.44|>": 52595,
225
+ "<|12.46|>": 52596,
226
+ "<|12.48|>": 52597,
227
+ "<|12.50|>": 52598,
228
+ "<|12.52|>": 52599,
229
+ "<|12.54|>": 52600,
230
+ "<|12.56|>": 52601,
231
+ "<|12.58|>": 52602,
232
+ "<|12.60|>": 52603,
233
+ "<|12.62|>": 52604,
234
+ "<|12.64|>": 52605,
235
+ "<|12.66|>": 52606,
236
+ "<|12.68|>": 52607,
237
+ "<|12.70|>": 52608,
238
+ "<|12.72|>": 52609,
239
+ "<|12.74|>": 52610,
240
+ "<|12.76|>": 52611,
241
+ "<|12.78|>": 52612,
242
+ "<|12.80|>": 52613,
243
+ "<|12.82|>": 52614,
244
+ "<|12.84|>": 52615,
245
+ "<|12.86|>": 52616,
246
+ "<|12.88|>": 52617,
247
+ "<|12.90|>": 52618,
248
+ "<|12.92|>": 52619,
249
+ "<|12.94|>": 52620,
250
+ "<|12.96|>": 52621,
251
+ "<|12.98|>": 52622,
252
+ "<|13.00|>": 52623,
253
+ "<|13.02|>": 52624,
254
+ "<|13.04|>": 52625,
255
+ "<|13.06|>": 52626,
256
+ "<|13.08|>": 52627,
257
+ "<|13.10|>": 52628,
258
+ "<|13.12|>": 52629,
259
+ "<|13.14|>": 52630,
260
+ "<|13.16|>": 52631,
261
+ "<|13.18|>": 52632,
262
+ "<|13.20|>": 52633,
263
+ "<|13.22|>": 52634,
264
+ "<|13.24|>": 52635,
265
+ "<|13.26|>": 52636,
266
+ "<|13.28|>": 52637,
267
+ "<|13.30|>": 52638,
268
+ "<|13.32|>": 52639,
269
+ "<|13.34|>": 52640,
270
+ "<|13.36|>": 52641,
271
+ "<|13.38|>": 52642,
272
+ "<|13.40|>": 52643,
273
+ "<|13.42|>": 52644,
274
+ "<|13.44|>": 52645,
275
+ "<|13.46|>": 52646,
276
+ "<|13.48|>": 52647,
277
+ "<|13.50|>": 52648,
278
+ "<|13.52|>": 52649,
279
+ "<|13.54|>": 52650,
280
+ "<|13.56|>": 52651,
281
+ "<|13.58|>": 52652,
282
+ "<|13.60|>": 52653,
283
+ "<|13.62|>": 52654,
284
+ "<|13.64|>": 52655,
285
+ "<|13.66|>": 52656,
286
+ "<|13.68|>": 52657,
287
+ "<|13.70|>": 52658,
288
+ "<|13.72|>": 52659,
289
+ "<|13.74|>": 52660,
290
+ "<|13.76|>": 52661,
291
+ "<|13.78|>": 52662,
292
+ "<|13.80|>": 52663,
293
+ "<|13.82|>": 52664,
294
+ "<|13.84|>": 52665,
295
+ "<|13.86|>": 52666,
296
+ "<|13.88|>": 52667,
297
+ "<|13.90|>": 52668,
298
+ "<|13.92|>": 52669,
299
+ "<|13.94|>": 52670,
300
+ "<|13.96|>": 52671,
301
+ "<|13.98|>": 52672,
302
+ "<|14.00|>": 52673,
303
+ "<|14.02|>": 52674,
304
+ "<|14.04|>": 52675,
305
+ "<|14.06|>": 52676,
306
+ "<|14.08|>": 52677,
307
+ "<|14.10|>": 52678,
308
+ "<|14.12|>": 52679,
309
+ "<|14.14|>": 52680,
310
+ "<|14.16|>": 52681,
311
+ "<|14.18|>": 52682,
312
+ "<|14.20|>": 52683,
313
+ "<|14.22|>": 52684,
314
+ "<|14.24|>": 52685,
315
+ "<|14.26|>": 52686,
316
+ "<|14.28|>": 52687,
317
+ "<|14.30|>": 52688,
318
+ "<|14.32|>": 52689,
319
+ "<|14.34|>": 52690,
320
+ "<|14.36|>": 52691,
321
+ "<|14.38|>": 52692,
322
+ "<|14.40|>": 52693,
323
+ "<|14.42|>": 52694,
324
+ "<|14.44|>": 52695,
325
+ "<|14.46|>": 52696,
326
+ "<|14.48|>": 52697,
327
+ "<|14.50|>": 52698,
328
+ "<|14.52|>": 52699,
329
+ "<|14.54|>": 52700,
330
+ "<|14.56|>": 52701,
331
+ "<|14.58|>": 52702,
332
+ "<|14.60|>": 52703,
333
+ "<|14.62|>": 52704,
334
+ "<|14.64|>": 52705,
335
+ "<|14.66|>": 52706,
336
+ "<|14.68|>": 52707,
337
+ "<|14.70|>": 52708,
338
+ "<|14.72|>": 52709,
339
+ "<|14.74|>": 52710,
340
+ "<|14.76|>": 52711,
341
+ "<|14.78|>": 52712,
342
+ "<|14.80|>": 52713,
343
+ "<|14.82|>": 52714,
344
+ "<|14.84|>": 52715,
345
+ "<|14.86|>": 52716,
346
+ "<|14.88|>": 52717,
347
+ "<|14.90|>": 52718,
348
+ "<|14.92|>": 52719,
349
+ "<|14.94|>": 52720,
350
+ "<|14.96|>": 52721,
351
+ "<|14.98|>": 52722,
352
+ "<|15.00|>": 52723,
353
+ "<|15.02|>": 52724,
354
+ "<|15.04|>": 52725,
355
+ "<|15.06|>": 52726,
356
+ "<|15.08|>": 52727,
357
+ "<|15.10|>": 52728,
358
+ "<|15.12|>": 52729,
359
+ "<|15.14|>": 52730,
360
+ "<|15.16|>": 52731,
361
+ "<|15.18|>": 52732,
362
+ "<|15.20|>": 52733,
363
+ "<|15.22|>": 52734,
364
+ "<|15.24|>": 52735,
365
+ "<|15.26|>": 52736,
366
+ "<|15.28|>": 52737,
367
+ "<|15.30|>": 52738,
368
+ "<|15.32|>": 52739,
369
+ "<|15.34|>": 52740,
370
+ "<|15.36|>": 52741,
371
+ "<|15.38|>": 52742,
372
+ "<|15.40|>": 52743,
373
+ "<|15.42|>": 52744,
374
+ "<|15.44|>": 52745,
375
+ "<|15.46|>": 52746,
376
+ "<|15.48|>": 52747,
377
+ "<|15.50|>": 52748,
378
+ "<|15.52|>": 52749,
379
+ "<|15.54|>": 52750,
380
+ "<|15.56|>": 52751,
381
+ "<|15.58|>": 52752,
382
+ "<|15.60|>": 52753,
383
+ "<|15.62|>": 52754,
384
+ "<|15.64|>": 52755,
385
+ "<|15.66|>": 52756,
386
+ "<|15.68|>": 52757,
387
+ "<|15.70|>": 52758,
388
+ "<|15.72|>": 52759,
389
+ "<|15.74|>": 52760,
390
+ "<|15.76|>": 52761,
391
+ "<|15.78|>": 52762,
392
+ "<|15.80|>": 52763,
393
+ "<|15.82|>": 52764,
394
+ "<|15.84|>": 52765,
395
+ "<|15.86|>": 52766,
396
+ "<|15.88|>": 52767,
397
+ "<|15.90|>": 52768,
398
+ "<|15.92|>": 52769,
399
+ "<|15.94|>": 52770,
400
+ "<|15.96|>": 52771,
401
+ "<|15.98|>": 52772,
402
+ "<|16.00|>": 52773,
403
+ "<|16.02|>": 52774,
404
+ "<|16.04|>": 52775,
405
+ "<|16.06|>": 52776,
406
+ "<|16.08|>": 52777,
407
+ "<|16.10|>": 52778,
408
+ "<|16.12|>": 52779,
409
+ "<|16.14|>": 52780,
410
+ "<|16.16|>": 52781,
411
+ "<|16.18|>": 52782,
412
+ "<|16.20|>": 52783,
413
+ "<|16.22|>": 52784,
414
+ "<|16.24|>": 52785,
415
+ "<|16.26|>": 52786,
416
+ "<|16.28|>": 52787,
417
+ "<|16.30|>": 52788,
418
+ "<|16.32|>": 52789,
419
+ "<|16.34|>": 52790,
420
+ "<|16.36|>": 52791,
421
+ "<|16.38|>": 52792,
422
+ "<|16.40|>": 52793,
423
+ "<|16.42|>": 52794,
424
+ "<|16.44|>": 52795,
425
+ "<|16.46|>": 52796,
426
+ "<|16.48|>": 52797,
427
+ "<|16.50|>": 52798,
428
+ "<|16.52|>": 52799,
429
+ "<|16.54|>": 52800,
430
+ "<|16.56|>": 52801,
431
+ "<|16.58|>": 52802,
432
+ "<|16.60|>": 52803,
433
+ "<|16.62|>": 52804,
434
+ "<|16.64|>": 52805,
435
+ "<|16.66|>": 52806,
436
+ "<|16.68|>": 52807,
437
+ "<|16.70|>": 52808,
438
+ "<|16.72|>": 52809,
439
+ "<|16.74|>": 52810,
440
+ "<|16.76|>": 52811,
441
+ "<|16.78|>": 52812,
442
+ "<|16.80|>": 52813,
443
+ "<|16.82|>": 52814,
444
+ "<|16.84|>": 52815,
445
+ "<|16.86|>": 52816,
446
+ "<|16.88|>": 52817,
447
+ "<|16.90|>": 52818,
448
+ "<|16.92|>": 52819,
449
+ "<|16.94|>": 52820,
450
+ "<|16.96|>": 52821,
451
+ "<|16.98|>": 52822,
452
+ "<|17.00|>": 52823,
453
+ "<|17.02|>": 52824,
454
+ "<|17.04|>": 52825,
455
+ "<|17.06|>": 52826,
456
+ "<|17.08|>": 52827,
457
+ "<|17.10|>": 52828,
458
+ "<|17.12|>": 52829,
459
+ "<|17.14|>": 52830,
460
+ "<|17.16|>": 52831,
461
+ "<|17.18|>": 52832,
462
+ "<|17.20|>": 52833,
463
+ "<|17.22|>": 52834,
464
+ "<|17.24|>": 52835,
465
+ "<|17.26|>": 52836,
466
+ "<|17.28|>": 52837,
467
+ "<|17.30|>": 52838,
468
+ "<|17.32|>": 52839,
469
+ "<|17.34|>": 52840,
470
+ "<|17.36|>": 52841,
471
+ "<|17.38|>": 52842,
472
+ "<|17.40|>": 52843,
473
+ "<|17.42|>": 52844,
474
+ "<|17.44|>": 52845,
475
+ "<|17.46|>": 52846,
476
+ "<|17.48|>": 52847,
477
+ "<|17.50|>": 52848,
478
+ "<|17.52|>": 52849,
479
+ "<|17.54|>": 52850,
480
+ "<|17.56|>": 52851,
481
+ "<|17.58|>": 52852,
482
+ "<|17.60|>": 52853,
483
+ "<|17.62|>": 52854,
484
+ "<|17.64|>": 52855,
485
+ "<|17.66|>": 52856,
486
+ "<|17.68|>": 52857,
487
+ "<|17.70|>": 52858,
488
+ "<|17.72|>": 52859,
489
+ "<|17.74|>": 52860,
490
+ "<|17.76|>": 52861,
491
+ "<|17.78|>": 52862,
492
+ "<|17.80|>": 52863,
493
+ "<|17.82|>": 52864,
494
+ "<|17.84|>": 52865,
495
+ "<|17.86|>": 52866,
496
+ "<|17.88|>": 52867,
497
+ "<|17.90|>": 52868,
498
+ "<|17.92|>": 52869,
499
+ "<|17.94|>": 52870,
500
+ "<|17.96|>": 52871,
501
+ "<|17.98|>": 52872,
502
+ "<|18.00|>": 52873,
503
+ "<|18.02|>": 52874,
504
+ "<|18.04|>": 52875,
505
+ "<|18.06|>": 52876,
506
+ "<|18.08|>": 52877,
507
+ "<|18.10|>": 52878,
508
+ "<|18.12|>": 52879,
509
+ "<|18.14|>": 52880,
510
+ "<|18.16|>": 52881,
511
+ "<|18.18|>": 52882,
512
+ "<|18.20|>": 52883,
513
+ "<|18.22|>": 52884,
514
+ "<|18.24|>": 52885,
515
+ "<|18.26|>": 52886,
516
+ "<|18.28|>": 52887,
517
+ "<|18.30|>": 52888,
518
+ "<|18.32|>": 52889,
519
+ "<|18.34|>": 52890,
520
+ "<|18.36|>": 52891,
521
+ "<|18.38|>": 52892,
522
+ "<|18.40|>": 52893,
523
+ "<|18.42|>": 52894,
524
+ "<|18.44|>": 52895,
525
+ "<|18.46|>": 52896,
526
+ "<|18.48|>": 52897,
527
+ "<|18.50|>": 52898,
528
+ "<|18.52|>": 52899,
529
+ "<|18.54|>": 52900,
530
+ "<|18.56|>": 52901,
531
+ "<|18.58|>": 52902,
532
+ "<|18.60|>": 52903,
533
+ "<|18.62|>": 52904,
534
+ "<|18.64|>": 52905,
535
+ "<|18.66|>": 52906,
536
+ "<|18.68|>": 52907,
537
+ "<|18.70|>": 52908,
538
+ "<|18.72|>": 52909,
539
+ "<|18.74|>": 52910,
540
+ "<|18.76|>": 52911,
541
+ "<|18.78|>": 52912,
542
+ "<|18.80|>": 52913,
543
+ "<|18.82|>": 52914,
544
+ "<|18.84|>": 52915,
545
+ "<|18.86|>": 52916,
546
+ "<|18.88|>": 52917,
547
+ "<|18.90|>": 52918,
548
+ "<|18.92|>": 52919,
549
+ "<|18.94|>": 52920,
550
+ "<|18.96|>": 52921,
551
+ "<|18.98|>": 52922,
552
+ "<|19.00|>": 52923,
553
+ "<|19.02|>": 52924,
554
+ "<|19.04|>": 52925,
555
+ "<|19.06|>": 52926,
556
+ "<|19.08|>": 52927,
557
+ "<|19.10|>": 52928,
558
+ "<|19.12|>": 52929,
559
+ "<|19.14|>": 52930,
560
+ "<|19.16|>": 52931,
561
+ "<|19.18|>": 52932,
562
+ "<|19.20|>": 52933,
563
+ "<|19.22|>": 52934,
564
+ "<|19.24|>": 52935,
565
+ "<|19.26|>": 52936,
566
+ "<|19.28|>": 52937,
567
+ "<|19.30|>": 52938,
568
+ "<|19.32|>": 52939,
569
+ "<|19.34|>": 52940,
570
+ "<|19.36|>": 52941,
571
+ "<|19.38|>": 52942,
572
+ "<|19.40|>": 52943,
573
+ "<|19.42|>": 52944,
574
+ "<|19.44|>": 52945,
575
+ "<|19.46|>": 52946,
576
+ "<|19.48|>": 52947,
577
+ "<|19.50|>": 52948,
578
+ "<|19.52|>": 52949,
579
+ "<|19.54|>": 52950,
580
+ "<|19.56|>": 52951,
581
+ "<|19.58|>": 52952,
582
+ "<|19.60|>": 52953,
583
+ "<|19.62|>": 52954,
584
+ "<|19.64|>": 52955,
585
+ "<|19.66|>": 52956,
586
+ "<|19.68|>": 52957,
587
+ "<|19.70|>": 52958,
588
+ "<|19.72|>": 52959,
589
+ "<|19.74|>": 52960,
590
+ "<|19.76|>": 52961,
591
+ "<|19.78|>": 52962,
592
+ "<|19.80|>": 52963,
593
+ "<|19.82|>": 52964,
594
+ "<|19.84|>": 52965,
595
+ "<|19.86|>": 52966,
596
+ "<|19.88|>": 52967,
597
+ "<|19.90|>": 52968,
598
+ "<|19.92|>": 52969,
599
+ "<|19.94|>": 52970,
600
+ "<|19.96|>": 52971,
601
+ "<|19.98|>": 52972,
602
+ "<|2.00|>": 52073,
603
+ "<|2.02|>": 52074,
604
+ "<|2.04|>": 52075,
605
+ "<|2.06|>": 52076,
606
+ "<|2.08|>": 52077,
607
+ "<|2.10|>": 52078,
608
+ "<|2.12|>": 52079,
609
+ "<|2.14|>": 52080,
610
+ "<|2.16|>": 52081,
611
+ "<|2.18|>": 52082,
612
+ "<|2.20|>": 52083,
613
+ "<|2.22|>": 52084,
614
+ "<|2.24|>": 52085,
615
+ "<|2.26|>": 52086,
616
+ "<|2.28|>": 52087,
617
+ "<|2.30|>": 52088,
618
+ "<|2.32|>": 52089,
619
+ "<|2.34|>": 52090,
620
+ "<|2.36|>": 52091,
621
+ "<|2.38|>": 52092,
622
+ "<|2.40|>": 52093,
623
+ "<|2.42|>": 52094,
624
+ "<|2.44|>": 52095,
625
+ "<|2.46|>": 52096,
626
+ "<|2.48|>": 52097,
627
+ "<|2.50|>": 52098,
628
+ "<|2.52|>": 52099,
629
+ "<|2.54|>": 52100,
630
+ "<|2.56|>": 52101,
631
+ "<|2.58|>": 52102,
632
+ "<|2.60|>": 52103,
633
+ "<|2.62|>": 52104,
634
+ "<|2.64|>": 52105,
635
+ "<|2.66|>": 52106,
636
+ "<|2.68|>": 52107,
637
+ "<|2.70|>": 52108,
638
+ "<|2.72|>": 52109,
639
+ "<|2.74|>": 52110,
640
+ "<|2.76|>": 52111,
641
+ "<|2.78|>": 52112,
642
+ "<|2.80|>": 52113,
643
+ "<|2.82|>": 52114,
644
+ "<|2.84|>": 52115,
645
+ "<|2.86|>": 52116,
646
+ "<|2.88|>": 52117,
647
+ "<|2.90|>": 52118,
648
+ "<|2.92|>": 52119,
649
+ "<|2.94|>": 52120,
650
+ "<|2.96|>": 52121,
651
+ "<|2.98|>": 52122,
652
+ "<|20.00|>": 52973,
653
+ "<|20.02|>": 52974,
654
+ "<|20.04|>": 52975,
655
+ "<|20.06|>": 52976,
656
+ "<|20.08|>": 52977,
657
+ "<|20.10|>": 52978,
658
+ "<|20.12|>": 52979,
659
+ "<|20.14|>": 52980,
660
+ "<|20.16|>": 52981,
661
+ "<|20.18|>": 52982,
662
+ "<|20.20|>": 52983,
663
+ "<|20.22|>": 52984,
664
+ "<|20.24|>": 52985,
665
+ "<|20.26|>": 52986,
666
+ "<|20.28|>": 52987,
667
+ "<|20.30|>": 52988,
668
+ "<|20.32|>": 52989,
669
+ "<|20.34|>": 52990,
670
+ "<|20.36|>": 52991,
671
+ "<|20.38|>": 52992,
672
+ "<|20.40|>": 52993,
673
+ "<|20.42|>": 52994,
674
+ "<|20.44|>": 52995,
675
+ "<|20.46|>": 52996,
676
+ "<|20.48|>": 52997,
677
+ "<|20.50|>": 52998,
678
+ "<|20.52|>": 52999,
679
+ "<|20.54|>": 53000,
680
+ "<|20.56|>": 53001,
681
+ "<|20.58|>": 53002,
682
+ "<|20.60|>": 53003,
683
+ "<|20.62|>": 53004,
684
+ "<|20.64|>": 53005,
685
+ "<|20.66|>": 53006,
686
+ "<|20.68|>": 53007,
687
+ "<|20.70|>": 53008,
688
+ "<|20.72|>": 53009,
689
+ "<|20.74|>": 53010,
690
+ "<|20.76|>": 53011,
691
+ "<|20.78|>": 53012,
692
+ "<|20.80|>": 53013,
693
+ "<|20.82|>": 53014,
694
+ "<|20.84|>": 53015,
695
+ "<|20.86|>": 53016,
696
+ "<|20.88|>": 53017,
697
+ "<|20.90|>": 53018,
698
+ "<|20.92|>": 53019,
699
+ "<|20.94|>": 53020,
700
+ "<|20.96|>": 53021,
701
+ "<|20.98|>": 53022,
702
+ "<|21.00|>": 53023,
703
+ "<|21.02|>": 53024,
704
+ "<|21.04|>": 53025,
705
+ "<|21.06|>": 53026,
706
+ "<|21.08|>": 53027,
707
+ "<|21.10|>": 53028,
708
+ "<|21.12|>": 53029,
709
+ "<|21.14|>": 53030,
710
+ "<|21.16|>": 53031,
711
+ "<|21.18|>": 53032,
712
+ "<|21.20|>": 53033,
713
+ "<|21.22|>": 53034,
714
+ "<|21.24|>": 53035,
715
+ "<|21.26|>": 53036,
716
+ "<|21.28|>": 53037,
717
+ "<|21.30|>": 53038,
718
+ "<|21.32|>": 53039,
719
+ "<|21.34|>": 53040,
720
+ "<|21.36|>": 53041,
721
+ "<|21.38|>": 53042,
722
+ "<|21.40|>": 53043,
723
+ "<|21.42|>": 53044,
724
+ "<|21.44|>": 53045,
725
+ "<|21.46|>": 53046,
726
+ "<|21.48|>": 53047,
727
+ "<|21.50|>": 53048,
728
+ "<|21.52|>": 53049,
729
+ "<|21.54|>": 53050,
730
+ "<|21.56|>": 53051,
731
+ "<|21.58|>": 53052,
732
+ "<|21.60|>": 53053,
733
+ "<|21.62|>": 53054,
734
+ "<|21.64|>": 53055,
735
+ "<|21.66|>": 53056,
736
+ "<|21.68|>": 53057,
737
+ "<|21.70|>": 53058,
738
+ "<|21.72|>": 53059,
739
+ "<|21.74|>": 53060,
740
+ "<|21.76|>": 53061,
741
+ "<|21.78|>": 53062,
742
+ "<|21.80|>": 53063,
743
+ "<|21.82|>": 53064,
744
+ "<|21.84|>": 53065,
745
+ "<|21.86|>": 53066,
746
+ "<|21.88|>": 53067,
747
+ "<|21.90|>": 53068,
748
+ "<|21.92|>": 53069,
749
+ "<|21.94|>": 53070,
750
+ "<|21.96|>": 53071,
751
+ "<|21.98|>": 53072,
752
+ "<|22.00|>": 53073,
753
+ "<|22.02|>": 53074,
754
+ "<|22.04|>": 53075,
755
+ "<|22.06|>": 53076,
756
+ "<|22.08|>": 53077,
757
+ "<|22.10|>": 53078,
758
+ "<|22.12|>": 53079,
759
+ "<|22.14|>": 53080,
760
+ "<|22.16|>": 53081,
761
+ "<|22.18|>": 53082,
762
+ "<|22.20|>": 53083,
763
+ "<|22.22|>": 53084,
764
+ "<|22.24|>": 53085,
765
+ "<|22.26|>": 53086,
766
+ "<|22.28|>": 53087,
767
+ "<|22.30|>": 53088,
768
+ "<|22.32|>": 53089,
769
+ "<|22.34|>": 53090,
770
+ "<|22.36|>": 53091,
771
+ "<|22.38|>": 53092,
772
+ "<|22.40|>": 53093,
773
+ "<|22.42|>": 53094,
774
+ "<|22.44|>": 53095,
775
+ "<|22.46|>": 53096,
776
+ "<|22.48|>": 53097,
777
+ "<|22.50|>": 53098,
778
+ "<|22.52|>": 53099,
779
+ "<|22.54|>": 53100,
780
+ "<|22.56|>": 53101,
781
+ "<|22.58|>": 53102,
782
+ "<|22.60|>": 53103,
783
+ "<|22.62|>": 53104,
784
+ "<|22.64|>": 53105,
785
+ "<|22.66|>": 53106,
786
+ "<|22.68|>": 53107,
787
+ "<|22.70|>": 53108,
788
+ "<|22.72|>": 53109,
789
+ "<|22.74|>": 53110,
790
+ "<|22.76|>": 53111,
791
+ "<|22.78|>": 53112,
792
+ "<|22.80|>": 53113,
793
+ "<|22.82|>": 53114,
794
+ "<|22.84|>": 53115,
795
+ "<|22.86|>": 53116,
796
+ "<|22.88|>": 53117,
797
+ "<|22.90|>": 53118,
798
+ "<|22.92|>": 53119,
799
+ "<|22.94|>": 53120,
800
+ "<|22.96|>": 53121,
801
+ "<|22.98|>": 53122,
802
+ "<|23.00|>": 53123,
803
+ "<|23.02|>": 53124,
804
+ "<|23.04|>": 53125,
805
+ "<|23.06|>": 53126,
806
+ "<|23.08|>": 53127,
807
+ "<|23.10|>": 53128,
808
+ "<|23.12|>": 53129,
809
+ "<|23.14|>": 53130,
810
+ "<|23.16|>": 53131,
811
+ "<|23.18|>": 53132,
812
+ "<|23.20|>": 53133,
813
+ "<|23.22|>": 53134,
814
+ "<|23.24|>": 53135,
815
+ "<|23.26|>": 53136,
816
+ "<|23.28|>": 53137,
817
+ "<|23.30|>": 53138,
818
+ "<|23.32|>": 53139,
819
+ "<|23.34|>": 53140,
820
+ "<|23.36|>": 53141,
821
+ "<|23.38|>": 53142,
822
+ "<|23.40|>": 53143,
823
+ "<|23.42|>": 53144,
824
+ "<|23.44|>": 53145,
825
+ "<|23.46|>": 53146,
826
+ "<|23.48|>": 53147,
827
+ "<|23.50|>": 53148,
828
+ "<|23.52|>": 53149,
829
+ "<|23.54|>": 53150,
830
+ "<|23.56|>": 53151,
831
+ "<|23.58|>": 53152,
832
+ "<|23.60|>": 53153,
833
+ "<|23.62|>": 53154,
834
+ "<|23.64|>": 53155,
835
+ "<|23.66|>": 53156,
836
+ "<|23.68|>": 53157,
837
+ "<|23.70|>": 53158,
838
+ "<|23.72|>": 53159,
839
+ "<|23.74|>": 53160,
840
+ "<|23.76|>": 53161,
841
+ "<|23.78|>": 53162,
842
+ "<|23.80|>": 53163,
843
+ "<|23.82|>": 53164,
844
+ "<|23.84|>": 53165,
845
+ "<|23.86|>": 53166,
846
+ "<|23.88|>": 53167,
847
+ "<|23.90|>": 53168,
848
+ "<|23.92|>": 53169,
849
+ "<|23.94|>": 53170,
850
+ "<|23.96|>": 53171,
851
+ "<|23.98|>": 53172,
852
+ "<|24.00|>": 53173,
853
+ "<|24.02|>": 53174,
854
+ "<|24.04|>": 53175,
855
+ "<|24.06|>": 53176,
856
+ "<|24.08|>": 53177,
857
+ "<|24.10|>": 53178,
858
+ "<|24.12|>": 53179,
859
+ "<|24.14|>": 53180,
860
+ "<|24.16|>": 53181,
861
+ "<|24.18|>": 53182,
862
+ "<|24.20|>": 53183,
863
+ "<|24.22|>": 53184,
864
+ "<|24.24|>": 53185,
865
+ "<|24.26|>": 53186,
866
+ "<|24.28|>": 53187,
867
+ "<|24.30|>": 53188,
868
+ "<|24.32|>": 53189,
869
+ "<|24.34|>": 53190,
870
+ "<|24.36|>": 53191,
871
+ "<|24.38|>": 53192,
872
+ "<|24.40|>": 53193,
873
+ "<|24.42|>": 53194,
874
+ "<|24.44|>": 53195,
875
+ "<|24.46|>": 53196,
876
+ "<|24.48|>": 53197,
877
+ "<|24.50|>": 53198,
878
+ "<|24.52|>": 53199,
879
+ "<|24.54|>": 53200,
880
+ "<|24.56|>": 53201,
881
+ "<|24.58|>": 53202,
882
+ "<|24.60|>": 53203,
883
+ "<|24.62|>": 53204,
884
+ "<|24.64|>": 53205,
885
+ "<|24.66|>": 53206,
886
+ "<|24.68|>": 53207,
887
+ "<|24.70|>": 53208,
888
+ "<|24.72|>": 53209,
889
+ "<|24.74|>": 53210,
890
+ "<|24.76|>": 53211,
891
+ "<|24.78|>": 53212,
892
+ "<|24.80|>": 53213,
893
+ "<|24.82|>": 53214,
894
+ "<|24.84|>": 53215,
895
+ "<|24.86|>": 53216,
896
+ "<|24.88|>": 53217,
897
+ "<|24.90|>": 53218,
898
+ "<|24.92|>": 53219,
899
+ "<|24.94|>": 53220,
900
+ "<|24.96|>": 53221,
901
+ "<|24.98|>": 53222,
902
+ "<|25.00|>": 53223,
903
+ "<|25.02|>": 53224,
904
+ "<|25.04|>": 53225,
905
+ "<|25.06|>": 53226,
906
+ "<|25.08|>": 53227,
907
+ "<|25.10|>": 53228,
908
+ "<|25.12|>": 53229,
909
+ "<|25.14|>": 53230,
910
+ "<|25.16|>": 53231,
911
+ "<|25.18|>": 53232,
912
+ "<|25.20|>": 53233,
913
+ "<|25.22|>": 53234,
914
+ "<|25.24|>": 53235,
915
+ "<|25.26|>": 53236,
916
+ "<|25.28|>": 53237,
917
+ "<|25.30|>": 53238,
918
+ "<|25.32|>": 53239,
919
+ "<|25.34|>": 53240,
920
+ "<|25.36|>": 53241,
921
+ "<|25.38|>": 53242,
922
+ "<|25.40|>": 53243,
923
+ "<|25.42|>": 53244,
924
+ "<|25.44|>": 53245,
925
+ "<|25.46|>": 53246,
926
+ "<|25.48|>": 53247,
927
+ "<|25.50|>": 53248,
928
+ "<|25.52|>": 53249,
929
+ "<|25.54|>": 53250,
930
+ "<|25.56|>": 53251,
931
+ "<|25.58|>": 53252,
932
+ "<|25.60|>": 53253,
933
+ "<|25.62|>": 53254,
934
+ "<|25.64|>": 53255,
935
+ "<|25.66|>": 53256,
936
+ "<|25.68|>": 53257,
937
+ "<|25.70|>": 53258,
938
+ "<|25.72|>": 53259,
939
+ "<|25.74|>": 53260,
940
+ "<|25.76|>": 53261,
941
+ "<|25.78|>": 53262,
942
+ "<|25.80|>": 53263,
943
+ "<|25.82|>": 53264,
944
+ "<|25.84|>": 53265,
945
+ "<|25.86|>": 53266,
946
+ "<|25.88|>": 53267,
947
+ "<|25.90|>": 53268,
948
+ "<|25.92|>": 53269,
949
+ "<|25.94|>": 53270,
950
+ "<|25.96|>": 53271,
951
+ "<|25.98|>": 53272,
952
+ "<|26.00|>": 53273,
953
+ "<|26.02|>": 53274,
954
+ "<|26.04|>": 53275,
955
+ "<|26.06|>": 53276,
956
+ "<|26.08|>": 53277,
957
+ "<|26.10|>": 53278,
958
+ "<|26.12|>": 53279,
959
+ "<|26.14|>": 53280,
960
+ "<|26.16|>": 53281,
961
+ "<|26.18|>": 53282,
962
+ "<|26.20|>": 53283,
963
+ "<|26.22|>": 53284,
964
+ "<|26.24|>": 53285,
965
+ "<|26.26|>": 53286,
966
+ "<|26.28|>": 53287,
967
+ "<|26.30|>": 53288,
968
+ "<|26.32|>": 53289,
969
+ "<|26.34|>": 53290,
970
+ "<|26.36|>": 53291,
971
+ "<|26.38|>": 53292,
972
+ "<|26.40|>": 53293,
973
+ "<|26.42|>": 53294,
974
+ "<|26.44|>": 53295,
975
+ "<|26.46|>": 53296,
976
+ "<|26.48|>": 53297,
977
+ "<|26.50|>": 53298,
978
+ "<|26.52|>": 53299,
979
+ "<|26.54|>": 53300,
980
+ "<|26.56|>": 53301,
981
+ "<|26.58|>": 53302,
982
+ "<|26.60|>": 53303,
983
+ "<|26.62|>": 53304,
984
+ "<|26.64|>": 53305,
985
+ "<|26.66|>": 53306,
986
+ "<|26.68|>": 53307,
987
+ "<|26.70|>": 53308,
988
+ "<|26.72|>": 53309,
989
+ "<|26.74|>": 53310,
990
+ "<|26.76|>": 53311,
991
+ "<|26.78|>": 53312,
992
+ "<|26.80|>": 53313,
993
+ "<|26.82|>": 53314,
994
+ "<|26.84|>": 53315,
995
+ "<|26.86|>": 53316,
996
+ "<|26.88|>": 53317,
997
+ "<|26.90|>": 53318,
998
+ "<|26.92|>": 53319,
999
+ "<|26.94|>": 53320,
1000
+ "<|26.96|>": 53321,
1001
+ "<|26.98|>": 53322,
1002
+ "<|27.00|>": 53323,
1003
+ "<|27.02|>": 53324,
1004
+ "<|27.04|>": 53325,
1005
+ "<|27.06|>": 53326,
1006
+ "<|27.08|>": 53327,
1007
+ "<|27.10|>": 53328,
1008
+ "<|27.12|>": 53329,
1009
+ "<|27.14|>": 53330,
1010
+ "<|27.16|>": 53331,
1011
+ "<|27.18|>": 53332,
1012
+ "<|27.20|>": 53333,
1013
+ "<|27.22|>": 53334,
1014
+ "<|27.24|>": 53335,
1015
+ "<|27.26|>": 53336,
1016
+ "<|27.28|>": 53337,
1017
+ "<|27.30|>": 53338,
1018
+ "<|27.32|>": 53339,
1019
+ "<|27.34|>": 53340,
1020
+ "<|27.36|>": 53341,
1021
+ "<|27.38|>": 53342,
1022
+ "<|27.40|>": 53343,
1023
+ "<|27.42|>": 53344,
1024
+ "<|27.44|>": 53345,
1025
+ "<|27.46|>": 53346,
1026
+ "<|27.48|>": 53347,
1027
+ "<|27.50|>": 53348,
1028
+ "<|27.52|>": 53349,
1029
+ "<|27.54|>": 53350,
1030
+ "<|27.56|>": 53351,
1031
+ "<|27.58|>": 53352,
1032
+ "<|27.60|>": 53353,
1033
+ "<|27.62|>": 53354,
1034
+ "<|27.64|>": 53355,
1035
+ "<|27.66|>": 53356,
1036
+ "<|27.68|>": 53357,
1037
+ "<|27.70|>": 53358,
1038
+ "<|27.72|>": 53359,
1039
+ "<|27.74|>": 53360,
1040
+ "<|27.76|>": 53361,
1041
+ "<|27.78|>": 53362,
1042
+ "<|27.80|>": 53363,
1043
+ "<|27.82|>": 53364,
1044
+ "<|27.84|>": 53365,
1045
+ "<|27.86|>": 53366,
1046
+ "<|27.88|>": 53367,
1047
+ "<|27.90|>": 53368,
1048
+ "<|27.92|>": 53369,
1049
+ "<|27.94|>": 53370,
1050
+ "<|27.96|>": 53371,
1051
+ "<|27.98|>": 53372,
1052
+ "<|28.00|>": 53373,
1053
+ "<|28.02|>": 53374,
1054
+ "<|28.04|>": 53375,
1055
+ "<|28.06|>": 53376,
1056
+ "<|28.08|>": 53377,
1057
+ "<|28.10|>": 53378,
1058
+ "<|28.12|>": 53379,
1059
+ "<|28.14|>": 53380,
1060
+ "<|28.16|>": 53381,
1061
+ "<|28.18|>": 53382,
1062
+ "<|28.20|>": 53383,
1063
+ "<|28.22|>": 53384,
1064
+ "<|28.24|>": 53385,
1065
+ "<|28.26|>": 53386,
1066
+ "<|28.28|>": 53387,
1067
+ "<|28.30|>": 53388,
1068
+ "<|28.32|>": 53389,
1069
+ "<|28.34|>": 53390,
1070
+ "<|28.36|>": 53391,
1071
+ "<|28.38|>": 53392,
1072
+ "<|28.40|>": 53393,
1073
+ "<|28.42|>": 53394,
1074
+ "<|28.44|>": 53395,
1075
+ "<|28.46|>": 53396,
1076
+ "<|28.48|>": 53397,
1077
+ "<|28.50|>": 53398,
1078
+ "<|28.52|>": 53399,
1079
+ "<|28.54|>": 53400,
1080
+ "<|28.56|>": 53401,
1081
+ "<|28.58|>": 53402,
1082
+ "<|28.60|>": 53403,
1083
+ "<|28.62|>": 53404,
1084
+ "<|28.64|>": 53405,
1085
+ "<|28.66|>": 53406,
1086
+ "<|28.68|>": 53407,
1087
+ "<|28.70|>": 53408,
1088
+ "<|28.72|>": 53409,
1089
+ "<|28.74|>": 53410,
1090
+ "<|28.76|>": 53411,
1091
+ "<|28.78|>": 53412,
1092
+ "<|28.80|>": 53413,
1093
+ "<|28.82|>": 53414,
1094
+ "<|28.84|>": 53415,
1095
+ "<|28.86|>": 53416,
1096
+ "<|28.88|>": 53417,
1097
+ "<|28.90|>": 53418,
1098
+ "<|28.92|>": 53419,
1099
+ "<|28.94|>": 53420,
1100
+ "<|28.96|>": 53421,
1101
+ "<|28.98|>": 53422,
1102
+ "<|29.00|>": 53423,
1103
+ "<|29.02|>": 53424,
1104
+ "<|29.04|>": 53425,
1105
+ "<|29.06|>": 53426,
1106
+ "<|29.08|>": 53427,
1107
+ "<|29.10|>": 53428,
1108
+ "<|29.12|>": 53429,
1109
+ "<|29.14|>": 53430,
1110
+ "<|29.16|>": 53431,
1111
+ "<|29.18|>": 53432,
1112
+ "<|29.20|>": 53433,
1113
+ "<|29.22|>": 53434,
1114
+ "<|29.24|>": 53435,
1115
+ "<|29.26|>": 53436,
1116
+ "<|29.28|>": 53437,
1117
+ "<|29.30|>": 53438,
1118
+ "<|29.32|>": 53439,
1119
+ "<|29.34|>": 53440,
1120
+ "<|29.36|>": 53441,
1121
+ "<|29.38|>": 53442,
1122
+ "<|29.40|>": 53443,
1123
+ "<|29.42|>": 53444,
1124
+ "<|29.44|>": 53445,
1125
+ "<|29.46|>": 53446,
1126
+ "<|29.48|>": 53447,
1127
+ "<|29.50|>": 53448,
1128
+ "<|29.52|>": 53449,
1129
+ "<|29.54|>": 53450,
1130
+ "<|29.56|>": 53451,
1131
+ "<|29.58|>": 53452,
1132
+ "<|29.60|>": 53453,
1133
+ "<|29.62|>": 53454,
1134
+ "<|29.64|>": 53455,
1135
+ "<|29.66|>": 53456,
1136
+ "<|29.68|>": 53457,
1137
+ "<|29.70|>": 53458,
1138
+ "<|29.72|>": 53459,
1139
+ "<|29.74|>": 53460,
1140
+ "<|29.76|>": 53461,
1141
+ "<|29.78|>": 53462,
1142
+ "<|29.80|>": 53463,
1143
+ "<|29.82|>": 53464,
1144
+ "<|29.84|>": 53465,
1145
+ "<|29.86|>": 53466,
1146
+ "<|29.88|>": 53467,
1147
+ "<|29.90|>": 53468,
1148
+ "<|29.92|>": 53469,
1149
+ "<|29.94|>": 53470,
1150
+ "<|29.96|>": 53471,
1151
+ "<|29.98|>": 53472,
1152
+ "<|3.00|>": 52123,
1153
+ "<|3.02|>": 52124,
1154
+ "<|3.04|>": 52125,
1155
+ "<|3.06|>": 52126,
1156
+ "<|3.08|>": 52127,
1157
+ "<|3.10|>": 52128,
1158
+ "<|3.12|>": 52129,
1159
+ "<|3.14|>": 52130,
1160
+ "<|3.16|>": 52131,
1161
+ "<|3.18|>": 52132,
1162
+ "<|3.20|>": 52133,
1163
+ "<|3.22|>": 52134,
1164
+ "<|3.24|>": 52135,
1165
+ "<|3.26|>": 52136,
1166
+ "<|3.28|>": 52137,
1167
+ "<|3.30|>": 52138,
1168
+ "<|3.32|>": 52139,
1169
+ "<|3.34|>": 52140,
1170
+ "<|3.36|>": 52141,
1171
+ "<|3.38|>": 52142,
1172
+ "<|3.40|>": 52143,
1173
+ "<|3.42|>": 52144,
1174
+ "<|3.44|>": 52145,
1175
+ "<|3.46|>": 52146,
1176
+ "<|3.48|>": 52147,
1177
+ "<|3.50|>": 52148,
1178
+ "<|3.52|>": 52149,
1179
+ "<|3.54|>": 52150,
1180
+ "<|3.56|>": 52151,
1181
+ "<|3.58|>": 52152,
1182
+ "<|3.60|>": 52153,
1183
+ "<|3.62|>": 52154,
1184
+ "<|3.64|>": 52155,
1185
+ "<|3.66|>": 52156,
1186
+ "<|3.68|>": 52157,
1187
+ "<|3.70|>": 52158,
1188
+ "<|3.72|>": 52159,
1189
+ "<|3.74|>": 52160,
1190
+ "<|3.76|>": 52161,
1191
+ "<|3.78|>": 52162,
1192
+ "<|3.80|>": 52163,
1193
+ "<|3.82|>": 52164,
1194
+ "<|3.84|>": 52165,
1195
+ "<|3.86|>": 52166,
1196
+ "<|3.88|>": 52167,
1197
+ "<|3.90|>": 52168,
1198
+ "<|3.92|>": 52169,
1199
+ "<|3.94|>": 52170,
1200
+ "<|3.96|>": 52171,
1201
+ "<|3.98|>": 52172,
1202
+ "<|30.00|>": 53473,
1203
+ "<|4.00|>": 52173,
1204
+ "<|4.02|>": 52174,
1205
+ "<|4.04|>": 52175,
1206
+ "<|4.06|>": 52176,
1207
+ "<|4.08|>": 52177,
1208
+ "<|4.10|>": 52178,
1209
+ "<|4.12|>": 52179,
1210
+ "<|4.14|>": 52180,
1211
+ "<|4.16|>": 52181,
1212
+ "<|4.18|>": 52182,
1213
+ "<|4.20|>": 52183,
1214
+ "<|4.22|>": 52184,
1215
+ "<|4.24|>": 52185,
1216
+ "<|4.26|>": 52186,
1217
+ "<|4.28|>": 52187,
1218
+ "<|4.30|>": 52188,
1219
+ "<|4.32|>": 52189,
1220
+ "<|4.34|>": 52190,
1221
+ "<|4.36|>": 52191,
1222
+ "<|4.38|>": 52192,
1223
+ "<|4.40|>": 52193,
1224
+ "<|4.42|>": 52194,
1225
+ "<|4.44|>": 52195,
1226
+ "<|4.46|>": 52196,
1227
+ "<|4.48|>": 52197,
1228
+ "<|4.50|>": 52198,
1229
+ "<|4.52|>": 52199,
1230
+ "<|4.54|>": 52200,
1231
+ "<|4.56|>": 52201,
1232
+ "<|4.58|>": 52202,
1233
+ "<|4.60|>": 52203,
1234
+ "<|4.62|>": 52204,
1235
+ "<|4.64|>": 52205,
1236
+ "<|4.66|>": 52206,
1237
+ "<|4.68|>": 52207,
1238
+ "<|4.70|>": 52208,
1239
+ "<|4.72|>": 52209,
1240
+ "<|4.74|>": 52210,
1241
+ "<|4.76|>": 52211,
1242
+ "<|4.78|>": 52212,
1243
+ "<|4.80|>": 52213,
1244
+ "<|4.82|>": 52214,
1245
+ "<|4.84|>": 52215,
1246
+ "<|4.86|>": 52216,
1247
+ "<|4.88|>": 52217,
1248
+ "<|4.90|>": 52218,
1249
+ "<|4.92|>": 52219,
1250
+ "<|4.94|>": 52220,
1251
+ "<|4.96|>": 52221,
1252
+ "<|4.98|>": 52222,
1253
+ "<|5.00|>": 52223,
1254
+ "<|5.02|>": 52224,
1255
+ "<|5.04|>": 52225,
1256
+ "<|5.06|>": 52226,
1257
+ "<|5.08|>": 52227,
1258
+ "<|5.10|>": 52228,
1259
+ "<|5.12|>": 52229,
1260
+ "<|5.14|>": 52230,
1261
+ "<|5.16|>": 52231,
1262
+ "<|5.18|>": 52232,
1263
+ "<|5.20|>": 52233,
1264
+ "<|5.22|>": 52234,
1265
+ "<|5.24|>": 52235,
1266
+ "<|5.26|>": 52236,
1267
+ "<|5.28|>": 52237,
1268
+ "<|5.30|>": 52238,
1269
+ "<|5.32|>": 52239,
1270
+ "<|5.34|>": 52240,
1271
+ "<|5.36|>": 52241,
1272
+ "<|5.38|>": 52242,
1273
+ "<|5.40|>": 52243,
1274
+ "<|5.42|>": 52244,
1275
+ "<|5.44|>": 52245,
1276
+ "<|5.46|>": 52246,
1277
+ "<|5.48|>": 52247,
1278
+ "<|5.50|>": 52248,
1279
+ "<|5.52|>": 52249,
1280
+ "<|5.54|>": 52250,
1281
+ "<|5.56|>": 52251,
1282
+ "<|5.58|>": 52252,
1283
+ "<|5.60|>": 52253,
1284
+ "<|5.62|>": 52254,
1285
+ "<|5.64|>": 52255,
1286
+ "<|5.66|>": 52256,
1287
+ "<|5.68|>": 52257,
1288
+ "<|5.70|>": 52258,
1289
+ "<|5.72|>": 52259,
1290
+ "<|5.74|>": 52260,
1291
+ "<|5.76|>": 52261,
1292
+ "<|5.78|>": 52262,
1293
+ "<|5.80|>": 52263,
1294
+ "<|5.82|>": 52264,
1295
+ "<|5.84|>": 52265,
1296
+ "<|5.86|>": 52266,
1297
+ "<|5.88|>": 52267,
1298
+ "<|5.90|>": 52268,
1299
+ "<|5.92|>": 52269,
1300
+ "<|5.94|>": 52270,
1301
+ "<|5.96|>": 52271,
1302
+ "<|5.98|>": 52272,
1303
+ "<|6.00|>": 52273,
1304
+ "<|6.02|>": 52274,
1305
+ "<|6.04|>": 52275,
1306
+ "<|6.06|>": 52276,
1307
+ "<|6.08|>": 52277,
1308
+ "<|6.10|>": 52278,
1309
+ "<|6.12|>": 52279,
1310
+ "<|6.14|>": 52280,
1311
+ "<|6.16|>": 52281,
1312
+ "<|6.18|>": 52282,
1313
+ "<|6.20|>": 52283,
1314
+ "<|6.22|>": 52284,
1315
+ "<|6.24|>": 52285,
1316
+ "<|6.26|>": 52286,
1317
+ "<|6.28|>": 52287,
1318
+ "<|6.30|>": 52288,
1319
+ "<|6.32|>": 52289,
1320
+ "<|6.34|>": 52290,
1321
+ "<|6.36|>": 52291,
1322
+ "<|6.38|>": 52292,
1323
+ "<|6.40|>": 52293,
1324
+ "<|6.42|>": 52294,
1325
+ "<|6.44|>": 52295,
1326
+ "<|6.46|>": 52296,
1327
+ "<|6.48|>": 52297,
1328
+ "<|6.50|>": 52298,
1329
+ "<|6.52|>": 52299,
1330
+ "<|6.54|>": 52300,
1331
+ "<|6.56|>": 52301,
1332
+ "<|6.58|>": 52302,
1333
+ "<|6.60|>": 52303,
1334
+ "<|6.62|>": 52304,
1335
+ "<|6.64|>": 52305,
1336
+ "<|6.66|>": 52306,
1337
+ "<|6.68|>": 52307,
1338
+ "<|6.70|>": 52308,
1339
+ "<|6.72|>": 52309,
1340
+ "<|6.74|>": 52310,
1341
+ "<|6.76|>": 52311,
1342
+ "<|6.78|>": 52312,
1343
+ "<|6.80|>": 52313,
1344
+ "<|6.82|>": 52314,
1345
+ "<|6.84|>": 52315,
1346
+ "<|6.86|>": 52316,
1347
+ "<|6.88|>": 52317,
1348
+ "<|6.90|>": 52318,
1349
+ "<|6.92|>": 52319,
1350
+ "<|6.94|>": 52320,
1351
+ "<|6.96|>": 52321,
1352
+ "<|6.98|>": 52322,
1353
+ "<|7.00|>": 52323,
1354
+ "<|7.02|>": 52324,
1355
+ "<|7.04|>": 52325,
1356
+ "<|7.06|>": 52326,
1357
+ "<|7.08|>": 52327,
1358
+ "<|7.10|>": 52328,
1359
+ "<|7.12|>": 52329,
1360
+ "<|7.14|>": 52330,
1361
+ "<|7.16|>": 52331,
1362
+ "<|7.18|>": 52332,
1363
+ "<|7.20|>": 52333,
1364
+ "<|7.22|>": 52334,
1365
+ "<|7.24|>": 52335,
1366
+ "<|7.26|>": 52336,
1367
+ "<|7.28|>": 52337,
1368
+ "<|7.30|>": 52338,
1369
+ "<|7.32|>": 52339,
1370
+ "<|7.34|>": 52340,
1371
+ "<|7.36|>": 52341,
1372
+ "<|7.38|>": 52342,
1373
+ "<|7.40|>": 52343,
1374
+ "<|7.42|>": 52344,
1375
+ "<|7.44|>": 52345,
1376
+ "<|7.46|>": 52346,
1377
+ "<|7.48|>": 52347,
1378
+ "<|7.50|>": 52348,
1379
+ "<|7.52|>": 52349,
1380
+ "<|7.54|>": 52350,
1381
+ "<|7.56|>": 52351,
1382
+ "<|7.58|>": 52352,
1383
+ "<|7.60|>": 52353,
1384
+ "<|7.62|>": 52354,
1385
+ "<|7.64|>": 52355,
1386
+ "<|7.66|>": 52356,
1387
+ "<|7.68|>": 52357,
1388
+ "<|7.70|>": 52358,
1389
+ "<|7.72|>": 52359,
1390
+ "<|7.74|>": 52360,
1391
+ "<|7.76|>": 52361,
1392
+ "<|7.78|>": 52362,
1393
+ "<|7.80|>": 52363,
1394
+ "<|7.82|>": 52364,
1395
+ "<|7.84|>": 52365,
1396
+ "<|7.86|>": 52366,
1397
+ "<|7.88|>": 52367,
1398
+ "<|7.90|>": 52368,
1399
+ "<|7.92|>": 52369,
1400
+ "<|7.94|>": 52370,
1401
+ "<|7.96|>": 52371,
1402
+ "<|7.98|>": 52372,
1403
+ "<|8.00|>": 52373,
1404
+ "<|8.02|>": 52374,
1405
+ "<|8.04|>": 52375,
1406
+ "<|8.06|>": 52376,
1407
+ "<|8.08|>": 52377,
1408
+ "<|8.10|>": 52378,
1409
+ "<|8.12|>": 52379,
1410
+ "<|8.14|>": 52380,
1411
+ "<|8.16|>": 52381,
1412
+ "<|8.18|>": 52382,
1413
+ "<|8.20|>": 52383,
1414
+ "<|8.22|>": 52384,
1415
+ "<|8.24|>": 52385,
1416
+ "<|8.26|>": 52386,
1417
+ "<|8.28|>": 52387,
1418
+ "<|8.30|>": 52388,
1419
+ "<|8.32|>": 52389,
1420
+ "<|8.34|>": 52390,
1421
+ "<|8.36|>": 52391,
1422
+ "<|8.38|>": 52392,
1423
+ "<|8.40|>": 52393,
1424
+ "<|8.42|>": 52394,
1425
+ "<|8.44|>": 52395,
1426
+ "<|8.46|>": 52396,
1427
+ "<|8.48|>": 52397,
1428
+ "<|8.50|>": 52398,
1429
+ "<|8.52|>": 52399,
1430
+ "<|8.54|>": 52400,
1431
+ "<|8.56|>": 52401,
1432
+ "<|8.58|>": 52402,
1433
+ "<|8.60|>": 52403,
1434
+ "<|8.62|>": 52404,
1435
+ "<|8.64|>": 52405,
1436
+ "<|8.66|>": 52406,
1437
+ "<|8.68|>": 52407,
1438
+ "<|8.70|>": 52408,
1439
+ "<|8.72|>": 52409,
1440
+ "<|8.74|>": 52410,
1441
+ "<|8.76|>": 52411,
1442
+ "<|8.78|>": 52412,
1443
+ "<|8.80|>": 52413,
1444
+ "<|8.82|>": 52414,
1445
+ "<|8.84|>": 52415,
1446
+ "<|8.86|>": 52416,
1447
+ "<|8.88|>": 52417,
1448
+ "<|8.90|>": 52418,
1449
+ "<|8.92|>": 52419,
1450
+ "<|8.94|>": 52420,
1451
+ "<|8.96|>": 52421,
1452
+ "<|8.98|>": 52422,
1453
+ "<|9.00|>": 52423,
1454
+ "<|9.02|>": 52424,
1455
+ "<|9.04|>": 52425,
1456
+ "<|9.06|>": 52426,
1457
+ "<|9.08|>": 52427,
1458
+ "<|9.10|>": 52428,
1459
+ "<|9.12|>": 52429,
1460
+ "<|9.14|>": 52430,
1461
+ "<|9.16|>": 52431,
1462
+ "<|9.18|>": 52432,
1463
+ "<|9.20|>": 52433,
1464
+ "<|9.22|>": 52434,
1465
+ "<|9.24|>": 52435,
1466
+ "<|9.26|>": 52436,
1467
+ "<|9.28|>": 52437,
1468
+ "<|9.30|>": 52438,
1469
+ "<|9.32|>": 52439,
1470
+ "<|9.34|>": 52440,
1471
+ "<|9.36|>": 52441,
1472
+ "<|9.38|>": 52442,
1473
+ "<|9.40|>": 52443,
1474
+ "<|9.42|>": 52444,
1475
+ "<|9.44|>": 52445,
1476
+ "<|9.46|>": 52446,
1477
+ "<|9.48|>": 52447,
1478
+ "<|9.50|>": 52448,
1479
+ "<|9.52|>": 52449,
1480
+ "<|9.54|>": 52450,
1481
+ "<|9.56|>": 52451,
1482
+ "<|9.58|>": 52452,
1483
+ "<|9.60|>": 52453,
1484
+ "<|9.62|>": 52454,
1485
+ "<|9.64|>": 52455,
1486
+ "<|9.66|>": 52456,
1487
+ "<|9.68|>": 52457,
1488
+ "<|9.70|>": 52458,
1489
+ "<|9.72|>": 52459,
1490
+ "<|9.74|>": 52460,
1491
+ "<|9.76|>": 52461,
1492
+ "<|9.78|>": 52462,
1493
+ "<|9.80|>": 52463,
1494
+ "<|9.82|>": 52464,
1495
+ "<|9.84|>": 52465,
1496
+ "<|9.86|>": 52466,
1497
+ "<|9.88|>": 52467,
1498
+ "<|9.90|>": 52468,
1499
+ "<|9.92|>": 52469,
1500
+ "<|9.94|>": 52470,
1501
+ "<|9.96|>": 52471,
1502
+ "<|9.98|>": 52472,
1503
+ "<|af|>": 51935,
1504
+ "<|am|>": 51942,
1505
+ "<|ar|>": 51880,
1506
+ "<|as|>": 51958,
1507
+ "<|az|>": 51912,
1508
+ "<|ba|>": 51963,
1509
+ "<|be|>": 51938,
1510
+ "<|bg|>": 51900,
1511
+ "<|bn|>": 51910,
1512
+ "<|bo|>": 51955,
1513
+ "<|br|>": 51917,
1514
+ "<|bs|>": 51923,
1515
+ "<|ca|>": 51878,
1516
+ "<|cs|>": 51891,
1517
+ "<|cy|>": 51905,
1518
+ "<|da|>": 51893,
1519
+ "<|de|>": 51869,
1520
+ "<|el|>": 51889,
1521
+ "<|endoftext|>": 51865,
1522
+ "<|en|>": 51867,
1523
+ "<|es|>": 51870,
1524
+ "<|et|>": 51915,
1525
+ "<|eu|>": 51918,
1526
+ "<|fa|>": 51908,
1527
+ "<|fi|>": 51885,
1528
+ "<|fo|>": 51946,
1529
+ "<|fr|>": 51873,
1530
+ "<|gl|>": 51927,
1531
+ "<|gu|>": 51941,
1532
+ "<|haw|>": 51960,
1533
+ "<|ha|>": 51962,
1534
+ "<|he|>": 51887,
1535
+ "<|hi|>": 51884,
1536
+ "<|hr|>": 51899,
1537
+ "<|ht|>": 51947,
1538
+ "<|hu|>": 51894,
1539
+ "<|hy|>": 51920,
1540
+ "<|id|>": 51883,
1541
+ "<|is|>": 51919,
1542
+ "<|it|>": 51882,
1543
+ "<|ja|>": 51874,
1544
+ "<|jw|>": 51964,
1545
+ "<|ka|>": 51937,
1546
+ "<|kk|>": 51924,
1547
+ "<|km|>": 51931,
1548
+ "<|kn|>": 51914,
1549
+ "<|ko|>": 51872,
1550
+ "<|la|>": 51902,
1551
+ "<|lb|>": 51953,
1552
+ "<|ln|>": 51961,
1553
+ "<|lo|>": 51944,
1554
+ "<|lt|>": 51901,
1555
+ "<|lv|>": 51909,
1556
+ "<|mg|>": 51957,
1557
+ "<|mi|>": 51903,
1558
+ "<|mk|>": 51916,
1559
+ "<|ml|>": 51904,
1560
+ "<|mn|>": 51922,
1561
+ "<|mr|>": 51928,
1562
+ "<|ms|>": 51890,
1563
+ "<|mt|>": 51951,
1564
+ "<|my|>": 51954,
1565
+ "<|ne|>": 51921,
1566
+ "<|nl|>": 51879,
1567
+ "<|nn|>": 51950,
1568
+ "<|nospeech|>": 51971,
1569
+ "<|notimestamps|>": 51972,
1570
+ "<|no|>": 51896,
1571
+ "<|oc|>": 51936,
1572
+ "<|pa|>": 51929,
1573
+ "<|pl|>": 51877,
1574
+ "<|ps|>": 51948,
1575
+ "<|pt|>": 51875,
1576
+ "<|ro|>": 51892,
1577
+ "<|ru|>": 51871,
1578
+ "<|sa|>": 51952,
1579
+ "<|sd|>": 51940,
1580
+ "<|si|>": 51930,
1581
+ "<|sk|>": 51906,
1582
+ "<|sl|>": 51913,
1583
+ "<|sn|>": 51932,
1584
+ "<|so|>": 51934,
1585
+ "<|sq|>": 51925,
1586
+ "<|sr|>": 51911,
1587
+ "<|startoflm|>": 51969,
1588
+ "<|startofprev|>": 51970,
1589
+ "<|startoftranscript|>": 51866,
1590
+ "<|su|>": 51965,
1591
+ "<|sv|>": 51881,
1592
+ "<|sw|>": 51926,
1593
+ "<|ta|>": 51895,
1594
+ "<|te|>": 51907,
1595
+ "<|tg|>": 51939,
1596
+ "<|th|>": 51897,
1597
+ "<|tk|>": 51949,
1598
+ "<|tl|>": 51956,
1599
+ "<|transcribe|>": 51968,
1600
+ "<|translate|>": 51967,
1601
+ "<|tr|>": 51876,
1602
+ "<|tt|>": 51959,
1603
+ "<|uk|>": 51888,
1604
+ "<|ur|>": 51898,
1605
+ "<|uz|>": 51945,
1606
+ "<|vi|>": 51886,
1607
+ "<|yi|>": 51943,
1608
+ "<|yo|>": 51933,
1609
+ "<|yue|>": 51966,
1610
+ "<|zh|>": 51868
1611
+ }
config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_dropout": 0.0,
3
+ "activation_function": "gelu",
4
+ "apply_spec_augment": false,
5
+ "architectures": [
6
+ "WhisperForConditionalGeneration"
7
+ ],
8
+ "attention_dropout": 0.0,
9
+ "begin_suppress_tokens": null,
10
+ "bos_token_id": 51865,
11
+ "classifier_proj_size": 256,
12
+ "d_model": 1280,
13
+ "decoder_attention_heads": 20,
14
+ "decoder_ffn_dim": 5120,
15
+ "decoder_layerdrop": 0.0,
16
+ "decoder_layers": 32,
17
+ "decoder_start_token_id": 51866,
18
+ "dropout": 0.0,
19
+ "dtype": "float16",
20
+ "encoder_attention_heads": 20,
21
+ "encoder_ffn_dim": 5120,
22
+ "encoder_layerdrop": 0.0,
23
+ "encoder_layers": 32,
24
+ "eos_token_id": 51865,
25
+ "init_std": 0.02,
26
+ "is_encoder_decoder": true,
27
+ "mask_feature_length": 10,
28
+ "mask_feature_min_masks": 0,
29
+ "mask_feature_prob": 0.0,
30
+ "mask_time_length": 10,
31
+ "mask_time_min_masks": 2,
32
+ "mask_time_prob": 0.05,
33
+ "max_length": null,
34
+ "max_source_positions": 1500,
35
+ "max_target_positions": 448,
36
+ "median_filter_width": 7,
37
+ "model_type": "whisper",
38
+ "num_hidden_layers": 32,
39
+ "num_mel_bins": 128,
40
+ "pad_token_id": 51865,
41
+ "scale_embedding": false,
42
+ "transformers_version": "4.57.6",
43
+ "use_cache": true,
44
+ "use_weighted_layer_sum": false,
45
+ "vocab_size": 53474
46
+ }
generation_config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "begin_suppress_tokens": [
4
+ 220,
5
+ 50257
6
+ ],
7
+ "bos_token_id": 51865,
8
+ "decoder_start_token_id": 51866,
9
+ "eos_token_id": 51865,
10
+ "lang_to_id": {
11
+ "<|sd|>": 51940
12
+ },
13
+ "language": "sd",
14
+ "max_length": 448,
15
+ "no_timestamps_token_id": 51972,
16
+ "pad_token_id": 51865,
17
+ "suppress_tokens": [],
18
+ "task": "transcribe",
19
+ "task_to_id": {
20
+ "transcribe": 51968,
21
+ "translate": 51967
22
+ },
23
+ "transformers_version": "4.57.6"
24
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e3e298e79f1496ab1d64fb82b336986068e824930eec4d17cb99ee688b92e14
3
+ size 3091247456
normalizer.json ADDED
@@ -0,0 +1,1742 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "accessorise": "accessorize",
3
+ "accessorised": "accessorized",
4
+ "accessorises": "accessorizes",
5
+ "accessorising": "accessorizing",
6
+ "acclimatisation": "acclimatization",
7
+ "acclimatise": "acclimatize",
8
+ "acclimatised": "acclimatized",
9
+ "acclimatises": "acclimatizes",
10
+ "acclimatising": "acclimatizing",
11
+ "accoutrements": "accouterments",
12
+ "aeon": "eon",
13
+ "aeons": "eons",
14
+ "aerogramme": "aerogram",
15
+ "aerogrammes": "aerograms",
16
+ "aeroplane": "airplane",
17
+ "aeroplanes": "airplanes",
18
+ "aesthete": "esthete",
19
+ "aesthetes": "esthetes",
20
+ "aesthetic": "esthetic",
21
+ "aesthetically": "esthetically",
22
+ "aesthetics": "esthetics",
23
+ "aetiology": "etiology",
24
+ "ageing": "aging",
25
+ "aggrandisement": "aggrandizement",
26
+ "agonise": "agonize",
27
+ "agonised": "agonized",
28
+ "agonises": "agonizes",
29
+ "agonising": "agonizing",
30
+ "agonisingly": "agonizingly",
31
+ "almanack": "almanac",
32
+ "almanacks": "almanacs",
33
+ "aluminium": "aluminum",
34
+ "amortisable": "amortizable",
35
+ "amortisation": "amortization",
36
+ "amortisations": "amortizations",
37
+ "amortise": "amortize",
38
+ "amortised": "amortized",
39
+ "amortises": "amortizes",
40
+ "amortising": "amortizing",
41
+ "amphitheatre": "amphitheater",
42
+ "amphitheatres": "amphitheaters",
43
+ "anaemia": "anemia",
44
+ "anaemic": "anemic",
45
+ "anaesthesia": "anesthesia",
46
+ "anaesthetic": "anesthetic",
47
+ "anaesthetics": "anesthetics",
48
+ "anaesthetise": "anesthetize",
49
+ "anaesthetised": "anesthetized",
50
+ "anaesthetises": "anesthetizes",
51
+ "anaesthetising": "anesthetizing",
52
+ "anaesthetist": "anesthetist",
53
+ "anaesthetists": "anesthetists",
54
+ "anaesthetize": "anesthetize",
55
+ "anaesthetized": "anesthetized",
56
+ "anaesthetizes": "anesthetizes",
57
+ "anaesthetizing": "anesthetizing",
58
+ "analogue": "analog",
59
+ "analogues": "analogs",
60
+ "analyse": "analyze",
61
+ "analysed": "analyzed",
62
+ "analyses": "analyzes",
63
+ "analysing": "analyzing",
64
+ "anglicise": "anglicize",
65
+ "anglicised": "anglicized",
66
+ "anglicises": "anglicizes",
67
+ "anglicising": "anglicizing",
68
+ "annualised": "annualized",
69
+ "antagonise": "antagonize",
70
+ "antagonised": "antagonized",
71
+ "antagonises": "antagonizes",
72
+ "antagonising": "antagonizing",
73
+ "apologise": "apologize",
74
+ "apologised": "apologized",
75
+ "apologises": "apologizes",
76
+ "apologising": "apologizing",
77
+ "appal": "appall",
78
+ "appals": "appalls",
79
+ "appetiser": "appetizer",
80
+ "appetisers": "appetizers",
81
+ "appetising": "appetizing",
82
+ "appetisingly": "appetizingly",
83
+ "arbour": "arbor",
84
+ "arbours": "arbors",
85
+ "archaeologically": "archeologically",
86
+ "archaeologist": "archeologist",
87
+ "archaeologists": "archeologists",
88
+ "archaeology": "archeology</span>",
89
+ "archeological": "archaeological",
90
+ "ardour": "ardor",
91
+ "armour": "armor",
92
+ "armoured": "armored",
93
+ "armourer": "armorer",
94
+ "armourers": "armorers",
95
+ "armouries": "armories",
96
+ "armoury": "armory",
97
+ "artefact": "artifact",
98
+ "artefacts": "artifacts",
99
+ "authorise": "authorize",
100
+ "authorised": "authorized",
101
+ "authorises": "authorizes",
102
+ "authorising": "authorizing",
103
+ "axe": "ax",
104
+ "backpedalled": "backpedaled",
105
+ "backpedalling": "backpedaling",
106
+ "bannister": "banister",
107
+ "bannisters": "banisters",
108
+ "baptise": "baptize",
109
+ "baptised": "baptized",
110
+ "baptises": "baptizes",
111
+ "baptising": "baptizing",
112
+ "bastardise": "bastardize",
113
+ "bastardised": "bastardized",
114
+ "bastardises": "bastardizes",
115
+ "bastardising": "bastardizing",
116
+ "battleax": "battleaxe",
117
+ "baulk": "balk",
118
+ "baulked": "balked",
119
+ "baulking": "balking",
120
+ "baulks": "balks",
121
+ "bedevilled": "bedeviled",
122
+ "bedevilling": "bedeviling",
123
+ "behaviour": "behavior",
124
+ "behavioural": "behavioral",
125
+ "behaviourism": "behaviorism",
126
+ "behaviourist": "behaviorist",
127
+ "behaviourists": "behaviorists",
128
+ "behaviours": "behaviors",
129
+ "behove": "behoove",
130
+ "behoved": "behooved",
131
+ "behoves": "behooves",
132
+ "bejewelled": "bejeweled",
133
+ "belabour": "belabor",
134
+ "belaboured": "belabored",
135
+ "belabouring": "belaboring",
136
+ "belabours": "belabors",
137
+ "bevelled": "beveled",
138
+ "bevvies": "bevies",
139
+ "bevvy": "bevy",
140
+ "biassed": "biased",
141
+ "biassing": "biasing",
142
+ "bingeing": "binging",
143
+ "bougainvillaea": "bougainvillea",
144
+ "bougainvillaeas": "bougainvilleas",
145
+ "bowdlerise": "bowdlerize",
146
+ "bowdlerised": "bowdlerized",
147
+ "bowdlerises": "bowdlerizes",
148
+ "bowdlerising": "bowdlerizing",
149
+ "breathalyse": "breathalyze",
150
+ "breathalysed": "breathalyzed",
151
+ "breathalyser": "breathalyzer",
152
+ "breathalysers": "breathalyzers",
153
+ "breathalyses": "breathalyzes",
154
+ "breathalysing": "breathalyzing",
155
+ "brutalise": "brutalize",
156
+ "brutalised": "brutalized",
157
+ "brutalises": "brutalizes",
158
+ "brutalising": "brutalizing",
159
+ "busses": "buses",
160
+ "bussing": "busing",
161
+ "caesarean": "cesarean",
162
+ "caesareans": "cesareans",
163
+ "calibre": "caliber",
164
+ "calibres": "calibers",
165
+ "calliper": "caliper",
166
+ "callipers": "calipers",
167
+ "callisthenics": "calisthenics",
168
+ "canalise": "canalize",
169
+ "canalised": "canalized",
170
+ "canalises": "canalizes",
171
+ "canalising": "canalizing",
172
+ "cancelation": "cancellation",
173
+ "cancelations": "cancellations",
174
+ "cancelled": "canceled",
175
+ "cancelling": "canceling",
176
+ "candour": "candor",
177
+ "cannibalise": "cannibalize",
178
+ "cannibalised": "cannibalized",
179
+ "cannibalises": "cannibalizes",
180
+ "cannibalising": "cannibalizing",
181
+ "canonise": "canonize",
182
+ "canonised": "canonized",
183
+ "canonises": "canonizes",
184
+ "canonising": "canonizing",
185
+ "capitalise": "capitalize",
186
+ "capitalised": "capitalized",
187
+ "capitalises": "capitalizes",
188
+ "capitalising": "capitalizing",
189
+ "caramelise": "caramelize",
190
+ "caramelised": "caramelized",
191
+ "caramelises": "caramelizes",
192
+ "caramelising": "caramelizing",
193
+ "carbonise": "carbonize",
194
+ "carbonised": "carbonized",
195
+ "carbonises": "carbonizes",
196
+ "carbonising": "carbonizing",
197
+ "carolled": "caroled",
198
+ "carolling": "caroling",
199
+ "catalogue": "catalog",
200
+ "catalogued": "cataloged",
201
+ "catalogues": "catalogs",
202
+ "cataloguing": "cataloging",
203
+ "catalyse": "catalyze",
204
+ "catalysed": "catalyzed",
205
+ "catalyses": "catalyzes",
206
+ "catalysing": "catalyzing",
207
+ "categorise": "categorize",
208
+ "categorised": "categorized",
209
+ "categorises": "categorizes",
210
+ "categorising": "categorizing",
211
+ "cauterise": "cauterize",
212
+ "cauterised": "cauterized",
213
+ "cauterises": "cauterizes",
214
+ "cauterising": "cauterizing",
215
+ "cavilled": "caviled",
216
+ "cavilling": "caviling",
217
+ "centigramme": "centigram",
218
+ "centigrammes": "centigrams",
219
+ "centilitre": "centiliter",
220
+ "centilitres": "centiliters",
221
+ "centimetre": "centimeter",
222
+ "centimetres": "centimeters",
223
+ "centralise": "centralize",
224
+ "centralised": "centralized",
225
+ "centralises": "centralizes",
226
+ "centralising": "centralizing",
227
+ "centre": "center",
228
+ "centred": "centered",
229
+ "centrefold": "centerfold",
230
+ "centrefolds": "centerfolds",
231
+ "centrepiece": "centerpiece",
232
+ "centrepieces": "centerpieces",
233
+ "centres": "centers",
234
+ "channelled": "channeled",
235
+ "channelling": "channeling",
236
+ "characterise": "characterize",
237
+ "characterised": "characterized",
238
+ "characterises": "characterizes",
239
+ "characterising": "characterizing",
240
+ "cheque": "check",
241
+ "chequebook": "checkbook",
242
+ "chequebooks": "checkbooks",
243
+ "chequered": "checkered",
244
+ "cheques": "checks",
245
+ "chilli": "chili",
246
+ "chimaera": "chimera",
247
+ "chimaeras": "chimeras",
248
+ "chiselled": "chiseled",
249
+ "chiselling": "chiseling",
250
+ "circularise": "circularize",
251
+ "circularised": "circularized",
252
+ "circularises": "circularizes",
253
+ "circularising": "circularizing",
254
+ "civilise": "civilize",
255
+ "civilised": "civilized",
256
+ "civilises": "civilizes",
257
+ "civilising": "civilizing",
258
+ "clamour": "clamor",
259
+ "clamoured": "clamored",
260
+ "clamouring": "clamoring",
261
+ "clamours": "clamors",
262
+ "clangour": "clangor",
263
+ "clarinettist": "clarinetist",
264
+ "clarinettists": "clarinetists",
265
+ "collectivise": "collectivize",
266
+ "collectivised": "collectivized",
267
+ "collectivises": "collectivizes",
268
+ "collectivising": "collectivizing",
269
+ "colonisation": "colonization",
270
+ "colonise": "colonize",
271
+ "colonised": "colonized",
272
+ "coloniser": "colonizer",
273
+ "colonisers": "colonizers",
274
+ "colonises": "colonizes",
275
+ "colonising": "colonizing",
276
+ "colour": "color",
277
+ "colourant": "colorant",
278
+ "colourants": "colorants",
279
+ "coloured": "colored",
280
+ "coloureds": "coloreds",
281
+ "colourful": "colorful",
282
+ "colourfully": "colorfully",
283
+ "colouring": "coloring",
284
+ "colourize": "colorize",
285
+ "colourized": "colorized",
286
+ "colourizes": "colorizes",
287
+ "colourizing": "colorizing",
288
+ "colourless": "colorless",
289
+ "colours": "colors",
290
+ "commercialise": "commercialize",
291
+ "commercialised": "commercialized",
292
+ "commercialises": "commercializes",
293
+ "commercialising": "commercializing",
294
+ "compartmentalise": "compartmentalize",
295
+ "compartmentalised": "compartmentalized",
296
+ "compartmentalises": "compartmentalizes",
297
+ "compartmentalising": "compartmentalizing",
298
+ "computerise": "computerize",
299
+ "computerised": "computerized",
300
+ "computerises": "computerizes",
301
+ "computerising": "computerizing",
302
+ "conceptualise": "conceptualize",
303
+ "conceptualised": "conceptualized",
304
+ "conceptualises": "conceptualizes",
305
+ "conceptualising": "conceptualizing",
306
+ "connexion": "connection",
307
+ "connexions": "connections",
308
+ "contextualise": "contextualize",
309
+ "contextualised": "contextualized",
310
+ "contextualises": "contextualizes",
311
+ "contextualising": "contextualizing",
312
+ "cosier": "cozier",
313
+ "cosies": "cozies",
314
+ "cosiest": "coziest",
315
+ "cosily": "cozily",
316
+ "cosiness": "coziness",
317
+ "cosy": "cozy",
318
+ "councillor": "councilor",
319
+ "councillors": "councilors",
320
+ "counselled": "counseled",
321
+ "counselling": "counseling",
322
+ "counsellor": "counselor",
323
+ "counsellors": "counselors",
324
+ "crenelated": "crenellated",
325
+ "criminalise": "criminalize",
326
+ "criminalised": "criminalized",
327
+ "criminalises": "criminalizes",
328
+ "criminalising": "criminalizing",
329
+ "criticise": "criticize",
330
+ "criticised": "criticized",
331
+ "criticises": "criticizes",
332
+ "criticising": "criticizing",
333
+ "crueller": "crueler",
334
+ "cruellest": "cruelest",
335
+ "crystallisation": "crystallization",
336
+ "crystallise": "crystallize",
337
+ "crystallised": "crystallized",
338
+ "crystallises": "crystallizes",
339
+ "crystallising": "crystallizing",
340
+ "cudgelled": "cudgeled",
341
+ "cudgelling": "cudgeling",
342
+ "customise": "customize",
343
+ "customised": "customized",
344
+ "customises": "customizes",
345
+ "customising": "customizing",
346
+ "cypher": "cipher",
347
+ "cyphers": "ciphers",
348
+ "decentralisation": "decentralization",
349
+ "decentralise": "decentralize",
350
+ "decentralised": "decentralized",
351
+ "decentralises": "decentralizes",
352
+ "decentralising": "decentralizing",
353
+ "decriminalisation": "decriminalization",
354
+ "decriminalise": "decriminalize",
355
+ "decriminalised": "decriminalized",
356
+ "decriminalises": "decriminalizes",
357
+ "decriminalising": "decriminalizing",
358
+ "defence": "defense",
359
+ "defenceless": "defenseless",
360
+ "defences": "defenses",
361
+ "dehumanisation": "dehumanization",
362
+ "dehumanise": "dehumanize",
363
+ "dehumanised": "dehumanized",
364
+ "dehumanises": "dehumanizes",
365
+ "dehumanising": "dehumanizing",
366
+ "demeanour": "demeanor",
367
+ "demilitarisation": "demilitarization",
368
+ "demilitarise": "demilitarize",
369
+ "demilitarised": "demilitarized",
370
+ "demilitarises": "demilitarizes",
371
+ "demilitarising": "demilitarizing",
372
+ "demobilisation": "demobilization",
373
+ "demobilise": "demobilize",
374
+ "demobilised": "demobilized",
375
+ "demobilises": "demobilizes",
376
+ "demobilising": "demobilizing",
377
+ "democratisation": "democratization",
378
+ "democratise": "democratize",
379
+ "democratised": "democratized",
380
+ "democratises": "democratizes",
381
+ "democratising": "democratizing",
382
+ "demonise": "demonize",
383
+ "demonised": "demonized",
384
+ "demonises": "demonizes",
385
+ "demonising": "demonizing",
386
+ "demoralisation": "demoralization",
387
+ "demoralise": "demoralize",
388
+ "demoralised": "demoralized",
389
+ "demoralises": "demoralizes",
390
+ "demoralising": "demoralizing",
391
+ "denationalisation": "denationalization",
392
+ "denationalise": "denationalize",
393
+ "denationalised": "denationalized",
394
+ "denationalises": "denationalizes",
395
+ "denationalising": "denationalizing",
396
+ "deodorise": "deodorize",
397
+ "deodorised": "deodorized",
398
+ "deodorises": "deodorizes",
399
+ "deodorising": "deodorizing",
400
+ "depersonalise": "depersonalize",
401
+ "depersonalised": "depersonalized",
402
+ "depersonalises": "depersonalizes",
403
+ "depersonalising": "depersonalizing",
404
+ "deputise": "deputize",
405
+ "deputised": "deputized",
406
+ "deputises": "deputizes",
407
+ "deputising": "deputizing",
408
+ "desensitisation": "desensitization",
409
+ "desensitise": "desensitize",
410
+ "desensitised": "desensitized",
411
+ "desensitises": "desensitizes",
412
+ "desensitising": "desensitizing",
413
+ "destabilisation": "destabilization",
414
+ "destabilise": "destabilize",
415
+ "destabilised": "destabilized",
416
+ "destabilises": "destabilizes",
417
+ "destabilising": "destabilizing",
418
+ "dialled": "dialed",
419
+ "dialling": "dialing",
420
+ "dialogue": "dialog",
421
+ "dialogues": "dialogs",
422
+ "diarrhoea": "diarrhea",
423
+ "digitise": "digitize",
424
+ "digitised": "digitized",
425
+ "digitises": "digitizes",
426
+ "digitising": "digitizing",
427
+ "disc": "disk",
428
+ "discolour": "discolor",
429
+ "discoloured": "discolored",
430
+ "discolouring": "discoloring",
431
+ "discolours": "discolors",
432
+ "discs": "disks",
433
+ "disembowelled": "disemboweled",
434
+ "disembowelling": "disemboweling",
435
+ "disfavour": "disfavor",
436
+ "dishevelled": "disheveled",
437
+ "dishonour": "dishonor",
438
+ "dishonourable": "dishonorable",
439
+ "dishonourably": "dishonorably",
440
+ "dishonoured": "dishonored",
441
+ "dishonouring": "dishonoring",
442
+ "dishonours": "dishonors",
443
+ "disorganisation": "disorganization",
444
+ "disorganised": "disorganized",
445
+ "distil": "distill",
446
+ "distils": "distills",
447
+ "dramatisation": "dramatization",
448
+ "dramatisations": "dramatizations",
449
+ "dramatise": "dramatize",
450
+ "dramatised": "dramatized",
451
+ "dramatises": "dramatizes",
452
+ "dramatising": "dramatizing",
453
+ "draught": "draft",
454
+ "draughtboard": "draftboard",
455
+ "draughtboards": "draftboards",
456
+ "draughtier": "draftier",
457
+ "draughtiest": "draftiest",
458
+ "draughts": "drafts",
459
+ "draughtsman": "draftsman",
460
+ "draughtsmanship": "draftsmanship",
461
+ "draughtsmen": "draftsmen",
462
+ "draughtswoman": "draftswoman",
463
+ "draughtswomen": "draftswomen",
464
+ "draughty": "drafty",
465
+ "drivelled": "driveled",
466
+ "drivelling": "driveling",
467
+ "duelled": "dueled",
468
+ "duelling": "dueling",
469
+ "economise": "economize",
470
+ "economised": "economized",
471
+ "economises": "economizes",
472
+ "economising": "economizing",
473
+ "editorialise": "editorialize",
474
+ "editorialised": "editorialized",
475
+ "editorialises": "editorializes",
476
+ "editorialising": "editorializing",
477
+ "edoema": "edema",
478
+ "empathise": "empathize",
479
+ "empathised": "empathized",
480
+ "empathises": "empathizes",
481
+ "empathising": "empathizing",
482
+ "emphasise": "emphasize",
483
+ "emphasised": "emphasized",
484
+ "emphasises": "emphasizes",
485
+ "emphasising": "emphasizing",
486
+ "enamelled": "enameled",
487
+ "enamelling": "enameling",
488
+ "enamoured": "enamored",
489
+ "encyclopaedia": "encyclopedia",
490
+ "encyclopaedias": "encyclopedias",
491
+ "encyclopaedic": "encyclopedic",
492
+ "endeavour": "endeavor",
493
+ "endeavoured": "endeavored",
494
+ "endeavouring": "endeavoring",
495
+ "endeavours": "endeavors",
496
+ "energise": "energize",
497
+ "energised": "energized",
498
+ "energises": "energizes",
499
+ "energising": "energizing",
500
+ "enrol": "enroll",
501
+ "enrols": "enrolls",
502
+ "enthral": "enthrall",
503
+ "enthrals": "enthralls",
504
+ "epaulette": "epaulet",
505
+ "epaulettes": "epaulets",
506
+ "epicentre": "epicenter",
507
+ "epicentres": "epicenters",
508
+ "epilogue": "epilog",
509
+ "epilogues": "epilogs",
510
+ "epitomise": "epitomize",
511
+ "epitomised": "epitomized",
512
+ "epitomises": "epitomizes",
513
+ "epitomising": "epitomizing",
514
+ "equalisation": "equalization",
515
+ "equalise": "equalize",
516
+ "equalised": "equalized",
517
+ "equaliser": "equalizer",
518
+ "equalisers": "equalizers",
519
+ "equalises": "equalizes",
520
+ "equalising": "equalizing",
521
+ "eulogise": "eulogize",
522
+ "eulogised": "eulogized",
523
+ "eulogises": "eulogizes",
524
+ "eulogising": "eulogizing",
525
+ "evangelise": "evangelize",
526
+ "evangelised": "evangelized",
527
+ "evangelises": "evangelizes",
528
+ "evangelising": "evangelizing",
529
+ "exorcise": "exorcize",
530
+ "exorcised": "exorcized",
531
+ "exorcises": "exorcizes",
532
+ "exorcising": "exorcizing",
533
+ "extemporisation": "extemporization",
534
+ "extemporise": "extemporize",
535
+ "extemporised": "extemporized",
536
+ "extemporises": "extemporizes",
537
+ "extemporising": "extemporizing",
538
+ "externalisation": "externalization",
539
+ "externalisations": "externalizations",
540
+ "externalise": "externalize",
541
+ "externalised": "externalized",
542
+ "externalises": "externalizes",
543
+ "externalising": "externalizing",
544
+ "factorise": "factorize",
545
+ "factorised": "factorized",
546
+ "factorises": "factorizes",
547
+ "factorising": "factorizing",
548
+ "faecal": "fecal",
549
+ "faeces": "feces",
550
+ "familiarisation": "familiarization",
551
+ "familiarise": "familiarize",
552
+ "familiarised": "familiarized",
553
+ "familiarises": "familiarizes",
554
+ "familiarising": "familiarizing",
555
+ "fantasise": "fantasize",
556
+ "fantasised": "fantasized",
557
+ "fantasises": "fantasizes",
558
+ "fantasising": "fantasizing",
559
+ "favour": "favor",
560
+ "favourable": "favorable",
561
+ "favourably": "favorably",
562
+ "favoured": "favored",
563
+ "favouring": "favoring",
564
+ "favourite": "favorite",
565
+ "favourites": "favorites",
566
+ "favouritism": "favoritism",
567
+ "favours": "favors",
568
+ "feminise": "feminize",
569
+ "feminised": "feminized",
570
+ "feminises": "feminizes",
571
+ "feminising": "feminizing",
572
+ "fertilisation": "fertilization",
573
+ "fertilise": "fertilize",
574
+ "fertilised": "fertilized",
575
+ "fertiliser": "fertilizer",
576
+ "fertilisers": "fertilizers",
577
+ "fertilises": "fertilizes",
578
+ "fertilising": "fertilizing",
579
+ "fervour": "fervor",
580
+ "fibre": "fiber",
581
+ "fibreglass": "fiberglass",
582
+ "fibres": "fibers",
583
+ "fictionalisation": "fictionalization",
584
+ "fictionalisations": "fictionalizations",
585
+ "fictionalise": "fictionalize",
586
+ "fictionalised": "fictionalized",
587
+ "fictionalises": "fictionalizes",
588
+ "fictionalising": "fictionalizing",
589
+ "fillet": "filet",
590
+ "filleted": "fileted",
591
+ "filleting": "fileting",
592
+ "fillets": "filets",
593
+ "finalisation": "finalization",
594
+ "finalise": "finalize",
595
+ "finalised": "finalized",
596
+ "finalises": "finalizes",
597
+ "finalising": "finalizing",
598
+ "flautist": "flutist",
599
+ "flautists": "flutists",
600
+ "flavour": "flavor",
601
+ "flavoured": "flavored",
602
+ "flavouring": "flavoring",
603
+ "flavourings": "flavorings",
604
+ "flavourless": "flavorless",
605
+ "flavours": "flavors",
606
+ "flavoursome": "flavorsome",
607
+ "flyer / flier": "flier / flyer",
608
+ "foetal": "fetal",
609
+ "foetid": "fetid",
610
+ "foetus": "fetus",
611
+ "foetuses": "fetuses",
612
+ "formalisation": "formalization",
613
+ "formalise": "formalize",
614
+ "formalised": "formalized",
615
+ "formalises": "formalizes",
616
+ "formalising": "formalizing",
617
+ "fossilisation": "fossilization",
618
+ "fossilise": "fossilize",
619
+ "fossilised": "fossilized",
620
+ "fossilises": "fossilizes",
621
+ "fossilising": "fossilizing",
622
+ "fraternisation": "fraternization",
623
+ "fraternise": "fraternize",
624
+ "fraternised": "fraternized",
625
+ "fraternises": "fraternizes",
626
+ "fraternising": "fraternizing",
627
+ "fulfil": "fulfill",
628
+ "fulfilment": "fulfillment",
629
+ "fulfils": "fulfills",
630
+ "funnelled": "funneled",
631
+ "funnelling": "funneling",
632
+ "gage": "gauge",
633
+ "gaged": "gauged",
634
+ "gages": "gauges",
635
+ "gaging": "gauging",
636
+ "galvanise": "galvanize",
637
+ "galvanised": "galvanized",
638
+ "galvanises": "galvanizes",
639
+ "galvanising": "galvanizing",
640
+ "gambolled": "gamboled",
641
+ "gambolling": "gamboling",
642
+ "gaol": "jail",
643
+ "gaolbird": "jailbird",
644
+ "gaolbirds": "jailbirds",
645
+ "gaolbreak": "jailbreak",
646
+ "gaolbreaks": "jailbreaks",
647
+ "gaoled": "jailed",
648
+ "gaoler": "jailer",
649
+ "gaolers": "jailers",
650
+ "gaoling": "jailing",
651
+ "gaols": "jails",
652
+ "gasses": "gases",
653
+ "generalisation": "generalization",
654
+ "generalisations": "generalizations",
655
+ "generalise": "generalize",
656
+ "generalised": "generalized",
657
+ "generalises": "generalizes",
658
+ "generalising": "generalizing",
659
+ "ghettoise": "ghettoize",
660
+ "ghettoised": "ghettoized",
661
+ "ghettoises": "ghettoizes",
662
+ "ghettoising": "ghettoizing",
663
+ "gipsies": "gypsies",
664
+ "glamor": "glamour",
665
+ "glamorise": "glamorize",
666
+ "glamorised": "glamorized",
667
+ "glamorises": "glamorizes",
668
+ "glamorising": "glamorizing",
669
+ "globalisation": "globalization",
670
+ "globalise": "globalize",
671
+ "globalised": "globalized",
672
+ "globalises": "globalizes",
673
+ "globalising": "globalizing",
674
+ "glueing": "gluing",
675
+ "goitre": "goiter",
676
+ "goitres": "goiters",
677
+ "gonorrhoea": "gonorrhea",
678
+ "gramme": "gram",
679
+ "grammes": "grams",
680
+ "gravelled": "graveled",
681
+ "grey": "gray",
682
+ "greyed": "grayed",
683
+ "greying": "graying",
684
+ "greyish": "grayish",
685
+ "greyness": "grayness",
686
+ "greys": "grays",
687
+ "grovelled": "groveled",
688
+ "grovelling": "groveling",
689
+ "groyne": "groin",
690
+ "groynes": "groins",
691
+ "gruelling": "grueling",
692
+ "gruellingly": "gruelingly",
693
+ "gryphon": "griffin",
694
+ "gryphons": "griffins",
695
+ "gynaecological": "gynecological",
696
+ "gynaecologist": "gynecologist",
697
+ "gynaecologists": "gynecologists",
698
+ "gynaecology": "gynecology",
699
+ "haematological": "hematological",
700
+ "haematologist": "hematologist",
701
+ "haematologists": "hematologists",
702
+ "haematology": "hematology",
703
+ "haemoglobin": "hemoglobin",
704
+ "haemophilia": "hemophilia",
705
+ "haemophiliac": "hemophiliac",
706
+ "haemophiliacs": "hemophiliacs",
707
+ "haemorrhage": "hemorrhage",
708
+ "haemorrhaged": "hemorrhaged",
709
+ "haemorrhages": "hemorrhages",
710
+ "haemorrhaging": "hemorrhaging",
711
+ "haemorrhoids": "hemorrhoids",
712
+ "harbour": "harbor",
713
+ "harboured": "harbored",
714
+ "harbouring": "harboring",
715
+ "harbours": "harbors",
716
+ "harmonisation": "harmonization",
717
+ "harmonise": "harmonize",
718
+ "harmonised": "harmonized",
719
+ "harmonises": "harmonizes",
720
+ "harmonising": "harmonizing",
721
+ "homoeopath": "homeopath",
722
+ "homoeopathic": "homeopathic",
723
+ "homoeopaths": "homeopaths",
724
+ "homoeopathy": "homeopathy",
725
+ "homogenise": "homogenize",
726
+ "homogenised": "homogenized",
727
+ "homogenises": "homogenizes",
728
+ "homogenising": "homogenizing",
729
+ "honour": "honor",
730
+ "honourable": "honorable",
731
+ "honourably": "honorably",
732
+ "honoured": "honored",
733
+ "honouring": "honoring",
734
+ "honours": "honors",
735
+ "hospitalisation": "hospitalization",
736
+ "hospitalise": "hospitalize",
737
+ "hospitalised": "hospitalized",
738
+ "hospitalises": "hospitalizes",
739
+ "hospitalising": "hospitalizing",
740
+ "humanise": "humanize",
741
+ "humanised": "humanized",
742
+ "humanises": "humanizes",
743
+ "humanising": "humanizing",
744
+ "humour": "humor",
745
+ "humoured": "humored",
746
+ "humouring": "humoring",
747
+ "humourless": "humorless",
748
+ "humours": "humors",
749
+ "hybridise": "hybridize",
750
+ "hybridised": "hybridized",
751
+ "hybridises": "hybridizes",
752
+ "hybridising": "hybridizing",
753
+ "hypnotise": "hypnotize",
754
+ "hypnotised": "hypnotized",
755
+ "hypnotises": "hypnotizes",
756
+ "hypnotising": "hypnotizing",
757
+ "hypothesise": "hypothesize",
758
+ "hypothesised": "hypothesized",
759
+ "hypothesises": "hypothesizes",
760
+ "hypothesising": "hypothesizing",
761
+ "idealisation": "idealization",
762
+ "idealise": "idealize",
763
+ "idealised": "idealized",
764
+ "idealises": "idealizes",
765
+ "idealising": "idealizing",
766
+ "idolise": "idolize",
767
+ "idolised": "idolized",
768
+ "idolises": "idolizes",
769
+ "idolising": "idolizing",
770
+ "immobilisation": "immobilization",
771
+ "immobilise": "immobilize",
772
+ "immobilised": "immobilized",
773
+ "immobiliser": "immobilizer",
774
+ "immobilisers": "immobilizers",
775
+ "immobilises": "immobilizes",
776
+ "immobilising": "immobilizing",
777
+ "immortalise": "immortalize",
778
+ "immortalised": "immortalized",
779
+ "immortalises": "immortalizes",
780
+ "immortalising": "immortalizing",
781
+ "immunisation": "immunization",
782
+ "immunise": "immunize",
783
+ "immunised": "immunized",
784
+ "immunises": "immunizes",
785
+ "immunising": "immunizing",
786
+ "impanelled": "impaneled",
787
+ "impanelling": "impaneling",
788
+ "imperilled": "imperiled",
789
+ "imperilling": "imperiling",
790
+ "individualise": "individualize",
791
+ "individualised": "individualized",
792
+ "individualises": "individualizes",
793
+ "individualising": "individualizing",
794
+ "industrialise": "industrialize",
795
+ "industrialised": "industrialized",
796
+ "industrialises": "industrializes",
797
+ "industrialising": "industrializing",
798
+ "inflexion": "inflection",
799
+ "inflexions": "inflections",
800
+ "initialise": "initialize",
801
+ "initialised": "initialized",
802
+ "initialises": "initializes",
803
+ "initialising": "initializing",
804
+ "initialled": "initialed",
805
+ "initialling": "initialing",
806
+ "instal": "install",
807
+ "instalment": "installment",
808
+ "instalments": "installments",
809
+ "instals": "installs",
810
+ "instil": "instill",
811
+ "instils": "instills",
812
+ "institutionalisation": "institutionalization",
813
+ "institutionalise": "institutionalize",
814
+ "institutionalised": "institutionalized",
815
+ "institutionalises": "institutionalizes",
816
+ "institutionalising": "institutionalizing",
817
+ "intellectualise": "intellectualize",
818
+ "intellectualised": "intellectualized",
819
+ "intellectualises": "intellectualizes",
820
+ "intellectualising": "intellectualizing",
821
+ "internalisation": "internalization",
822
+ "internalise": "internalize",
823
+ "internalised": "internalized",
824
+ "internalises": "internalizes",
825
+ "internalising": "internalizing",
826
+ "internationalisation": "internationalization",
827
+ "internationalise": "internationalize",
828
+ "internationalised": "internationalized",
829
+ "internationalises": "internationalizes",
830
+ "internationalising": "internationalizing",
831
+ "ionisation": "ionization",
832
+ "ionise": "ionize",
833
+ "ionised": "ionized",
834
+ "ioniser": "ionizer",
835
+ "ionisers": "ionizers",
836
+ "ionises": "ionizes",
837
+ "ionising": "ionizing",
838
+ "italicise": "italicize",
839
+ "italicised": "italicized",
840
+ "italicises": "italicizes",
841
+ "italicising": "italicizing",
842
+ "itemise": "itemize",
843
+ "itemised": "itemized",
844
+ "itemises": "itemizes",
845
+ "itemising": "itemizing",
846
+ "jeopardise": "jeopardize",
847
+ "jeopardised": "jeopardized",
848
+ "jeopardises": "jeopardizes",
849
+ "jeopardising": "jeopardizing",
850
+ "jewelled": "jeweled",
851
+ "jeweller": "jeweler",
852
+ "jewellers": "jewelers",
853
+ "jewellery": "jewelry",
854
+ "judgement": "judgment",
855
+ "kilogramme": "kilogram",
856
+ "kilogrammes": "kilograms",
857
+ "kilometre": "kilometer",
858
+ "kilometres": "kilometers",
859
+ "labelled": "labeled",
860
+ "labelling": "labeling",
861
+ "labour": "labor",
862
+ "laboured": "labored",
863
+ "labourer": "laborer",
864
+ "labourers": "laborers",
865
+ "labouring": "laboring",
866
+ "labours": "labors",
867
+ "lacklustre": "lackluster",
868
+ "legalisation": "legalization",
869
+ "legalise": "legalize",
870
+ "legalised": "legalized",
871
+ "legalises": "legalizes",
872
+ "legalising": "legalizing",
873
+ "legitimise": "legitimize",
874
+ "legitimised": "legitimized",
875
+ "legitimises": "legitimizes",
876
+ "legitimising": "legitimizing",
877
+ "leukaemia": "leukemia",
878
+ "levelled": "leveled",
879
+ "leveller": "leveler",
880
+ "levellers": "levelers",
881
+ "levelling": "leveling",
882
+ "libelled": "libeled",
883
+ "libelling": "libeling",
884
+ "libellous": "libelous",
885
+ "liberalisation": "liberalization",
886
+ "liberalise": "liberalize",
887
+ "liberalised": "liberalized",
888
+ "liberalises": "liberalizes",
889
+ "liberalising": "liberalizing",
890
+ "licence": "license",
891
+ "licenced": "licensed",
892
+ "licences": "licenses",
893
+ "licencing": "licensing",
894
+ "likeable": "likable",
895
+ "lionisation": "lionization",
896
+ "lionise": "lionize",
897
+ "lionised": "lionized",
898
+ "lionises": "lionizes",
899
+ "lionising": "lionizing",
900
+ "liquidise": "liquidize",
901
+ "liquidised": "liquidized",
902
+ "liquidiser": "liquidizer",
903
+ "liquidisers": "liquidizers",
904
+ "liquidises": "liquidizes",
905
+ "liquidising": "liquidizing",
906
+ "litre": "liter",
907
+ "litres": "liters",
908
+ "localise": "localize",
909
+ "localised": "localized",
910
+ "localises": "localizes",
911
+ "localising": "localizing",
912
+ "louvre": "louver",
913
+ "louvred": "louvered",
914
+ "louvres": "louvers",
915
+ "lustre": "luster",
916
+ "magnetise": "magnetize",
917
+ "magnetised": "magnetized",
918
+ "magnetises": "magnetizes",
919
+ "magnetising": "magnetizing",
920
+ "manoeuvrability": "maneuverability",
921
+ "manoeuvrable": "maneuverable",
922
+ "manoeuvre": "maneuver",
923
+ "manoeuvred": "maneuvered",
924
+ "manoeuvres": "maneuvers",
925
+ "manoeuvring": "maneuvering",
926
+ "manoeuvrings": "maneuverings",
927
+ "marginalisation": "marginalization",
928
+ "marginalise": "marginalize",
929
+ "marginalised": "marginalized",
930
+ "marginalises": "marginalizes",
931
+ "marginalising": "marginalizing",
932
+ "marshalled": "marshaled",
933
+ "marshalling": "marshaling",
934
+ "marvelled": "marveled",
935
+ "marvelling": "marveling",
936
+ "marvellous": "marvelous",
937
+ "marvellously": "marvelously",
938
+ "materialisation": "materialization",
939
+ "materialise": "materialize",
940
+ "materialised": "materialized",
941
+ "materialises": "materializes",
942
+ "materialising": "materializing",
943
+ "maximisation": "maximization",
944
+ "maximise": "maximize",
945
+ "maximised": "maximized",
946
+ "maximises": "maximizes",
947
+ "maximising": "maximizing",
948
+ "meagre": "meager",
949
+ "mechanisation": "mechanization",
950
+ "mechanise": "mechanize",
951
+ "mechanised": "mechanized",
952
+ "mechanises": "mechanizes",
953
+ "mechanising": "mechanizing",
954
+ "mediaeval": "medieval",
955
+ "memorialise": "memorialize",
956
+ "memorialised": "memorialized",
957
+ "memorialises": "memorializes",
958
+ "memorialising": "memorializing",
959
+ "memorise": "memorize",
960
+ "memorised": "memorized",
961
+ "memorises": "memorizes",
962
+ "memorising": "memorizing",
963
+ "mesmerise": "mesmerize",
964
+ "mesmerised": "mesmerized",
965
+ "mesmerises": "mesmerizes",
966
+ "mesmerising": "mesmerizing",
967
+ "metabolise": "metabolize",
968
+ "metabolised": "metabolized",
969
+ "metabolises": "metabolizes",
970
+ "metabolising": "metabolizing",
971
+ "metre": "meter",
972
+ "metres": "meters",
973
+ "mhm": "hmm",
974
+ "micrometre": "micrometer",
975
+ "micrometres": "micrometers",
976
+ "militarise": "militarize",
977
+ "militarised": "militarized",
978
+ "militarises": "militarizes",
979
+ "militarising": "militarizing",
980
+ "milligramme": "milligram",
981
+ "milligrammes": "milligrams",
982
+ "millilitre": "milliliter",
983
+ "millilitres": "milliliters",
984
+ "millimetre": "millimeter",
985
+ "millimetres": "millimeters",
986
+ "miniaturisation": "miniaturization",
987
+ "miniaturise": "miniaturize",
988
+ "miniaturised": "miniaturized",
989
+ "miniaturises": "miniaturizes",
990
+ "miniaturising": "miniaturizing",
991
+ "minibusses": "minibuses",
992
+ "minimise": "minimize",
993
+ "minimised": "minimized",
994
+ "minimises": "minimizes",
995
+ "minimising": "minimizing",
996
+ "misbehaviour": "misbehavior",
997
+ "misdemeanour": "misdemeanor",
998
+ "misdemeanours": "misdemeanors",
999
+ "misspelt": "misspelled",
1000
+ "mitre": "miter",
1001
+ "mitres": "miters",
1002
+ "mm": "hmm",
1003
+ "mmm": "hmm",
1004
+ "mobilisation": "mobilization",
1005
+ "mobilise": "mobilize",
1006
+ "mobilised": "mobilized",
1007
+ "mobilises": "mobilizes",
1008
+ "mobilising": "mobilizing",
1009
+ "modelled": "modeled",
1010
+ "modeller": "modeler",
1011
+ "modellers": "modelers",
1012
+ "modelling": "modeling",
1013
+ "modernise": "modernize",
1014
+ "modernised": "modernized",
1015
+ "modernises": "modernizes",
1016
+ "modernising": "modernizing",
1017
+ "moisturise": "moisturize",
1018
+ "moisturised": "moisturized",
1019
+ "moisturiser": "moisturizer",
1020
+ "moisturisers": "moisturizers",
1021
+ "moisturises": "moisturizes",
1022
+ "moisturising": "moisturizing",
1023
+ "monologue": "monolog",
1024
+ "monologues": "monologs",
1025
+ "monopolisation": "monopolization",
1026
+ "monopolise": "monopolize",
1027
+ "monopolised": "monopolized",
1028
+ "monopolises": "monopolizes",
1029
+ "monopolising": "monopolizing",
1030
+ "moralise": "moralize",
1031
+ "moralised": "moralized",
1032
+ "moralises": "moralizes",
1033
+ "moralising": "moralizing",
1034
+ "motorised": "motorized",
1035
+ "mould": "mold",
1036
+ "moulded": "molded",
1037
+ "moulder": "molder",
1038
+ "mouldered": "moldered",
1039
+ "mouldering": "moldering",
1040
+ "moulders": "molders",
1041
+ "mouldier": "moldier",
1042
+ "mouldiest": "moldiest",
1043
+ "moulding": "molding",
1044
+ "mouldings": "moldings",
1045
+ "moulds": "molds",
1046
+ "mouldy": "moldy",
1047
+ "moult": "molt",
1048
+ "moulted": "molted",
1049
+ "moulting": "molting",
1050
+ "moults": "molts",
1051
+ "moustache": "mustache",
1052
+ "moustached": "mustached",
1053
+ "moustaches": "mustaches",
1054
+ "moustachioed": "mustachioed",
1055
+ "multicoloured": "multicolored",
1056
+ "nationalisation": "nationalization",
1057
+ "nationalisations": "nationalizations",
1058
+ "nationalise": "nationalize",
1059
+ "nationalised": "nationalized",
1060
+ "nationalises": "nationalizes",
1061
+ "nationalising": "nationalizing",
1062
+ "naturalisation": "naturalization",
1063
+ "naturalise": "naturalize",
1064
+ "naturalised": "naturalized",
1065
+ "naturalises": "naturalizes",
1066
+ "naturalising": "naturalizing",
1067
+ "neighbour": "neighbor",
1068
+ "neighbourhood": "neighborhood",
1069
+ "neighbourhoods": "neighborhoods",
1070
+ "neighbouring": "neighboring",
1071
+ "neighbourliness": "neighborliness",
1072
+ "neighbourly": "neighborly",
1073
+ "neighbours": "neighbors",
1074
+ "neutralisation": "neutralization",
1075
+ "neutralise": "neutralize",
1076
+ "neutralised": "neutralized",
1077
+ "neutralises": "neutralizes",
1078
+ "neutralising": "neutralizing",
1079
+ "normalisation": "normalization",
1080
+ "normalise": "normalize",
1081
+ "normalised": "normalized",
1082
+ "normalises": "normalizes",
1083
+ "normalising": "normalizing",
1084
+ "odour": "odor",
1085
+ "odourless": "odorless",
1086
+ "odours": "odors",
1087
+ "oesophagus": "esophagus",
1088
+ "oesophaguses": "esophaguses",
1089
+ "oestrogen": "estrogen",
1090
+ "offence": "offense",
1091
+ "offences": "offenses",
1092
+ "omelette": "omelet",
1093
+ "omelettes": "omelets",
1094
+ "optimise": "optimize",
1095
+ "optimised": "optimized",
1096
+ "optimises": "optimizes",
1097
+ "optimising": "optimizing",
1098
+ "organisation": "organization",
1099
+ "organisational": "organizational",
1100
+ "organisations": "organizations",
1101
+ "organise": "organize",
1102
+ "organised": "organized",
1103
+ "organiser": "organizer",
1104
+ "organisers": "organizers",
1105
+ "organises": "organizes",
1106
+ "organising": "organizing",
1107
+ "orthopaedic": "orthopedic",
1108
+ "orthopaedics": "orthopedics",
1109
+ "ostracise": "ostracize",
1110
+ "ostracised": "ostracized",
1111
+ "ostracises": "ostracizes",
1112
+ "ostracising": "ostracizing",
1113
+ "outmanoeuvre": "outmaneuver",
1114
+ "outmanoeuvred": "outmaneuvered",
1115
+ "outmanoeuvres": "outmaneuvers",
1116
+ "outmanoeuvring": "outmaneuvering",
1117
+ "overemphasise": "overemphasize",
1118
+ "overemphasised": "overemphasized",
1119
+ "overemphasises": "overemphasizes",
1120
+ "overemphasising": "overemphasizing",
1121
+ "oxidisation": "oxidization",
1122
+ "oxidise": "oxidize",
1123
+ "oxidised": "oxidized",
1124
+ "oxidises": "oxidizes",
1125
+ "oxidising": "oxidizing",
1126
+ "paederast": "pederast",
1127
+ "paederasts": "pederasts",
1128
+ "paediatric": "pediatric",
1129
+ "paediatrician": "pediatrician",
1130
+ "paediatricians": "pediatricians",
1131
+ "paediatrics": "pediatrics",
1132
+ "paedophile": "pedophile",
1133
+ "paedophiles": "pedophiles",
1134
+ "paedophilia": "pedophilia",
1135
+ "palaeolithic": "paleolithic",
1136
+ "palaeontologist": "paleontologist",
1137
+ "palaeontologists": "paleontologists",
1138
+ "palaeontology": "paleontology",
1139
+ "panelled": "paneled",
1140
+ "panelling": "paneling",
1141
+ "panellist": "panelist",
1142
+ "panellists": "panelists",
1143
+ "paralyse": "paralyze",
1144
+ "paralysed": "paralyzed",
1145
+ "paralyses": "paralyzes",
1146
+ "paralysing": "paralyzing",
1147
+ "parcelled": "parceled",
1148
+ "parcelling": "parceling",
1149
+ "parlour": "parlor",
1150
+ "parlours": "parlors",
1151
+ "particularise": "particularize",
1152
+ "particularised": "particularized",
1153
+ "particularises": "particularizes",
1154
+ "particularising": "particularizing",
1155
+ "passivisation": "passivization",
1156
+ "passivise": "passivize",
1157
+ "passivised": "passivized",
1158
+ "passivises": "passivizes",
1159
+ "passivising": "passivizing",
1160
+ "pasteurisation": "pasteurization",
1161
+ "pasteurise": "pasteurize",
1162
+ "pasteurised": "pasteurized",
1163
+ "pasteurises": "pasteurizes",
1164
+ "pasteurising": "pasteurizing",
1165
+ "patronise": "patronize",
1166
+ "patronised": "patronized",
1167
+ "patronises": "patronizes",
1168
+ "patronising": "patronizing",
1169
+ "patronisingly": "patronizingly",
1170
+ "pedalled": "pedaled",
1171
+ "pedalling": "pedaling",
1172
+ "pedestrianisation": "pedestrianization",
1173
+ "pedestrianise": "pedestrianize",
1174
+ "pedestrianised": "pedestrianized",
1175
+ "pedestrianises": "pedestrianizes",
1176
+ "pedestrianising": "pedestrianizing",
1177
+ "penalise": "penalize",
1178
+ "penalised": "penalized",
1179
+ "penalises": "penalizes",
1180
+ "penalising": "penalizing",
1181
+ "pencilled": "penciled",
1182
+ "pencilling": "penciling",
1183
+ "personalise": "personalize",
1184
+ "personalised": "personalized",
1185
+ "personalises": "personalizes",
1186
+ "personalising": "personalizing",
1187
+ "pharmacopoeia": "pharmacopeia",
1188
+ "pharmacopoeias": "pharmacopeias",
1189
+ "philosophise": "philosophize",
1190
+ "philosophised": "philosophized",
1191
+ "philosophises": "philosophizes",
1192
+ "philosophising": "philosophizing",
1193
+ "philtre": "filter",
1194
+ "philtres": "filters",
1195
+ "phoney": "phony",
1196
+ "plagiarise": "plagiarize",
1197
+ "plagiarised": "plagiarized",
1198
+ "plagiarises": "plagiarizes",
1199
+ "plagiarising": "plagiarizing",
1200
+ "plough": "plow",
1201
+ "ploughed": "plowed",
1202
+ "ploughing": "plowing",
1203
+ "ploughman": "plowman",
1204
+ "ploughmen": "plowmen",
1205
+ "ploughs": "plows",
1206
+ "ploughshare": "plowshare",
1207
+ "ploughshares": "plowshares",
1208
+ "polarisation": "polarization",
1209
+ "polarise": "polarize",
1210
+ "polarised": "polarized",
1211
+ "polarises": "polarizes",
1212
+ "polarising": "polarizing",
1213
+ "politicisation": "politicization",
1214
+ "politicise": "politicize",
1215
+ "politicised": "politicized",
1216
+ "politicises": "politicizes",
1217
+ "politicising": "politicizing",
1218
+ "popularisation": "popularization",
1219
+ "popularise": "popularize",
1220
+ "popularised": "popularized",
1221
+ "popularises": "popularizes",
1222
+ "popularising": "popularizing",
1223
+ "pouffe": "pouf",
1224
+ "pouffes": "poufs",
1225
+ "practise": "practice",
1226
+ "practised": "practiced",
1227
+ "practises": "practices",
1228
+ "practising": "practicing",
1229
+ "praesidium": "presidium",
1230
+ "praesidiums": "presidiums",
1231
+ "pressurisation": "pressurization",
1232
+ "pressurise": "pressurize",
1233
+ "pressurised": "pressurized",
1234
+ "pressurises": "pressurizes",
1235
+ "pressurising": "pressurizing",
1236
+ "pretence": "pretense",
1237
+ "pretences": "pretenses",
1238
+ "primaeval": "primeval",
1239
+ "prioritisation": "prioritization",
1240
+ "prioritise": "prioritize",
1241
+ "prioritised": "prioritized",
1242
+ "prioritises": "prioritizes",
1243
+ "prioritising": "prioritizing",
1244
+ "privatisation": "privatization",
1245
+ "privatisations": "privatizations",
1246
+ "privatise": "privatize",
1247
+ "privatised": "privatized",
1248
+ "privatises": "privatizes",
1249
+ "privatising": "privatizing",
1250
+ "professionalisation": "professionalization",
1251
+ "professionalise": "professionalize",
1252
+ "professionalised": "professionalized",
1253
+ "professionalises": "professionalizes",
1254
+ "professionalising": "professionalizing",
1255
+ "programme": "program",
1256
+ "programmes": "programs",
1257
+ "prologue": "prolog",
1258
+ "prologues": "prologs",
1259
+ "propagandise": "propagandize",
1260
+ "propagandised": "propagandized",
1261
+ "propagandises": "propagandizes",
1262
+ "propagandising": "propagandizing",
1263
+ "proselytise": "proselytize",
1264
+ "proselytised": "proselytized",
1265
+ "proselytiser": "proselytizer",
1266
+ "proselytisers": "proselytizers",
1267
+ "proselytises": "proselytizes",
1268
+ "proselytising": "proselytizing",
1269
+ "psychoanalyse": "psychoanalyze",
1270
+ "psychoanalysed": "psychoanalyzed",
1271
+ "psychoanalyses": "psychoanalyzes",
1272
+ "psychoanalysing": "psychoanalyzing",
1273
+ "publicise": "publicize",
1274
+ "publicised": "publicized",
1275
+ "publicises": "publicizes",
1276
+ "publicising": "publicizing",
1277
+ "pulverisation": "pulverization",
1278
+ "pulverise": "pulverize",
1279
+ "pulverised": "pulverized",
1280
+ "pulverises": "pulverizes",
1281
+ "pulverising": "pulverizing",
1282
+ "pummelled": "pummel",
1283
+ "pummelling": "pummeled",
1284
+ "pyjama": "pajama",
1285
+ "pyjamas": "pajamas",
1286
+ "pzazz": "pizzazz",
1287
+ "quarrelled": "quarreled",
1288
+ "quarrelling": "quarreling",
1289
+ "radicalise": "radicalize",
1290
+ "radicalised": "radicalized",
1291
+ "radicalises": "radicalizes",
1292
+ "radicalising": "radicalizing",
1293
+ "rancour": "rancor",
1294
+ "randomise": "randomize",
1295
+ "randomised": "randomized",
1296
+ "randomises": "randomizes",
1297
+ "randomising": "randomizing",
1298
+ "rationalisation": "rationalization",
1299
+ "rationalisations": "rationalizations",
1300
+ "rationalise": "rationalize",
1301
+ "rationalised": "rationalized",
1302
+ "rationalises": "rationalizes",
1303
+ "rationalising": "rationalizing",
1304
+ "ravelled": "raveled",
1305
+ "ravelling": "raveling",
1306
+ "realisable": "realizable",
1307
+ "realisation": "realization",
1308
+ "realisations": "realizations",
1309
+ "realise": "realize",
1310
+ "realised": "realized",
1311
+ "realises": "realizes",
1312
+ "realising": "realizing",
1313
+ "recognisable": "recognizable",
1314
+ "recognisably": "recognizably",
1315
+ "recognisance": "recognizance",
1316
+ "recognise": "recognize",
1317
+ "recognised": "recognized",
1318
+ "recognises": "recognizes",
1319
+ "recognising": "recognizing",
1320
+ "reconnoitre": "reconnoiter",
1321
+ "reconnoitred": "reconnoitered",
1322
+ "reconnoitres": "reconnoiters",
1323
+ "reconnoitring": "reconnoitering",
1324
+ "refuelled": "refueled",
1325
+ "refuelling": "refueling",
1326
+ "regularisation": "regularization",
1327
+ "regularise": "regularize",
1328
+ "regularised": "regularized",
1329
+ "regularises": "regularizes",
1330
+ "regularising": "regularizing",
1331
+ "remodelled": "remodeled",
1332
+ "remodelling": "remodeling",
1333
+ "remould": "remold",
1334
+ "remoulded": "remolded",
1335
+ "remoulding": "remolding",
1336
+ "remoulds": "remolds",
1337
+ "reorganisation": "reorganization",
1338
+ "reorganisations": "reorganizations",
1339
+ "reorganise": "reorganize",
1340
+ "reorganised": "reorganized",
1341
+ "reorganises": "reorganizes",
1342
+ "reorganising": "reorganizing",
1343
+ "revelled": "reveled",
1344
+ "reveller": "reveler",
1345
+ "revellers": "revelers",
1346
+ "revelling": "reveling",
1347
+ "revitalise": "revitalize",
1348
+ "revitalised": "revitalized",
1349
+ "revitalises": "revitalizes",
1350
+ "revitalising": "revitalizing",
1351
+ "revolutionise": "revolutionize",
1352
+ "revolutionised": "revolutionized",
1353
+ "revolutionises": "revolutionizes",
1354
+ "revolutionising": "revolutionizing",
1355
+ "rhapsodise": "rhapsodize",
1356
+ "rhapsodised": "rhapsodized",
1357
+ "rhapsodises": "rhapsodizes",
1358
+ "rhapsodising": "rhapsodizing",
1359
+ "rigour": "rigor",
1360
+ "rigours": "rigors",
1361
+ "ritualised": "ritualized",
1362
+ "rivalled": "rivaled",
1363
+ "rivalling": "rivaling",
1364
+ "romanticise": "romanticize",
1365
+ "romanticised": "romanticized",
1366
+ "romanticises": "romanticizes",
1367
+ "romanticising": "romanticizing",
1368
+ "rumour": "rumor",
1369
+ "rumoured": "rumored",
1370
+ "rumours": "rumors",
1371
+ "sabre": "saber",
1372
+ "sabres": "sabers",
1373
+ "saltpetre": "saltpeter",
1374
+ "sanitise": "sanitize",
1375
+ "sanitised": "sanitized",
1376
+ "sanitises": "sanitizes",
1377
+ "sanitising": "sanitizing",
1378
+ "satirise": "satirize",
1379
+ "satirised": "satirized",
1380
+ "satirises": "satirizes",
1381
+ "satirising": "satirizing",
1382
+ "saviour": "savior",
1383
+ "saviours": "saviors",
1384
+ "savour": "savor",
1385
+ "savoured": "savored",
1386
+ "savouries": "savories",
1387
+ "savouring": "savoring",
1388
+ "savours": "savors",
1389
+ "savoury": "savory",
1390
+ "scandalise": "scandalize",
1391
+ "scandalised": "scandalized",
1392
+ "scandalises": "scandalizes",
1393
+ "scandalising": "scandalizing",
1394
+ "sceptic": "skeptic",
1395
+ "sceptical": "skeptical",
1396
+ "sceptically": "skeptically",
1397
+ "scepticism": "skepticism",
1398
+ "sceptics": "skeptics",
1399
+ "sceptre": "scepter",
1400
+ "sceptres": "scepters",
1401
+ "scrutinise": "scrutinize",
1402
+ "scrutinised": "scrutinized",
1403
+ "scrutinises": "scrutinizes",
1404
+ "scrutinising": "scrutinizing",
1405
+ "secularisation": "secularization",
1406
+ "secularise": "secularize",
1407
+ "secularised": "secularized",
1408
+ "secularises": "secularizes",
1409
+ "secularising": "secularizing",
1410
+ "sensationalise": "sensationalize",
1411
+ "sensationalised": "sensationalized",
1412
+ "sensationalises": "sensationalizes",
1413
+ "sensationalising": "sensationalizing",
1414
+ "sensitise": "sensitize",
1415
+ "sensitised": "sensitized",
1416
+ "sensitises": "sensitizes",
1417
+ "sensitising": "sensitizing",
1418
+ "sentimentalise": "sentimentalize",
1419
+ "sentimentalised": "sentimentalized",
1420
+ "sentimentalises": "sentimentalizes",
1421
+ "sentimentalising": "sentimentalizing",
1422
+ "sepulchre": "sepulcher",
1423
+ "sepulchres": "sepulchers",
1424
+ "serialisation": "serialization",
1425
+ "serialisations": "serializations",
1426
+ "serialise": "serialize",
1427
+ "serialised": "serialized",
1428
+ "serialises": "serializes",
1429
+ "serialising": "serializing",
1430
+ "sermonise": "sermonize",
1431
+ "sermonised": "sermonized",
1432
+ "sermonises": "sermonizes",
1433
+ "sermonising": "sermonizing",
1434
+ "sheikh": "sheik",
1435
+ "shovelled": "shoveled",
1436
+ "shovelling": "shoveling",
1437
+ "shrivelled": "shriveled",
1438
+ "shrivelling": "shriveling",
1439
+ "signalise": "signalize",
1440
+ "signalised": "signalized",
1441
+ "signalises": "signalizes",
1442
+ "signalising": "signalizing",
1443
+ "signalled": "signaled",
1444
+ "signalling": "signaling",
1445
+ "smoulder": "smolder",
1446
+ "smouldered": "smoldered",
1447
+ "smouldering": "smoldering",
1448
+ "smoulders": "smolders",
1449
+ "snivelled": "sniveled",
1450
+ "snivelling": "sniveling",
1451
+ "snorkelled": "snorkeled",
1452
+ "snorkelling": "snorkeling",
1453
+ "snowplough": "snowplow",
1454
+ "snowploughs": "snowplow",
1455
+ "socialisation": "socialization",
1456
+ "socialise": "socialize",
1457
+ "socialised": "socialized",
1458
+ "socialises": "socializes",
1459
+ "socialising": "socializing",
1460
+ "sodomise": "sodomize",
1461
+ "sodomised": "sodomized",
1462
+ "sodomises": "sodomizes",
1463
+ "sodomising": "sodomizing",
1464
+ "solemnise": "solemnize",
1465
+ "solemnised": "solemnized",
1466
+ "solemnises": "solemnizes",
1467
+ "solemnising": "solemnizing",
1468
+ "sombre": "somber",
1469
+ "specialisation": "specialization",
1470
+ "specialisations": "specializations",
1471
+ "specialise": "specialize",
1472
+ "specialised": "specialized",
1473
+ "specialises": "specializes",
1474
+ "specialising": "specializing",
1475
+ "spectre": "specter",
1476
+ "spectres": "specters",
1477
+ "spiralled": "spiraled",
1478
+ "spiralling": "spiraling",
1479
+ "splendour": "splendor",
1480
+ "splendours": "splendors",
1481
+ "squirrelled": "squirreled",
1482
+ "squirrelling": "squirreling",
1483
+ "stabilisation": "stabilization",
1484
+ "stabilise": "stabilize",
1485
+ "stabilised": "stabilized",
1486
+ "stabiliser": "stabilizer",
1487
+ "stabilisers": "stabilizers",
1488
+ "stabilises": "stabilizes",
1489
+ "stabilising": "stabilizing",
1490
+ "standardisation": "standardization",
1491
+ "standardise": "standardize",
1492
+ "standardised": "standardized",
1493
+ "standardises": "standardizes",
1494
+ "standardising": "standardizing",
1495
+ "stencilled": "stenciled",
1496
+ "stencilling": "stenciling",
1497
+ "sterilisation": "sterilization",
1498
+ "sterilisations": "sterilizations",
1499
+ "sterilise": "sterilize",
1500
+ "sterilised": "sterilized",
1501
+ "steriliser": "sterilizer",
1502
+ "sterilisers": "sterilizers",
1503
+ "sterilises": "sterilizes",
1504
+ "sterilising": "sterilizing",
1505
+ "stigmatisation": "stigmatization",
1506
+ "stigmatise": "stigmatize",
1507
+ "stigmatised": "stigmatized",
1508
+ "stigmatises": "stigmatizes",
1509
+ "stigmatising": "stigmatizing",
1510
+ "storey": "story",
1511
+ "storeys": "stories",
1512
+ "subsidisation": "subsidization",
1513
+ "subsidise": "subsidize",
1514
+ "subsidised": "subsidized",
1515
+ "subsidiser": "subsidizer",
1516
+ "subsidisers": "subsidizers",
1517
+ "subsidises": "subsidizes",
1518
+ "subsidising": "subsidizing",
1519
+ "succour": "succor",
1520
+ "succoured": "succored",
1521
+ "succouring": "succoring",
1522
+ "succours": "succors",
1523
+ "sulphate": "sulfate",
1524
+ "sulphates": "sulfates",
1525
+ "sulphide": "sulfide",
1526
+ "sulphides": "sulfides",
1527
+ "sulphur": "sulfur",
1528
+ "sulphurous": "sulfurous",
1529
+ "summarise": "summarize",
1530
+ "summarised": "summarized",
1531
+ "summarises": "summarizes",
1532
+ "summarising": "summarizing",
1533
+ "swivelled": "swiveled",
1534
+ "swivelling": "swiveling",
1535
+ "symbolise": "symbolize",
1536
+ "symbolised": "symbolized",
1537
+ "symbolises": "symbolizes",
1538
+ "symbolising": "symbolizing",
1539
+ "sympathise": "sympathize",
1540
+ "sympathised": "sympathized",
1541
+ "sympathiser": "sympathizer",
1542
+ "sympathisers": "sympathizers",
1543
+ "sympathises": "sympathizes",
1544
+ "sympathising": "sympathizing",
1545
+ "synchronisation": "synchronization",
1546
+ "synchronise": "synchronize",
1547
+ "synchronised": "synchronized",
1548
+ "synchronises": "synchronizes",
1549
+ "synchronising": "synchronizing",
1550
+ "synthesise": "synthesize",
1551
+ "synthesised": "synthesized",
1552
+ "synthesiser": "synthesizer",
1553
+ "synthesisers": "synthesizers",
1554
+ "synthesises": "synthesizes",
1555
+ "synthesising": "synthesizing",
1556
+ "syphon": "siphon",
1557
+ "syphoned": "siphoned",
1558
+ "syphoning": "siphoning",
1559
+ "syphons": "siphons",
1560
+ "systematisation": "systematization",
1561
+ "systematise": "systematize",
1562
+ "systematised": "systematized",
1563
+ "systematises": "systematizes",
1564
+ "systematising": "systematizing",
1565
+ "tantalise": "tantalize",
1566
+ "tantalised": "tantalized",
1567
+ "tantalises": "tantalizes",
1568
+ "tantalising": "tantalizing",
1569
+ "tantalisingly": "tantalizingly",
1570
+ "tasselled": "tasseled",
1571
+ "technicolour": "technicolor",
1572
+ "temporise": "temporize",
1573
+ "temporised": "temporized",
1574
+ "temporises": "temporizes",
1575
+ "temporising": "temporizing",
1576
+ "tenderise": "tenderize",
1577
+ "tenderised": "tenderized",
1578
+ "tenderises": "tenderizes",
1579
+ "tenderising": "tenderizing",
1580
+ "terrorise": "terrorize",
1581
+ "terrorised": "terrorized",
1582
+ "terrorises": "terrorizes",
1583
+ "terrorising": "terrorizing",
1584
+ "theatre": "theater",
1585
+ "theatregoer": "theatergoer",
1586
+ "theatregoers": "theatergoers",
1587
+ "theatres": "theaters",
1588
+ "theorise": "theorize",
1589
+ "theorised": "theorized",
1590
+ "theorises": "theorizes",
1591
+ "theorising": "theorizing",
1592
+ "tonne": "ton",
1593
+ "tonnes": "tons",
1594
+ "towelled": "toweled",
1595
+ "towelling": "toweling",
1596
+ "toxaemia": "toxemia",
1597
+ "tranquillise": "tranquilize",
1598
+ "tranquillised": "tranquilized",
1599
+ "tranquilliser": "tranquilizer",
1600
+ "tranquillisers": "tranquilizers",
1601
+ "tranquillises": "tranquilizes",
1602
+ "tranquillising": "tranquilizing",
1603
+ "tranquillity": "tranquility",
1604
+ "tranquillize": "tranquilize",
1605
+ "tranquillized": "tranquilized",
1606
+ "tranquillizer": "tranquilizer",
1607
+ "tranquillizers": "tranquilizers",
1608
+ "tranquillizes": "tranquilizes",
1609
+ "tranquillizing": "tranquilizing",
1610
+ "tranquilly": "tranquility",
1611
+ "transistorised": "transistorized",
1612
+ "traumatise": "traumatize",
1613
+ "traumatised": "traumatized",
1614
+ "traumatises": "traumatizes",
1615
+ "traumatising": "traumatizing",
1616
+ "travelled": "traveled",
1617
+ "traveller": "traveler",
1618
+ "travellers": "travelers",
1619
+ "travelling": "traveling",
1620
+ "travelog": "travelogue",
1621
+ "travelogs": "travelogues",
1622
+ "trialled": "trialed",
1623
+ "trialling": "trialing",
1624
+ "tricolour": "tricolor",
1625
+ "tricolours": "tricolors",
1626
+ "trivialise": "trivialize",
1627
+ "trivialised": "trivialized",
1628
+ "trivialises": "trivializes",
1629
+ "trivialising": "trivializing",
1630
+ "tumour": "tumor",
1631
+ "tumours": "tumors",
1632
+ "tunnelled": "tunneled",
1633
+ "tunnelling": "tunneling",
1634
+ "tyrannise": "tyrannize",
1635
+ "tyrannised": "tyrannized",
1636
+ "tyrannises": "tyrannizes",
1637
+ "tyrannising": "tyrannizing",
1638
+ "tyre": "tire",
1639
+ "tyres": "tires",
1640
+ "unauthorised": "unauthorized",
1641
+ "uncivilised": "uncivilized",
1642
+ "underutilised": "underutilized",
1643
+ "unequalled": "unequaled",
1644
+ "unfavourable": "unfavorable",
1645
+ "unfavourably": "unfavorably",
1646
+ "unionisation": "unionization",
1647
+ "unionise": "unionize",
1648
+ "unionised": "unionized",
1649
+ "unionises": "unionizes",
1650
+ "unionising": "unionizing",
1651
+ "unorganised": "unorganized",
1652
+ "unravelled": "unraveled",
1653
+ "unravelling": "unraveling",
1654
+ "unrecognisable": "unrecognizable",
1655
+ "unrecognised": "unrecognized",
1656
+ "unrivalled": "unrivaled",
1657
+ "unsavoury": "unsavory",
1658
+ "untrammelled": "untrammeled",
1659
+ "urbanisation": "urbanization",
1660
+ "urbanise": "urbanize",
1661
+ "urbanised": "urbanized",
1662
+ "urbanises": "urbanizes",
1663
+ "urbanising": "urbanizing",
1664
+ "utilisable": "utilizable",
1665
+ "utilisation": "utilization",
1666
+ "utilise": "utilize",
1667
+ "utilised": "utilized",
1668
+ "utilises": "utilizes",
1669
+ "utilising": "utilizing",
1670
+ "valour": "valor",
1671
+ "vandalise": "vandalize",
1672
+ "vandalised": "vandalized",
1673
+ "vandalises": "vandalizes",
1674
+ "vandalising": "vandalizing",
1675
+ "vaporisation": "vaporization",
1676
+ "vaporise": "vaporize",
1677
+ "vaporised": "vaporized",
1678
+ "vaporises": "vaporizes",
1679
+ "vaporising": "vaporizing",
1680
+ "vapour": "vapor",
1681
+ "vapours": "vapors",
1682
+ "verbalise": "verbalize",
1683
+ "verbalised": "verbalized",
1684
+ "verbalises": "verbalizes",
1685
+ "verbalising": "verbalizing",
1686
+ "victimisation": "victimization",
1687
+ "victimise": "victimize",
1688
+ "victimised": "victimized",
1689
+ "victimises": "victimizes",
1690
+ "victimising": "victimizing",
1691
+ "videodisc": "videodisk",
1692
+ "videodiscs": "videodisks",
1693
+ "vigour": "vigor",
1694
+ "visualisation": "visualization",
1695
+ "visualisations": "visualizations",
1696
+ "visualise": "visualize",
1697
+ "visualised": "visualized",
1698
+ "visualises": "visualizes",
1699
+ "visualising": "visualizing",
1700
+ "vocalisation": "vocalization",
1701
+ "vocalisations": "vocalizations",
1702
+ "vocalise": "vocalize",
1703
+ "vocalised": "vocalized",
1704
+ "vocalises": "vocalizes",
1705
+ "vocalising": "vocalizing",
1706
+ "vulcanised": "vulcanized",
1707
+ "vulgarisation": "vulgarization",
1708
+ "vulgarise": "vulgarize",
1709
+ "vulgarised": "vulgarized",
1710
+ "vulgarises": "vulgarizes",
1711
+ "vulgarising": "vulgarizing",
1712
+ "waggon": "wagon",
1713
+ "waggons": "wagons",
1714
+ "watercolour": "watercolor",
1715
+ "watercolours": "watercolors",
1716
+ "weaselled": "weaseled",
1717
+ "weaselling": "weaseling",
1718
+ "westernisation": "westernization",
1719
+ "westernise": "westernize",
1720
+ "westernised": "westernized",
1721
+ "westernises": "westernizes",
1722
+ "westernising": "westernizing",
1723
+ "womanise": "womanize",
1724
+ "womanised": "womanized",
1725
+ "womaniser": "womanizer",
1726
+ "womanisers": "womanizers",
1727
+ "womanises": "womanizes",
1728
+ "womanising": "womanizing",
1729
+ "woollen": "woolen",
1730
+ "woollens": "woolens",
1731
+ "woollies": "woolies",
1732
+ "woolly": "wooly",
1733
+ "worshipped": "worshiped",
1734
+ "worshipper": "worshiper",
1735
+ "worshipping": "worshiping",
1736
+ "yodelled": "yodeled",
1737
+ "yodelling": "yodeling",
1738
+ "yoghourt": "yogurt",
1739
+ "yoghourts": "yogurts",
1740
+ "yoghurt": "yogurt",
1741
+ "yoghurts": "yogurts"
1742
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "chunk_length": 30,
3
+ "dither": 0.0,
4
+ "feature_extractor_type": "WhisperFeatureExtractor",
5
+ "feature_size": 128,
6
+ "hop_length": 160,
7
+ "n_fft": 400,
8
+ "n_samples": 480000,
9
+ "nb_max_frames": 3000,
10
+ "padding_side": "right",
11
+ "padding_value": 0.0,
12
+ "processor_class": "WhisperProcessor",
13
+ "return_attention_mask": false,
14
+ "sampling_rate": 16000
15
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|startoftranscript|>",
4
+ "<|en|>",
5
+ "<|zh|>",
6
+ "<|de|>",
7
+ "<|es|>",
8
+ "<|ru|>",
9
+ "<|ko|>",
10
+ "<|fr|>",
11
+ "<|ja|>",
12
+ "<|pt|>",
13
+ "<|tr|>",
14
+ "<|pl|>",
15
+ "<|ca|>",
16
+ "<|nl|>",
17
+ "<|ar|>",
18
+ "<|sv|>",
19
+ "<|it|>",
20
+ "<|id|>",
21
+ "<|hi|>",
22
+ "<|fi|>",
23
+ "<|vi|>",
24
+ "<|he|>",
25
+ "<|uk|>",
26
+ "<|el|>",
27
+ "<|ms|>",
28
+ "<|cs|>",
29
+ "<|ro|>",
30
+ "<|da|>",
31
+ "<|hu|>",
32
+ "<|ta|>",
33
+ "<|no|>",
34
+ "<|th|>",
35
+ "<|ur|>",
36
+ "<|hr|>",
37
+ "<|bg|>",
38
+ "<|lt|>",
39
+ "<|la|>",
40
+ "<|mi|>",
41
+ "<|ml|>",
42
+ "<|cy|>",
43
+ "<|sk|>",
44
+ "<|te|>",
45
+ "<|fa|>",
46
+ "<|lv|>",
47
+ "<|bn|>",
48
+ "<|sr|>",
49
+ "<|az|>",
50
+ "<|sl|>",
51
+ "<|kn|>",
52
+ "<|et|>",
53
+ "<|mk|>",
54
+ "<|br|>",
55
+ "<|eu|>",
56
+ "<|is|>",
57
+ "<|hy|>",
58
+ "<|ne|>",
59
+ "<|mn|>",
60
+ "<|bs|>",
61
+ "<|kk|>",
62
+ "<|sq|>",
63
+ "<|sw|>",
64
+ "<|gl|>",
65
+ "<|mr|>",
66
+ "<|pa|>",
67
+ "<|si|>",
68
+ "<|km|>",
69
+ "<|sn|>",
70
+ "<|yo|>",
71
+ "<|so|>",
72
+ "<|af|>",
73
+ "<|oc|>",
74
+ "<|ka|>",
75
+ "<|be|>",
76
+ "<|tg|>",
77
+ "<|sd|>",
78
+ "<|gu|>",
79
+ "<|am|>",
80
+ "<|yi|>",
81
+ "<|lo|>",
82
+ "<|uz|>",
83
+ "<|fo|>",
84
+ "<|ht|>",
85
+ "<|ps|>",
86
+ "<|tk|>",
87
+ "<|nn|>",
88
+ "<|mt|>",
89
+ "<|sa|>",
90
+ "<|lb|>",
91
+ "<|my|>",
92
+ "<|bo|>",
93
+ "<|tl|>",
94
+ "<|mg|>",
95
+ "<|as|>",
96
+ "<|tt|>",
97
+ "<|haw|>",
98
+ "<|ln|>",
99
+ "<|ha|>",
100
+ "<|ba|>",
101
+ "<|jw|>",
102
+ "<|su|>",
103
+ "<|yue|>",
104
+ "<|translate|>",
105
+ "<|transcribe|>",
106
+ "<|startoflm|>",
107
+ "<|startofprev|>",
108
+ "<|nospeech|>",
109
+ "<|notimestamps|>"
110
+ ],
111
+ "bos_token": {
112
+ "content": "<|endoftext|>",
113
+ "lstrip": false,
114
+ "normalized": false,
115
+ "rstrip": false,
116
+ "single_word": false
117
+ },
118
+ "eos_token": {
119
+ "content": "<|endoftext|>",
120
+ "lstrip": false,
121
+ "normalized": false,
122
+ "rstrip": false,
123
+ "single_word": false
124
+ },
125
+ "pad_token": {
126
+ "content": "<|endoftext|>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false
131
+ },
132
+ "unk_token": {
133
+ "content": "<|endoftext|>",
134
+ "lstrip": false,
135
+ "normalized": false,
136
+ "rstrip": false,
137
+ "single_word": false
138
+ }
139
+ }
tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
vocab.json ADDED
The diff for this file is too large to render. See raw diff