Instructions to use BuzzASR/northern-sotho with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use BuzzASR/northern-sotho with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="BuzzASR/northern-sotho")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("BuzzASR/northern-sotho") model = AutoModelForSpeechSeq2Seq.from_pretrained("BuzzASR/northern-sotho", device_map="auto") - Notebooks
- Google Colab
- Kaggle
BuzzASR Northern Sotho (FFT)
Browse files- README.md +53 -0
- added_tokens.json +1611 -0
- config.json +46 -0
- generation_config.json +24 -0
- merges.txt +0 -0
- model.safetensors +3 -0
- normalizer.json +1742 -0
- preprocessor_config.json +15 -0
- special_tokens_map.json +139 -0
- tokenizer_config.json +0 -0
- vocab.json +0 -0
README.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: nso
|
| 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, northern sotho, buzzasr]
|
| 8 |
+
datasets: [google/fleurs]
|
| 9 |
+
metrics: [cer, wer]
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# BuzzASR — Northern Sotho
|
| 13 |
+
|
| 14 |
+
A monolingual automatic speech recognition model for **Northern Sotho**, 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.79 | 29.4 | 55.1 |
|
| 25 |
+
| Common Voice 25 | -100.0 | -100.0 | None |
|
| 26 |
+
| Combined | 11.79 | 29.4 | 55.1 |
|
| 27 |
+
|
| 28 |
+
~4.7x 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/northern-sotho", torch_dtype=torch.float16).to("cuda").eval()
|
| 37 |
+
proc = WhisperProcessor.from_pretrained("BuzzASR/northern-sotho")
|
| 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 (Northern Sotho 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|>": 42970,
|
| 3 |
+
"<|0.02|>": 42971,
|
| 4 |
+
"<|0.04|>": 42972,
|
| 5 |
+
"<|0.06|>": 42973,
|
| 6 |
+
"<|0.08|>": 42974,
|
| 7 |
+
"<|0.10|>": 42975,
|
| 8 |
+
"<|0.12|>": 42976,
|
| 9 |
+
"<|0.14|>": 42977,
|
| 10 |
+
"<|0.16|>": 42978,
|
| 11 |
+
"<|0.18|>": 42979,
|
| 12 |
+
"<|0.20|>": 42980,
|
| 13 |
+
"<|0.22|>": 42981,
|
| 14 |
+
"<|0.24|>": 42982,
|
| 15 |
+
"<|0.26|>": 42983,
|
| 16 |
+
"<|0.28|>": 42984,
|
| 17 |
+
"<|0.30|>": 42985,
|
| 18 |
+
"<|0.32|>": 42986,
|
| 19 |
+
"<|0.34|>": 42987,
|
| 20 |
+
"<|0.36|>": 42988,
|
| 21 |
+
"<|0.38|>": 42989,
|
| 22 |
+
"<|0.40|>": 42990,
|
| 23 |
+
"<|0.42|>": 42991,
|
| 24 |
+
"<|0.44|>": 42992,
|
| 25 |
+
"<|0.46|>": 42993,
|
| 26 |
+
"<|0.48|>": 42994,
|
| 27 |
+
"<|0.50|>": 42995,
|
| 28 |
+
"<|0.52|>": 42996,
|
| 29 |
+
"<|0.54|>": 42997,
|
| 30 |
+
"<|0.56|>": 42998,
|
| 31 |
+
"<|0.58|>": 42999,
|
| 32 |
+
"<|0.60|>": 43000,
|
| 33 |
+
"<|0.62|>": 43001,
|
| 34 |
+
"<|0.64|>": 43002,
|
| 35 |
+
"<|0.66|>": 43003,
|
| 36 |
+
"<|0.68|>": 43004,
|
| 37 |
+
"<|0.70|>": 43005,
|
| 38 |
+
"<|0.72|>": 43006,
|
| 39 |
+
"<|0.74|>": 43007,
|
| 40 |
+
"<|0.76|>": 43008,
|
| 41 |
+
"<|0.78|>": 43009,
|
| 42 |
+
"<|0.80|>": 43010,
|
| 43 |
+
"<|0.82|>": 43011,
|
| 44 |
+
"<|0.84|>": 43012,
|
| 45 |
+
"<|0.86|>": 43013,
|
| 46 |
+
"<|0.88|>": 43014,
|
| 47 |
+
"<|0.90|>": 43015,
|
| 48 |
+
"<|0.92|>": 43016,
|
| 49 |
+
"<|0.94|>": 43017,
|
| 50 |
+
"<|0.96|>": 43018,
|
| 51 |
+
"<|0.98|>": 43019,
|
| 52 |
+
"<|1.00|>": 43020,
|
| 53 |
+
"<|1.02|>": 43021,
|
| 54 |
+
"<|1.04|>": 43022,
|
| 55 |
+
"<|1.06|>": 43023,
|
| 56 |
+
"<|1.08|>": 43024,
|
| 57 |
+
"<|1.10|>": 43025,
|
| 58 |
+
"<|1.12|>": 43026,
|
| 59 |
+
"<|1.14|>": 43027,
|
| 60 |
+
"<|1.16|>": 43028,
|
| 61 |
+
"<|1.18|>": 43029,
|
| 62 |
+
"<|1.20|>": 43030,
|
| 63 |
+
"<|1.22|>": 43031,
|
| 64 |
+
"<|1.24|>": 43032,
|
| 65 |
+
"<|1.26|>": 43033,
|
| 66 |
+
"<|1.28|>": 43034,
|
| 67 |
+
"<|1.30|>": 43035,
|
| 68 |
+
"<|1.32|>": 43036,
|
| 69 |
+
"<|1.34|>": 43037,
|
| 70 |
+
"<|1.36|>": 43038,
|
| 71 |
+
"<|1.38|>": 43039,
|
| 72 |
+
"<|1.40|>": 43040,
|
| 73 |
+
"<|1.42|>": 43041,
|
| 74 |
+
"<|1.44|>": 43042,
|
| 75 |
+
"<|1.46|>": 43043,
|
| 76 |
+
"<|1.48|>": 43044,
|
| 77 |
+
"<|1.50|>": 43045,
|
| 78 |
+
"<|1.52|>": 43046,
|
| 79 |
+
"<|1.54|>": 43047,
|
| 80 |
+
"<|1.56|>": 43048,
|
| 81 |
+
"<|1.58|>": 43049,
|
| 82 |
+
"<|1.60|>": 43050,
|
| 83 |
+
"<|1.62|>": 43051,
|
| 84 |
+
"<|1.64|>": 43052,
|
| 85 |
+
"<|1.66|>": 43053,
|
| 86 |
+
"<|1.68|>": 43054,
|
| 87 |
+
"<|1.70|>": 43055,
|
| 88 |
+
"<|1.72|>": 43056,
|
| 89 |
+
"<|1.74|>": 43057,
|
| 90 |
+
"<|1.76|>": 43058,
|
| 91 |
+
"<|1.78|>": 43059,
|
| 92 |
+
"<|1.80|>": 43060,
|
| 93 |
+
"<|1.82|>": 43061,
|
| 94 |
+
"<|1.84|>": 43062,
|
| 95 |
+
"<|1.86|>": 43063,
|
| 96 |
+
"<|1.88|>": 43064,
|
| 97 |
+
"<|1.90|>": 43065,
|
| 98 |
+
"<|1.92|>": 43066,
|
| 99 |
+
"<|1.94|>": 43067,
|
| 100 |
+
"<|1.96|>": 43068,
|
| 101 |
+
"<|1.98|>": 43069,
|
| 102 |
+
"<|10.00|>": 43470,
|
| 103 |
+
"<|10.02|>": 43471,
|
| 104 |
+
"<|10.04|>": 43472,
|
| 105 |
+
"<|10.06|>": 43473,
|
| 106 |
+
"<|10.08|>": 43474,
|
| 107 |
+
"<|10.10|>": 43475,
|
| 108 |
+
"<|10.12|>": 43476,
|
| 109 |
+
"<|10.14|>": 43477,
|
| 110 |
+
"<|10.16|>": 43478,
|
| 111 |
+
"<|10.18|>": 43479,
|
| 112 |
+
"<|10.20|>": 43480,
|
| 113 |
+
"<|10.22|>": 43481,
|
| 114 |
+
"<|10.24|>": 43482,
|
| 115 |
+
"<|10.26|>": 43483,
|
| 116 |
+
"<|10.28|>": 43484,
|
| 117 |
+
"<|10.30|>": 43485,
|
| 118 |
+
"<|10.32|>": 43486,
|
| 119 |
+
"<|10.34|>": 43487,
|
| 120 |
+
"<|10.36|>": 43488,
|
| 121 |
+
"<|10.38|>": 43489,
|
| 122 |
+
"<|10.40|>": 43490,
|
| 123 |
+
"<|10.42|>": 43491,
|
| 124 |
+
"<|10.44|>": 43492,
|
| 125 |
+
"<|10.46|>": 43493,
|
| 126 |
+
"<|10.48|>": 43494,
|
| 127 |
+
"<|10.50|>": 43495,
|
| 128 |
+
"<|10.52|>": 43496,
|
| 129 |
+
"<|10.54|>": 43497,
|
| 130 |
+
"<|10.56|>": 43498,
|
| 131 |
+
"<|10.58|>": 43499,
|
| 132 |
+
"<|10.60|>": 43500,
|
| 133 |
+
"<|10.62|>": 43501,
|
| 134 |
+
"<|10.64|>": 43502,
|
| 135 |
+
"<|10.66|>": 43503,
|
| 136 |
+
"<|10.68|>": 43504,
|
| 137 |
+
"<|10.70|>": 43505,
|
| 138 |
+
"<|10.72|>": 43506,
|
| 139 |
+
"<|10.74|>": 43507,
|
| 140 |
+
"<|10.76|>": 43508,
|
| 141 |
+
"<|10.78|>": 43509,
|
| 142 |
+
"<|10.80|>": 43510,
|
| 143 |
+
"<|10.82|>": 43511,
|
| 144 |
+
"<|10.84|>": 43512,
|
| 145 |
+
"<|10.86|>": 43513,
|
| 146 |
+
"<|10.88|>": 43514,
|
| 147 |
+
"<|10.90|>": 43515,
|
| 148 |
+
"<|10.92|>": 43516,
|
| 149 |
+
"<|10.94|>": 43517,
|
| 150 |
+
"<|10.96|>": 43518,
|
| 151 |
+
"<|10.98|>": 43519,
|
| 152 |
+
"<|11.00|>": 43520,
|
| 153 |
+
"<|11.02|>": 43521,
|
| 154 |
+
"<|11.04|>": 43522,
|
| 155 |
+
"<|11.06|>": 43523,
|
| 156 |
+
"<|11.08|>": 43524,
|
| 157 |
+
"<|11.10|>": 43525,
|
| 158 |
+
"<|11.12|>": 43526,
|
| 159 |
+
"<|11.14|>": 43527,
|
| 160 |
+
"<|11.16|>": 43528,
|
| 161 |
+
"<|11.18|>": 43529,
|
| 162 |
+
"<|11.20|>": 43530,
|
| 163 |
+
"<|11.22|>": 43531,
|
| 164 |
+
"<|11.24|>": 43532,
|
| 165 |
+
"<|11.26|>": 43533,
|
| 166 |
+
"<|11.28|>": 43534,
|
| 167 |
+
"<|11.30|>": 43535,
|
| 168 |
+
"<|11.32|>": 43536,
|
| 169 |
+
"<|11.34|>": 43537,
|
| 170 |
+
"<|11.36|>": 43538,
|
| 171 |
+
"<|11.38|>": 43539,
|
| 172 |
+
"<|11.40|>": 43540,
|
| 173 |
+
"<|11.42|>": 43541,
|
| 174 |
+
"<|11.44|>": 43542,
|
| 175 |
+
"<|11.46|>": 43543,
|
| 176 |
+
"<|11.48|>": 43544,
|
| 177 |
+
"<|11.50|>": 43545,
|
| 178 |
+
"<|11.52|>": 43546,
|
| 179 |
+
"<|11.54|>": 43547,
|
| 180 |
+
"<|11.56|>": 43548,
|
| 181 |
+
"<|11.58|>": 43549,
|
| 182 |
+
"<|11.60|>": 43550,
|
| 183 |
+
"<|11.62|>": 43551,
|
| 184 |
+
"<|11.64|>": 43552,
|
| 185 |
+
"<|11.66|>": 43553,
|
| 186 |
+
"<|11.68|>": 43554,
|
| 187 |
+
"<|11.70|>": 43555,
|
| 188 |
+
"<|11.72|>": 43556,
|
| 189 |
+
"<|11.74|>": 43557,
|
| 190 |
+
"<|11.76|>": 43558,
|
| 191 |
+
"<|11.78|>": 43559,
|
| 192 |
+
"<|11.80|>": 43560,
|
| 193 |
+
"<|11.82|>": 43561,
|
| 194 |
+
"<|11.84|>": 43562,
|
| 195 |
+
"<|11.86|>": 43563,
|
| 196 |
+
"<|11.88|>": 43564,
|
| 197 |
+
"<|11.90|>": 43565,
|
| 198 |
+
"<|11.92|>": 43566,
|
| 199 |
+
"<|11.94|>": 43567,
|
| 200 |
+
"<|11.96|>": 43568,
|
| 201 |
+
"<|11.98|>": 43569,
|
| 202 |
+
"<|12.00|>": 43570,
|
| 203 |
+
"<|12.02|>": 43571,
|
| 204 |
+
"<|12.04|>": 43572,
|
| 205 |
+
"<|12.06|>": 43573,
|
| 206 |
+
"<|12.08|>": 43574,
|
| 207 |
+
"<|12.10|>": 43575,
|
| 208 |
+
"<|12.12|>": 43576,
|
| 209 |
+
"<|12.14|>": 43577,
|
| 210 |
+
"<|12.16|>": 43578,
|
| 211 |
+
"<|12.18|>": 43579,
|
| 212 |
+
"<|12.20|>": 43580,
|
| 213 |
+
"<|12.22|>": 43581,
|
| 214 |
+
"<|12.24|>": 43582,
|
| 215 |
+
"<|12.26|>": 43583,
|
| 216 |
+
"<|12.28|>": 43584,
|
| 217 |
+
"<|12.30|>": 43585,
|
| 218 |
+
"<|12.32|>": 43586,
|
| 219 |
+
"<|12.34|>": 43587,
|
| 220 |
+
"<|12.36|>": 43588,
|
| 221 |
+
"<|12.38|>": 43589,
|
| 222 |
+
"<|12.40|>": 43590,
|
| 223 |
+
"<|12.42|>": 43591,
|
| 224 |
+
"<|12.44|>": 43592,
|
| 225 |
+
"<|12.46|>": 43593,
|
| 226 |
+
"<|12.48|>": 43594,
|
| 227 |
+
"<|12.50|>": 43595,
|
| 228 |
+
"<|12.52|>": 43596,
|
| 229 |
+
"<|12.54|>": 43597,
|
| 230 |
+
"<|12.56|>": 43598,
|
| 231 |
+
"<|12.58|>": 43599,
|
| 232 |
+
"<|12.60|>": 43600,
|
| 233 |
+
"<|12.62|>": 43601,
|
| 234 |
+
"<|12.64|>": 43602,
|
| 235 |
+
"<|12.66|>": 43603,
|
| 236 |
+
"<|12.68|>": 43604,
|
| 237 |
+
"<|12.70|>": 43605,
|
| 238 |
+
"<|12.72|>": 43606,
|
| 239 |
+
"<|12.74|>": 43607,
|
| 240 |
+
"<|12.76|>": 43608,
|
| 241 |
+
"<|12.78|>": 43609,
|
| 242 |
+
"<|12.80|>": 43610,
|
| 243 |
+
"<|12.82|>": 43611,
|
| 244 |
+
"<|12.84|>": 43612,
|
| 245 |
+
"<|12.86|>": 43613,
|
| 246 |
+
"<|12.88|>": 43614,
|
| 247 |
+
"<|12.90|>": 43615,
|
| 248 |
+
"<|12.92|>": 43616,
|
| 249 |
+
"<|12.94|>": 43617,
|
| 250 |
+
"<|12.96|>": 43618,
|
| 251 |
+
"<|12.98|>": 43619,
|
| 252 |
+
"<|13.00|>": 43620,
|
| 253 |
+
"<|13.02|>": 43621,
|
| 254 |
+
"<|13.04|>": 43622,
|
| 255 |
+
"<|13.06|>": 43623,
|
| 256 |
+
"<|13.08|>": 43624,
|
| 257 |
+
"<|13.10|>": 43625,
|
| 258 |
+
"<|13.12|>": 43626,
|
| 259 |
+
"<|13.14|>": 43627,
|
| 260 |
+
"<|13.16|>": 43628,
|
| 261 |
+
"<|13.18|>": 43629,
|
| 262 |
+
"<|13.20|>": 43630,
|
| 263 |
+
"<|13.22|>": 43631,
|
| 264 |
+
"<|13.24|>": 43632,
|
| 265 |
+
"<|13.26|>": 43633,
|
| 266 |
+
"<|13.28|>": 43634,
|
| 267 |
+
"<|13.30|>": 43635,
|
| 268 |
+
"<|13.32|>": 43636,
|
| 269 |
+
"<|13.34|>": 43637,
|
| 270 |
+
"<|13.36|>": 43638,
|
| 271 |
+
"<|13.38|>": 43639,
|
| 272 |
+
"<|13.40|>": 43640,
|
| 273 |
+
"<|13.42|>": 43641,
|
| 274 |
+
"<|13.44|>": 43642,
|
| 275 |
+
"<|13.46|>": 43643,
|
| 276 |
+
"<|13.48|>": 43644,
|
| 277 |
+
"<|13.50|>": 43645,
|
| 278 |
+
"<|13.52|>": 43646,
|
| 279 |
+
"<|13.54|>": 43647,
|
| 280 |
+
"<|13.56|>": 43648,
|
| 281 |
+
"<|13.58|>": 43649,
|
| 282 |
+
"<|13.60|>": 43650,
|
| 283 |
+
"<|13.62|>": 43651,
|
| 284 |
+
"<|13.64|>": 43652,
|
| 285 |
+
"<|13.66|>": 43653,
|
| 286 |
+
"<|13.68|>": 43654,
|
| 287 |
+
"<|13.70|>": 43655,
|
| 288 |
+
"<|13.72|>": 43656,
|
| 289 |
+
"<|13.74|>": 43657,
|
| 290 |
+
"<|13.76|>": 43658,
|
| 291 |
+
"<|13.78|>": 43659,
|
| 292 |
+
"<|13.80|>": 43660,
|
| 293 |
+
"<|13.82|>": 43661,
|
| 294 |
+
"<|13.84|>": 43662,
|
| 295 |
+
"<|13.86|>": 43663,
|
| 296 |
+
"<|13.88|>": 43664,
|
| 297 |
+
"<|13.90|>": 43665,
|
| 298 |
+
"<|13.92|>": 43666,
|
| 299 |
+
"<|13.94|>": 43667,
|
| 300 |
+
"<|13.96|>": 43668,
|
| 301 |
+
"<|13.98|>": 43669,
|
| 302 |
+
"<|14.00|>": 43670,
|
| 303 |
+
"<|14.02|>": 43671,
|
| 304 |
+
"<|14.04|>": 43672,
|
| 305 |
+
"<|14.06|>": 43673,
|
| 306 |
+
"<|14.08|>": 43674,
|
| 307 |
+
"<|14.10|>": 43675,
|
| 308 |
+
"<|14.12|>": 43676,
|
| 309 |
+
"<|14.14|>": 43677,
|
| 310 |
+
"<|14.16|>": 43678,
|
| 311 |
+
"<|14.18|>": 43679,
|
| 312 |
+
"<|14.20|>": 43680,
|
| 313 |
+
"<|14.22|>": 43681,
|
| 314 |
+
"<|14.24|>": 43682,
|
| 315 |
+
"<|14.26|>": 43683,
|
| 316 |
+
"<|14.28|>": 43684,
|
| 317 |
+
"<|14.30|>": 43685,
|
| 318 |
+
"<|14.32|>": 43686,
|
| 319 |
+
"<|14.34|>": 43687,
|
| 320 |
+
"<|14.36|>": 43688,
|
| 321 |
+
"<|14.38|>": 43689,
|
| 322 |
+
"<|14.40|>": 43690,
|
| 323 |
+
"<|14.42|>": 43691,
|
| 324 |
+
"<|14.44|>": 43692,
|
| 325 |
+
"<|14.46|>": 43693,
|
| 326 |
+
"<|14.48|>": 43694,
|
| 327 |
+
"<|14.50|>": 43695,
|
| 328 |
+
"<|14.52|>": 43696,
|
| 329 |
+
"<|14.54|>": 43697,
|
| 330 |
+
"<|14.56|>": 43698,
|
| 331 |
+
"<|14.58|>": 43699,
|
| 332 |
+
"<|14.60|>": 43700,
|
| 333 |
+
"<|14.62|>": 43701,
|
| 334 |
+
"<|14.64|>": 43702,
|
| 335 |
+
"<|14.66|>": 43703,
|
| 336 |
+
"<|14.68|>": 43704,
|
| 337 |
+
"<|14.70|>": 43705,
|
| 338 |
+
"<|14.72|>": 43706,
|
| 339 |
+
"<|14.74|>": 43707,
|
| 340 |
+
"<|14.76|>": 43708,
|
| 341 |
+
"<|14.78|>": 43709,
|
| 342 |
+
"<|14.80|>": 43710,
|
| 343 |
+
"<|14.82|>": 43711,
|
| 344 |
+
"<|14.84|>": 43712,
|
| 345 |
+
"<|14.86|>": 43713,
|
| 346 |
+
"<|14.88|>": 43714,
|
| 347 |
+
"<|14.90|>": 43715,
|
| 348 |
+
"<|14.92|>": 43716,
|
| 349 |
+
"<|14.94|>": 43717,
|
| 350 |
+
"<|14.96|>": 43718,
|
| 351 |
+
"<|14.98|>": 43719,
|
| 352 |
+
"<|15.00|>": 43720,
|
| 353 |
+
"<|15.02|>": 43721,
|
| 354 |
+
"<|15.04|>": 43722,
|
| 355 |
+
"<|15.06|>": 43723,
|
| 356 |
+
"<|15.08|>": 43724,
|
| 357 |
+
"<|15.10|>": 43725,
|
| 358 |
+
"<|15.12|>": 43726,
|
| 359 |
+
"<|15.14|>": 43727,
|
| 360 |
+
"<|15.16|>": 43728,
|
| 361 |
+
"<|15.18|>": 43729,
|
| 362 |
+
"<|15.20|>": 43730,
|
| 363 |
+
"<|15.22|>": 43731,
|
| 364 |
+
"<|15.24|>": 43732,
|
| 365 |
+
"<|15.26|>": 43733,
|
| 366 |
+
"<|15.28|>": 43734,
|
| 367 |
+
"<|15.30|>": 43735,
|
| 368 |
+
"<|15.32|>": 43736,
|
| 369 |
+
"<|15.34|>": 43737,
|
| 370 |
+
"<|15.36|>": 43738,
|
| 371 |
+
"<|15.38|>": 43739,
|
| 372 |
+
"<|15.40|>": 43740,
|
| 373 |
+
"<|15.42|>": 43741,
|
| 374 |
+
"<|15.44|>": 43742,
|
| 375 |
+
"<|15.46|>": 43743,
|
| 376 |
+
"<|15.48|>": 43744,
|
| 377 |
+
"<|15.50|>": 43745,
|
| 378 |
+
"<|15.52|>": 43746,
|
| 379 |
+
"<|15.54|>": 43747,
|
| 380 |
+
"<|15.56|>": 43748,
|
| 381 |
+
"<|15.58|>": 43749,
|
| 382 |
+
"<|15.60|>": 43750,
|
| 383 |
+
"<|15.62|>": 43751,
|
| 384 |
+
"<|15.64|>": 43752,
|
| 385 |
+
"<|15.66|>": 43753,
|
| 386 |
+
"<|15.68|>": 43754,
|
| 387 |
+
"<|15.70|>": 43755,
|
| 388 |
+
"<|15.72|>": 43756,
|
| 389 |
+
"<|15.74|>": 43757,
|
| 390 |
+
"<|15.76|>": 43758,
|
| 391 |
+
"<|15.78|>": 43759,
|
| 392 |
+
"<|15.80|>": 43760,
|
| 393 |
+
"<|15.82|>": 43761,
|
| 394 |
+
"<|15.84|>": 43762,
|
| 395 |
+
"<|15.86|>": 43763,
|
| 396 |
+
"<|15.88|>": 43764,
|
| 397 |
+
"<|15.90|>": 43765,
|
| 398 |
+
"<|15.92|>": 43766,
|
| 399 |
+
"<|15.94|>": 43767,
|
| 400 |
+
"<|15.96|>": 43768,
|
| 401 |
+
"<|15.98|>": 43769,
|
| 402 |
+
"<|16.00|>": 43770,
|
| 403 |
+
"<|16.02|>": 43771,
|
| 404 |
+
"<|16.04|>": 43772,
|
| 405 |
+
"<|16.06|>": 43773,
|
| 406 |
+
"<|16.08|>": 43774,
|
| 407 |
+
"<|16.10|>": 43775,
|
| 408 |
+
"<|16.12|>": 43776,
|
| 409 |
+
"<|16.14|>": 43777,
|
| 410 |
+
"<|16.16|>": 43778,
|
| 411 |
+
"<|16.18|>": 43779,
|
| 412 |
+
"<|16.20|>": 43780,
|
| 413 |
+
"<|16.22|>": 43781,
|
| 414 |
+
"<|16.24|>": 43782,
|
| 415 |
+
"<|16.26|>": 43783,
|
| 416 |
+
"<|16.28|>": 43784,
|
| 417 |
+
"<|16.30|>": 43785,
|
| 418 |
+
"<|16.32|>": 43786,
|
| 419 |
+
"<|16.34|>": 43787,
|
| 420 |
+
"<|16.36|>": 43788,
|
| 421 |
+
"<|16.38|>": 43789,
|
| 422 |
+
"<|16.40|>": 43790,
|
| 423 |
+
"<|16.42|>": 43791,
|
| 424 |
+
"<|16.44|>": 43792,
|
| 425 |
+
"<|16.46|>": 43793,
|
| 426 |
+
"<|16.48|>": 43794,
|
| 427 |
+
"<|16.50|>": 43795,
|
| 428 |
+
"<|16.52|>": 43796,
|
| 429 |
+
"<|16.54|>": 43797,
|
| 430 |
+
"<|16.56|>": 43798,
|
| 431 |
+
"<|16.58|>": 43799,
|
| 432 |
+
"<|16.60|>": 43800,
|
| 433 |
+
"<|16.62|>": 43801,
|
| 434 |
+
"<|16.64|>": 43802,
|
| 435 |
+
"<|16.66|>": 43803,
|
| 436 |
+
"<|16.68|>": 43804,
|
| 437 |
+
"<|16.70|>": 43805,
|
| 438 |
+
"<|16.72|>": 43806,
|
| 439 |
+
"<|16.74|>": 43807,
|
| 440 |
+
"<|16.76|>": 43808,
|
| 441 |
+
"<|16.78|>": 43809,
|
| 442 |
+
"<|16.80|>": 43810,
|
| 443 |
+
"<|16.82|>": 43811,
|
| 444 |
+
"<|16.84|>": 43812,
|
| 445 |
+
"<|16.86|>": 43813,
|
| 446 |
+
"<|16.88|>": 43814,
|
| 447 |
+
"<|16.90|>": 43815,
|
| 448 |
+
"<|16.92|>": 43816,
|
| 449 |
+
"<|16.94|>": 43817,
|
| 450 |
+
"<|16.96|>": 43818,
|
| 451 |
+
"<|16.98|>": 43819,
|
| 452 |
+
"<|17.00|>": 43820,
|
| 453 |
+
"<|17.02|>": 43821,
|
| 454 |
+
"<|17.04|>": 43822,
|
| 455 |
+
"<|17.06|>": 43823,
|
| 456 |
+
"<|17.08|>": 43824,
|
| 457 |
+
"<|17.10|>": 43825,
|
| 458 |
+
"<|17.12|>": 43826,
|
| 459 |
+
"<|17.14|>": 43827,
|
| 460 |
+
"<|17.16|>": 43828,
|
| 461 |
+
"<|17.18|>": 43829,
|
| 462 |
+
"<|17.20|>": 43830,
|
| 463 |
+
"<|17.22|>": 43831,
|
| 464 |
+
"<|17.24|>": 43832,
|
| 465 |
+
"<|17.26|>": 43833,
|
| 466 |
+
"<|17.28|>": 43834,
|
| 467 |
+
"<|17.30|>": 43835,
|
| 468 |
+
"<|17.32|>": 43836,
|
| 469 |
+
"<|17.34|>": 43837,
|
| 470 |
+
"<|17.36|>": 43838,
|
| 471 |
+
"<|17.38|>": 43839,
|
| 472 |
+
"<|17.40|>": 43840,
|
| 473 |
+
"<|17.42|>": 43841,
|
| 474 |
+
"<|17.44|>": 43842,
|
| 475 |
+
"<|17.46|>": 43843,
|
| 476 |
+
"<|17.48|>": 43844,
|
| 477 |
+
"<|17.50|>": 43845,
|
| 478 |
+
"<|17.52|>": 43846,
|
| 479 |
+
"<|17.54|>": 43847,
|
| 480 |
+
"<|17.56|>": 43848,
|
| 481 |
+
"<|17.58|>": 43849,
|
| 482 |
+
"<|17.60|>": 43850,
|
| 483 |
+
"<|17.62|>": 43851,
|
| 484 |
+
"<|17.64|>": 43852,
|
| 485 |
+
"<|17.66|>": 43853,
|
| 486 |
+
"<|17.68|>": 43854,
|
| 487 |
+
"<|17.70|>": 43855,
|
| 488 |
+
"<|17.72|>": 43856,
|
| 489 |
+
"<|17.74|>": 43857,
|
| 490 |
+
"<|17.76|>": 43858,
|
| 491 |
+
"<|17.78|>": 43859,
|
| 492 |
+
"<|17.80|>": 43860,
|
| 493 |
+
"<|17.82|>": 43861,
|
| 494 |
+
"<|17.84|>": 43862,
|
| 495 |
+
"<|17.86|>": 43863,
|
| 496 |
+
"<|17.88|>": 43864,
|
| 497 |
+
"<|17.90|>": 43865,
|
| 498 |
+
"<|17.92|>": 43866,
|
| 499 |
+
"<|17.94|>": 43867,
|
| 500 |
+
"<|17.96|>": 43868,
|
| 501 |
+
"<|17.98|>": 43869,
|
| 502 |
+
"<|18.00|>": 43870,
|
| 503 |
+
"<|18.02|>": 43871,
|
| 504 |
+
"<|18.04|>": 43872,
|
| 505 |
+
"<|18.06|>": 43873,
|
| 506 |
+
"<|18.08|>": 43874,
|
| 507 |
+
"<|18.10|>": 43875,
|
| 508 |
+
"<|18.12|>": 43876,
|
| 509 |
+
"<|18.14|>": 43877,
|
| 510 |
+
"<|18.16|>": 43878,
|
| 511 |
+
"<|18.18|>": 43879,
|
| 512 |
+
"<|18.20|>": 43880,
|
| 513 |
+
"<|18.22|>": 43881,
|
| 514 |
+
"<|18.24|>": 43882,
|
| 515 |
+
"<|18.26|>": 43883,
|
| 516 |
+
"<|18.28|>": 43884,
|
| 517 |
+
"<|18.30|>": 43885,
|
| 518 |
+
"<|18.32|>": 43886,
|
| 519 |
+
"<|18.34|>": 43887,
|
| 520 |
+
"<|18.36|>": 43888,
|
| 521 |
+
"<|18.38|>": 43889,
|
| 522 |
+
"<|18.40|>": 43890,
|
| 523 |
+
"<|18.42|>": 43891,
|
| 524 |
+
"<|18.44|>": 43892,
|
| 525 |
+
"<|18.46|>": 43893,
|
| 526 |
+
"<|18.48|>": 43894,
|
| 527 |
+
"<|18.50|>": 43895,
|
| 528 |
+
"<|18.52|>": 43896,
|
| 529 |
+
"<|18.54|>": 43897,
|
| 530 |
+
"<|18.56|>": 43898,
|
| 531 |
+
"<|18.58|>": 43899,
|
| 532 |
+
"<|18.60|>": 43900,
|
| 533 |
+
"<|18.62|>": 43901,
|
| 534 |
+
"<|18.64|>": 43902,
|
| 535 |
+
"<|18.66|>": 43903,
|
| 536 |
+
"<|18.68|>": 43904,
|
| 537 |
+
"<|18.70|>": 43905,
|
| 538 |
+
"<|18.72|>": 43906,
|
| 539 |
+
"<|18.74|>": 43907,
|
| 540 |
+
"<|18.76|>": 43908,
|
| 541 |
+
"<|18.78|>": 43909,
|
| 542 |
+
"<|18.80|>": 43910,
|
| 543 |
+
"<|18.82|>": 43911,
|
| 544 |
+
"<|18.84|>": 43912,
|
| 545 |
+
"<|18.86|>": 43913,
|
| 546 |
+
"<|18.88|>": 43914,
|
| 547 |
+
"<|18.90|>": 43915,
|
| 548 |
+
"<|18.92|>": 43916,
|
| 549 |
+
"<|18.94|>": 43917,
|
| 550 |
+
"<|18.96|>": 43918,
|
| 551 |
+
"<|18.98|>": 43919,
|
| 552 |
+
"<|19.00|>": 43920,
|
| 553 |
+
"<|19.02|>": 43921,
|
| 554 |
+
"<|19.04|>": 43922,
|
| 555 |
+
"<|19.06|>": 43923,
|
| 556 |
+
"<|19.08|>": 43924,
|
| 557 |
+
"<|19.10|>": 43925,
|
| 558 |
+
"<|19.12|>": 43926,
|
| 559 |
+
"<|19.14|>": 43927,
|
| 560 |
+
"<|19.16|>": 43928,
|
| 561 |
+
"<|19.18|>": 43929,
|
| 562 |
+
"<|19.20|>": 43930,
|
| 563 |
+
"<|19.22|>": 43931,
|
| 564 |
+
"<|19.24|>": 43932,
|
| 565 |
+
"<|19.26|>": 43933,
|
| 566 |
+
"<|19.28|>": 43934,
|
| 567 |
+
"<|19.30|>": 43935,
|
| 568 |
+
"<|19.32|>": 43936,
|
| 569 |
+
"<|19.34|>": 43937,
|
| 570 |
+
"<|19.36|>": 43938,
|
| 571 |
+
"<|19.38|>": 43939,
|
| 572 |
+
"<|19.40|>": 43940,
|
| 573 |
+
"<|19.42|>": 43941,
|
| 574 |
+
"<|19.44|>": 43942,
|
| 575 |
+
"<|19.46|>": 43943,
|
| 576 |
+
"<|19.48|>": 43944,
|
| 577 |
+
"<|19.50|>": 43945,
|
| 578 |
+
"<|19.52|>": 43946,
|
| 579 |
+
"<|19.54|>": 43947,
|
| 580 |
+
"<|19.56|>": 43948,
|
| 581 |
+
"<|19.58|>": 43949,
|
| 582 |
+
"<|19.60|>": 43950,
|
| 583 |
+
"<|19.62|>": 43951,
|
| 584 |
+
"<|19.64|>": 43952,
|
| 585 |
+
"<|19.66|>": 43953,
|
| 586 |
+
"<|19.68|>": 43954,
|
| 587 |
+
"<|19.70|>": 43955,
|
| 588 |
+
"<|19.72|>": 43956,
|
| 589 |
+
"<|19.74|>": 43957,
|
| 590 |
+
"<|19.76|>": 43958,
|
| 591 |
+
"<|19.78|>": 43959,
|
| 592 |
+
"<|19.80|>": 43960,
|
| 593 |
+
"<|19.82|>": 43961,
|
| 594 |
+
"<|19.84|>": 43962,
|
| 595 |
+
"<|19.86|>": 43963,
|
| 596 |
+
"<|19.88|>": 43964,
|
| 597 |
+
"<|19.90|>": 43965,
|
| 598 |
+
"<|19.92|>": 43966,
|
| 599 |
+
"<|19.94|>": 43967,
|
| 600 |
+
"<|19.96|>": 43968,
|
| 601 |
+
"<|19.98|>": 43969,
|
| 602 |
+
"<|2.00|>": 43070,
|
| 603 |
+
"<|2.02|>": 43071,
|
| 604 |
+
"<|2.04|>": 43072,
|
| 605 |
+
"<|2.06|>": 43073,
|
| 606 |
+
"<|2.08|>": 43074,
|
| 607 |
+
"<|2.10|>": 43075,
|
| 608 |
+
"<|2.12|>": 43076,
|
| 609 |
+
"<|2.14|>": 43077,
|
| 610 |
+
"<|2.16|>": 43078,
|
| 611 |
+
"<|2.18|>": 43079,
|
| 612 |
+
"<|2.20|>": 43080,
|
| 613 |
+
"<|2.22|>": 43081,
|
| 614 |
+
"<|2.24|>": 43082,
|
| 615 |
+
"<|2.26|>": 43083,
|
| 616 |
+
"<|2.28|>": 43084,
|
| 617 |
+
"<|2.30|>": 43085,
|
| 618 |
+
"<|2.32|>": 43086,
|
| 619 |
+
"<|2.34|>": 43087,
|
| 620 |
+
"<|2.36|>": 43088,
|
| 621 |
+
"<|2.38|>": 43089,
|
| 622 |
+
"<|2.40|>": 43090,
|
| 623 |
+
"<|2.42|>": 43091,
|
| 624 |
+
"<|2.44|>": 43092,
|
| 625 |
+
"<|2.46|>": 43093,
|
| 626 |
+
"<|2.48|>": 43094,
|
| 627 |
+
"<|2.50|>": 43095,
|
| 628 |
+
"<|2.52|>": 43096,
|
| 629 |
+
"<|2.54|>": 43097,
|
| 630 |
+
"<|2.56|>": 43098,
|
| 631 |
+
"<|2.58|>": 43099,
|
| 632 |
+
"<|2.60|>": 43100,
|
| 633 |
+
"<|2.62|>": 43101,
|
| 634 |
+
"<|2.64|>": 43102,
|
| 635 |
+
"<|2.66|>": 43103,
|
| 636 |
+
"<|2.68|>": 43104,
|
| 637 |
+
"<|2.70|>": 43105,
|
| 638 |
+
"<|2.72|>": 43106,
|
| 639 |
+
"<|2.74|>": 43107,
|
| 640 |
+
"<|2.76|>": 43108,
|
| 641 |
+
"<|2.78|>": 43109,
|
| 642 |
+
"<|2.80|>": 43110,
|
| 643 |
+
"<|2.82|>": 43111,
|
| 644 |
+
"<|2.84|>": 43112,
|
| 645 |
+
"<|2.86|>": 43113,
|
| 646 |
+
"<|2.88|>": 43114,
|
| 647 |
+
"<|2.90|>": 43115,
|
| 648 |
+
"<|2.92|>": 43116,
|
| 649 |
+
"<|2.94|>": 43117,
|
| 650 |
+
"<|2.96|>": 43118,
|
| 651 |
+
"<|2.98|>": 43119,
|
| 652 |
+
"<|20.00|>": 43970,
|
| 653 |
+
"<|20.02|>": 43971,
|
| 654 |
+
"<|20.04|>": 43972,
|
| 655 |
+
"<|20.06|>": 43973,
|
| 656 |
+
"<|20.08|>": 43974,
|
| 657 |
+
"<|20.10|>": 43975,
|
| 658 |
+
"<|20.12|>": 43976,
|
| 659 |
+
"<|20.14|>": 43977,
|
| 660 |
+
"<|20.16|>": 43978,
|
| 661 |
+
"<|20.18|>": 43979,
|
| 662 |
+
"<|20.20|>": 43980,
|
| 663 |
+
"<|20.22|>": 43981,
|
| 664 |
+
"<|20.24|>": 43982,
|
| 665 |
+
"<|20.26|>": 43983,
|
| 666 |
+
"<|20.28|>": 43984,
|
| 667 |
+
"<|20.30|>": 43985,
|
| 668 |
+
"<|20.32|>": 43986,
|
| 669 |
+
"<|20.34|>": 43987,
|
| 670 |
+
"<|20.36|>": 43988,
|
| 671 |
+
"<|20.38|>": 43989,
|
| 672 |
+
"<|20.40|>": 43990,
|
| 673 |
+
"<|20.42|>": 43991,
|
| 674 |
+
"<|20.44|>": 43992,
|
| 675 |
+
"<|20.46|>": 43993,
|
| 676 |
+
"<|20.48|>": 43994,
|
| 677 |
+
"<|20.50|>": 43995,
|
| 678 |
+
"<|20.52|>": 43996,
|
| 679 |
+
"<|20.54|>": 43997,
|
| 680 |
+
"<|20.56|>": 43998,
|
| 681 |
+
"<|20.58|>": 43999,
|
| 682 |
+
"<|20.60|>": 44000,
|
| 683 |
+
"<|20.62|>": 44001,
|
| 684 |
+
"<|20.64|>": 44002,
|
| 685 |
+
"<|20.66|>": 44003,
|
| 686 |
+
"<|20.68|>": 44004,
|
| 687 |
+
"<|20.70|>": 44005,
|
| 688 |
+
"<|20.72|>": 44006,
|
| 689 |
+
"<|20.74|>": 44007,
|
| 690 |
+
"<|20.76|>": 44008,
|
| 691 |
+
"<|20.78|>": 44009,
|
| 692 |
+
"<|20.80|>": 44010,
|
| 693 |
+
"<|20.82|>": 44011,
|
| 694 |
+
"<|20.84|>": 44012,
|
| 695 |
+
"<|20.86|>": 44013,
|
| 696 |
+
"<|20.88|>": 44014,
|
| 697 |
+
"<|20.90|>": 44015,
|
| 698 |
+
"<|20.92|>": 44016,
|
| 699 |
+
"<|20.94|>": 44017,
|
| 700 |
+
"<|20.96|>": 44018,
|
| 701 |
+
"<|20.98|>": 44019,
|
| 702 |
+
"<|21.00|>": 44020,
|
| 703 |
+
"<|21.02|>": 44021,
|
| 704 |
+
"<|21.04|>": 44022,
|
| 705 |
+
"<|21.06|>": 44023,
|
| 706 |
+
"<|21.08|>": 44024,
|
| 707 |
+
"<|21.10|>": 44025,
|
| 708 |
+
"<|21.12|>": 44026,
|
| 709 |
+
"<|21.14|>": 44027,
|
| 710 |
+
"<|21.16|>": 44028,
|
| 711 |
+
"<|21.18|>": 44029,
|
| 712 |
+
"<|21.20|>": 44030,
|
| 713 |
+
"<|21.22|>": 44031,
|
| 714 |
+
"<|21.24|>": 44032,
|
| 715 |
+
"<|21.26|>": 44033,
|
| 716 |
+
"<|21.28|>": 44034,
|
| 717 |
+
"<|21.30|>": 44035,
|
| 718 |
+
"<|21.32|>": 44036,
|
| 719 |
+
"<|21.34|>": 44037,
|
| 720 |
+
"<|21.36|>": 44038,
|
| 721 |
+
"<|21.38|>": 44039,
|
| 722 |
+
"<|21.40|>": 44040,
|
| 723 |
+
"<|21.42|>": 44041,
|
| 724 |
+
"<|21.44|>": 44042,
|
| 725 |
+
"<|21.46|>": 44043,
|
| 726 |
+
"<|21.48|>": 44044,
|
| 727 |
+
"<|21.50|>": 44045,
|
| 728 |
+
"<|21.52|>": 44046,
|
| 729 |
+
"<|21.54|>": 44047,
|
| 730 |
+
"<|21.56|>": 44048,
|
| 731 |
+
"<|21.58|>": 44049,
|
| 732 |
+
"<|21.60|>": 44050,
|
| 733 |
+
"<|21.62|>": 44051,
|
| 734 |
+
"<|21.64|>": 44052,
|
| 735 |
+
"<|21.66|>": 44053,
|
| 736 |
+
"<|21.68|>": 44054,
|
| 737 |
+
"<|21.70|>": 44055,
|
| 738 |
+
"<|21.72|>": 44056,
|
| 739 |
+
"<|21.74|>": 44057,
|
| 740 |
+
"<|21.76|>": 44058,
|
| 741 |
+
"<|21.78|>": 44059,
|
| 742 |
+
"<|21.80|>": 44060,
|
| 743 |
+
"<|21.82|>": 44061,
|
| 744 |
+
"<|21.84|>": 44062,
|
| 745 |
+
"<|21.86|>": 44063,
|
| 746 |
+
"<|21.88|>": 44064,
|
| 747 |
+
"<|21.90|>": 44065,
|
| 748 |
+
"<|21.92|>": 44066,
|
| 749 |
+
"<|21.94|>": 44067,
|
| 750 |
+
"<|21.96|>": 44068,
|
| 751 |
+
"<|21.98|>": 44069,
|
| 752 |
+
"<|22.00|>": 44070,
|
| 753 |
+
"<|22.02|>": 44071,
|
| 754 |
+
"<|22.04|>": 44072,
|
| 755 |
+
"<|22.06|>": 44073,
|
| 756 |
+
"<|22.08|>": 44074,
|
| 757 |
+
"<|22.10|>": 44075,
|
| 758 |
+
"<|22.12|>": 44076,
|
| 759 |
+
"<|22.14|>": 44077,
|
| 760 |
+
"<|22.16|>": 44078,
|
| 761 |
+
"<|22.18|>": 44079,
|
| 762 |
+
"<|22.20|>": 44080,
|
| 763 |
+
"<|22.22|>": 44081,
|
| 764 |
+
"<|22.24|>": 44082,
|
| 765 |
+
"<|22.26|>": 44083,
|
| 766 |
+
"<|22.28|>": 44084,
|
| 767 |
+
"<|22.30|>": 44085,
|
| 768 |
+
"<|22.32|>": 44086,
|
| 769 |
+
"<|22.34|>": 44087,
|
| 770 |
+
"<|22.36|>": 44088,
|
| 771 |
+
"<|22.38|>": 44089,
|
| 772 |
+
"<|22.40|>": 44090,
|
| 773 |
+
"<|22.42|>": 44091,
|
| 774 |
+
"<|22.44|>": 44092,
|
| 775 |
+
"<|22.46|>": 44093,
|
| 776 |
+
"<|22.48|>": 44094,
|
| 777 |
+
"<|22.50|>": 44095,
|
| 778 |
+
"<|22.52|>": 44096,
|
| 779 |
+
"<|22.54|>": 44097,
|
| 780 |
+
"<|22.56|>": 44098,
|
| 781 |
+
"<|22.58|>": 44099,
|
| 782 |
+
"<|22.60|>": 44100,
|
| 783 |
+
"<|22.62|>": 44101,
|
| 784 |
+
"<|22.64|>": 44102,
|
| 785 |
+
"<|22.66|>": 44103,
|
| 786 |
+
"<|22.68|>": 44104,
|
| 787 |
+
"<|22.70|>": 44105,
|
| 788 |
+
"<|22.72|>": 44106,
|
| 789 |
+
"<|22.74|>": 44107,
|
| 790 |
+
"<|22.76|>": 44108,
|
| 791 |
+
"<|22.78|>": 44109,
|
| 792 |
+
"<|22.80|>": 44110,
|
| 793 |
+
"<|22.82|>": 44111,
|
| 794 |
+
"<|22.84|>": 44112,
|
| 795 |
+
"<|22.86|>": 44113,
|
| 796 |
+
"<|22.88|>": 44114,
|
| 797 |
+
"<|22.90|>": 44115,
|
| 798 |
+
"<|22.92|>": 44116,
|
| 799 |
+
"<|22.94|>": 44117,
|
| 800 |
+
"<|22.96|>": 44118,
|
| 801 |
+
"<|22.98|>": 44119,
|
| 802 |
+
"<|23.00|>": 44120,
|
| 803 |
+
"<|23.02|>": 44121,
|
| 804 |
+
"<|23.04|>": 44122,
|
| 805 |
+
"<|23.06|>": 44123,
|
| 806 |
+
"<|23.08|>": 44124,
|
| 807 |
+
"<|23.10|>": 44125,
|
| 808 |
+
"<|23.12|>": 44126,
|
| 809 |
+
"<|23.14|>": 44127,
|
| 810 |
+
"<|23.16|>": 44128,
|
| 811 |
+
"<|23.18|>": 44129,
|
| 812 |
+
"<|23.20|>": 44130,
|
| 813 |
+
"<|23.22|>": 44131,
|
| 814 |
+
"<|23.24|>": 44132,
|
| 815 |
+
"<|23.26|>": 44133,
|
| 816 |
+
"<|23.28|>": 44134,
|
| 817 |
+
"<|23.30|>": 44135,
|
| 818 |
+
"<|23.32|>": 44136,
|
| 819 |
+
"<|23.34|>": 44137,
|
| 820 |
+
"<|23.36|>": 44138,
|
| 821 |
+
"<|23.38|>": 44139,
|
| 822 |
+
"<|23.40|>": 44140,
|
| 823 |
+
"<|23.42|>": 44141,
|
| 824 |
+
"<|23.44|>": 44142,
|
| 825 |
+
"<|23.46|>": 44143,
|
| 826 |
+
"<|23.48|>": 44144,
|
| 827 |
+
"<|23.50|>": 44145,
|
| 828 |
+
"<|23.52|>": 44146,
|
| 829 |
+
"<|23.54|>": 44147,
|
| 830 |
+
"<|23.56|>": 44148,
|
| 831 |
+
"<|23.58|>": 44149,
|
| 832 |
+
"<|23.60|>": 44150,
|
| 833 |
+
"<|23.62|>": 44151,
|
| 834 |
+
"<|23.64|>": 44152,
|
| 835 |
+
"<|23.66|>": 44153,
|
| 836 |
+
"<|23.68|>": 44154,
|
| 837 |
+
"<|23.70|>": 44155,
|
| 838 |
+
"<|23.72|>": 44156,
|
| 839 |
+
"<|23.74|>": 44157,
|
| 840 |
+
"<|23.76|>": 44158,
|
| 841 |
+
"<|23.78|>": 44159,
|
| 842 |
+
"<|23.80|>": 44160,
|
| 843 |
+
"<|23.82|>": 44161,
|
| 844 |
+
"<|23.84|>": 44162,
|
| 845 |
+
"<|23.86|>": 44163,
|
| 846 |
+
"<|23.88|>": 44164,
|
| 847 |
+
"<|23.90|>": 44165,
|
| 848 |
+
"<|23.92|>": 44166,
|
| 849 |
+
"<|23.94|>": 44167,
|
| 850 |
+
"<|23.96|>": 44168,
|
| 851 |
+
"<|23.98|>": 44169,
|
| 852 |
+
"<|24.00|>": 44170,
|
| 853 |
+
"<|24.02|>": 44171,
|
| 854 |
+
"<|24.04|>": 44172,
|
| 855 |
+
"<|24.06|>": 44173,
|
| 856 |
+
"<|24.08|>": 44174,
|
| 857 |
+
"<|24.10|>": 44175,
|
| 858 |
+
"<|24.12|>": 44176,
|
| 859 |
+
"<|24.14|>": 44177,
|
| 860 |
+
"<|24.16|>": 44178,
|
| 861 |
+
"<|24.18|>": 44179,
|
| 862 |
+
"<|24.20|>": 44180,
|
| 863 |
+
"<|24.22|>": 44181,
|
| 864 |
+
"<|24.24|>": 44182,
|
| 865 |
+
"<|24.26|>": 44183,
|
| 866 |
+
"<|24.28|>": 44184,
|
| 867 |
+
"<|24.30|>": 44185,
|
| 868 |
+
"<|24.32|>": 44186,
|
| 869 |
+
"<|24.34|>": 44187,
|
| 870 |
+
"<|24.36|>": 44188,
|
| 871 |
+
"<|24.38|>": 44189,
|
| 872 |
+
"<|24.40|>": 44190,
|
| 873 |
+
"<|24.42|>": 44191,
|
| 874 |
+
"<|24.44|>": 44192,
|
| 875 |
+
"<|24.46|>": 44193,
|
| 876 |
+
"<|24.48|>": 44194,
|
| 877 |
+
"<|24.50|>": 44195,
|
| 878 |
+
"<|24.52|>": 44196,
|
| 879 |
+
"<|24.54|>": 44197,
|
| 880 |
+
"<|24.56|>": 44198,
|
| 881 |
+
"<|24.58|>": 44199,
|
| 882 |
+
"<|24.60|>": 44200,
|
| 883 |
+
"<|24.62|>": 44201,
|
| 884 |
+
"<|24.64|>": 44202,
|
| 885 |
+
"<|24.66|>": 44203,
|
| 886 |
+
"<|24.68|>": 44204,
|
| 887 |
+
"<|24.70|>": 44205,
|
| 888 |
+
"<|24.72|>": 44206,
|
| 889 |
+
"<|24.74|>": 44207,
|
| 890 |
+
"<|24.76|>": 44208,
|
| 891 |
+
"<|24.78|>": 44209,
|
| 892 |
+
"<|24.80|>": 44210,
|
| 893 |
+
"<|24.82|>": 44211,
|
| 894 |
+
"<|24.84|>": 44212,
|
| 895 |
+
"<|24.86|>": 44213,
|
| 896 |
+
"<|24.88|>": 44214,
|
| 897 |
+
"<|24.90|>": 44215,
|
| 898 |
+
"<|24.92|>": 44216,
|
| 899 |
+
"<|24.94|>": 44217,
|
| 900 |
+
"<|24.96|>": 44218,
|
| 901 |
+
"<|24.98|>": 44219,
|
| 902 |
+
"<|25.00|>": 44220,
|
| 903 |
+
"<|25.02|>": 44221,
|
| 904 |
+
"<|25.04|>": 44222,
|
| 905 |
+
"<|25.06|>": 44223,
|
| 906 |
+
"<|25.08|>": 44224,
|
| 907 |
+
"<|25.10|>": 44225,
|
| 908 |
+
"<|25.12|>": 44226,
|
| 909 |
+
"<|25.14|>": 44227,
|
| 910 |
+
"<|25.16|>": 44228,
|
| 911 |
+
"<|25.18|>": 44229,
|
| 912 |
+
"<|25.20|>": 44230,
|
| 913 |
+
"<|25.22|>": 44231,
|
| 914 |
+
"<|25.24|>": 44232,
|
| 915 |
+
"<|25.26|>": 44233,
|
| 916 |
+
"<|25.28|>": 44234,
|
| 917 |
+
"<|25.30|>": 44235,
|
| 918 |
+
"<|25.32|>": 44236,
|
| 919 |
+
"<|25.34|>": 44237,
|
| 920 |
+
"<|25.36|>": 44238,
|
| 921 |
+
"<|25.38|>": 44239,
|
| 922 |
+
"<|25.40|>": 44240,
|
| 923 |
+
"<|25.42|>": 44241,
|
| 924 |
+
"<|25.44|>": 44242,
|
| 925 |
+
"<|25.46|>": 44243,
|
| 926 |
+
"<|25.48|>": 44244,
|
| 927 |
+
"<|25.50|>": 44245,
|
| 928 |
+
"<|25.52|>": 44246,
|
| 929 |
+
"<|25.54|>": 44247,
|
| 930 |
+
"<|25.56|>": 44248,
|
| 931 |
+
"<|25.58|>": 44249,
|
| 932 |
+
"<|25.60|>": 44250,
|
| 933 |
+
"<|25.62|>": 44251,
|
| 934 |
+
"<|25.64|>": 44252,
|
| 935 |
+
"<|25.66|>": 44253,
|
| 936 |
+
"<|25.68|>": 44254,
|
| 937 |
+
"<|25.70|>": 44255,
|
| 938 |
+
"<|25.72|>": 44256,
|
| 939 |
+
"<|25.74|>": 44257,
|
| 940 |
+
"<|25.76|>": 44258,
|
| 941 |
+
"<|25.78|>": 44259,
|
| 942 |
+
"<|25.80|>": 44260,
|
| 943 |
+
"<|25.82|>": 44261,
|
| 944 |
+
"<|25.84|>": 44262,
|
| 945 |
+
"<|25.86|>": 44263,
|
| 946 |
+
"<|25.88|>": 44264,
|
| 947 |
+
"<|25.90|>": 44265,
|
| 948 |
+
"<|25.92|>": 44266,
|
| 949 |
+
"<|25.94|>": 44267,
|
| 950 |
+
"<|25.96|>": 44268,
|
| 951 |
+
"<|25.98|>": 44269,
|
| 952 |
+
"<|26.00|>": 44270,
|
| 953 |
+
"<|26.02|>": 44271,
|
| 954 |
+
"<|26.04|>": 44272,
|
| 955 |
+
"<|26.06|>": 44273,
|
| 956 |
+
"<|26.08|>": 44274,
|
| 957 |
+
"<|26.10|>": 44275,
|
| 958 |
+
"<|26.12|>": 44276,
|
| 959 |
+
"<|26.14|>": 44277,
|
| 960 |
+
"<|26.16|>": 44278,
|
| 961 |
+
"<|26.18|>": 44279,
|
| 962 |
+
"<|26.20|>": 44280,
|
| 963 |
+
"<|26.22|>": 44281,
|
| 964 |
+
"<|26.24|>": 44282,
|
| 965 |
+
"<|26.26|>": 44283,
|
| 966 |
+
"<|26.28|>": 44284,
|
| 967 |
+
"<|26.30|>": 44285,
|
| 968 |
+
"<|26.32|>": 44286,
|
| 969 |
+
"<|26.34|>": 44287,
|
| 970 |
+
"<|26.36|>": 44288,
|
| 971 |
+
"<|26.38|>": 44289,
|
| 972 |
+
"<|26.40|>": 44290,
|
| 973 |
+
"<|26.42|>": 44291,
|
| 974 |
+
"<|26.44|>": 44292,
|
| 975 |
+
"<|26.46|>": 44293,
|
| 976 |
+
"<|26.48|>": 44294,
|
| 977 |
+
"<|26.50|>": 44295,
|
| 978 |
+
"<|26.52|>": 44296,
|
| 979 |
+
"<|26.54|>": 44297,
|
| 980 |
+
"<|26.56|>": 44298,
|
| 981 |
+
"<|26.58|>": 44299,
|
| 982 |
+
"<|26.60|>": 44300,
|
| 983 |
+
"<|26.62|>": 44301,
|
| 984 |
+
"<|26.64|>": 44302,
|
| 985 |
+
"<|26.66|>": 44303,
|
| 986 |
+
"<|26.68|>": 44304,
|
| 987 |
+
"<|26.70|>": 44305,
|
| 988 |
+
"<|26.72|>": 44306,
|
| 989 |
+
"<|26.74|>": 44307,
|
| 990 |
+
"<|26.76|>": 44308,
|
| 991 |
+
"<|26.78|>": 44309,
|
| 992 |
+
"<|26.80|>": 44310,
|
| 993 |
+
"<|26.82|>": 44311,
|
| 994 |
+
"<|26.84|>": 44312,
|
| 995 |
+
"<|26.86|>": 44313,
|
| 996 |
+
"<|26.88|>": 44314,
|
| 997 |
+
"<|26.90|>": 44315,
|
| 998 |
+
"<|26.92|>": 44316,
|
| 999 |
+
"<|26.94|>": 44317,
|
| 1000 |
+
"<|26.96|>": 44318,
|
| 1001 |
+
"<|26.98|>": 44319,
|
| 1002 |
+
"<|27.00|>": 44320,
|
| 1003 |
+
"<|27.02|>": 44321,
|
| 1004 |
+
"<|27.04|>": 44322,
|
| 1005 |
+
"<|27.06|>": 44323,
|
| 1006 |
+
"<|27.08|>": 44324,
|
| 1007 |
+
"<|27.10|>": 44325,
|
| 1008 |
+
"<|27.12|>": 44326,
|
| 1009 |
+
"<|27.14|>": 44327,
|
| 1010 |
+
"<|27.16|>": 44328,
|
| 1011 |
+
"<|27.18|>": 44329,
|
| 1012 |
+
"<|27.20|>": 44330,
|
| 1013 |
+
"<|27.22|>": 44331,
|
| 1014 |
+
"<|27.24|>": 44332,
|
| 1015 |
+
"<|27.26|>": 44333,
|
| 1016 |
+
"<|27.28|>": 44334,
|
| 1017 |
+
"<|27.30|>": 44335,
|
| 1018 |
+
"<|27.32|>": 44336,
|
| 1019 |
+
"<|27.34|>": 44337,
|
| 1020 |
+
"<|27.36|>": 44338,
|
| 1021 |
+
"<|27.38|>": 44339,
|
| 1022 |
+
"<|27.40|>": 44340,
|
| 1023 |
+
"<|27.42|>": 44341,
|
| 1024 |
+
"<|27.44|>": 44342,
|
| 1025 |
+
"<|27.46|>": 44343,
|
| 1026 |
+
"<|27.48|>": 44344,
|
| 1027 |
+
"<|27.50|>": 44345,
|
| 1028 |
+
"<|27.52|>": 44346,
|
| 1029 |
+
"<|27.54|>": 44347,
|
| 1030 |
+
"<|27.56|>": 44348,
|
| 1031 |
+
"<|27.58|>": 44349,
|
| 1032 |
+
"<|27.60|>": 44350,
|
| 1033 |
+
"<|27.62|>": 44351,
|
| 1034 |
+
"<|27.64|>": 44352,
|
| 1035 |
+
"<|27.66|>": 44353,
|
| 1036 |
+
"<|27.68|>": 44354,
|
| 1037 |
+
"<|27.70|>": 44355,
|
| 1038 |
+
"<|27.72|>": 44356,
|
| 1039 |
+
"<|27.74|>": 44357,
|
| 1040 |
+
"<|27.76|>": 44358,
|
| 1041 |
+
"<|27.78|>": 44359,
|
| 1042 |
+
"<|27.80|>": 44360,
|
| 1043 |
+
"<|27.82|>": 44361,
|
| 1044 |
+
"<|27.84|>": 44362,
|
| 1045 |
+
"<|27.86|>": 44363,
|
| 1046 |
+
"<|27.88|>": 44364,
|
| 1047 |
+
"<|27.90|>": 44365,
|
| 1048 |
+
"<|27.92|>": 44366,
|
| 1049 |
+
"<|27.94|>": 44367,
|
| 1050 |
+
"<|27.96|>": 44368,
|
| 1051 |
+
"<|27.98|>": 44369,
|
| 1052 |
+
"<|28.00|>": 44370,
|
| 1053 |
+
"<|28.02|>": 44371,
|
| 1054 |
+
"<|28.04|>": 44372,
|
| 1055 |
+
"<|28.06|>": 44373,
|
| 1056 |
+
"<|28.08|>": 44374,
|
| 1057 |
+
"<|28.10|>": 44375,
|
| 1058 |
+
"<|28.12|>": 44376,
|
| 1059 |
+
"<|28.14|>": 44377,
|
| 1060 |
+
"<|28.16|>": 44378,
|
| 1061 |
+
"<|28.18|>": 44379,
|
| 1062 |
+
"<|28.20|>": 44380,
|
| 1063 |
+
"<|28.22|>": 44381,
|
| 1064 |
+
"<|28.24|>": 44382,
|
| 1065 |
+
"<|28.26|>": 44383,
|
| 1066 |
+
"<|28.28|>": 44384,
|
| 1067 |
+
"<|28.30|>": 44385,
|
| 1068 |
+
"<|28.32|>": 44386,
|
| 1069 |
+
"<|28.34|>": 44387,
|
| 1070 |
+
"<|28.36|>": 44388,
|
| 1071 |
+
"<|28.38|>": 44389,
|
| 1072 |
+
"<|28.40|>": 44390,
|
| 1073 |
+
"<|28.42|>": 44391,
|
| 1074 |
+
"<|28.44|>": 44392,
|
| 1075 |
+
"<|28.46|>": 44393,
|
| 1076 |
+
"<|28.48|>": 44394,
|
| 1077 |
+
"<|28.50|>": 44395,
|
| 1078 |
+
"<|28.52|>": 44396,
|
| 1079 |
+
"<|28.54|>": 44397,
|
| 1080 |
+
"<|28.56|>": 44398,
|
| 1081 |
+
"<|28.58|>": 44399,
|
| 1082 |
+
"<|28.60|>": 44400,
|
| 1083 |
+
"<|28.62|>": 44401,
|
| 1084 |
+
"<|28.64|>": 44402,
|
| 1085 |
+
"<|28.66|>": 44403,
|
| 1086 |
+
"<|28.68|>": 44404,
|
| 1087 |
+
"<|28.70|>": 44405,
|
| 1088 |
+
"<|28.72|>": 44406,
|
| 1089 |
+
"<|28.74|>": 44407,
|
| 1090 |
+
"<|28.76|>": 44408,
|
| 1091 |
+
"<|28.78|>": 44409,
|
| 1092 |
+
"<|28.80|>": 44410,
|
| 1093 |
+
"<|28.82|>": 44411,
|
| 1094 |
+
"<|28.84|>": 44412,
|
| 1095 |
+
"<|28.86|>": 44413,
|
| 1096 |
+
"<|28.88|>": 44414,
|
| 1097 |
+
"<|28.90|>": 44415,
|
| 1098 |
+
"<|28.92|>": 44416,
|
| 1099 |
+
"<|28.94|>": 44417,
|
| 1100 |
+
"<|28.96|>": 44418,
|
| 1101 |
+
"<|28.98|>": 44419,
|
| 1102 |
+
"<|29.00|>": 44420,
|
| 1103 |
+
"<|29.02|>": 44421,
|
| 1104 |
+
"<|29.04|>": 44422,
|
| 1105 |
+
"<|29.06|>": 44423,
|
| 1106 |
+
"<|29.08|>": 44424,
|
| 1107 |
+
"<|29.10|>": 44425,
|
| 1108 |
+
"<|29.12|>": 44426,
|
| 1109 |
+
"<|29.14|>": 44427,
|
| 1110 |
+
"<|29.16|>": 44428,
|
| 1111 |
+
"<|29.18|>": 44429,
|
| 1112 |
+
"<|29.20|>": 44430,
|
| 1113 |
+
"<|29.22|>": 44431,
|
| 1114 |
+
"<|29.24|>": 44432,
|
| 1115 |
+
"<|29.26|>": 44433,
|
| 1116 |
+
"<|29.28|>": 44434,
|
| 1117 |
+
"<|29.30|>": 44435,
|
| 1118 |
+
"<|29.32|>": 44436,
|
| 1119 |
+
"<|29.34|>": 44437,
|
| 1120 |
+
"<|29.36|>": 44438,
|
| 1121 |
+
"<|29.38|>": 44439,
|
| 1122 |
+
"<|29.40|>": 44440,
|
| 1123 |
+
"<|29.42|>": 44441,
|
| 1124 |
+
"<|29.44|>": 44442,
|
| 1125 |
+
"<|29.46|>": 44443,
|
| 1126 |
+
"<|29.48|>": 44444,
|
| 1127 |
+
"<|29.50|>": 44445,
|
| 1128 |
+
"<|29.52|>": 44446,
|
| 1129 |
+
"<|29.54|>": 44447,
|
| 1130 |
+
"<|29.56|>": 44448,
|
| 1131 |
+
"<|29.58|>": 44449,
|
| 1132 |
+
"<|29.60|>": 44450,
|
| 1133 |
+
"<|29.62|>": 44451,
|
| 1134 |
+
"<|29.64|>": 44452,
|
| 1135 |
+
"<|29.66|>": 44453,
|
| 1136 |
+
"<|29.68|>": 44454,
|
| 1137 |
+
"<|29.70|>": 44455,
|
| 1138 |
+
"<|29.72|>": 44456,
|
| 1139 |
+
"<|29.74|>": 44457,
|
| 1140 |
+
"<|29.76|>": 44458,
|
| 1141 |
+
"<|29.78|>": 44459,
|
| 1142 |
+
"<|29.80|>": 44460,
|
| 1143 |
+
"<|29.82|>": 44461,
|
| 1144 |
+
"<|29.84|>": 44462,
|
| 1145 |
+
"<|29.86|>": 44463,
|
| 1146 |
+
"<|29.88|>": 44464,
|
| 1147 |
+
"<|29.90|>": 44465,
|
| 1148 |
+
"<|29.92|>": 44466,
|
| 1149 |
+
"<|29.94|>": 44467,
|
| 1150 |
+
"<|29.96|>": 44468,
|
| 1151 |
+
"<|29.98|>": 44469,
|
| 1152 |
+
"<|3.00|>": 43120,
|
| 1153 |
+
"<|3.02|>": 43121,
|
| 1154 |
+
"<|3.04|>": 43122,
|
| 1155 |
+
"<|3.06|>": 43123,
|
| 1156 |
+
"<|3.08|>": 43124,
|
| 1157 |
+
"<|3.10|>": 43125,
|
| 1158 |
+
"<|3.12|>": 43126,
|
| 1159 |
+
"<|3.14|>": 43127,
|
| 1160 |
+
"<|3.16|>": 43128,
|
| 1161 |
+
"<|3.18|>": 43129,
|
| 1162 |
+
"<|3.20|>": 43130,
|
| 1163 |
+
"<|3.22|>": 43131,
|
| 1164 |
+
"<|3.24|>": 43132,
|
| 1165 |
+
"<|3.26|>": 43133,
|
| 1166 |
+
"<|3.28|>": 43134,
|
| 1167 |
+
"<|3.30|>": 43135,
|
| 1168 |
+
"<|3.32|>": 43136,
|
| 1169 |
+
"<|3.34|>": 43137,
|
| 1170 |
+
"<|3.36|>": 43138,
|
| 1171 |
+
"<|3.38|>": 43139,
|
| 1172 |
+
"<|3.40|>": 43140,
|
| 1173 |
+
"<|3.42|>": 43141,
|
| 1174 |
+
"<|3.44|>": 43142,
|
| 1175 |
+
"<|3.46|>": 43143,
|
| 1176 |
+
"<|3.48|>": 43144,
|
| 1177 |
+
"<|3.50|>": 43145,
|
| 1178 |
+
"<|3.52|>": 43146,
|
| 1179 |
+
"<|3.54|>": 43147,
|
| 1180 |
+
"<|3.56|>": 43148,
|
| 1181 |
+
"<|3.58|>": 43149,
|
| 1182 |
+
"<|3.60|>": 43150,
|
| 1183 |
+
"<|3.62|>": 43151,
|
| 1184 |
+
"<|3.64|>": 43152,
|
| 1185 |
+
"<|3.66|>": 43153,
|
| 1186 |
+
"<|3.68|>": 43154,
|
| 1187 |
+
"<|3.70|>": 43155,
|
| 1188 |
+
"<|3.72|>": 43156,
|
| 1189 |
+
"<|3.74|>": 43157,
|
| 1190 |
+
"<|3.76|>": 43158,
|
| 1191 |
+
"<|3.78|>": 43159,
|
| 1192 |
+
"<|3.80|>": 43160,
|
| 1193 |
+
"<|3.82|>": 43161,
|
| 1194 |
+
"<|3.84|>": 43162,
|
| 1195 |
+
"<|3.86|>": 43163,
|
| 1196 |
+
"<|3.88|>": 43164,
|
| 1197 |
+
"<|3.90|>": 43165,
|
| 1198 |
+
"<|3.92|>": 43166,
|
| 1199 |
+
"<|3.94|>": 43167,
|
| 1200 |
+
"<|3.96|>": 43168,
|
| 1201 |
+
"<|3.98|>": 43169,
|
| 1202 |
+
"<|30.00|>": 44470,
|
| 1203 |
+
"<|4.00|>": 43170,
|
| 1204 |
+
"<|4.02|>": 43171,
|
| 1205 |
+
"<|4.04|>": 43172,
|
| 1206 |
+
"<|4.06|>": 43173,
|
| 1207 |
+
"<|4.08|>": 43174,
|
| 1208 |
+
"<|4.10|>": 43175,
|
| 1209 |
+
"<|4.12|>": 43176,
|
| 1210 |
+
"<|4.14|>": 43177,
|
| 1211 |
+
"<|4.16|>": 43178,
|
| 1212 |
+
"<|4.18|>": 43179,
|
| 1213 |
+
"<|4.20|>": 43180,
|
| 1214 |
+
"<|4.22|>": 43181,
|
| 1215 |
+
"<|4.24|>": 43182,
|
| 1216 |
+
"<|4.26|>": 43183,
|
| 1217 |
+
"<|4.28|>": 43184,
|
| 1218 |
+
"<|4.30|>": 43185,
|
| 1219 |
+
"<|4.32|>": 43186,
|
| 1220 |
+
"<|4.34|>": 43187,
|
| 1221 |
+
"<|4.36|>": 43188,
|
| 1222 |
+
"<|4.38|>": 43189,
|
| 1223 |
+
"<|4.40|>": 43190,
|
| 1224 |
+
"<|4.42|>": 43191,
|
| 1225 |
+
"<|4.44|>": 43192,
|
| 1226 |
+
"<|4.46|>": 43193,
|
| 1227 |
+
"<|4.48|>": 43194,
|
| 1228 |
+
"<|4.50|>": 43195,
|
| 1229 |
+
"<|4.52|>": 43196,
|
| 1230 |
+
"<|4.54|>": 43197,
|
| 1231 |
+
"<|4.56|>": 43198,
|
| 1232 |
+
"<|4.58|>": 43199,
|
| 1233 |
+
"<|4.60|>": 43200,
|
| 1234 |
+
"<|4.62|>": 43201,
|
| 1235 |
+
"<|4.64|>": 43202,
|
| 1236 |
+
"<|4.66|>": 43203,
|
| 1237 |
+
"<|4.68|>": 43204,
|
| 1238 |
+
"<|4.70|>": 43205,
|
| 1239 |
+
"<|4.72|>": 43206,
|
| 1240 |
+
"<|4.74|>": 43207,
|
| 1241 |
+
"<|4.76|>": 43208,
|
| 1242 |
+
"<|4.78|>": 43209,
|
| 1243 |
+
"<|4.80|>": 43210,
|
| 1244 |
+
"<|4.82|>": 43211,
|
| 1245 |
+
"<|4.84|>": 43212,
|
| 1246 |
+
"<|4.86|>": 43213,
|
| 1247 |
+
"<|4.88|>": 43214,
|
| 1248 |
+
"<|4.90|>": 43215,
|
| 1249 |
+
"<|4.92|>": 43216,
|
| 1250 |
+
"<|4.94|>": 43217,
|
| 1251 |
+
"<|4.96|>": 43218,
|
| 1252 |
+
"<|4.98|>": 43219,
|
| 1253 |
+
"<|5.00|>": 43220,
|
| 1254 |
+
"<|5.02|>": 43221,
|
| 1255 |
+
"<|5.04|>": 43222,
|
| 1256 |
+
"<|5.06|>": 43223,
|
| 1257 |
+
"<|5.08|>": 43224,
|
| 1258 |
+
"<|5.10|>": 43225,
|
| 1259 |
+
"<|5.12|>": 43226,
|
| 1260 |
+
"<|5.14|>": 43227,
|
| 1261 |
+
"<|5.16|>": 43228,
|
| 1262 |
+
"<|5.18|>": 43229,
|
| 1263 |
+
"<|5.20|>": 43230,
|
| 1264 |
+
"<|5.22|>": 43231,
|
| 1265 |
+
"<|5.24|>": 43232,
|
| 1266 |
+
"<|5.26|>": 43233,
|
| 1267 |
+
"<|5.28|>": 43234,
|
| 1268 |
+
"<|5.30|>": 43235,
|
| 1269 |
+
"<|5.32|>": 43236,
|
| 1270 |
+
"<|5.34|>": 43237,
|
| 1271 |
+
"<|5.36|>": 43238,
|
| 1272 |
+
"<|5.38|>": 43239,
|
| 1273 |
+
"<|5.40|>": 43240,
|
| 1274 |
+
"<|5.42|>": 43241,
|
| 1275 |
+
"<|5.44|>": 43242,
|
| 1276 |
+
"<|5.46|>": 43243,
|
| 1277 |
+
"<|5.48|>": 43244,
|
| 1278 |
+
"<|5.50|>": 43245,
|
| 1279 |
+
"<|5.52|>": 43246,
|
| 1280 |
+
"<|5.54|>": 43247,
|
| 1281 |
+
"<|5.56|>": 43248,
|
| 1282 |
+
"<|5.58|>": 43249,
|
| 1283 |
+
"<|5.60|>": 43250,
|
| 1284 |
+
"<|5.62|>": 43251,
|
| 1285 |
+
"<|5.64|>": 43252,
|
| 1286 |
+
"<|5.66|>": 43253,
|
| 1287 |
+
"<|5.68|>": 43254,
|
| 1288 |
+
"<|5.70|>": 43255,
|
| 1289 |
+
"<|5.72|>": 43256,
|
| 1290 |
+
"<|5.74|>": 43257,
|
| 1291 |
+
"<|5.76|>": 43258,
|
| 1292 |
+
"<|5.78|>": 43259,
|
| 1293 |
+
"<|5.80|>": 43260,
|
| 1294 |
+
"<|5.82|>": 43261,
|
| 1295 |
+
"<|5.84|>": 43262,
|
| 1296 |
+
"<|5.86|>": 43263,
|
| 1297 |
+
"<|5.88|>": 43264,
|
| 1298 |
+
"<|5.90|>": 43265,
|
| 1299 |
+
"<|5.92|>": 43266,
|
| 1300 |
+
"<|5.94|>": 43267,
|
| 1301 |
+
"<|5.96|>": 43268,
|
| 1302 |
+
"<|5.98|>": 43269,
|
| 1303 |
+
"<|6.00|>": 43270,
|
| 1304 |
+
"<|6.02|>": 43271,
|
| 1305 |
+
"<|6.04|>": 43272,
|
| 1306 |
+
"<|6.06|>": 43273,
|
| 1307 |
+
"<|6.08|>": 43274,
|
| 1308 |
+
"<|6.10|>": 43275,
|
| 1309 |
+
"<|6.12|>": 43276,
|
| 1310 |
+
"<|6.14|>": 43277,
|
| 1311 |
+
"<|6.16|>": 43278,
|
| 1312 |
+
"<|6.18|>": 43279,
|
| 1313 |
+
"<|6.20|>": 43280,
|
| 1314 |
+
"<|6.22|>": 43281,
|
| 1315 |
+
"<|6.24|>": 43282,
|
| 1316 |
+
"<|6.26|>": 43283,
|
| 1317 |
+
"<|6.28|>": 43284,
|
| 1318 |
+
"<|6.30|>": 43285,
|
| 1319 |
+
"<|6.32|>": 43286,
|
| 1320 |
+
"<|6.34|>": 43287,
|
| 1321 |
+
"<|6.36|>": 43288,
|
| 1322 |
+
"<|6.38|>": 43289,
|
| 1323 |
+
"<|6.40|>": 43290,
|
| 1324 |
+
"<|6.42|>": 43291,
|
| 1325 |
+
"<|6.44|>": 43292,
|
| 1326 |
+
"<|6.46|>": 43293,
|
| 1327 |
+
"<|6.48|>": 43294,
|
| 1328 |
+
"<|6.50|>": 43295,
|
| 1329 |
+
"<|6.52|>": 43296,
|
| 1330 |
+
"<|6.54|>": 43297,
|
| 1331 |
+
"<|6.56|>": 43298,
|
| 1332 |
+
"<|6.58|>": 43299,
|
| 1333 |
+
"<|6.60|>": 43300,
|
| 1334 |
+
"<|6.62|>": 43301,
|
| 1335 |
+
"<|6.64|>": 43302,
|
| 1336 |
+
"<|6.66|>": 43303,
|
| 1337 |
+
"<|6.68|>": 43304,
|
| 1338 |
+
"<|6.70|>": 43305,
|
| 1339 |
+
"<|6.72|>": 43306,
|
| 1340 |
+
"<|6.74|>": 43307,
|
| 1341 |
+
"<|6.76|>": 43308,
|
| 1342 |
+
"<|6.78|>": 43309,
|
| 1343 |
+
"<|6.80|>": 43310,
|
| 1344 |
+
"<|6.82|>": 43311,
|
| 1345 |
+
"<|6.84|>": 43312,
|
| 1346 |
+
"<|6.86|>": 43313,
|
| 1347 |
+
"<|6.88|>": 43314,
|
| 1348 |
+
"<|6.90|>": 43315,
|
| 1349 |
+
"<|6.92|>": 43316,
|
| 1350 |
+
"<|6.94|>": 43317,
|
| 1351 |
+
"<|6.96|>": 43318,
|
| 1352 |
+
"<|6.98|>": 43319,
|
| 1353 |
+
"<|7.00|>": 43320,
|
| 1354 |
+
"<|7.02|>": 43321,
|
| 1355 |
+
"<|7.04|>": 43322,
|
| 1356 |
+
"<|7.06|>": 43323,
|
| 1357 |
+
"<|7.08|>": 43324,
|
| 1358 |
+
"<|7.10|>": 43325,
|
| 1359 |
+
"<|7.12|>": 43326,
|
| 1360 |
+
"<|7.14|>": 43327,
|
| 1361 |
+
"<|7.16|>": 43328,
|
| 1362 |
+
"<|7.18|>": 43329,
|
| 1363 |
+
"<|7.20|>": 43330,
|
| 1364 |
+
"<|7.22|>": 43331,
|
| 1365 |
+
"<|7.24|>": 43332,
|
| 1366 |
+
"<|7.26|>": 43333,
|
| 1367 |
+
"<|7.28|>": 43334,
|
| 1368 |
+
"<|7.30|>": 43335,
|
| 1369 |
+
"<|7.32|>": 43336,
|
| 1370 |
+
"<|7.34|>": 43337,
|
| 1371 |
+
"<|7.36|>": 43338,
|
| 1372 |
+
"<|7.38|>": 43339,
|
| 1373 |
+
"<|7.40|>": 43340,
|
| 1374 |
+
"<|7.42|>": 43341,
|
| 1375 |
+
"<|7.44|>": 43342,
|
| 1376 |
+
"<|7.46|>": 43343,
|
| 1377 |
+
"<|7.48|>": 43344,
|
| 1378 |
+
"<|7.50|>": 43345,
|
| 1379 |
+
"<|7.52|>": 43346,
|
| 1380 |
+
"<|7.54|>": 43347,
|
| 1381 |
+
"<|7.56|>": 43348,
|
| 1382 |
+
"<|7.58|>": 43349,
|
| 1383 |
+
"<|7.60|>": 43350,
|
| 1384 |
+
"<|7.62|>": 43351,
|
| 1385 |
+
"<|7.64|>": 43352,
|
| 1386 |
+
"<|7.66|>": 43353,
|
| 1387 |
+
"<|7.68|>": 43354,
|
| 1388 |
+
"<|7.70|>": 43355,
|
| 1389 |
+
"<|7.72|>": 43356,
|
| 1390 |
+
"<|7.74|>": 43357,
|
| 1391 |
+
"<|7.76|>": 43358,
|
| 1392 |
+
"<|7.78|>": 43359,
|
| 1393 |
+
"<|7.80|>": 43360,
|
| 1394 |
+
"<|7.82|>": 43361,
|
| 1395 |
+
"<|7.84|>": 43362,
|
| 1396 |
+
"<|7.86|>": 43363,
|
| 1397 |
+
"<|7.88|>": 43364,
|
| 1398 |
+
"<|7.90|>": 43365,
|
| 1399 |
+
"<|7.92|>": 43366,
|
| 1400 |
+
"<|7.94|>": 43367,
|
| 1401 |
+
"<|7.96|>": 43368,
|
| 1402 |
+
"<|7.98|>": 43369,
|
| 1403 |
+
"<|8.00|>": 43370,
|
| 1404 |
+
"<|8.02|>": 43371,
|
| 1405 |
+
"<|8.04|>": 43372,
|
| 1406 |
+
"<|8.06|>": 43373,
|
| 1407 |
+
"<|8.08|>": 43374,
|
| 1408 |
+
"<|8.10|>": 43375,
|
| 1409 |
+
"<|8.12|>": 43376,
|
| 1410 |
+
"<|8.14|>": 43377,
|
| 1411 |
+
"<|8.16|>": 43378,
|
| 1412 |
+
"<|8.18|>": 43379,
|
| 1413 |
+
"<|8.20|>": 43380,
|
| 1414 |
+
"<|8.22|>": 43381,
|
| 1415 |
+
"<|8.24|>": 43382,
|
| 1416 |
+
"<|8.26|>": 43383,
|
| 1417 |
+
"<|8.28|>": 43384,
|
| 1418 |
+
"<|8.30|>": 43385,
|
| 1419 |
+
"<|8.32|>": 43386,
|
| 1420 |
+
"<|8.34|>": 43387,
|
| 1421 |
+
"<|8.36|>": 43388,
|
| 1422 |
+
"<|8.38|>": 43389,
|
| 1423 |
+
"<|8.40|>": 43390,
|
| 1424 |
+
"<|8.42|>": 43391,
|
| 1425 |
+
"<|8.44|>": 43392,
|
| 1426 |
+
"<|8.46|>": 43393,
|
| 1427 |
+
"<|8.48|>": 43394,
|
| 1428 |
+
"<|8.50|>": 43395,
|
| 1429 |
+
"<|8.52|>": 43396,
|
| 1430 |
+
"<|8.54|>": 43397,
|
| 1431 |
+
"<|8.56|>": 43398,
|
| 1432 |
+
"<|8.58|>": 43399,
|
| 1433 |
+
"<|8.60|>": 43400,
|
| 1434 |
+
"<|8.62|>": 43401,
|
| 1435 |
+
"<|8.64|>": 43402,
|
| 1436 |
+
"<|8.66|>": 43403,
|
| 1437 |
+
"<|8.68|>": 43404,
|
| 1438 |
+
"<|8.70|>": 43405,
|
| 1439 |
+
"<|8.72|>": 43406,
|
| 1440 |
+
"<|8.74|>": 43407,
|
| 1441 |
+
"<|8.76|>": 43408,
|
| 1442 |
+
"<|8.78|>": 43409,
|
| 1443 |
+
"<|8.80|>": 43410,
|
| 1444 |
+
"<|8.82|>": 43411,
|
| 1445 |
+
"<|8.84|>": 43412,
|
| 1446 |
+
"<|8.86|>": 43413,
|
| 1447 |
+
"<|8.88|>": 43414,
|
| 1448 |
+
"<|8.90|>": 43415,
|
| 1449 |
+
"<|8.92|>": 43416,
|
| 1450 |
+
"<|8.94|>": 43417,
|
| 1451 |
+
"<|8.96|>": 43418,
|
| 1452 |
+
"<|8.98|>": 43419,
|
| 1453 |
+
"<|9.00|>": 43420,
|
| 1454 |
+
"<|9.02|>": 43421,
|
| 1455 |
+
"<|9.04|>": 43422,
|
| 1456 |
+
"<|9.06|>": 43423,
|
| 1457 |
+
"<|9.08|>": 43424,
|
| 1458 |
+
"<|9.10|>": 43425,
|
| 1459 |
+
"<|9.12|>": 43426,
|
| 1460 |
+
"<|9.14|>": 43427,
|
| 1461 |
+
"<|9.16|>": 43428,
|
| 1462 |
+
"<|9.18|>": 43429,
|
| 1463 |
+
"<|9.20|>": 43430,
|
| 1464 |
+
"<|9.22|>": 43431,
|
| 1465 |
+
"<|9.24|>": 43432,
|
| 1466 |
+
"<|9.26|>": 43433,
|
| 1467 |
+
"<|9.28|>": 43434,
|
| 1468 |
+
"<|9.30|>": 43435,
|
| 1469 |
+
"<|9.32|>": 43436,
|
| 1470 |
+
"<|9.34|>": 43437,
|
| 1471 |
+
"<|9.36|>": 43438,
|
| 1472 |
+
"<|9.38|>": 43439,
|
| 1473 |
+
"<|9.40|>": 43440,
|
| 1474 |
+
"<|9.42|>": 43441,
|
| 1475 |
+
"<|9.44|>": 43442,
|
| 1476 |
+
"<|9.46|>": 43443,
|
| 1477 |
+
"<|9.48|>": 43444,
|
| 1478 |
+
"<|9.50|>": 43445,
|
| 1479 |
+
"<|9.52|>": 43446,
|
| 1480 |
+
"<|9.54|>": 43447,
|
| 1481 |
+
"<|9.56|>": 43448,
|
| 1482 |
+
"<|9.58|>": 43449,
|
| 1483 |
+
"<|9.60|>": 43450,
|
| 1484 |
+
"<|9.62|>": 43451,
|
| 1485 |
+
"<|9.64|>": 43452,
|
| 1486 |
+
"<|9.66|>": 43453,
|
| 1487 |
+
"<|9.68|>": 43454,
|
| 1488 |
+
"<|9.70|>": 43455,
|
| 1489 |
+
"<|9.72|>": 43456,
|
| 1490 |
+
"<|9.74|>": 43457,
|
| 1491 |
+
"<|9.76|>": 43458,
|
| 1492 |
+
"<|9.78|>": 43459,
|
| 1493 |
+
"<|9.80|>": 43460,
|
| 1494 |
+
"<|9.82|>": 43461,
|
| 1495 |
+
"<|9.84|>": 43462,
|
| 1496 |
+
"<|9.86|>": 43463,
|
| 1497 |
+
"<|9.88|>": 43464,
|
| 1498 |
+
"<|9.90|>": 43465,
|
| 1499 |
+
"<|9.92|>": 43466,
|
| 1500 |
+
"<|9.94|>": 43467,
|
| 1501 |
+
"<|9.96|>": 43468,
|
| 1502 |
+
"<|9.98|>": 43469,
|
| 1503 |
+
"<|af|>": 42932,
|
| 1504 |
+
"<|am|>": 42939,
|
| 1505 |
+
"<|ar|>": 42877,
|
| 1506 |
+
"<|as|>": 42955,
|
| 1507 |
+
"<|az|>": 42909,
|
| 1508 |
+
"<|ba|>": 42960,
|
| 1509 |
+
"<|be|>": 42935,
|
| 1510 |
+
"<|bg|>": 42897,
|
| 1511 |
+
"<|bn|>": 42907,
|
| 1512 |
+
"<|bo|>": 42952,
|
| 1513 |
+
"<|br|>": 42914,
|
| 1514 |
+
"<|bs|>": 42920,
|
| 1515 |
+
"<|ca|>": 42875,
|
| 1516 |
+
"<|cs|>": 42888,
|
| 1517 |
+
"<|cy|>": 42902,
|
| 1518 |
+
"<|da|>": 42890,
|
| 1519 |
+
"<|de|>": 42866,
|
| 1520 |
+
"<|el|>": 42886,
|
| 1521 |
+
"<|endoftext|>": 42862,
|
| 1522 |
+
"<|en|>": 42864,
|
| 1523 |
+
"<|es|>": 42867,
|
| 1524 |
+
"<|et|>": 42912,
|
| 1525 |
+
"<|eu|>": 42915,
|
| 1526 |
+
"<|fa|>": 42905,
|
| 1527 |
+
"<|fi|>": 42882,
|
| 1528 |
+
"<|fo|>": 42943,
|
| 1529 |
+
"<|fr|>": 42870,
|
| 1530 |
+
"<|gl|>": 42924,
|
| 1531 |
+
"<|gu|>": 42938,
|
| 1532 |
+
"<|haw|>": 42957,
|
| 1533 |
+
"<|ha|>": 42959,
|
| 1534 |
+
"<|he|>": 42884,
|
| 1535 |
+
"<|hi|>": 42881,
|
| 1536 |
+
"<|hr|>": 42896,
|
| 1537 |
+
"<|ht|>": 42944,
|
| 1538 |
+
"<|hu|>": 42891,
|
| 1539 |
+
"<|hy|>": 42917,
|
| 1540 |
+
"<|id|>": 42880,
|
| 1541 |
+
"<|is|>": 42916,
|
| 1542 |
+
"<|it|>": 42879,
|
| 1543 |
+
"<|ja|>": 42871,
|
| 1544 |
+
"<|jw|>": 42961,
|
| 1545 |
+
"<|ka|>": 42934,
|
| 1546 |
+
"<|kk|>": 42921,
|
| 1547 |
+
"<|km|>": 42928,
|
| 1548 |
+
"<|kn|>": 42911,
|
| 1549 |
+
"<|ko|>": 42869,
|
| 1550 |
+
"<|la|>": 42899,
|
| 1551 |
+
"<|lb|>": 42950,
|
| 1552 |
+
"<|ln|>": 42958,
|
| 1553 |
+
"<|lo|>": 42941,
|
| 1554 |
+
"<|lt|>": 42898,
|
| 1555 |
+
"<|lv|>": 42906,
|
| 1556 |
+
"<|mg|>": 42954,
|
| 1557 |
+
"<|mi|>": 42900,
|
| 1558 |
+
"<|mk|>": 42913,
|
| 1559 |
+
"<|ml|>": 42901,
|
| 1560 |
+
"<|mn|>": 42919,
|
| 1561 |
+
"<|mr|>": 42925,
|
| 1562 |
+
"<|ms|>": 42887,
|
| 1563 |
+
"<|mt|>": 42948,
|
| 1564 |
+
"<|my|>": 42951,
|
| 1565 |
+
"<|ne|>": 42918,
|
| 1566 |
+
"<|nl|>": 42876,
|
| 1567 |
+
"<|nn|>": 42947,
|
| 1568 |
+
"<|nospeech|>": 42968,
|
| 1569 |
+
"<|notimestamps|>": 42969,
|
| 1570 |
+
"<|no|>": 42893,
|
| 1571 |
+
"<|oc|>": 42933,
|
| 1572 |
+
"<|pa|>": 42926,
|
| 1573 |
+
"<|pl|>": 42874,
|
| 1574 |
+
"<|ps|>": 42945,
|
| 1575 |
+
"<|pt|>": 42872,
|
| 1576 |
+
"<|ro|>": 42889,
|
| 1577 |
+
"<|ru|>": 42868,
|
| 1578 |
+
"<|sa|>": 42949,
|
| 1579 |
+
"<|sd|>": 42937,
|
| 1580 |
+
"<|si|>": 42927,
|
| 1581 |
+
"<|sk|>": 42903,
|
| 1582 |
+
"<|sl|>": 42910,
|
| 1583 |
+
"<|sn|>": 42929,
|
| 1584 |
+
"<|so|>": 42931,
|
| 1585 |
+
"<|sq|>": 42922,
|
| 1586 |
+
"<|sr|>": 42908,
|
| 1587 |
+
"<|startoflm|>": 42966,
|
| 1588 |
+
"<|startofprev|>": 42967,
|
| 1589 |
+
"<|startoftranscript|>": 42863,
|
| 1590 |
+
"<|su|>": 42962,
|
| 1591 |
+
"<|sv|>": 42878,
|
| 1592 |
+
"<|sw|>": 42923,
|
| 1593 |
+
"<|ta|>": 42892,
|
| 1594 |
+
"<|te|>": 42904,
|
| 1595 |
+
"<|tg|>": 42936,
|
| 1596 |
+
"<|th|>": 42894,
|
| 1597 |
+
"<|tk|>": 42946,
|
| 1598 |
+
"<|tl|>": 42953,
|
| 1599 |
+
"<|transcribe|>": 42965,
|
| 1600 |
+
"<|translate|>": 42964,
|
| 1601 |
+
"<|tr|>": 42873,
|
| 1602 |
+
"<|tt|>": 42956,
|
| 1603 |
+
"<|uk|>": 42885,
|
| 1604 |
+
"<|ur|>": 42895,
|
| 1605 |
+
"<|uz|>": 42942,
|
| 1606 |
+
"<|vi|>": 42883,
|
| 1607 |
+
"<|yi|>": 42940,
|
| 1608 |
+
"<|yo|>": 42930,
|
| 1609 |
+
"<|yue|>": 42963,
|
| 1610 |
+
"<|zh|>": 42865
|
| 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": 42862,
|
| 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": 42863,
|
| 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": 42862,
|
| 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": 42862,
|
| 41 |
+
"scale_embedding": false,
|
| 42 |
+
"transformers_version": "4.57.6",
|
| 43 |
+
"use_cache": true,
|
| 44 |
+
"use_weighted_layer_sum": false,
|
| 45 |
+
"vocab_size": 44471
|
| 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": 42862,
|
| 8 |
+
"decoder_start_token_id": 42863,
|
| 9 |
+
"eos_token_id": 42862,
|
| 10 |
+
"lang_to_id": {
|
| 11 |
+
"<|sn|>": 42929
|
| 12 |
+
},
|
| 13 |
+
"language": "sn",
|
| 14 |
+
"max_length": 448,
|
| 15 |
+
"no_timestamps_token_id": 42969,
|
| 16 |
+
"pad_token_id": 42862,
|
| 17 |
+
"suppress_tokens": [],
|
| 18 |
+
"task": "transcribe",
|
| 19 |
+
"task_to_id": {
|
| 20 |
+
"transcribe": 42965,
|
| 21 |
+
"translate": 42964
|
| 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:a097a2c4eeee714fc914dc478023119cfb56ac2c6a88af2508d44c3033590674
|
| 3 |
+
size 3068199760
|
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
|
|
|