Automatic Speech Recognition
NeMo
Core ML
ONNX
English
speech
pathological-speech
dysarthria
huntingtons-disease
parakeet
Eval Results (legacy)
Instructions to use charleslwang/parakeet-tdt-0.6b-HD with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- NeMo
How to use charleslwang/parakeet-tdt-0.6b-HD with NeMo:
import nemo.collections.asr as nemo_asr asr_model = nemo_asr.models.ASRModel.from_pretrained("charleslwang/parakeet-tdt-0.6b-HD") transcriptions = asr_model.transcribe(["file.wav"]) - Notebooks
- Google Colab
- Kaggle
Upload validated Core ML deployment bundle
Browse files- coreml/bundle.json +184 -0
- coreml/models/ParakeetDecoderJoint.mlpackage/Data/com.apple.CoreML/model.mlmodel +3 -0
- coreml/models/ParakeetDecoderJoint.mlpackage/Data/com.apple.CoreML/weights/weight.bin +3 -0
- coreml/models/ParakeetDecoderJoint.mlpackage/Manifest.json +18 -0
- coreml/models/ParakeetEncoder.mlpackage/Data/com.apple.CoreML/model.mlmodel +3 -0
- coreml/models/ParakeetEncoder.mlpackage/Data/com.apple.CoreML/weights/weight.bin +3 -0
- coreml/models/ParakeetEncoder.mlpackage/Manifest.json +18 -0
- coreml/tokens.txt +1024 -0
coreml/bundle.json
ADDED
|
@@ -0,0 +1,184 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"format": "parakeethd-coreml-bundle",
|
| 3 |
+
"format_version": 1,
|
| 4 |
+
"base_model": "nvidia/parakeet-tdt-0.6b-v2",
|
| 5 |
+
"adapter": {
|
| 6 |
+
"source": "charleslwang/parakeet-tdt-0.6b-HD",
|
| 7 |
+
"filename": "best_adapter.pt"
|
| 8 |
+
},
|
| 9 |
+
"audio": {
|
| 10 |
+
"sample_rate": 16000,
|
| 11 |
+
"channels": 1,
|
| 12 |
+
"dtype": "float32",
|
| 13 |
+
"encoder_input": "waveform",
|
| 14 |
+
"preprocessor": {
|
| 15 |
+
"_target_": "nemo.collections.asr.modules.AudioToMelSpectrogramPreprocessor",
|
| 16 |
+
"sample_rate": 16000,
|
| 17 |
+
"normalize": "per_feature",
|
| 18 |
+
"window_size": 0.025,
|
| 19 |
+
"window_stride": 0.01,
|
| 20 |
+
"window": "hann",
|
| 21 |
+
"features": 128,
|
| 22 |
+
"n_fft": 512,
|
| 23 |
+
"log": true,
|
| 24 |
+
"frame_splicing": 1,
|
| 25 |
+
"dither": 0.0,
|
| 26 |
+
"pad_to": 0,
|
| 27 |
+
"pad_value": 0.0
|
| 28 |
+
}
|
| 29 |
+
},
|
| 30 |
+
"tokenizer": {
|
| 31 |
+
"type": "bpe",
|
| 32 |
+
"tokens_path": "tokens.txt",
|
| 33 |
+
"tokens_count": 1024
|
| 34 |
+
},
|
| 35 |
+
"decoding": {
|
| 36 |
+
"type": "tdt",
|
| 37 |
+
"blank_id": 1024,
|
| 38 |
+
"vocab_size": 1024,
|
| 39 |
+
"token_class_count": 1025,
|
| 40 |
+
"durations": [
|
| 41 |
+
0,
|
| 42 |
+
1,
|
| 43 |
+
2,
|
| 44 |
+
3,
|
| 45 |
+
4
|
| 46 |
+
],
|
| 47 |
+
"duration_class_count": 5,
|
| 48 |
+
"big_blank_durations": [],
|
| 49 |
+
"joint_output_size": 1030,
|
| 50 |
+
"joint_output_layout": "token_scores_then_duration_scores"
|
| 51 |
+
},
|
| 52 |
+
"coreml": {
|
| 53 |
+
"minimum_ios": 17,
|
| 54 |
+
"compute_precision": "float32",
|
| 55 |
+
"encoder": {
|
| 56 |
+
"path": "models/ParakeetEncoder.mlpackage",
|
| 57 |
+
"inputs": [
|
| 58 |
+
{
|
| 59 |
+
"name": "audio_signal",
|
| 60 |
+
"semantic": "audio_signal",
|
| 61 |
+
"example_shape": [
|
| 62 |
+
1,
|
| 63 |
+
16000
|
| 64 |
+
]
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"name": "length",
|
| 68 |
+
"semantic": "length",
|
| 69 |
+
"example_shape": [
|
| 70 |
+
1
|
| 71 |
+
]
|
| 72 |
+
}
|
| 73 |
+
],
|
| 74 |
+
"outputs": [
|
| 75 |
+
{
|
| 76 |
+
"name": "obj_1",
|
| 77 |
+
"semantic": "encoder_outputs",
|
| 78 |
+
"example_shape": [
|
| 79 |
+
1,
|
| 80 |
+
1024,
|
| 81 |
+
13
|
| 82 |
+
]
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"name": "obj0_1",
|
| 86 |
+
"semantic": "encoded_length",
|
| 87 |
+
"example_shape": [
|
| 88 |
+
1
|
| 89 |
+
]
|
| 90 |
+
}
|
| 91 |
+
]
|
| 92 |
+
},
|
| 93 |
+
"decoder_joint": {
|
| 94 |
+
"path": "models/ParakeetDecoderJoint.mlpackage",
|
| 95 |
+
"inputs": [
|
| 96 |
+
{
|
| 97 |
+
"name": "encoder_outputs",
|
| 98 |
+
"semantic": "encoder_outputs",
|
| 99 |
+
"example_shape": [
|
| 100 |
+
1,
|
| 101 |
+
1024,
|
| 102 |
+
1
|
| 103 |
+
]
|
| 104 |
+
},
|
| 105 |
+
{
|
| 106 |
+
"name": "targets",
|
| 107 |
+
"semantic": "targets",
|
| 108 |
+
"example_shape": [
|
| 109 |
+
1,
|
| 110 |
+
1
|
| 111 |
+
]
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"name": "target_length",
|
| 115 |
+
"semantic": "target_length",
|
| 116 |
+
"example_shape": [
|
| 117 |
+
1
|
| 118 |
+
]
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"name": "input_states_1",
|
| 122 |
+
"semantic": "input_states_1",
|
| 123 |
+
"example_shape": [
|
| 124 |
+
2,
|
| 125 |
+
1,
|
| 126 |
+
640
|
| 127 |
+
]
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"name": "input_states_2",
|
| 131 |
+
"semantic": "input_states_2",
|
| 132 |
+
"example_shape": [
|
| 133 |
+
2,
|
| 134 |
+
1,
|
| 135 |
+
640
|
| 136 |
+
]
|
| 137 |
+
}
|
| 138 |
+
],
|
| 139 |
+
"outputs": [
|
| 140 |
+
{
|
| 141 |
+
"name": "out_objects_1",
|
| 142 |
+
"semantic": "joint_logits",
|
| 143 |
+
"example_shape": [
|
| 144 |
+
1,
|
| 145 |
+
1,
|
| 146 |
+
1,
|
| 147 |
+
1030
|
| 148 |
+
]
|
| 149 |
+
},
|
| 150 |
+
{
|
| 151 |
+
"name": "target_length",
|
| 152 |
+
"semantic": "prednet_length",
|
| 153 |
+
"example_shape": [
|
| 154 |
+
1
|
| 155 |
+
]
|
| 156 |
+
},
|
| 157 |
+
{
|
| 158 |
+
"name": "obj_1",
|
| 159 |
+
"semantic": "output_states_1",
|
| 160 |
+
"example_shape": [
|
| 161 |
+
2,
|
| 162 |
+
1,
|
| 163 |
+
640
|
| 164 |
+
]
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"name": "obj0_1",
|
| 168 |
+
"semantic": "output_states_2",
|
| 169 |
+
"example_shape": [
|
| 170 |
+
2,
|
| 171 |
+
1,
|
| 172 |
+
640
|
| 173 |
+
]
|
| 174 |
+
}
|
| 175 |
+
]
|
| 176 |
+
}
|
| 177 |
+
},
|
| 178 |
+
"export": {
|
| 179 |
+
"adapter_sha256": "9a383c2bdcc73af356dfec87351993230fac58f3834c2fbafcc0517f07a2ea9b",
|
| 180 |
+
"torch_version": "2.12.1",
|
| 181 |
+
"coremltools_version": "9.0",
|
| 182 |
+
"host": "macOS-26.3.1-arm64-arm-64bit"
|
| 183 |
+
}
|
| 184 |
+
}
|
coreml/models/ParakeetDecoderJoint.mlpackage/Data/com.apple.CoreML/model.mlmodel
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c9bad0916cc00c4e8481eff04eb09eb7e897a02e892dadaeac976cb53ea6642
|
| 3 |
+
size 11814
|
coreml/models/ParakeetDecoderJoint.mlpackage/Data/com.apple.CoreML/weights/weight.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c5dc0db30702cc58dc0accd6ec79cfa0c61c8689dc0c4745b3aea70a2898994
|
| 3 |
+
size 35765696
|
coreml/models/ParakeetDecoderJoint.mlpackage/Manifest.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"fileFormatVersion": "1.0.0",
|
| 3 |
+
"itemInfoEntries": {
|
| 4 |
+
"3580A37F-14D3-458F-ADA2-283CA91C7EF4": {
|
| 5 |
+
"author": "com.apple.CoreML",
|
| 6 |
+
"description": "CoreML Model Specification",
|
| 7 |
+
"name": "model.mlmodel",
|
| 8 |
+
"path": "com.apple.CoreML/model.mlmodel"
|
| 9 |
+
},
|
| 10 |
+
"6AFF90BF-DAC5-483C-97C3-A6543B09FE28": {
|
| 11 |
+
"author": "com.apple.CoreML",
|
| 12 |
+
"description": "CoreML Model Weights",
|
| 13 |
+
"name": "weights",
|
| 14 |
+
"path": "com.apple.CoreML/weights"
|
| 15 |
+
}
|
| 16 |
+
},
|
| 17 |
+
"rootModelIdentifier": "3580A37F-14D3-458F-ADA2-283CA91C7EF4"
|
| 18 |
+
}
|
coreml/models/ParakeetEncoder.mlpackage/Data/com.apple.CoreML/model.mlmodel
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:047f8cbac11138cccda76094e3c04c58b29478d768a136e9160eb30dae8e7647
|
| 3 |
+
size 799578
|
coreml/models/ParakeetEncoder.mlpackage/Data/com.apple.CoreML/weights/weight.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f8707457d05fc07e67c26c5f856b8b1d778e9491ef29f8a4e0f0feafd51a6b9
|
| 3 |
+
size 2490413760
|
coreml/models/ParakeetEncoder.mlpackage/Manifest.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"fileFormatVersion": "1.0.0",
|
| 3 |
+
"itemInfoEntries": {
|
| 4 |
+
"29A54C73-6974-49A9-B168-7E587DDB2300": {
|
| 5 |
+
"author": "com.apple.CoreML",
|
| 6 |
+
"description": "CoreML Model Weights",
|
| 7 |
+
"name": "weights",
|
| 8 |
+
"path": "com.apple.CoreML/weights"
|
| 9 |
+
},
|
| 10 |
+
"A123987E-3B69-471C-8C05-60DD667E9A60": {
|
| 11 |
+
"author": "com.apple.CoreML",
|
| 12 |
+
"description": "CoreML Model Specification",
|
| 13 |
+
"name": "model.mlmodel",
|
| 14 |
+
"path": "com.apple.CoreML/model.mlmodel"
|
| 15 |
+
}
|
| 16 |
+
},
|
| 17 |
+
"rootModelIdentifier": "A123987E-3B69-471C-8C05-60DD667E9A60"
|
| 18 |
+
}
|
coreml/tokens.txt
ADDED
|
@@ -0,0 +1,1024 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<unk>
|
| 2 |
+
▁t
|
| 3 |
+
▁th
|
| 4 |
+
▁a
|
| 5 |
+
in
|
| 6 |
+
▁the
|
| 7 |
+
re
|
| 8 |
+
▁w
|
| 9 |
+
▁o
|
| 10 |
+
▁s
|
| 11 |
+
at
|
| 12 |
+
ou
|
| 13 |
+
er
|
| 14 |
+
nd
|
| 15 |
+
▁i
|
| 16 |
+
▁b
|
| 17 |
+
▁c
|
| 18 |
+
on
|
| 19 |
+
▁h
|
| 20 |
+
ing
|
| 21 |
+
▁to
|
| 22 |
+
▁m
|
| 23 |
+
en
|
| 24 |
+
▁f
|
| 25 |
+
▁p
|
| 26 |
+
an
|
| 27 |
+
▁d
|
| 28 |
+
es
|
| 29 |
+
or
|
| 30 |
+
ll
|
| 31 |
+
▁of
|
| 32 |
+
▁and
|
| 33 |
+
▁y
|
| 34 |
+
▁l
|
| 35 |
+
▁I
|
| 36 |
+
it
|
| 37 |
+
▁in
|
| 38 |
+
is
|
| 39 |
+
ed
|
| 40 |
+
▁g
|
| 41 |
+
▁you
|
| 42 |
+
ar
|
| 43 |
+
▁that
|
| 44 |
+
om
|
| 45 |
+
as
|
| 46 |
+
▁n
|
| 47 |
+
ve
|
| 48 |
+
us
|
| 49 |
+
ic
|
| 50 |
+
ow
|
| 51 |
+
al
|
| 52 |
+
▁it
|
| 53 |
+
▁be
|
| 54 |
+
▁wh
|
| 55 |
+
le
|
| 56 |
+
ion
|
| 57 |
+
ut
|
| 58 |
+
ot
|
| 59 |
+
▁we
|
| 60 |
+
▁is
|
| 61 |
+
▁e
|
| 62 |
+
et
|
| 63 |
+
ay
|
| 64 |
+
▁re
|
| 65 |
+
▁on
|
| 66 |
+
▁T
|
| 67 |
+
▁A
|
| 68 |
+
▁ha
|
| 69 |
+
ent
|
| 70 |
+
ke
|
| 71 |
+
ct
|
| 72 |
+
▁S
|
| 73 |
+
ig
|
| 74 |
+
ver
|
| 75 |
+
▁Th
|
| 76 |
+
all
|
| 77 |
+
id
|
| 78 |
+
▁for
|
| 79 |
+
ro
|
| 80 |
+
▁he
|
| 81 |
+
se
|
| 82 |
+
▁this
|
| 83 |
+
ld
|
| 84 |
+
ly
|
| 85 |
+
▁go
|
| 86 |
+
▁k
|
| 87 |
+
▁st
|
| 88 |
+
st
|
| 89 |
+
ch
|
| 90 |
+
▁li
|
| 91 |
+
▁u
|
| 92 |
+
am
|
| 93 |
+
ur
|
| 94 |
+
ce
|
| 95 |
+
ith
|
| 96 |
+
im
|
| 97 |
+
▁so
|
| 98 |
+
▁have
|
| 99 |
+
▁do
|
| 100 |
+
ht
|
| 101 |
+
th
|
| 102 |
+
▁an
|
| 103 |
+
▁with
|
| 104 |
+
ad
|
| 105 |
+
▁r
|
| 106 |
+
ir
|
| 107 |
+
▁was
|
| 108 |
+
▁as
|
| 109 |
+
▁W
|
| 110 |
+
▁are
|
| 111 |
+
ust
|
| 112 |
+
ally
|
| 113 |
+
▁j
|
| 114 |
+
▁se
|
| 115 |
+
ation
|
| 116 |
+
od
|
| 117 |
+
ere
|
| 118 |
+
▁like
|
| 119 |
+
▁not
|
| 120 |
+
▁kn
|
| 121 |
+
ight
|
| 122 |
+
▁B
|
| 123 |
+
▁they
|
| 124 |
+
▁And
|
| 125 |
+
▁know
|
| 126 |
+
ome
|
| 127 |
+
op
|
| 128 |
+
▁can
|
| 129 |
+
▁or
|
| 130 |
+
▁sh
|
| 131 |
+
▁me
|
| 132 |
+
ill
|
| 133 |
+
ant
|
| 134 |
+
ck
|
| 135 |
+
▁what
|
| 136 |
+
▁at
|
| 137 |
+
▁ab
|
| 138 |
+
ould
|
| 139 |
+
ol
|
| 140 |
+
▁So
|
| 141 |
+
▁C
|
| 142 |
+
use
|
| 143 |
+
ter
|
| 144 |
+
il
|
| 145 |
+
▁but
|
| 146 |
+
▁just
|
| 147 |
+
▁ne
|
| 148 |
+
▁de
|
| 149 |
+
ra
|
| 150 |
+
ore
|
| 151 |
+
▁there
|
| 152 |
+
ul
|
| 153 |
+
out
|
| 154 |
+
▁con
|
| 155 |
+
▁all
|
| 156 |
+
▁The
|
| 157 |
+
ers
|
| 158 |
+
▁H
|
| 159 |
+
▁fr
|
| 160 |
+
▁pro
|
| 161 |
+
ge
|
| 162 |
+
ea
|
| 163 |
+
▁Y
|
| 164 |
+
▁O
|
| 165 |
+
▁M
|
| 166 |
+
pp
|
| 167 |
+
▁com
|
| 168 |
+
ess
|
| 169 |
+
▁ch
|
| 170 |
+
▁al
|
| 171 |
+
est
|
| 172 |
+
ate
|
| 173 |
+
qu
|
| 174 |
+
▁lo
|
| 175 |
+
▁ex
|
| 176 |
+
very
|
| 177 |
+
▁su
|
| 178 |
+
ain
|
| 179 |
+
▁one
|
| 180 |
+
ca
|
| 181 |
+
art
|
| 182 |
+
ist
|
| 183 |
+
if
|
| 184 |
+
ive
|
| 185 |
+
▁if
|
| 186 |
+
ink
|
| 187 |
+
nt
|
| 188 |
+
ab
|
| 189 |
+
▁about
|
| 190 |
+
▁going
|
| 191 |
+
▁v
|
| 192 |
+
▁wor
|
| 193 |
+
um
|
| 194 |
+
ok
|
| 195 |
+
▁your
|
| 196 |
+
▁my
|
| 197 |
+
ind
|
| 198 |
+
▁get
|
| 199 |
+
cause
|
| 200 |
+
▁from
|
| 201 |
+
▁don
|
| 202 |
+
ri
|
| 203 |
+
pe
|
| 204 |
+
un
|
| 205 |
+
ity
|
| 206 |
+
▁up
|
| 207 |
+
▁P
|
| 208 |
+
▁out
|
| 209 |
+
ort
|
| 210 |
+
▁L
|
| 211 |
+
ment
|
| 212 |
+
el
|
| 213 |
+
▁N
|
| 214 |
+
▁some
|
| 215 |
+
ich
|
| 216 |
+
and
|
| 217 |
+
▁think
|
| 218 |
+
em
|
| 219 |
+
oug
|
| 220 |
+
▁G
|
| 221 |
+
os
|
| 222 |
+
▁D
|
| 223 |
+
res
|
| 224 |
+
▁because
|
| 225 |
+
▁by
|
| 226 |
+
ake
|
| 227 |
+
▁int
|
| 228 |
+
ie
|
| 229 |
+
▁us
|
| 230 |
+
▁tr
|
| 231 |
+
▁then
|
| 232 |
+
ack
|
| 233 |
+
▁pl
|
| 234 |
+
▁here
|
| 235 |
+
▁pe
|
| 236 |
+
her
|
| 237 |
+
▁will
|
| 238 |
+
▁F
|
| 239 |
+
▁which
|
| 240 |
+
ard
|
| 241 |
+
▁right
|
| 242 |
+
▁thing
|
| 243 |
+
▁want
|
| 244 |
+
ies
|
| 245 |
+
ople
|
| 246 |
+
▁It
|
| 247 |
+
▁them
|
| 248 |
+
ame
|
| 249 |
+
▁We
|
| 250 |
+
our
|
| 251 |
+
▁say
|
| 252 |
+
▁R
|
| 253 |
+
▁people
|
| 254 |
+
▁see
|
| 255 |
+
▁who
|
| 256 |
+
ast
|
| 257 |
+
ure
|
| 258 |
+
ect
|
| 259 |
+
ear
|
| 260 |
+
▁tim
|
| 261 |
+
▁E
|
| 262 |
+
▁You
|
| 263 |
+
▁would
|
| 264 |
+
▁when
|
| 265 |
+
ven
|
| 266 |
+
▁our
|
| 267 |
+
ci
|
| 268 |
+
▁really
|
| 269 |
+
▁more
|
| 270 |
+
ound
|
| 271 |
+
ose
|
| 272 |
+
ak
|
| 273 |
+
▁co
|
| 274 |
+
ide
|
| 275 |
+
ough
|
| 276 |
+
▁had
|
| 277 |
+
so
|
| 278 |
+
▁qu
|
| 279 |
+
eah
|
| 280 |
+
▁were
|
| 281 |
+
ine
|
| 282 |
+
▁act
|
| 283 |
+
ther
|
| 284 |
+
▁these
|
| 285 |
+
▁how
|
| 286 |
+
▁now
|
| 287 |
+
▁sa
|
| 288 |
+
ud
|
| 289 |
+
▁Wh
|
| 290 |
+
▁man
|
| 291 |
+
ous
|
| 292 |
+
one
|
| 293 |
+
pt
|
| 294 |
+
ff
|
| 295 |
+
ong
|
| 296 |
+
▁has
|
| 297 |
+
▁any
|
| 298 |
+
▁very
|
| 299 |
+
▁But
|
| 300 |
+
▁look
|
| 301 |
+
iv
|
| 302 |
+
itt
|
| 303 |
+
▁time
|
| 304 |
+
▁mo
|
| 305 |
+
▁ar
|
| 306 |
+
hing
|
| 307 |
+
▁le
|
| 308 |
+
▁work
|
| 309 |
+
▁their
|
| 310 |
+
are
|
| 311 |
+
▁his
|
| 312 |
+
per
|
| 313 |
+
ions
|
| 314 |
+
▁im
|
| 315 |
+
▁ag
|
| 316 |
+
▁J
|
| 317 |
+
▁no
|
| 318 |
+
▁en
|
| 319 |
+
▁got
|
| 320 |
+
ag
|
| 321 |
+
▁sp
|
| 322 |
+
ans
|
| 323 |
+
act
|
| 324 |
+
▁te
|
| 325 |
+
▁also
|
| 326 |
+
iz
|
| 327 |
+
ice
|
| 328 |
+
▁That
|
| 329 |
+
▁cl
|
| 330 |
+
▁been
|
| 331 |
+
▁way
|
| 332 |
+
▁fe
|
| 333 |
+
▁did
|
| 334 |
+
ple
|
| 335 |
+
ually
|
| 336 |
+
▁other
|
| 337 |
+
▁U
|
| 338 |
+
ite
|
| 339 |
+
age
|
| 340 |
+
omet
|
| 341 |
+
ber
|
| 342 |
+
reat
|
| 343 |
+
ree
|
| 344 |
+
▁into
|
| 345 |
+
own
|
| 346 |
+
▁tw
|
| 347 |
+
▁part
|
| 348 |
+
alk
|
| 349 |
+
▁where
|
| 350 |
+
▁need
|
| 351 |
+
▁every
|
| 352 |
+
pl
|
| 353 |
+
▁ad
|
| 354 |
+
ry
|
| 355 |
+
▁over
|
| 356 |
+
ble
|
| 357 |
+
ap
|
| 358 |
+
ue
|
| 359 |
+
▁kind
|
| 360 |
+
▁po
|
| 361 |
+
▁back
|
| 362 |
+
▁cont
|
| 363 |
+
iff
|
| 364 |
+
▁somet
|
| 365 |
+
▁pr
|
| 366 |
+
nder
|
| 367 |
+
ire
|
| 368 |
+
▁good
|
| 369 |
+
▁than
|
| 370 |
+
ace
|
| 371 |
+
▁gu
|
| 372 |
+
ep
|
| 373 |
+
og
|
| 374 |
+
ick
|
| 375 |
+
way
|
| 376 |
+
▁lot
|
| 377 |
+
▁un
|
| 378 |
+
▁things
|
| 379 |
+
▁In
|
| 380 |
+
ish
|
| 381 |
+
kay
|
| 382 |
+
▁well
|
| 383 |
+
▁could
|
| 384 |
+
▁pre
|
| 385 |
+
▁two
|
| 386 |
+
irst
|
| 387 |
+
▁diff
|
| 388 |
+
ach
|
| 389 |
+
cc
|
| 390 |
+
ittle
|
| 391 |
+
int
|
| 392 |
+
▁He
|
| 393 |
+
▁those
|
| 394 |
+
ence
|
| 395 |
+
ip
|
| 396 |
+
ase
|
| 397 |
+
▁him
|
| 398 |
+
▁make
|
| 399 |
+
▁little
|
| 400 |
+
ical
|
| 401 |
+
▁gr
|
| 402 |
+
▁year
|
| 403 |
+
ass
|
| 404 |
+
▁thr
|
| 405 |
+
uch
|
| 406 |
+
ated
|
| 407 |
+
▁This
|
| 408 |
+
▁off
|
| 409 |
+
▁res
|
| 410 |
+
ac
|
| 411 |
+
ance
|
| 412 |
+
▁actually
|
| 413 |
+
▁talk
|
| 414 |
+
ult
|
| 415 |
+
able
|
| 416 |
+
orm
|
| 417 |
+
▁dis
|
| 418 |
+
▁first
|
| 419 |
+
ations
|
| 420 |
+
▁something
|
| 421 |
+
▁she
|
| 422 |
+
sel
|
| 423 |
+
▁let
|
| 424 |
+
ord
|
| 425 |
+
▁may
|
| 426 |
+
ia
|
| 427 |
+
▁am
|
| 428 |
+
▁her
|
| 429 |
+
▁said
|
| 430 |
+
▁bo
|
| 431 |
+
be
|
| 432 |
+
ount
|
| 433 |
+
▁much
|
| 434 |
+
▁per
|
| 435 |
+
▁even
|
| 436 |
+
▁differe
|
| 437 |
+
vel
|
| 438 |
+
ary
|
| 439 |
+
▁app
|
| 440 |
+
ving
|
| 441 |
+
▁comm
|
| 442 |
+
▁imp
|
| 443 |
+
ys
|
| 444 |
+
▁again
|
| 445 |
+
ress
|
| 446 |
+
▁yeah
|
| 447 |
+
▁down
|
| 448 |
+
ang
|
| 449 |
+
▁mean
|
| 450 |
+
na
|
| 451 |
+
ens
|
| 452 |
+
▁does
|
| 453 |
+
▁fo
|
| 454 |
+
▁comp
|
| 455 |
+
▁ro
|
| 456 |
+
▁bl
|
| 457 |
+
ody
|
| 458 |
+
▁K
|
| 459 |
+
▁through
|
| 460 |
+
▁start
|
| 461 |
+
uct
|
| 462 |
+
▁only
|
| 463 |
+
▁bet
|
| 464 |
+
▁under
|
| 465 |
+
▁br
|
| 466 |
+
▁take
|
| 467 |
+
ning
|
| 468 |
+
▁bu
|
| 469 |
+
▁use
|
| 470 |
+
▁Ch
|
| 471 |
+
xt
|
| 472 |
+
co
|
| 473 |
+
ory
|
| 474 |
+
ild
|
| 475 |
+
▁put
|
| 476 |
+
▁call
|
| 477 |
+
▁new
|
| 478 |
+
other
|
| 479 |
+
ting
|
| 480 |
+
▁happ
|
| 481 |
+
ater
|
| 482 |
+
▁inc
|
| 483 |
+
ition
|
| 484 |
+
▁different
|
| 485 |
+
▁should
|
| 486 |
+
ade
|
| 487 |
+
ign
|
| 488 |
+
thing
|
| 489 |
+
▁day
|
| 490 |
+
fore
|
| 491 |
+
▁Yeah
|
| 492 |
+
ark
|
| 493 |
+
ile
|
| 494 |
+
ial
|
| 495 |
+
▁come
|
| 496 |
+
▁They
|
| 497 |
+
▁being
|
| 498 |
+
▁try
|
| 499 |
+
ious
|
| 500 |
+
▁sc
|
| 501 |
+
▁bit
|
| 502 |
+
▁spe
|
| 503 |
+
ub
|
| 504 |
+
fe
|
| 505 |
+
▁doing
|
| 506 |
+
▁St
|
| 507 |
+
vers
|
| 508 |
+
av
|
| 509 |
+
ty
|
| 510 |
+
ian
|
| 511 |
+
onna
|
| 512 |
+
red
|
| 513 |
+
wn
|
| 514 |
+
▁ke
|
| 515 |
+
form
|
| 516 |
+
ors
|
| 517 |
+
▁fl
|
| 518 |
+
fter
|
| 519 |
+
ail
|
| 520 |
+
ents
|
| 521 |
+
▁gonna
|
| 522 |
+
▁point
|
| 523 |
+
ces
|
| 524 |
+
▁There
|
| 525 |
+
self
|
| 526 |
+
▁many
|
| 527 |
+
▁If
|
| 528 |
+
▁same
|
| 529 |
+
▁sy
|
| 530 |
+
▁quest
|
| 531 |
+
▁most
|
| 532 |
+
▁great
|
| 533 |
+
▁What
|
| 534 |
+
▁fu
|
| 535 |
+
ug
|
| 536 |
+
▁show
|
| 537 |
+
we
|
| 538 |
+
ual
|
| 539 |
+
ons
|
| 540 |
+
▁Be
|
| 541 |
+
ically
|
| 542 |
+
▁ser
|
| 543 |
+
▁rem
|
| 544 |
+
▁ind
|
| 545 |
+
▁pers
|
| 546 |
+
▁V
|
| 547 |
+
he
|
| 548 |
+
▁str
|
| 549 |
+
ved
|
| 550 |
+
▁still
|
| 551 |
+
ank
|
| 552 |
+
▁rec
|
| 553 |
+
▁wr
|
| 554 |
+
ought
|
| 555 |
+
day
|
| 556 |
+
ath
|
| 557 |
+
▁end
|
| 558 |
+
▁bas
|
| 559 |
+
ft
|
| 560 |
+
erm
|
| 561 |
+
body
|
| 562 |
+
ph
|
| 563 |
+
ject
|
| 564 |
+
ict
|
| 565 |
+
▁play
|
| 566 |
+
▁Is
|
| 567 |
+
ates
|
| 568 |
+
▁ph
|
| 569 |
+
oth
|
| 570 |
+
▁acc
|
| 571 |
+
get
|
| 572 |
+
▁years
|
| 573 |
+
▁em
|
| 574 |
+
▁id
|
| 575 |
+
▁Oh
|
| 576 |
+
ves
|
| 577 |
+
ever
|
| 578 |
+
▁inter
|
| 579 |
+
▁rel
|
| 580 |
+
▁before
|
| 581 |
+
▁feel
|
| 582 |
+
igh
|
| 583 |
+
▁three
|
| 584 |
+
iss
|
| 585 |
+
▁des
|
| 586 |
+
ne
|
| 587 |
+
▁why
|
| 588 |
+
▁uh
|
| 589 |
+
▁To
|
| 590 |
+
▁cons
|
| 591 |
+
▁hel
|
| 592 |
+
▁after
|
| 593 |
+
ower
|
| 594 |
+
urn
|
| 595 |
+
▁okay
|
| 596 |
+
▁long
|
| 597 |
+
▁bel
|
| 598 |
+
▁around
|
| 599 |
+
ful
|
| 600 |
+
te
|
| 601 |
+
ise
|
| 602 |
+
▁ob
|
| 603 |
+
▁supp
|
| 604 |
+
ady
|
| 605 |
+
ange
|
| 606 |
+
aking
|
| 607 |
+
▁pos
|
| 608 |
+
atch
|
| 609 |
+
▁tra
|
| 610 |
+
gr
|
| 611 |
+
▁might
|
| 612 |
+
ert
|
| 613 |
+
▁help
|
| 614 |
+
ost
|
| 615 |
+
▁too
|
| 616 |
+
cial
|
| 617 |
+
▁world
|
| 618 |
+
▁give
|
| 619 |
+
ike
|
| 620 |
+
▁Okay
|
| 621 |
+
ways
|
| 622 |
+
▁min
|
| 623 |
+
ward
|
| 624 |
+
ily
|
| 625 |
+
▁gen
|
| 626 |
+
▁find
|
| 627 |
+
▁dec
|
| 628 |
+
ular
|
| 629 |
+
ob
|
| 630 |
+
▁tell
|
| 631 |
+
▁Now
|
| 632 |
+
▁sm
|
| 633 |
+
▁cour
|
| 634 |
+
▁real
|
| 635 |
+
cess
|
| 636 |
+
nds
|
| 637 |
+
▁big
|
| 638 |
+
▁num
|
| 639 |
+
ction
|
| 640 |
+
▁add
|
| 641 |
+
▁set
|
| 642 |
+
▁um
|
| 643 |
+
ood
|
| 644 |
+
ible
|
| 645 |
+
▁own
|
| 646 |
+
▁life
|
| 647 |
+
ities
|
| 648 |
+
▁its
|
| 649 |
+
▁God
|
| 650 |
+
pect
|
| 651 |
+
▁didn
|
| 652 |
+
stem
|
| 653 |
+
les
|
| 654 |
+
uc
|
| 655 |
+
ib
|
| 656 |
+
ating
|
| 657 |
+
olog
|
| 658 |
+
▁person
|
| 659 |
+
▁inv
|
| 660 |
+
ably
|
| 661 |
+
▁sure
|
| 662 |
+
▁reg
|
| 663 |
+
lic
|
| 664 |
+
▁stu
|
| 665 |
+
▁cr
|
| 666 |
+
▁ev
|
| 667 |
+
ments
|
| 668 |
+
▁another
|
| 669 |
+
▁la
|
| 670 |
+
▁last
|
| 671 |
+
▁sub
|
| 672 |
+
▁att
|
| 673 |
+
▁op
|
| 674 |
+
▁inst
|
| 675 |
+
▁sl
|
| 676 |
+
▁happen
|
| 677 |
+
▁rep
|
| 678 |
+
▁import
|
| 679 |
+
ific
|
| 680 |
+
ix
|
| 681 |
+
▁made
|
| 682 |
+
▁ear
|
| 683 |
+
▁ac
|
| 684 |
+
▁def
|
| 685 |
+
ute
|
| 686 |
+
▁next
|
| 687 |
+
ative
|
| 688 |
+
▁form
|
| 689 |
+
▁guys
|
| 690 |
+
▁system
|
| 691 |
+
ew
|
| 692 |
+
▁able
|
| 693 |
+
ied
|
| 694 |
+
▁always
|
| 695 |
+
ren
|
| 696 |
+
erest
|
| 697 |
+
▁As
|
| 698 |
+
▁mod
|
| 699 |
+
▁done
|
| 700 |
+
ings
|
| 701 |
+
▁love
|
| 702 |
+
ism
|
| 703 |
+
▁ask
|
| 704 |
+
old
|
| 705 |
+
ered
|
| 706 |
+
▁trans
|
| 707 |
+
▁count
|
| 708 |
+
ility
|
| 709 |
+
▁high
|
| 710 |
+
▁fin
|
| 711 |
+
▁prob
|
| 712 |
+
▁pol
|
| 713 |
+
▁exam
|
| 714 |
+
▁pres
|
| 715 |
+
▁maybe
|
| 716 |
+
ell
|
| 717 |
+
▁stud
|
| 718 |
+
▁prod
|
| 719 |
+
▁car
|
| 720 |
+
ock
|
| 721 |
+
▁used
|
| 722 |
+
oy
|
| 723 |
+
stand
|
| 724 |
+
▁No
|
| 725 |
+
▁mon
|
| 726 |
+
ks
|
| 727 |
+
▁interest
|
| 728 |
+
▁ent
|
| 729 |
+
ited
|
| 730 |
+
▁sort
|
| 731 |
+
▁For
|
| 732 |
+
▁today
|
| 733 |
+
ics
|
| 734 |
+
▁vide
|
| 735 |
+
▁bec
|
| 736 |
+
▁Well
|
| 737 |
+
▁Al
|
| 738 |
+
▁important
|
| 739 |
+
▁such
|
| 740 |
+
▁run
|
| 741 |
+
▁keep
|
| 742 |
+
▁fact
|
| 743 |
+
ata
|
| 744 |
+
ss
|
| 745 |
+
▁never
|
| 746 |
+
ween
|
| 747 |
+
▁stuff
|
| 748 |
+
ract
|
| 749 |
+
▁question
|
| 750 |
+
als
|
| 751 |
+
▁sim
|
| 752 |
+
vern
|
| 753 |
+
ather
|
| 754 |
+
��course
|
| 755 |
+
▁Of
|
| 756 |
+
oc
|
| 757 |
+
ness
|
| 758 |
+
arch
|
| 759 |
+
ize
|
| 760 |
+
▁All
|
| 761 |
+
ense
|
| 762 |
+
blem
|
| 763 |
+
▁probably
|
| 764 |
+
hip
|
| 765 |
+
▁number
|
| 766 |
+
ention
|
| 767 |
+
▁saying
|
| 768 |
+
▁commun
|
| 769 |
+
▁An
|
| 770 |
+
akes
|
| 771 |
+
▁belie
|
| 772 |
+
▁between
|
| 773 |
+
▁better
|
| 774 |
+
cus
|
| 775 |
+
▁place
|
| 776 |
+
▁gener
|
| 777 |
+
▁ca
|
| 778 |
+
▁ins
|
| 779 |
+
▁ass
|
| 780 |
+
cond
|
| 781 |
+
cept
|
| 782 |
+
ull
|
| 783 |
+
▁understand
|
| 784 |
+
▁fun
|
| 785 |
+
▁thought
|
| 786 |
+
gan
|
| 787 |
+
iew
|
| 788 |
+
cy
|
| 789 |
+
ution
|
| 790 |
+
ope
|
| 791 |
+
ason
|
| 792 |
+
▁problem
|
| 793 |
+
▁doesn
|
| 794 |
+
ational
|
| 795 |
+
▁read
|
| 796 |
+
▁trying
|
| 797 |
+
▁sch
|
| 798 |
+
▁el
|
| 799 |
+
ah
|
| 800 |
+
atter
|
| 801 |
+
▁exper
|
| 802 |
+
▁four
|
| 803 |
+
▁ele
|
| 804 |
+
▁cou
|
| 805 |
+
ont
|
| 806 |
+
▁called
|
| 807 |
+
▁partic
|
| 808 |
+
▁open
|
| 809 |
+
▁gl
|
| 810 |
+
▁everything
|
| 811 |
+
▁eff
|
| 812 |
+
▁getting
|
| 813 |
+
▁ty
|
| 814 |
+
▁Am
|
| 815 |
+
▁Because
|
| 816 |
+
ave
|
| 817 |
+
▁met
|
| 818 |
+
▁Like
|
| 819 |
+
oney
|
| 820 |
+
▁
|
| 821 |
+
e
|
| 822 |
+
t
|
| 823 |
+
o
|
| 824 |
+
a
|
| 825 |
+
n
|
| 826 |
+
i
|
| 827 |
+
s
|
| 828 |
+
h
|
| 829 |
+
r
|
| 830 |
+
l
|
| 831 |
+
d
|
| 832 |
+
u
|
| 833 |
+
c
|
| 834 |
+
y
|
| 835 |
+
m
|
| 836 |
+
g
|
| 837 |
+
w
|
| 838 |
+
f
|
| 839 |
+
p
|
| 840 |
+
,
|
| 841 |
+
b
|
| 842 |
+
.
|
| 843 |
+
k
|
| 844 |
+
v
|
| 845 |
+
'
|
| 846 |
+
I
|
| 847 |
+
T
|
| 848 |
+
A
|
| 849 |
+
S
|
| 850 |
+
j
|
| 851 |
+
x
|
| 852 |
+
W
|
| 853 |
+
B
|
| 854 |
+
C
|
| 855 |
+
?
|
| 856 |
+
0
|
| 857 |
+
O
|
| 858 |
+
-
|
| 859 |
+
M
|
| 860 |
+
H
|
| 861 |
+
Y
|
| 862 |
+
q
|
| 863 |
+
1
|
| 864 |
+
P
|
| 865 |
+
z
|
| 866 |
+
L
|
| 867 |
+
D
|
| 868 |
+
N
|
| 869 |
+
G
|
| 870 |
+
F
|
| 871 |
+
R
|
| 872 |
+
E
|
| 873 |
+
2
|
| 874 |
+
J
|
| 875 |
+
U
|
| 876 |
+
:
|
| 877 |
+
5
|
| 878 |
+
9
|
| 879 |
+
3
|
| 880 |
+
K
|
| 881 |
+
4
|
| 882 |
+
V
|
| 883 |
+
8
|
| 884 |
+
6
|
| 885 |
+
7
|
| 886 |
+
!
|
| 887 |
+
%
|
| 888 |
+
Q
|
| 889 |
+
$
|
| 890 |
+
Z
|
| 891 |
+
X
|
| 892 |
+
é
|
| 893 |
+
/
|
| 894 |
+
í
|
| 895 |
+
á
|
| 896 |
+
£
|
| 897 |
+
ó
|
| 898 |
+
ā
|
| 899 |
+
ü
|
| 900 |
+
ñ
|
| 901 |
+
ö
|
| 902 |
+
è
|
| 903 |
+
ç
|
| 904 |
+
à
|
| 905 |
+
¿
|
| 906 |
+
μ
|
| 907 |
+
π
|
| 908 |
+
ä
|
| 909 |
+
ú
|
| 910 |
+
θ
|
| 911 |
+
ã
|
| 912 |
+
φ
|
| 913 |
+
ī
|
| 914 |
+
σ
|
| 915 |
+
ê
|
| 916 |
+
ρ
|
| 917 |
+
â
|
| 918 |
+
ô
|
| 919 |
+
^
|
| 920 |
+
€
|
| 921 |
+
É
|
| 922 |
+
ū
|
| 923 |
+
Δ
|
| 924 |
+
λ
|
| 925 |
+
α
|
| 926 |
+
τ
|
| 927 |
+
æ
|
| 928 |
+
а
|
| 929 |
+
о
|
| 930 |
+
ν
|
| 931 |
+
î
|
| 932 |
+
γ
|
| 933 |
+
ψ
|
| 934 |
+
ē
|
| 935 |
+
т
|
| 936 |
+
ß
|
| 937 |
+
ω
|
| 938 |
+
ï
|
| 939 |
+
ć
|
| 940 |
+
č
|
| 941 |
+
ε
|
| 942 |
+
е
|
| 943 |
+
и
|
| 944 |
+
ò
|
| 945 |
+
р
|
| 946 |
+
β
|
| 947 |
+
ø
|
| 948 |
+
ł
|
| 949 |
+
δ
|
| 950 |
+
η
|
| 951 |
+
п
|
| 952 |
+
ë
|
| 953 |
+
н
|
| 954 |
+
с
|
| 955 |
+
š
|
| 956 |
+
Ü
|
| 957 |
+
å
|
| 958 |
+
ń
|
| 959 |
+
ś
|
| 960 |
+
я
|
| 961 |
+
đ
|
| 962 |
+
л
|
| 963 |
+
м
|
| 964 |
+
Ö
|
| 965 |
+
û
|
| 966 |
+
ș
|
| 967 |
+
в
|
| 968 |
+
Á
|
| 969 |
+
Ø
|
| 970 |
+
ù
|
| 971 |
+
ο
|
| 972 |
+
ч
|
| 973 |
+
ь
|
| 974 |
+
ž
|
| 975 |
+
Φ
|
| 976 |
+
у
|
| 977 |
+
ę
|
| 978 |
+
ι
|
| 979 |
+
б
|
| 980 |
+
г
|
| 981 |
+
к
|
| 982 |
+
ő
|
| 983 |
+
Ś
|
| 984 |
+
Ω
|
| 985 |
+
κ
|
| 986 |
+
υ
|
| 987 |
+
ì
|
| 988 |
+
Č
|
| 989 |
+
έ
|
| 990 |
+
х
|
| 991 |
+
ы
|
| 992 |
+
Å
|
| 993 |
+
Ç
|
| 994 |
+
ż
|
| 995 |
+
ί
|
| 996 |
+
ζ
|
| 997 |
+
χ
|
| 998 |
+
э
|
| 999 |
+
Æ
|
| 1000 |
+
Í
|
| 1001 |
+
õ
|
| 1002 |
+
ě
|
| 1003 |
+
ħ
|
| 1004 |
+
Ł
|
| 1005 |
+
œ
|
| 1006 |
+
Ž
|
| 1007 |
+
ț
|
| 1008 |
+
Γ
|
| 1009 |
+
П
|
| 1010 |
+
д
|
| 1011 |
+
з
|
| 1012 |
+
ф
|
| 1013 |
+
¡
|
| 1014 |
+
À
|
| 1015 |
+
Î
|
| 1016 |
+
Ā
|
| 1017 |
+
ė
|
| 1018 |
+
Š
|
| 1019 |
+
ź
|
| 1020 |
+
Κ
|
| 1021 |
+
Ψ
|
| 1022 |
+
ά
|
| 1023 |
+
ξ
|
| 1024 |
+
ό
|