rajaramsblr commited on
Commit
99275d6
1 Parent(s): 9a09979

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ en_yt_pipeline-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
37
+ tok2vec/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - token-classification
5
+ language:
6
+ - en
7
+ model-index:
8
+ - name: en_yt_pipeline
9
+ results:
10
+ - task:
11
+ name: NER
12
+ type: token-classification
13
+ metrics:
14
+ - name: NER Precision
15
+ type: precision
16
+ value: 0.987804878
17
+ - name: NER Recall
18
+ type: recall
19
+ value: 0.987804878
20
+ - name: NER F Score
21
+ type: f_score
22
+ value: 0.987804878
23
+ ---
24
+ | Feature | Description |
25
+ | --- | --- |
26
+ | **Name** | `en_yt_pipeline` |
27
+ | **Version** | `0.0.0` |
28
+ | **spaCy** | `>=3.7.4,<3.8.0` |
29
+ | **Default Pipeline** | `tok2vec`, `ner` |
30
+ | **Components** | `tok2vec`, `ner` |
31
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
32
+ | **Sources** | n/a |
33
+ | **License** | n/a |
34
+ | **Author** | [n/a]() |
35
+
36
+ ### Label Scheme
37
+
38
+ <details>
39
+
40
+ <summary>View label scheme (3 labels for 1 components)</summary>
41
+
42
+ | Component | Labels |
43
+ | --- | --- |
44
+ | **`ner`** | `MEDICALCONDITION`, `MEDICINE`, `PATHOGEN` |
45
+
46
+ </details>
47
+
48
+ ### Accuracy
49
+
50
+ | Type | Score |
51
+ | --- | --- |
52
+ | `ENTS_F` | 98.78 |
53
+ | `ENTS_P` | 98.78 |
54
+ | `ENTS_R` | 98.78 |
55
+ | `TOK2VEC_LOSS` | 38256.90 |
56
+ | `NER_LOSS` | 27148.03 |
config.cfg ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "./train.spacy"
3
+ dev = "./train.spacy"
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ gpu_allocator = null
9
+ seed = 0
10
+
11
+ [nlp]
12
+ lang = "en"
13
+ pipeline = ["tok2vec","ner"]
14
+ batch_size = 1000
15
+ disabled = []
16
+ before_creation = null
17
+ after_creation = null
18
+ after_pipeline_creation = null
19
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
20
+ vectors = {"@vectors":"spacy.Vectors.v1"}
21
+
22
+ [components]
23
+
24
+ [components.ner]
25
+ factory = "ner"
26
+ incorrect_spans_key = null
27
+ moves = null
28
+ scorer = {"@scorers":"spacy.ner_scorer.v1"}
29
+ update_with_oracle_cut_size = 100
30
+
31
+ [components.ner.model]
32
+ @architectures = "spacy.TransitionBasedParser.v2"
33
+ state_type = "ner"
34
+ extra_state_tokens = false
35
+ hidden_width = 64
36
+ maxout_pieces = 2
37
+ use_upper = true
38
+ nO = null
39
+
40
+ [components.ner.model.tok2vec]
41
+ @architectures = "spacy.Tok2VecListener.v1"
42
+ width = ${components.tok2vec.model.encode.width}
43
+ upstream = "*"
44
+
45
+ [components.tok2vec]
46
+ factory = "tok2vec"
47
+
48
+ [components.tok2vec.model]
49
+ @architectures = "spacy.Tok2Vec.v2"
50
+
51
+ [components.tok2vec.model.embed]
52
+ @architectures = "spacy.MultiHashEmbed.v2"
53
+ width = ${components.tok2vec.model.encode.width}
54
+ attrs = ["NORM","PREFIX","SUFFIX","SHAPE"]
55
+ rows = [5000,1000,2500,2500]
56
+ include_static_vectors = false
57
+
58
+ [components.tok2vec.model.encode]
59
+ @architectures = "spacy.MaxoutWindowEncoder.v2"
60
+ width = 96
61
+ depth = 4
62
+ window_size = 1
63
+ maxout_pieces = 3
64
+
65
+ [corpora]
66
+
67
+ [corpora.dev]
68
+ @readers = "spacy.Corpus.v1"
69
+ path = ${paths.dev}
70
+ max_length = 0
71
+ gold_preproc = false
72
+ limit = 0
73
+ augmenter = null
74
+
75
+ [corpora.train]
76
+ @readers = "spacy.Corpus.v1"
77
+ path = ${paths.train}
78
+ max_length = 0
79
+ gold_preproc = false
80
+ limit = 0
81
+ augmenter = null
82
+
83
+ [training]
84
+ dev_corpus = "corpora.dev"
85
+ train_corpus = "corpora.train"
86
+ seed = ${system.seed}
87
+ gpu_allocator = ${system.gpu_allocator}
88
+ dropout = 0.1
89
+ accumulate_gradient = 1
90
+ patience = 1600
91
+ max_epochs = 0
92
+ max_steps = 20000
93
+ eval_frequency = 200
94
+ frozen_components = []
95
+ annotating_components = []
96
+ before_to_disk = null
97
+ before_update = null
98
+
99
+ [training.batcher]
100
+ @batchers = "spacy.batch_by_words.v1"
101
+ discard_oversize = false
102
+ tolerance = 0.2
103
+ get_length = null
104
+
105
+ [training.batcher.size]
106
+ @schedules = "compounding.v1"
107
+ start = 100
108
+ stop = 1000
109
+ compound = 1.001
110
+ t = 0.0
111
+
112
+ [training.logger]
113
+ @loggers = "spacy.ConsoleLogger.v1"
114
+ progress_bar = false
115
+
116
+ [training.optimizer]
117
+ @optimizers = "Adam.v1"
118
+ beta1 = 0.9
119
+ beta2 = 0.999
120
+ L2_is_weight_decay = true
121
+ L2 = 0.01
122
+ grad_clip = 1.0
123
+ use_averages = false
124
+ eps = 0.00000001
125
+ learn_rate = 0.001
126
+
127
+ [training.score_weights]
128
+ ents_f = 1.0
129
+ ents_p = 0.0
130
+ ents_r = 0.0
131
+ ents_per_type = null
132
+
133
+ [pretraining]
134
+
135
+ [initialize]
136
+ vectors = ${paths.vectors}
137
+ init_tok2vec = ${paths.init_tok2vec}
138
+ vocab_data = null
139
+ lookups = null
140
+ before_init = null
141
+ after_init = null
142
+
143
+ [initialize.components]
144
+
145
+ [initialize.tokenizer]
en_yt_pipeline-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d340a42f9546124eea2b9bdb241b65a3ca22869fce8a87763e7f7d80281df096
3
+ size 5686878
meta.json ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"yt_pipeline",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.7.4,<3.8.0",
11
+ "spacy_git_version":"bff8725f4",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "tok2vec":[
20
+
21
+ ],
22
+ "ner":[
23
+ "MEDICALCONDITION",
24
+ "MEDICINE",
25
+ "PATHOGEN"
26
+ ]
27
+ },
28
+ "pipeline":[
29
+ "tok2vec",
30
+ "ner"
31
+ ],
32
+ "components":[
33
+ "tok2vec",
34
+ "ner"
35
+ ],
36
+ "disabled":[
37
+
38
+ ],
39
+ "performance":{
40
+ "ents_f":0.987804878,
41
+ "ents_p":0.987804878,
42
+ "ents_r":0.987804878,
43
+ "ents_per_type":{
44
+ "MEDICINE":{
45
+ "p":1.0,
46
+ "r":1.0,
47
+ "f":1.0
48
+ },
49
+ "MEDICALCONDITION":{
50
+ "p":0.98,
51
+ "r":0.98,
52
+ "f":0.98
53
+ },
54
+ "PATHOGEN":{
55
+ "p":0.9833333333,
56
+ "r":0.9833333333,
57
+ "f":0.9833333333
58
+ }
59
+ },
60
+ "tok2vec_loss":382.5690433939,
61
+ "ner_loss":271.4802633585
62
+ },
63
+ "requirements":[
64
+
65
+ ]
66
+ }
ner/cfg ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "moves":null,
3
+ "update_with_oracle_cut_size":100,
4
+ "multitasks":[
5
+
6
+ ],
7
+ "min_action_freq":1,
8
+ "learn_tokens":false,
9
+ "beam_width":1,
10
+ "beam_density":0.0,
11
+ "beam_update_prob":0.0,
12
+ "incorrect_spans_key":null
13
+ }
ner/model ADDED
Binary file (130 kB). View file
 
ner/moves ADDED
Binary file (280 Bytes). View file
 
tok2vec/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+
3
+ }
tok2vec/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e68e70d9f59dd487b606a1f6bd9c6248585ab838369fb7c33e14d468ddbd6c0d
3
+ size 6009091
tokenizer ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ ��prefix_search� �^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^〈|^〉|^⟦|^⟧|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
2
+ ��A�
3
+ � ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven’t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That's��A�ThatC�that�A�'sC�'s�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thats��A�ThatC�that�A�s�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’s��A�ThatC�that�A�’sC�'s�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This's��A�ThisC�this�A�'sC�'s�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thiss��A�ThisC�this�A�s�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’s��A�ThisC�this�A�’sC�'s�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A���dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that's��A�thatC�that�A�'sC�'s�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thats��A�thatC�that�A�s�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’s��A�thatC�that�A�’sC�'s�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this's��A�thisC�this�A�'sC�'s�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thiss��A�thisC�this�A�s�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’s��A�thisC�this�A�’sC�'s�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�A�.�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�‘S��A�‘SC�'s�‘s��A�‘sC�'s�’��A�’�’Cause��A�’CauseC�because�’Cos��A�’CosC�because�’Coz��A�’CozC�because�’Cuz��A�’CuzC�because�’S��A�’SC�'s�’bout��A�’boutC�about�’cause��A�’causeC�because�’cos��A�’cosC�because�’coz��A�’cozC�because�’cuz��A�’cuzC�because�’d��A�’d�’em��A�’emC�them�’ll��A�’llC�will�’nuff��A�’nuffC�enough�’re��A�’reC�are�’s��A�’sC�'s�’’��A�’’�faster_heuristics�
vocab/key2row ADDED
@@ -0,0 +1 @@
 
 
1
+
vocab/lookups.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
3
+ size 1
vocab/strings.json ADDED
@@ -0,0 +1,3061 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ "\n\n",
5
+ " ",
6
+ " ",
7
+ "\"",
8
+ "%",
9
+ "'",
10
+ "''",
11
+ "'-(",
12
+ "'-)",
13
+ "'Cause",
14
+ "'Cos",
15
+ "'Coz",
16
+ "'Cuz",
17
+ "'S",
18
+ "'X",
19
+ "'Xxx",
20
+ "'Xxxxx",
21
+ "'am",
22
+ "'bout",
23
+ "'cause",
24
+ "'cos",
25
+ "'coz",
26
+ "'cuz",
27
+ "'d",
28
+ "'em",
29
+ "'ll",
30
+ "'m",
31
+ "'nuff",
32
+ "'re",
33
+ "'s",
34
+ "'ve",
35
+ "'x",
36
+ "'xx",
37
+ "'xxx",
38
+ "'xxxx",
39
+ "'y",
40
+ "(",
41
+ "(((",
42
+ "(*>",
43
+ "(*_*)",
44
+ "(-8",
45
+ "(-:",
46
+ "(-;",
47
+ "(-_-)",
48
+ "(-d",
49
+ "(._.)",
50
+ "(:",
51
+ "(;",
52
+ "(=",
53
+ "(>_<)",
54
+ "(^_^)",
55
+ "(o:",
56
+ "(x:",
57
+ "(x_x)",
58
+ "(\u00ac_\u00ac)",
59
+ "(\u0ca0_\u0ca0)",
60
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
61
+ ")",
62
+ ")))",
63
+ ")-:",
64
+ ")/\u00af",
65
+ "):",
66
+ "*",
67
+ ",",
68
+ "-",
69
+ "-((",
70
+ "-))",
71
+ "-/",
72
+ "-0",
73
+ "-3",
74
+ "-8",
75
+ "-D",
76
+ "-O",
77
+ "-P",
78
+ "-X",
79
+ "-_-",
80
+ "-__-",
81
+ "-d",
82
+ "-o",
83
+ "-p",
84
+ "-x",
85
+ "-|",
86
+ ".",
87
+ ".C.",
88
+ ".D.",
89
+ ".E.",
90
+ ".G.",
91
+ ".H.",
92
+ ".J.",
93
+ ".M.",
94
+ ".Y.",
95
+ ".[1",
96
+ ".[2",
97
+ ".[3",
98
+ ".[5",
99
+ ".[6",
100
+ ".[8",
101
+ ".[9",
102
+ "._.",
103
+ ".e.",
104
+ ".g.",
105
+ ".m.",
106
+ ".s.",
107
+ "/",
108
+ "/3",
109
+ "/d",
110
+ "/or",
111
+ "0",
112
+ "0.0",
113
+ "0.o",
114
+ "000",
115
+ "003",
116
+ "006",
117
+ "011",
118
+ "0_0",
119
+ "0_o",
120
+ "1",
121
+ "10",
122
+ "10a.m",
123
+ "10a.m.",
124
+ "10p.m",
125
+ "10p.m.",
126
+ "11",
127
+ "11a.m",
128
+ "11a.m.",
129
+ "11p.m",
130
+ "11p.m.",
131
+ "12",
132
+ "12a.m",
133
+ "12a.m.",
134
+ "12p.m",
135
+ "12p.m.",
136
+ "13",
137
+ "151",
138
+ "152",
139
+ "153",
140
+ "154",
141
+ "155",
142
+ "15\u00e2\u20ac\u201c20",
143
+ "160",
144
+ "161",
145
+ "162",
146
+ "164",
147
+ "165",
148
+ "17",
149
+ "184",
150
+ "185",
151
+ "1880s.[1][2",
152
+ "19",
153
+ "1956",
154
+ "1959",
155
+ "1967",
156
+ "1982\u00e2\u20ac\u201c1995",
157
+ "1997\u00e2\u20ac\u201c2006",
158
+ "1a.m",
159
+ "1a.m.",
160
+ "1p.m",
161
+ "1p.m.",
162
+ "2",
163
+ "2003",
164
+ "2005.[161",
165
+ "2005\u00e2\u20ac\u201c06",
166
+ "2011",
167
+ "24",
168
+ "25",
169
+ "2a.m",
170
+ "2a.m.",
171
+ "2p.m",
172
+ "2p.m.",
173
+ "3",
174
+ "30",
175
+ "33",
176
+ "333",
177
+ "3N2",
178
+ "3a.m",
179
+ "3a.m.",
180
+ "3n2",
181
+ "3p.m",
182
+ "3p.m.",
183
+ "4",
184
+ "4a.m",
185
+ "4a.m.",
186
+ "4p.m",
187
+ "4p.m.",
188
+ "5",
189
+ "50",
190
+ "5a.m",
191
+ "5a.m.",
192
+ "5p.m",
193
+ "5p.m.",
194
+ "5\u00e2\u20ac\u201c10",
195
+ "6",
196
+ "6a.m",
197
+ "6a.m.",
198
+ "6p.m",
199
+ "6p.m.",
200
+ "6\u00e2\u20ac\u201c12",
201
+ "7",
202
+ "7a.m",
203
+ "7a.m.",
204
+ "7p.m",
205
+ "7p.m.",
206
+ "8",
207
+ "8)",
208
+ "8,000",
209
+ "8-",
210
+ "8-)",
211
+ "8-D",
212
+ "8-d",
213
+ "8D",
214
+ "8a.m",
215
+ "8a.m.",
216
+ "8d",
217
+ "8p.m",
218
+ "8p.m.",
219
+ "9",
220
+ "90",
221
+ "91",
222
+ "956",
223
+ "959",
224
+ "967",
225
+ "995",
226
+ "9a.m",
227
+ "9a.m.",
228
+ "9p.m",
229
+ "9p.m.",
230
+ ":",
231
+ ":'(",
232
+ ":')",
233
+ ":'-(",
234
+ ":'-)",
235
+ ":(",
236
+ ":((",
237
+ ":(((",
238
+ ":()",
239
+ ":)",
240
+ ":))",
241
+ ":)))",
242
+ ":*",
243
+ ":-(",
244
+ ":-((",
245
+ ":-(((",
246
+ ":-)",
247
+ ":-))",
248
+ ":-)))",
249
+ ":-*",
250
+ ":-/",
251
+ ":-0",
252
+ ":-3",
253
+ ":->",
254
+ ":-D",
255
+ ":-O",
256
+ ":-P",
257
+ ":-X",
258
+ ":-]",
259
+ ":-d",
260
+ ":-o",
261
+ ":-p",
262
+ ":-x",
263
+ ":-|",
264
+ ":-}",
265
+ ":/",
266
+ ":0",
267
+ ":1",
268
+ ":3",
269
+ ":>",
270
+ ":D",
271
+ ":O",
272
+ ":P",
273
+ ":X",
274
+ ":]",
275
+ ":d",
276
+ ":o",
277
+ ":o)",
278
+ ":p",
279
+ ":x",
280
+ ":x)",
281
+ ":|",
282
+ ":}",
283
+ ":\u2019(",
284
+ ":\u2019)",
285
+ ":\u2019-(",
286
+ ":\u2019-)",
287
+ ";",
288
+ ";)",
289
+ ";-)",
290
+ ";-D",
291
+ ";-X",
292
+ ";-d",
293
+ ";D",
294
+ ";X",
295
+ ";_;",
296
+ ";d",
297
+ "<",
298
+ "<.<",
299
+ "</3",
300
+ "</d",
301
+ "<3",
302
+ "<33",
303
+ "<333",
304
+ "<d",
305
+ "<dd",
306
+ "<ddd",
307
+ "<space>",
308
+ "<xxxx>",
309
+ "=",
310
+ "=(",
311
+ "=)",
312
+ "=/",
313
+ "=3",
314
+ "=D",
315
+ "=X",
316
+ "=[",
317
+ "=]",
318
+ "=d",
319
+ "=|",
320
+ ">",
321
+ ">.<",
322
+ ">.>",
323
+ ">:(",
324
+ ">:o",
325
+ ">:x",
326
+ "><(((*>",
327
+ "@",
328
+ "@_@",
329
+ "A",
330
+ "ACR50",
331
+ "ADHD",
332
+ "AIDS",
333
+ "ARD",
334
+ "ARS",
335
+ "ART",
336
+ "About",
337
+ "Adm",
338
+ "Adm.",
339
+ "Adverse",
340
+ "Africa",
341
+ "Agents",
342
+ "Ai",
343
+ "Ak",
344
+ "Ak.",
345
+ "Ala",
346
+ "Ala.",
347
+ "Alabama",
348
+ "Alaska",
349
+ "All",
350
+ "Although",
351
+ "America",
352
+ "American",
353
+ "An",
354
+ "Another",
355
+ "Anti",
356
+ "Antiretroviral",
357
+ "Apr",
358
+ "Apr.",
359
+ "April",
360
+ "Are",
361
+ "Ariz",
362
+ "Ariz.",
363
+ "Arizona",
364
+ "Ark",
365
+ "Ark.",
366
+ "Arkansas",
367
+ "As",
368
+ "Asia",
369
+ "Aug",
370
+ "Aug.",
371
+ "August",
372
+ "Australia",
373
+ "B",
374
+ "Bacteria",
375
+ "Bacterial",
376
+ "Bats",
377
+ "Biological",
378
+ "Bismol",
379
+ "Bites",
380
+ "Bros",
381
+ "Bros.",
382
+ "Brucella",
383
+ "Bunyaviridae",
384
+ "Buprenorphine",
385
+ "Bupropion",
386
+ "But",
387
+ "C",
388
+ "C'm",
389
+ "C++",
390
+ "C.",
391
+ "CDC",
392
+ "CR",
393
+ "Ca",
394
+ "Calif",
395
+ "Calif.",
396
+ "California",
397
+ "Campylobacter",
398
+ "Can",
399
+ "Canada",
400
+ "Carbamazepine",
401
+ "Cause",
402
+ "Cellulitis",
403
+ "China",
404
+ "Co",
405
+ "Co.",
406
+ "CoV",
407
+ "Colo",
408
+ "Colo.",
409
+ "Colorado",
410
+ "Common",
411
+ "Complications",
412
+ "Conn",
413
+ "Conn.",
414
+ "Connecticut",
415
+ "Corp",
416
+ "Corp.",
417
+ "Cos",
418
+ "Cote",
419
+ "Could",
420
+ "Coz",
421
+ "Cuz",
422
+ "C\u2019m",
423
+ "D",
424
+ "D.",
425
+ "D.C.",
426
+ "DHD",
427
+ "DMARD",
428
+ "DMARDs",
429
+ "DMARDs.[8",
430
+ "Dare",
431
+ "Dec",
432
+ "Dec.",
433
+ "December",
434
+ "Del",
435
+ "Del.",
436
+ "Delaware",
437
+ "Diarrhea",
438
+ "Did",
439
+ "Diosmectite",
440
+ "Disease",
441
+ "Do",
442
+ "Does",
443
+ "Doin",
444
+ "Doin'",
445
+ "Doin\u2019",
446
+ "Dr",
447
+ "Dr.",
448
+ "E",
449
+ "E.G.",
450
+ "E.g",
451
+ "E.g.",
452
+ "Each",
453
+ "Ebola",
454
+ "Epstein\u00e2\u20ac\u201cBarr",
455
+ "Erysipelas",
456
+ "Escherichia",
457
+ "Europe",
458
+ "European",
459
+ "Examples",
460
+ "Extrapulmonary",
461
+ "F",
462
+ "F.",
463
+ "FDA",
464
+ "Feb",
465
+ "Feb.",
466
+ "February",
467
+ "Fla",
468
+ "Fla.",
469
+ "Florida",
470
+ "For",
471
+ "Francisella",
472
+ "G",
473
+ "GEN",
474
+ "Ga",
475
+ "Ga.",
476
+ "Gabapentin",
477
+ "Gen",
478
+ "Gen.",
479
+ "General",
480
+ "Georgia",
481
+ "Goin",
482
+ "Goin'",
483
+ "Goin\u2019",
484
+ "Gon",
485
+ "Got",
486
+ "Gov",
487
+ "Gov.",
488
+ "H",
489
+ "H3N2",
490
+ "HAQ",
491
+ "HHV6",
492
+ "HIV",
493
+ "HIV.[53",
494
+ "HV6",
495
+ "Had",
496
+ "Hansen",
497
+ "Hantaviruses",
498
+ "Has",
499
+ "Have",
500
+ "Havin",
501
+ "Havin'",
502
+ "Havin\u2019",
503
+ "He",
504
+ "He's",
505
+ "Health",
506
+ "He\u2019s",
507
+ "How",
508
+ "How's",
509
+ "However",
510
+ "How\u2019s",
511
+ "Hydroxychloroquine",
512
+ "I",
513
+ "I.E.",
514
+ "I.e",
515
+ "I.e.",
516
+ "IDS",
517
+ "IDs",
518
+ "IMA",
519
+ "INE",
520
+ "ION",
521
+ "Ia",
522
+ "Ia.",
523
+ "Id",
524
+ "Id.",
525
+ "Idaho",
526
+ "If",
527
+ "Ill",
528
+ "Ill.",
529
+ "Illinois",
530
+ "Impetigo",
531
+ "In",
532
+ "Inc",
533
+ "Inc.",
534
+ "Ind",
535
+ "Ind.",
536
+ "Indiana",
537
+ "Influenza",
538
+ "Iowa",
539
+ "Is",
540
+ "It",
541
+ "It's",
542
+ "Its",
543
+ "It\u2019s",
544
+ "J",
545
+ "Jan",
546
+ "Jan.",
547
+ "January",
548
+ "Jr",
549
+ "Jr.",
550
+ "Jul",
551
+ "Jul.",
552
+ "July",
553
+ "Jun",
554
+ "Jun.",
555
+ "June",
556
+ "K",
557
+ "K.",
558
+ "Kan",
559
+ "Kan.",
560
+ "Kans",
561
+ "Kans.",
562
+ "Kansas",
563
+ "Kentucky",
564
+ "Ky",
565
+ "Ky.",
566
+ "L",
567
+ "La",
568
+ "La.",
569
+ "Lactobacilli",
570
+ "Latent",
571
+ "Leflunomide",
572
+ "Legionella",
573
+ "Leone",
574
+ "Let",
575
+ "Let's",
576
+ "Let\u2019s",
577
+ "Listeria",
578
+ "Loose",
579
+ "Louisiana",
580
+ "Lovin",
581
+ "Lovin'",
582
+ "Lovin\u2019",
583
+ "Ltd",
584
+ "Ltd.",
585
+ "M",
586
+ "M2",
587
+ "MAOIs",
588
+ "MEDICALCONDITION",
589
+ "MEDICINE",
590
+ "MOUV",
591
+ "Ma'am",
592
+ "Magboi",
593
+ "Many",
594
+ "Mar",
595
+ "Mar.",
596
+ "March",
597
+ "Mass",
598
+ "Mass.",
599
+ "Massachusetts",
600
+ "May",
601
+ "Ma\u2019am",
602
+ "Md",
603
+ "Md.",
604
+ "Measured",
605
+ "Messrs",
606
+ "Messrs.",
607
+ "Methotrexate",
608
+ "Mich",
609
+ "Mich.",
610
+ "Michigan",
611
+ "Might",
612
+ "Miliary",
613
+ "Minn",
614
+ "Minn.",
615
+ "Minnesota",
616
+ "Miss",
617
+ "Miss.",
618
+ "Mississippi",
619
+ "Mo",
620
+ "Mo.",
621
+ "Moclobemide",
622
+ "Mont",
623
+ "Mont.",
624
+ "More",
625
+ "Most",
626
+ "Mount",
627
+ "Mouyassu\u00c3",
628
+ "Mr",
629
+ "Mr.",
630
+ "Mrs",
631
+ "Mrs.",
632
+ "Ms",
633
+ "Ms.",
634
+ "Mt",
635
+ "Mt.",
636
+ "Much",
637
+ "Must",
638
+ "Mycobacterium",
639
+ "N",
640
+ "N.C.",
641
+ "N.D.",
642
+ "N.H.",
643
+ "N.J.",
644
+ "N.M.",
645
+ "N.Y.",
646
+ "NRI",
647
+ "NSAIDs",
648
+ "Neb",
649
+ "Neb.",
650
+ "Nebr",
651
+ "Nebr.",
652
+ "Nebraska",
653
+ "Need",
654
+ "Neisseria",
655
+ "Nev",
656
+ "Nev.",
657
+ "Nevada",
658
+ "New Hampshire",
659
+ "New Jersey",
660
+ "New Mexico",
661
+ "New York",
662
+ "Nocardia",
663
+ "North",
664
+ "North Carolina",
665
+ "North Dakota",
666
+ "Not",
667
+ "Notable",
668
+ "Nothin",
669
+ "Nothin'",
670
+ "Nothin\u2019",
671
+ "Nov",
672
+ "Nov.",
673
+ "November",
674
+ "Nuthin",
675
+ "Nuthin'",
676
+ "Nuthin\u2019",
677
+ "O",
678
+ "O'clock",
679
+ "O.O",
680
+ "O.o",
681
+ "OIs",
682
+ "OUV",
683
+ "O_O",
684
+ "O_o",
685
+ "Occasionally",
686
+ "Oct",
687
+ "Oct.",
688
+ "October",
689
+ "Of",
690
+ "Okla",
691
+ "Okla.",
692
+ "Oklahoma",
693
+ "Ol",
694
+ "Ol'",
695
+ "Ol\u2019",
696
+ "One",
697
+ "Ontario",
698
+ "Ore",
699
+ "Ore.",
700
+ "Oregon",
701
+ "Organization",
702
+ "Other",
703
+ "Ought",
704
+ "Outside",
705
+ "O\u2019clock",
706
+ "P",
707
+ "PATHOGEN",
708
+ "Pa",
709
+ "Pa.",
710
+ "Pain",
711
+ "Parkinson",
712
+ "Paroxetine",
713
+ "Pathogenic",
714
+ "Patients",
715
+ "Pennsylvania",
716
+ "People",
717
+ "Pepto",
718
+ "Ph",
719
+ "Ph.D.",
720
+ "Phenelzine",
721
+ "Polymers",
722
+ "Pott",
723
+ "Prof",
724
+ "Prof.",
725
+ "Pseudomonas",
726
+ "R",
727
+ "R50",
728
+ "RA",
729
+ "RDs",
730
+ "RIMA",
731
+ "RIs",
732
+ "RNA",
733
+ "ROOT",
734
+ "Rabies",
735
+ "Racecadotril",
736
+ "Rasmussen",
737
+ "Rep",
738
+ "Rep.",
739
+ "Rev",
740
+ "Rev.",
741
+ "Rituximab",
742
+ "River",
743
+ "Russia,[162",
744
+ "S",
745
+ "S.C.",
746
+ "SARS",
747
+ "SNRI",
748
+ "SNRIs",
749
+ "SSRIs",
750
+ "Saharan",
751
+ "Salmonella",
752
+ "Sen",
753
+ "Sen.",
754
+ "Sep",
755
+ "Sep.",
756
+ "Sept",
757
+ "Sept.",
758
+ "September",
759
+ "Sertraline",
760
+ "Sha",
761
+ "She",
762
+ "She's",
763
+ "She\u2019s",
764
+ "Shigella",
765
+ "Should",
766
+ "Side",
767
+ "Sierra",
768
+ "Significant",
769
+ "Signs",
770
+ "Sodium",
771
+ "Some",
772
+ "Somethin",
773
+ "Somethin'",
774
+ "Somethin\u2019",
775
+ "South",
776
+ "South Carolina",
777
+ "St",
778
+ "St.",
779
+ "Staphylococcus",
780
+ "States",
781
+ "Streptococcus",
782
+ "Sulfasalazine",
783
+ "Surgery",
784
+ "Symptoms",
785
+ "T",
786
+ "TB",
787
+ "TB.[19",
788
+ "TB.[9",
789
+ "TCA",
790
+ "TNF",
791
+ "Tenn",
792
+ "Tenn.",
793
+ "Tennessee",
794
+ "That",
795
+ "That's",
796
+ "That\u2019s",
797
+ "The",
798
+ "There",
799
+ "There's",
800
+ "Therefore",
801
+ "There\u2019s",
802
+ "These",
803
+ "They",
804
+ "This",
805
+ "This's",
806
+ "This\u2019s",
807
+ "Those",
808
+ "Trichomonas",
809
+ "Triple",
810
+ "Tuberculosis",
811
+ "Typically",
812
+ "U",
813
+ "United",
814
+ "Urinary",
815
+ "Urine",
816
+ "Use",
817
+ "V",
818
+ "V.V",
819
+ "V_V",
820
+ "Va",
821
+ "Va.",
822
+ "Vaccines",
823
+ "Virginia",
824
+ "W",
825
+ "WHO",
826
+ "Was",
827
+ "Wash",
828
+ "Wash.",
829
+ "Washington",
830
+ "We",
831
+ "Wellbutrin",
832
+ "Were",
833
+ "West",
834
+ "Western",
835
+ "What",
836
+ "What's",
837
+ "What\u2019s",
838
+ "When",
839
+ "When's",
840
+ "When\u2019s",
841
+ "Where",
842
+ "Where's",
843
+ "Where\u2019s",
844
+ "While",
845
+ "Who",
846
+ "Who's",
847
+ "Who\u2019s",
848
+ "Why",
849
+ "Why's",
850
+ "Why\u2019s",
851
+ "Wis",
852
+ "Wis.",
853
+ "Wisconsin",
854
+ "Wo",
855
+ "World",
856
+ "Would",
857
+ "X'x",
858
+ "X'xxxx",
859
+ "X++",
860
+ "X.",
861
+ "X.X",
862
+ "X.X.",
863
+ "X.x",
864
+ "X.x.",
865
+ "XD",
866
+ "XDD",
867
+ "XX",
868
+ "XX.[d",
869
+ "XX.[dd",
870
+ "XXX",
871
+ "XXX.[dd",
872
+ "XXXX",
873
+ "XXXXx",
874
+ "XXXXx.[d",
875
+ "XXXd",
876
+ "XXXdd",
877
+ "X_X",
878
+ "X_x",
879
+ "Xd",
880
+ "XdXd",
881
+ "Xx",
882
+ "Xx'",
883
+ "Xx'x",
884
+ "Xx'xx",
885
+ "Xx.",
886
+ "Xx.X.",
887
+ "XxX",
888
+ "Xxx",
889
+ "Xxx'x",
890
+ "Xxx.",
891
+ "Xxxx",
892
+ "Xxxx'",
893
+ "Xxxx'x",
894
+ "Xxxx.",
895
+ "Xxxxx",
896
+ "Xxxxx'",
897
+ "Xxxxx'x",
898
+ "Xxxxx,[ddd",
899
+ "Xxxxx.",
900
+ "XxxxxX",
901
+ "Xxxxx\u2019",
902
+ "Xxxxx\u2019x",
903
+ "Xxxxx\u20ac\u201cXxxx",
904
+ "Xxxx\u2019",
905
+ "Xxxx\u2019x",
906
+ "Xxx\u2019x",
907
+ "Xx\u2019",
908
+ "Xx\u2019x",
909
+ "Xx\u2019xx",
910
+ "X\u2019x",
911
+ "X\u2019xxxx",
912
+ "Y",
913
+ "Yersinia",
914
+ "You",
915
+ "Z",
916
+ "Zyban",
917
+ "[",
918
+ "[-:",
919
+ "[10",
920
+ "[11",
921
+ "[12",
922
+ "[13",
923
+ "[14",
924
+ "[15",
925
+ "[16",
926
+ "[17",
927
+ "[18",
928
+ "[19",
929
+ "[20",
930
+ "[21",
931
+ "[24",
932
+ "[25",
933
+ "[27",
934
+ "[28",
935
+ "[30",
936
+ "[32",
937
+ "[35",
938
+ "[39",
939
+ "[41",
940
+ "[45",
941
+ "[50",
942
+ "[52",
943
+ "[53",
944
+ "[86",
945
+ "[87",
946
+ "[88",
947
+ "[89",
948
+ "[90",
949
+ "[91",
950
+ "[92",
951
+ "[93",
952
+ "[94",
953
+ "[95",
954
+ "[96",
955
+ "[:",
956
+ "[=",
957
+ "\\",
958
+ "\\\")",
959
+ "\\n",
960
+ "\\t",
961
+ "\\x",
962
+ "]",
963
+ "]=",
964
+ "][2",
965
+ "][5",
966
+ "][7",
967
+ "][9",
968
+ "^",
969
+ "^_^",
970
+ "^__^",
971
+ "^___^",
972
+ "_*)",
973
+ "_-)",
974
+ "_.)",
975
+ "_<)",
976
+ "_^)",
977
+ "__-",
978
+ "__^",
979
+ "_\u00ac)",
980
+ "_\u0ca0)",
981
+ "a",
982
+ "a.",
983
+ "a.m",
984
+ "a.m.",
985
+ "abatacept",
986
+ "abdominal",
987
+ "ability",
988
+ "able",
989
+ "about",
990
+ "absorbent",
991
+ "acceptable",
992
+ "ace",
993
+ "ach",
994
+ "acid.[96",
995
+ "ack",
996
+ "acr50",
997
+ "act",
998
+ "active",
999
+ "activity.[95",
1000
+ "acute",
1001
+ "acy",
1002
+ "ada",
1003
+ "adamantane",
1004
+ "adapalene",
1005
+ "adapromine",
1006
+ "addition",
1007
+ "adhd",
1008
+ "adherence",
1009
+ "adm",
1010
+ "adm.",
1011
+ "ads",
1012
+ "adults",
1013
+ "adults.[6",
1014
+ "adults.[86",
1015
+ "adverse",
1016
+ "aerosol",
1017
+ "aerosolization",
1018
+ "aerosols",
1019
+ "affected",
1020
+ "affects",
1021
+ "africa",
1022
+ "after",
1023
+ "against",
1024
+ "age",
1025
+ "agents",
1026
+ "ai",
1027
+ "aid",
1028
+ "aids",
1029
+ "ail",
1030
+ "ain",
1031
+ "air",
1032
+ "ak",
1033
+ "ak.",
1034
+ "ake",
1035
+ "aks",
1036
+ "ala",
1037
+ "ala.",
1038
+ "alf",
1039
+ "all",
1040
+ "alleviating",
1041
+ "alone",
1042
+ "alpha",
1043
+ "als",
1044
+ "also",
1045
+ "alternative",
1046
+ "although",
1047
+ "aluminomagnesium",
1048
+ "am",
1049
+ "amantadine",
1050
+ "amantadines",
1051
+ "ame",
1052
+ "america",
1053
+ "american",
1054
+ "among",
1055
+ "amounts",
1056
+ "amoxicillin",
1057
+ "an",
1058
+ "an.",
1059
+ "ana",
1060
+ "anakinra",
1061
+ "and",
1062
+ "and/or",
1063
+ "ane",
1064
+ "aneurysm",
1065
+ "animal",
1066
+ "another",
1067
+ "ans",
1068
+ "ant",
1069
+ "anthrax",
1070
+ "anti",
1071
+ "antibiotic",
1072
+ "antibiotics",
1073
+ "antibodies",
1074
+ "antidepressants",
1075
+ "antiretroviral",
1076
+ "antirheumatic",
1077
+ "antisecretory",
1078
+ "antiviral",
1079
+ "anxiety",
1080
+ "any",
1081
+ "apart",
1082
+ "appears",
1083
+ "appetite",
1084
+ "applications",
1085
+ "approach",
1086
+ "approval",
1087
+ "approved",
1088
+ "apr",
1089
+ "apr.",
1090
+ "apy",
1091
+ "ar.",
1092
+ "ard",
1093
+ "are",
1094
+ "ariz",
1095
+ "ariz.",
1096
+ "ark",
1097
+ "ark.",
1098
+ "arr",
1099
+ "ars",
1100
+ "art",
1101
+ "artery",
1102
+ "arthritis.[90",
1103
+ "articles",
1104
+ "ary",
1105
+ "as",
1106
+ "ascend",
1107
+ "ase",
1108
+ "ash",
1109
+ "asia",
1110
+ "ass",
1111
+ "assistive",
1112
+ "associated",
1113
+ "ast",
1114
+ "asthma",
1115
+ "asy",
1116
+ "asymptomatic\").[14",
1117
+ "at",
1118
+ "ata",
1119
+ "ate",
1120
+ "ath",
1121
+ "ats",
1122
+ "attention",
1123
+ "attributed",
1124
+ "aug",
1125
+ "aug.",
1126
+ "aureus",
1127
+ "aurothiomalate",
1128
+ "australia",
1129
+ "availability",
1130
+ "ave",
1131
+ "avian",
1132
+ "ays",
1133
+ "b",
1134
+ "b.",
1135
+ "babies",
1136
+ "bacteria",
1137
+ "bacteria.[35",
1138
+ "bacterial",
1139
+ "bacterium",
1140
+ "balancing",
1141
+ "ban",
1142
+ "banana",
1143
+ "basis",
1144
+ "bat",
1145
+ "bats",
1146
+ "bats.[27",
1147
+ "be",
1148
+ "because",
1149
+ "become",
1150
+ "becomes",
1151
+ "bed",
1152
+ "bedaquiline",
1153
+ "been",
1154
+ "begin",
1155
+ "begun",
1156
+ "behaviour.[2",
1157
+ "being",
1158
+ "bel",
1159
+ "beneficial",
1160
+ "benefits",
1161
+ "ber",
1162
+ "bes",
1163
+ "better",
1164
+ "between",
1165
+ "bia",
1166
+ "biological",
1167
+ "biologics",
1168
+ "bipolar",
1169
+ "bismol",
1170
+ "bismuth",
1171
+ "bit",
1172
+ "bite",
1173
+ "bite.[24",
1174
+ "bites",
1175
+ "bladder",
1176
+ "ble",
1177
+ "bleeding.[9][18",
1178
+ "blisters",
1179
+ "blood",
1180
+ "bloody",
1181
+ "bly",
1182
+ "body",
1183
+ "boi",
1184
+ "bones",
1185
+ "bornavirus",
1186
+ "both",
1187
+ "bout",
1188
+ "bowel",
1189
+ "br.",
1190
+ "braces",
1191
+ "brain",
1192
+ "break",
1193
+ "breastfed",
1194
+ "bromantane",
1195
+ "bros",
1196
+ "bros.",
1197
+ "brucella",
1198
+ "bunyaviridae",
1199
+ "buprenorphine",
1200
+ "bupropion",
1201
+ "burden",
1202
+ "burns",
1203
+ "but",
1204
+ "by",
1205
+ "c",
1206
+ "c'm",
1207
+ "c++",
1208
+ "c.",
1209
+ "ca",
1210
+ "cal",
1211
+ "calif",
1212
+ "calif.",
1213
+ "called",
1214
+ "came",
1215
+ "campylobacter",
1216
+ "can",
1217
+ "canada",
1218
+ "candidiasis",
1219
+ "captured",
1220
+ "carbamazepine",
1221
+ "carmantadine",
1222
+ "case",
1223
+ "cases",
1224
+ "cases).[14][17",
1225
+ "cases.[20",
1226
+ "cases.[21",
1227
+ "catheter",
1228
+ "causal",
1229
+ "causative",
1230
+ "cause",
1231
+ "caused",
1232
+ "causes",
1233
+ "causing",
1234
+ "cave",
1235
+ "cdc",
1236
+ "ce>",
1237
+ "ced",
1238
+ "cells",
1239
+ "cellulitis",
1240
+ "central",
1241
+ "certain",
1242
+ "certolizumab",
1243
+ "ces",
1244
+ "cessation",
1245
+ "ch.",
1246
+ "change",
1247
+ "channel",
1248
+ "characteristic",
1249
+ "che",
1250
+ "chemotherapy",
1251
+ "chest",
1252
+ "chickenpox",
1253
+ "children",
1254
+ "children,[93",
1255
+ "children.[12",
1256
+ "chills",
1257
+ "china",
1258
+ "chlodantane",
1259
+ "cholesterol",
1260
+ "choose",
1261
+ "chronic",
1262
+ "cin",
1263
+ "ciprofloxacin",
1264
+ "cit",
1265
+ "citalopram",
1266
+ "cks",
1267
+ "class",
1268
+ "classes",
1269
+ "clay",
1270
+ "cle",
1271
+ "clear.[13",
1272
+ "clinical",
1273
+ "clomipramine",
1274
+ "cloudy.[10",
1275
+ "clubbing",
1276
+ "co",
1277
+ "co.",
1278
+ "coexist",
1279
+ "coinfected",
1280
+ "cold",
1281
+ "coli",
1282
+ "collectively",
1283
+ "colo",
1284
+ "colo.",
1285
+ "colony",
1286
+ "color",
1287
+ "combination",
1288
+ "combinations",
1289
+ "combined",
1290
+ "come",
1291
+ "commit",
1292
+ "common",
1293
+ "commonly",
1294
+ "company",
1295
+ "complications",
1296
+ "compounds",
1297
+ "concluded",
1298
+ "condition",
1299
+ "conditions",
1300
+ "conn",
1301
+ "conn.",
1302
+ "connection",
1303
+ "connective",
1304
+ "considered",
1305
+ "consisting",
1306
+ "constipation",
1307
+ "contact",
1308
+ "contagious",
1309
+ "contains",
1310
+ "contrast",
1311
+ "contribute",
1312
+ "control",
1313
+ "controversy",
1314
+ "convincing",
1315
+ "cord",
1316
+ "coronavirus",
1317
+ "corp",
1318
+ "corp.",
1319
+ "cos",
1320
+ "cote",
1321
+ "cough",
1322
+ "coughing",
1323
+ "could",
1324
+ "counter",
1325
+ "countries",
1326
+ "countries.[3",
1327
+ "cov",
1328
+ "covered",
1329
+ "covering",
1330
+ "coz",
1331
+ "cr",
1332
+ "cracks",
1333
+ "crowd",
1334
+ "cryptic",
1335
+ "ct.",
1336
+ "cts",
1337
+ "cur",
1338
+ "currently",
1339
+ "cus",
1340
+ "cuts",
1341
+ "cuz",
1342
+ "cyclosporin",
1343
+ "cystitis",
1344
+ "c\u2019m",
1345
+ "d",
1346
+ "d'Ivoire",
1347
+ "d'ivoire",
1348
+ "d)",
1349
+ "d,ddd",
1350
+ "d-",
1351
+ "d-)",
1352
+ "d-X",
1353
+ "d.",
1354
+ "d.c.",
1355
+ "d.d",
1356
+ "d.x",
1357
+ "dX",
1358
+ "d_d",
1359
+ "d_x",
1360
+ "dae",
1361
+ "dare",
1362
+ "data",
1363
+ "day.[2",
1364
+ "days",
1365
+ "dd",
1366
+ "ddd",
1367
+ "dddd",
1368
+ "dddd.[ddd",
1369
+ "ddddx.[d][d",
1370
+ "ddddx\u20ac\u201cdd",
1371
+ "ddddx\u20ac\u201cdddd",
1372
+ "ddx.x",
1373
+ "ddx.x.",
1374
+ "ddx\u20ac\u201cdd",
1375
+ "death",
1376
+ "deaths",
1377
+ "dec",
1378
+ "dec.",
1379
+ "decrease",
1380
+ "decreased",
1381
+ "ded",
1382
+ "deeper",
1383
+ "defer",
1384
+ "deficit",
1385
+ "dehydration",
1386
+ "del",
1387
+ "del.",
1388
+ "den",
1389
+ "denoted",
1390
+ "depending",
1391
+ "depressant",
1392
+ "depression",
1393
+ "der",
1394
+ "derivative",
1395
+ "derivatives",
1396
+ "dermal",
1397
+ "describe",
1398
+ "described",
1399
+ "despite",
1400
+ "desvenlafaxine",
1401
+ "develop",
1402
+ "developing",
1403
+ "develops",
1404
+ "devices.[1][6][7",
1405
+ "dhd",
1406
+ "dia",
1407
+ "diarrhea",
1408
+ "diarrhea.[45",
1409
+ "diarrhoea",
1410
+ "did",
1411
+ "die",
1412
+ "died.[25",
1413
+ "dies",
1414
+ "dietary",
1415
+ "difference",
1416
+ "different",
1417
+ "difficult",
1418
+ "diffuse",
1419
+ "diosmectite",
1420
+ "diphtheria",
1421
+ "discover",
1422
+ "discovered",
1423
+ "disease",
1424
+ "disease.[1",
1425
+ "disease.[16",
1426
+ "disease.[51][52",
1427
+ "disease.[8",
1428
+ "diseases",
1429
+ "disorder",
1430
+ "disorder.[19][20",
1431
+ "disorder.[8",
1432
+ "disorder1",
1433
+ "disruption",
1434
+ "disseminated",
1435
+ "distinct",
1436
+ "distinction",
1437
+ "dm.",
1438
+ "dmard",
1439
+ "dmards",
1440
+ "dmards.[8",
1441
+ "do",
1442
+ "does",
1443
+ "doin",
1444
+ "doin'",
1445
+ "doing",
1446
+ "doin\u2019",
1447
+ "dopamantine",
1448
+ "dormant",
1449
+ "doxycycline",
1450
+ "dr",
1451
+ "dr.",
1452
+ "drainage",
1453
+ "drug",
1454
+ "drug,[184",
1455
+ "drugs",
1456
+ "due",
1457
+ "duloxetine",
1458
+ "duration",
1459
+ "during",
1460
+ "dx.x",
1461
+ "dx.x.",
1462
+ "dx\u20ac\u201cdd",
1463
+ "e",
1464
+ "e's",
1465
+ "e.",
1466
+ "e.g",
1467
+ "e.g.",
1468
+ "each",
1469
+ "ead",
1470
+ "eak",
1471
+ "ean",
1472
+ "ear",
1473
+ "early",
1474
+ "easy",
1475
+ "eat",
1476
+ "eb.",
1477
+ "ebo",
1478
+ "ebola",
1479
+ "ebr",
1480
+ "ec.",
1481
+ "eck",
1482
+ "ect",
1483
+ "eed",
1484
+ "een",
1485
+ "effective",
1486
+ "effectively",
1487
+ "effectiveness",
1488
+ "effects",
1489
+ "effects.[8",
1490
+ "effects.[8][92",
1491
+ "effects.[9",
1492
+ "efficacy",
1493
+ "egs",
1494
+ "ein",
1495
+ "eir",
1496
+ "either",
1497
+ "el.",
1498
+ "elect",
1499
+ "ell",
1500
+ "elp",
1501
+ "els",
1502
+ "elsewhere",
1503
+ "ely",
1504
+ "em",
1505
+ "eme",
1506
+ "ems",
1507
+ "en",
1508
+ "en.",
1509
+ "end",
1510
+ "ene",
1511
+ "enn",
1512
+ "enough",
1513
+ "ens",
1514
+ "ent",
1515
+ "enteric",
1516
+ "entering",
1517
+ "entirely",
1518
+ "ep.",
1519
+ "epileptic",
1520
+ "epstein\u00e2\u20ac\u201cbarr",
1521
+ "ept",
1522
+ "equipment",
1523
+ "er1",
1524
+ "ere",
1525
+ "erm",
1526
+ "ern",
1527
+ "erode",
1528
+ "ers",
1529
+ "ery",
1530
+ "erysipelas",
1531
+ "escherichia",
1532
+ "escitalopram",
1533
+ "ese",
1534
+ "ess",
1535
+ "essential",
1536
+ "est",
1537
+ "etanercept",
1538
+ "ety",
1539
+ "europe",
1540
+ "european",
1541
+ "eus",
1542
+ "ev.",
1543
+ "everyone",
1544
+ "evidence",
1545
+ "evidence.[10][11",
1546
+ "ews",
1547
+ "example",
1548
+ "examples",
1549
+ "exclusively",
1550
+ "exercise",
1551
+ "exist",
1552
+ "existing",
1553
+ "experience",
1554
+ "experimentally",
1555
+ "explained",
1556
+ "exposure",
1557
+ "extended",
1558
+ "extensive",
1559
+ "extrapulmonary",
1560
+ "extreme",
1561
+ "e\u2019s",
1562
+ "f",
1563
+ "f.",
1564
+ "face",
1565
+ "faced",
1566
+ "factor",
1567
+ "factors",
1568
+ "failure.[2][5",
1569
+ "family.[29][30][31][32",
1570
+ "far",
1571
+ "farmed",
1572
+ "fast",
1573
+ "fatigue",
1574
+ "fatigue.[9",
1575
+ "favorably",
1576
+ "fda",
1577
+ "feasible",
1578
+ "feb",
1579
+ "feb.",
1580
+ "fed",
1581
+ "feeling",
1582
+ "fer",
1583
+ "fever",
1584
+ "few",
1585
+ "financial",
1586
+ "first",
1587
+ "five",
1588
+ "fla",
1589
+ "fla.",
1590
+ "flashes",
1591
+ "flatulence.[94",
1592
+ "flora",
1593
+ "flow,[13",
1594
+ "flu",
1595
+ "flu\".[6",
1596
+ "flu[50",
1597
+ "fluid",
1598
+ "fluids",
1599
+ "fluoxetine",
1600
+ "fluvoxamine",
1601
+ "folic",
1602
+ "following",
1603
+ "foodborne",
1604
+ "for",
1605
+ "form",
1606
+ "found",
1607
+ "francisella",
1608
+ "frequent",
1609
+ "frequently",
1610
+ "from",
1611
+ "ful",
1612
+ "functional",
1613
+ "functioning.[5",
1614
+ "fungus",
1615
+ "fuse",
1616
+ "g",
1617
+ "g.",
1618
+ "ga",
1619
+ "ga.",
1620
+ "gabapentin",
1621
+ "gastroenteritis",
1622
+ "gastrointestinal",
1623
+ "ged",
1624
+ "gen",
1625
+ "gen.",
1626
+ "general",
1627
+ "generally",
1628
+ "genitourinary",
1629
+ "ges",
1630
+ "ght",
1631
+ "gia",
1632
+ "gic",
1633
+ "gin",
1634
+ "given",
1635
+ "glandular",
1636
+ "gle",
1637
+ "globally",
1638
+ "gly",
1639
+ "gns",
1640
+ "goals",
1641
+ "goin",
1642
+ "goin'",
1643
+ "going",
1644
+ "goin\u2019",
1645
+ "gold",
1646
+ "gon",
1647
+ "gonna",
1648
+ "good",
1649
+ "got",
1650
+ "gov",
1651
+ "gov.",
1652
+ "gram",
1653
+ "greater",
1654
+ "groups",
1655
+ "gth",
1656
+ "gue",
1657
+ "gun",
1658
+ "gus",
1659
+ "gut",
1660
+ "h",
1661
+ "h.",
1662
+ "h3n2",
1663
+ "had",
1664
+ "hairy",
1665
+ "half",
1666
+ "han",
1667
+ "hansen",
1668
+ "hantaviruses",
1669
+ "haq",
1670
+ "harmless",
1671
+ "harmlessly",
1672
+ "has",
1673
+ "hat",
1674
+ "have",
1675
+ "havin",
1676
+ "havin'",
1677
+ "having",
1678
+ "havin\u2019",
1679
+ "he",
1680
+ "he's",
1681
+ "hea",
1682
+ "headache",
1683
+ "health",
1684
+ "healthy",
1685
+ "heart",
1686
+ "help",
1687
+ "helped",
1688
+ "hem",
1689
+ "hematologic",
1690
+ "hen",
1691
+ "hepatic.[93",
1692
+ "her",
1693
+ "herpes",
1694
+ "herpesvirus",
1695
+ "hes",
1696
+ "hey",
1697
+ "he\u2019s",
1698
+ "hhv6",
1699
+ "hia",
1700
+ "hic",
1701
+ "high",
1702
+ "high.[40][41",
1703
+ "higher",
1704
+ "highest",
1705
+ "highly",
1706
+ "hin",
1707
+ "his",
1708
+ "history.[24",
1709
+ "hiv",
1710
+ "hiv.[53",
1711
+ "hly",
1712
+ "hma",
1713
+ "hom",
1714
+ "homeostasis",
1715
+ "horses",
1716
+ "host",
1717
+ "hot",
1718
+ "hour",
1719
+ "how",
1720
+ "how's",
1721
+ "however",
1722
+ "how\u2019s",
1723
+ "human",
1724
+ "humans",
1725
+ "humans.[152",
1726
+ "humid",
1727
+ "hus",
1728
+ "hv6",
1729
+ "hydroxychloroquine",
1730
+ "hyperactivity",
1731
+ "i",
1732
+ "i.",
1733
+ "i.e",
1734
+ "i.e.",
1735
+ "ia",
1736
+ "ia.",
1737
+ "ial",
1738
+ "ian",
1739
+ "ibe",
1740
+ "ica",
1741
+ "ich",
1742
+ "ics",
1743
+ "icy",
1744
+ "id",
1745
+ "id.",
1746
+ "ide",
1747
+ "identified",
1748
+ "ids",
1749
+ "ied",
1750
+ "ies",
1751
+ "if",
1752
+ "if.",
1753
+ "igh",
1754
+ "igo",
1755
+ "ike",
1756
+ "ild",
1757
+ "ile",
1758
+ "ill",
1759
+ "ill.",
1760
+ "illness",
1761
+ "illness.[91",
1762
+ "illnesses",
1763
+ "ima",
1764
+ "imb",
1765
+ "imipramine",
1766
+ "immune",
1767
+ "immunity",
1768
+ "impetigo",
1769
+ "importance",
1770
+ "important",
1771
+ "improve",
1772
+ "improves",
1773
+ "in",
1774
+ "in'",
1775
+ "ina",
1776
+ "inaccurately",
1777
+ "inc",
1778
+ "inc.",
1779
+ "include",
1780
+ "including",
1781
+ "increase",
1782
+ "increased",
1783
+ "ind",
1784
+ "ind.",
1785
+ "indication",
1786
+ "indications",
1787
+ "individuals",
1788
+ "induced",
1789
+ "ine",
1790
+ "ineffective",
1791
+ "infant",
1792
+ "infect",
1793
+ "infected",
1794
+ "infection",
1795
+ "infection[14",
1796
+ "infections",
1797
+ "infectious",
1798
+ "inflammation",
1799
+ "inflammation[15",
1800
+ "infliximab",
1801
+ "influenced",
1802
+ "influenza",
1803
+ "ing",
1804
+ "inhibit",
1805
+ "inhibiting",
1806
+ "inhibitors",
1807
+ "inhibits",
1808
+ "injection",
1809
+ "inn",
1810
+ "ins",
1811
+ "insect",
1812
+ "insertion",
1813
+ "instances",
1814
+ "instead",
1815
+ "int",
1816
+ "into",
1817
+ "intracellular",
1818
+ "intracellularly",
1819
+ "intravenous",
1820
+ "investigation",
1821
+ "investigations",
1822
+ "involve",
1823
+ "involves",
1824
+ "in\u2019",
1825
+ "ion",
1826
+ "ior",
1827
+ "ire",
1828
+ "irritable",
1829
+ "iry",
1830
+ "is",
1831
+ "is.",
1832
+ "ise",
1833
+ "isk",
1834
+ "ism",
1835
+ "isolated",
1836
+ "isolates",
1837
+ "isoniazid",
1838
+ "iss",
1839
+ "issued",
1840
+ "ist",
1841
+ "isy",
1842
+ "it",
1843
+ "it's",
1844
+ "ite",
1845
+ "ith",
1846
+ "its",
1847
+ "ity",
1848
+ "it\u2019s",
1849
+ "ium",
1850
+ "ive",
1851
+ "iz.",
1852
+ "j",
1853
+ "j.",
1854
+ "jan",
1855
+ "jan.",
1856
+ "joint",
1857
+ "joints",
1858
+ "journal",
1859
+ "jr",
1860
+ "jr.",
1861
+ "jul",
1862
+ "jul.",
1863
+ "jun",
1864
+ "jun.",
1865
+ "k",
1866
+ "k.",
1867
+ "kan",
1868
+ "kan.",
1869
+ "kans",
1870
+ "kans.",
1871
+ "kaopectate",
1872
+ "kes",
1873
+ "kidney",
1874
+ "kill",
1875
+ "kills",
1876
+ "kin",
1877
+ "kinds",
1878
+ "kla",
1879
+ "known",
1880
+ "ky",
1881
+ "ky.",
1882
+ "l",
1883
+ "l.",
1884
+ "la",
1885
+ "la.",
1886
+ "label",
1887
+ "laboratories",
1888
+ "lack",
1889
+ "lactobacilli",
1890
+ "laninamivir",
1891
+ "lar",
1892
+ "large",
1893
+ "las",
1894
+ "last",
1895
+ "lasts",
1896
+ "latency[153",
1897
+ "latent",
1898
+ "later",
1899
+ "lay",
1900
+ "layers",
1901
+ "leads",
1902
+ "least",
1903
+ "leaves",
1904
+ "led",
1905
+ "leflunomide",
1906
+ "leflunomide.[8",
1907
+ "leg",
1908
+ "legionella",
1909
+ "legs",
1910
+ "lem",
1911
+ "length",
1912
+ "leone",
1913
+ "leprosy",
1914
+ "les",
1915
+ "less",
1916
+ "let",
1917
+ "let's",
1918
+ "let\u2019s",
1919
+ "level",
1920
+ "levels",
1921
+ "levels.[87",
1922
+ "lex",
1923
+ "lia",
1924
+ "lic",
1925
+ "lif",
1926
+ "life.[94",
1927
+ "lifetimes;[16",
1928
+ "like",
1929
+ "likely",
1930
+ "limb",
1931
+ "limited",
1932
+ "lin",
1933
+ "line",
1934
+ "liquid",
1935
+ "lis",
1936
+ "listeria",
1937
+ "lit",
1938
+ "ll",
1939
+ "ll.",
1940
+ "lla",
1941
+ "lle",
1942
+ "lli",
1943
+ "lls",
1944
+ "lly",
1945
+ "lo.",
1946
+ "lobes",
1947
+ "loose",
1948
+ "lop",
1949
+ "loperamide",
1950
+ "lor",
1951
+ "loss",
1952
+ "loss.[2",
1953
+ "lovin",
1954
+ "lovin'",
1955
+ "loving",
1956
+ "lovin\u2019",
1957
+ "low",
1958
+ "lower",
1959
+ "lso",
1960
+ "ltd",
1961
+ "ltd.",
1962
+ "lth",
1963
+ "lts",
1964
+ "lung",
1965
+ "lungs",
1966
+ "lve",
1967
+ "lymph",
1968
+ "lymphatic",
1969
+ "m",
1970
+ "m.",
1971
+ "m2",
1972
+ "ma'am",
1973
+ "mab",
1974
+ "madam",
1975
+ "magboi",
1976
+ "magnification",
1977
+ "main",
1978
+ "maintain",
1979
+ "majority",
1980
+ "make",
1981
+ "makes",
1982
+ "making",
1983
+ "mal",
1984
+ "man",
1985
+ "many",
1986
+ "maois",
1987
+ "mar",
1988
+ "mar.",
1989
+ "mass",
1990
+ "mass.",
1991
+ "massive",
1992
+ "may",
1993
+ "ma\u2019am",
1994
+ "md",
1995
+ "md.",
1996
+ "meaning",
1997
+ "means",
1998
+ "measure",
1999
+ "measured",
2000
+ "mechanisms",
2001
+ "med",
2002
+ "medical",
2003
+ "medicalcondition",
2004
+ "medication",
2005
+ "medications",
2006
+ "medicine",
2007
+ "memantine",
2008
+ "membrane",
2009
+ "membranes",
2010
+ "meninges",
2011
+ "meningitis",
2012
+ "mes",
2013
+ "messrs",
2014
+ "messrs.",
2015
+ "methotrexate",
2016
+ "mich",
2017
+ "mich.",
2018
+ "microbial",
2019
+ "microbiota",
2020
+ "micrometers",
2021
+ "microorganism",
2022
+ "mid",
2023
+ "might",
2024
+ "migraine",
2025
+ "mild",
2026
+ "miliary",
2027
+ "million",
2028
+ "minn",
2029
+ "minn.",
2030
+ "miss",
2031
+ "miss.",
2032
+ "mit",
2033
+ "mixed",
2034
+ "mo",
2035
+ "mo.",
2036
+ "moclobemide",
2037
+ "moderate",
2038
+ "modifying",
2039
+ "mol",
2040
+ "mon",
2041
+ "monitored",
2042
+ "monoclonal",
2043
+ "mont",
2044
+ "mont.",
2045
+ "months",
2046
+ "mor",
2047
+ "more",
2048
+ "mortality",
2049
+ "most",
2050
+ "mostly",
2051
+ "motility",
2052
+ "mouv",
2053
+ "mouyassu\u00e3",
2054
+ "movements",
2055
+ "mph",
2056
+ "mr",
2057
+ "mr.",
2058
+ "mrs",
2059
+ "mrs.",
2060
+ "ms",
2061
+ "ms.",
2062
+ "mt",
2063
+ "mt.",
2064
+ "much",
2065
+ "mucous",
2066
+ "multiple",
2067
+ "muscle",
2068
+ "must",
2069
+ "mycobacterium",
2070
+ "n",
2071
+ "n's",
2072
+ "n't",
2073
+ "n.",
2074
+ "n.c.",
2075
+ "n.d.",
2076
+ "n.h.",
2077
+ "n.j.",
2078
+ "n.m.",
2079
+ "n.y.",
2080
+ "na",
2081
+ "nail",
2082
+ "nal",
2083
+ "name",
2084
+ "named",
2085
+ "nas",
2086
+ "natural",
2087
+ "nausea",
2088
+ "nc.",
2089
+ "nce",
2090
+ "nct",
2091
+ "nd.",
2092
+ "nds",
2093
+ "near",
2094
+ "neb",
2095
+ "neb.",
2096
+ "nebr",
2097
+ "nebr.",
2098
+ "neck",
2099
+ "ned",
2100
+ "need",
2101
+ "negative",
2102
+ "neisseria",
2103
+ "nel",
2104
+ "nephritis",
2105
+ "nervous",
2106
+ "nes",
2107
+ "neuralgia",
2108
+ "neuraminidase",
2109
+ "neurological",
2110
+ "neuromyotonia",
2111
+ "neuropathic",
2112
+ "nev",
2113
+ "nev.",
2114
+ "new",
2115
+ "ney",
2116
+ "nge",
2117
+ "ngs",
2118
+ "nia",
2119
+ "nic",
2120
+ "night",
2121
+ "nine",
2122
+ "nly",
2123
+ "nn.",
2124
+ "nny",
2125
+ "no",
2126
+ "nocardia",
2127
+ "non",
2128
+ "normal",
2129
+ "normal.[2",
2130
+ "north",
2131
+ "nose",
2132
+ "not",
2133
+ "notable",
2134
+ "nothin",
2135
+ "nothin'",
2136
+ "nothing",
2137
+ "nothin\u2019",
2138
+ "nov",
2139
+ "nov.",
2140
+ "novel",
2141
+ "now",
2142
+ "nra",
2143
+ "nri",
2144
+ "ns.",
2145
+ "nsaids",
2146
+ "nse",
2147
+ "nst",
2148
+ "nt",
2149
+ "nt.",
2150
+ "nti",
2151
+ "nto",
2152
+ "nts",
2153
+ "nuff",
2154
+ "nus",
2155
+ "nuthin",
2156
+ "nuthin'",
2157
+ "nuthin\u2019",
2158
+ "nza",
2159
+ "n\u2019s",
2160
+ "n\u2019t",
2161
+ "o",
2162
+ "o'clock",
2163
+ "o's",
2164
+ "o.",
2165
+ "o.0",
2166
+ "o.O",
2167
+ "o.o",
2168
+ "o_0",
2169
+ "o_O",
2170
+ "o_o",
2171
+ "oan",
2172
+ "oat",
2173
+ "occasionally",
2174
+ "occur",
2175
+ "occur.[16",
2176
+ "occurs",
2177
+ "ock",
2178
+ "oct",
2179
+ "oct.",
2180
+ "ode",
2181
+ "ody",
2182
+ "oea",
2183
+ "oes",
2184
+ "of",
2185
+ "of.",
2186
+ "off",
2187
+ "officially",
2188
+ "often",
2189
+ "oid",
2190
+ "oin",
2191
+ "ois",
2192
+ "okla",
2193
+ "okla.",
2194
+ "ol",
2195
+ "ol'",
2196
+ "ola",
2197
+ "old",
2198
+ "oli",
2199
+ "olo",
2200
+ "ols",
2201
+ "ol\u2019",
2202
+ "ome",
2203
+ "oms",
2204
+ "on",
2205
+ "ond",
2206
+ "one",
2207
+ "ones.[9",
2208
+ "ong",
2209
+ "only",
2210
+ "onn",
2211
+ "ons",
2212
+ "ont",
2213
+ "ontario",
2214
+ "ony",
2215
+ "ood",
2216
+ "oor",
2217
+ "ope",
2218
+ "open",
2219
+ "ops",
2220
+ "option",
2221
+ "options",
2222
+ "or",
2223
+ "ora",
2224
+ "ord",
2225
+ "ore",
2226
+ "ore.",
2227
+ "organism",
2228
+ "organization",
2229
+ "organs",
2230
+ "ork",
2231
+ "orm",
2232
+ "orp",
2233
+ "ors",
2234
+ "ort",
2235
+ "ory",
2236
+ "os.",
2237
+ "ose",
2238
+ "oseltamivir",
2239
+ "oss",
2240
+ "ost",
2241
+ "osy",
2242
+ "ota",
2243
+ "ote",
2244
+ "oth",
2245
+ "other",
2246
+ "others",
2247
+ "others.[28",
2248
+ "ott",
2249
+ "ought",
2250
+ "our",
2251
+ "ous",
2252
+ "out",
2253
+ "outbreak",
2254
+ "outbreaks",
2255
+ "outside",
2256
+ "ouv",
2257
+ "ov.",
2258
+ "ove",
2259
+ "over",
2260
+ "overall",
2261
+ "overgrowth",
2262
+ "owd",
2263
+ "own",
2264
+ "o\u2019clock",
2265
+ "o\u2019s",
2266
+ "p",
2267
+ "p.",
2268
+ "p.m",
2269
+ "p.m.",
2270
+ "pa",
2271
+ "pa.",
2272
+ "pain",
2273
+ "parkinson",
2274
+ "paroxetine",
2275
+ "paroxysmal",
2276
+ "part",
2277
+ "particular",
2278
+ "particularly",
2279
+ "patented",
2280
+ "pathogen",
2281
+ "pathogenic",
2282
+ "pathogens",
2283
+ "patient",
2284
+ "patients",
2285
+ "ped",
2286
+ "pen",
2287
+ "people",
2288
+ "pepto",
2289
+ "per",
2290
+ "peramivir",
2291
+ "percent",
2292
+ "person",
2293
+ "pes",
2294
+ "pestis",
2295
+ "pestis.[155",
2296
+ "ph",
2297
+ "ph.d.",
2298
+ "pha",
2299
+ "phantom",
2300
+ "phenelzine",
2301
+ "phobia",
2302
+ "physicians",
2303
+ "pin",
2304
+ "pipistrelle",
2305
+ "placebo",
2306
+ "plans",
2307
+ "ple",
2308
+ "pleura",
2309
+ "pleurisy",
2310
+ "pm",
2311
+ "pneumococcal",
2312
+ "pneumonia",
2313
+ "policy",
2314
+ "polymers",
2315
+ "poor",
2316
+ "populations",
2317
+ "positive",
2318
+ "possible",
2319
+ "post",
2320
+ "postherpetic",
2321
+ "postpone",
2322
+ "potentially",
2323
+ "pott",
2324
+ "poultry.[163][164",
2325
+ "pox",
2326
+ "pr.",
2327
+ "predominantly",
2328
+ "prescribe",
2329
+ "presence",
2330
+ "present.[92",
2331
+ "press",
2332
+ "prevent",
2333
+ "prevented",
2334
+ "prevention",
2335
+ "preventive",
2336
+ "previous",
2337
+ "previously",
2338
+ "priced",
2339
+ "prion",
2340
+ "prior",
2341
+ "problem",
2342
+ "problems",
2343
+ "producing",
2344
+ "product",
2345
+ "products.[11",
2346
+ "prof",
2347
+ "prof.",
2348
+ "profile",
2349
+ "progress",
2350
+ "progressing",
2351
+ "progression",
2352
+ "progressive",
2353
+ "prolonged",
2354
+ "prophylaxis",
2355
+ "proportion",
2356
+ "protective",
2357
+ "protein",
2358
+ "proteins",
2359
+ "protozoan",
2360
+ "provide",
2361
+ "providers",
2362
+ "provincial",
2363
+ "pseudomonas",
2364
+ "psychiatric",
2365
+ "psychosocial",
2366
+ "pt.",
2367
+ "pto",
2368
+ "pulmonary",
2369
+ "pure",
2370
+ "pyogenes.[13",
2371
+ "q",
2372
+ "q.",
2373
+ "questions",
2374
+ "r",
2375
+ "r.",
2376
+ "r50",
2377
+ "ra",
2378
+ "rabies",
2379
+ "racecadotril",
2380
+ "radiation",
2381
+ "raising",
2382
+ "ral",
2383
+ "ram",
2384
+ "ran",
2385
+ "range",
2386
+ "rare",
2387
+ "rarely",
2388
+ "rasmussen",
2389
+ "rate",
2390
+ "rates",
2391
+ "rates.[94",
2392
+ "rax",
2393
+ "rce",
2394
+ "rds",
2395
+ "re",
2396
+ "re.",
2397
+ "reason",
2398
+ "recommended",
2399
+ "red",
2400
+ "reduce",
2401
+ "reduced",
2402
+ "reducing",
2403
+ "ree",
2404
+ "referred",
2405
+ "refractory",
2406
+ "regularly",
2407
+ "relative",
2408
+ "relatively",
2409
+ "release",
2410
+ "remain",
2411
+ "remedies",
2412
+ "remission",
2413
+ "ren",
2414
+ "rep",
2415
+ "rep.",
2416
+ "repair",
2417
+ "replace",
2418
+ "replication",
2419
+ "reported",
2420
+ "res",
2421
+ "resistance",
2422
+ "resistance.[165",
2423
+ "respiratory",
2424
+ "respond",
2425
+ "responds",
2426
+ "responsible",
2427
+ "responsiveness",
2428
+ "rest",
2429
+ "restless",
2430
+ "restrictions",
2431
+ "result",
2432
+ "resulted",
2433
+ "resulting",
2434
+ "results",
2435
+ "rev",
2436
+ "rev.",
2437
+ "revealed",
2438
+ "rge",
2439
+ "rgo",
2440
+ "rheumatoid",
2441
+ "ria",
2442
+ "ric",
2443
+ "rifampicin",
2444
+ "rifampin",
2445
+ "rifapentine.[90][91][92",
2446
+ "ril",
2447
+ "rima",
2448
+ "rimantadine",
2449
+ "rin",
2450
+ "rio",
2451
+ "ris",
2452
+ "risk",
2453
+ "risks",
2454
+ "rituximab",
2455
+ "river",
2456
+ "riz",
2457
+ "rk.",
2458
+ "rld",
2459
+ "rly",
2460
+ "rms",
2461
+ "rna",
2462
+ "rne",
2463
+ "rns",
2464
+ "rodents",
2465
+ "rof",
2466
+ "rol",
2467
+ "rom",
2468
+ "ros",
2469
+ "rp.",
2470
+ "rra",
2471
+ "rs.",
2472
+ "rse",
2473
+ "rst",
2474
+ "rsy",
2475
+ "rth",
2476
+ "rug",
2477
+ "runny",
2478
+ "rus",
2479
+ "russia,[162",
2480
+ "s",
2481
+ "s's",
2482
+ "s.",
2483
+ "s.c.",
2484
+ "saharan",
2485
+ "sal",
2486
+ "salmonella",
2487
+ "salts",
2488
+ "same",
2489
+ "sars",
2490
+ "saxagliptin",
2491
+ "scarring",
2492
+ "schizophrenia",
2493
+ "sclerosis",
2494
+ "scores",
2495
+ "scrofula",
2496
+ "sea",
2497
+ "season",
2498
+ "secondary",
2499
+ "sed",
2500
+ "seen",
2501
+ "seizures",
2502
+ "sen",
2503
+ "sen.",
2504
+ "sensation",
2505
+ "sense",
2506
+ "sep",
2507
+ "sep.",
2508
+ "sept",
2509
+ "sept.",
2510
+ "serious",
2511
+ "sertraline",
2512
+ "ses",
2513
+ "severe",
2514
+ "severe.[2",
2515
+ "severe.[5",
2516
+ "sh.",
2517
+ "sha",
2518
+ "shall",
2519
+ "she",
2520
+ "she's",
2521
+ "she\u2019s",
2522
+ "shigella",
2523
+ "shingles",
2524
+ "short",
2525
+ "should",
2526
+ "showed",
2527
+ "shown",
2528
+ "shrews",
2529
+ "sia",
2530
+ "side",
2531
+ "sierra",
2532
+ "significant",
2533
+ "signs",
2534
+ "silicate",
2535
+ "similar",
2536
+ "simplex",
2537
+ "single",
2538
+ "sinus",
2539
+ "sis",
2540
+ "sites",
2541
+ "situations.[1",
2542
+ "skin",
2543
+ "sks",
2544
+ "slit",
2545
+ "slow",
2546
+ "sly",
2547
+ "small",
2548
+ "smoking",
2549
+ "sms",
2550
+ "snri",
2551
+ "snris",
2552
+ "so",
2553
+ "social",
2554
+ "sodium",
2555
+ "sol",
2556
+ "some",
2557
+ "somethin",
2558
+ "somethin'",
2559
+ "something",
2560
+ "somethin\u2019",
2561
+ "sometimes",
2562
+ "son",
2563
+ "sore",
2564
+ "sores",
2565
+ "source",
2566
+ "south",
2567
+ "space",
2568
+ "species",
2569
+ "speculated",
2570
+ "spelled",
2571
+ "spinal",
2572
+ "spine",
2573
+ "splints",
2574
+ "spreads",
2575
+ "sputum",
2576
+ "srs",
2577
+ "ss.",
2578
+ "ssris",
2579
+ "st",
2580
+ "st.",
2581
+ "standard",
2582
+ "staphylococcus",
2583
+ "starting",
2584
+ "state",
2585
+ "states",
2586
+ "stating",
2587
+ "ste",
2588
+ "sterile",
2589
+ "steroids",
2590
+ "still",
2591
+ "stomach",
2592
+ "stools",
2593
+ "strain",
2594
+ "strains",
2595
+ "stranded",
2596
+ "streptococcus",
2597
+ "stress",
2598
+ "stretchiness",
2599
+ "strong",
2600
+ "sts",
2601
+ "studies",
2602
+ "sub",
2603
+ "subcutaneous",
2604
+ "such",
2605
+ "sue",
2606
+ "sufferers",
2607
+ "suggest",
2608
+ "sulfasalazine",
2609
+ "support",
2610
+ "supported",
2611
+ "surgery",
2612
+ "surgical",
2613
+ "susceptible",
2614
+ "su\u00c3",
2615
+ "su\u00e3",
2616
+ "sweats",
2617
+ "symptoms",
2618
+ "symptoms.[1",
2619
+ "syndrome",
2620
+ "syndrome.[11",
2621
+ "syndrome.[151",
2622
+ "syndromes",
2623
+ "synthesis",
2624
+ "syphilis",
2625
+ "system",
2626
+ "s\u2019s",
2627
+ "t",
2628
+ "t's",
2629
+ "t.",
2630
+ "ta",
2631
+ "takes",
2632
+ "taking",
2633
+ "tal",
2634
+ "target.[160",
2635
+ "tb",
2636
+ "tb.[19",
2637
+ "tb.[9",
2638
+ "tca",
2639
+ "td.",
2640
+ "ted",
2641
+ "tem",
2642
+ "ten",
2643
+ "tenn",
2644
+ "tenn.",
2645
+ "tentatively",
2646
+ "ter",
2647
+ "term",
2648
+ "terms",
2649
+ "tes",
2650
+ "testing",
2651
+ "tetanus",
2652
+ "than",
2653
+ "that",
2654
+ "that's",
2655
+ "that\u2019s",
2656
+ "the",
2657
+ "their",
2658
+ "them",
2659
+ "then",
2660
+ "therapy",
2661
+ "there",
2662
+ "there's",
2663
+ "therefore",
2664
+ "there\u2019s",
2665
+ "these",
2666
+ "they",
2667
+ "this",
2668
+ "this's",
2669
+ "this\u2019s",
2670
+ "those",
2671
+ "though",
2672
+ "thought",
2673
+ "three",
2674
+ "throat",
2675
+ "through",
2676
+ "ths",
2677
+ "thus",
2678
+ "thy",
2679
+ "tic",
2680
+ "ties",
2681
+ "times",
2682
+ "tin",
2683
+ "tired.[1",
2684
+ "tis",
2685
+ "tissue",
2686
+ "tissues",
2687
+ "tly",
2688
+ "tnf",
2689
+ "to",
2690
+ "tocilizumab",
2691
+ "tolerability",
2692
+ "tolerated",
2693
+ "tom",
2694
+ "tor",
2695
+ "toxicity",
2696
+ "tract",
2697
+ "transmission",
2698
+ "transmission\".[28",
2699
+ "transmitted",
2700
+ "transplanted",
2701
+ "traumatic",
2702
+ "travelers",
2703
+ "treat",
2704
+ "treated",
2705
+ "treating",
2706
+ "treatment",
2707
+ "treatment.[88",
2708
+ "treatment.[8][5][93",
2709
+ "treatments",
2710
+ "treatments.[8",
2711
+ "tremor",
2712
+ "trials",
2713
+ "trichomonas",
2714
+ "trichomoniasis).[8][9",
2715
+ "triple",
2716
+ "tromantadine",
2717
+ "try",
2718
+ "tuberculosis",
2719
+ "tuberculosis\".[20",
2720
+ "tuberculosis).[9",
2721
+ "tuberculosis.[9",
2722
+ "tuberculous",
2723
+ "tum",
2724
+ "two",
2725
+ "types",
2726
+ "typhoid",
2727
+ "typically",
2728
+ "t\u2019s",
2729
+ "u",
2730
+ "u.",
2731
+ "uce",
2732
+ "uch",
2733
+ "uct",
2734
+ "ude",
2735
+ "ued",
2736
+ "ues",
2737
+ "uff",
2738
+ "ug.",
2739
+ "ugh",
2740
+ "ugs",
2741
+ "uid",
2742
+ "ul.",
2743
+ "ula",
2744
+ "uld",
2745
+ "ult",
2746
+ "un.",
2747
+ "unclear",
2748
+ "und",
2749
+ "under",
2750
+ "undergo",
2751
+ "understand",
2752
+ "une",
2753
+ "ung",
2754
+ "united",
2755
+ "unknowingly",
2756
+ "unknown",
2757
+ "unrelated",
2758
+ "unwanted",
2759
+ "up",
2760
+ "upper",
2761
+ "ups",
2762
+ "ura",
2763
+ "ure",
2764
+ "urge",
2765
+ "urinary",
2766
+ "urinate",
2767
+ "urination",
2768
+ "urine",
2769
+ "urogenital",
2770
+ "urs",
2771
+ "us",
2772
+ "use",
2773
+ "use.[183][185",
2774
+ "used",
2775
+ "used.[51][90][93][92",
2776
+ "useful",
2777
+ "using",
2778
+ "ust",
2779
+ "usually",
2780
+ "ute",
2781
+ "uth",
2782
+ "uts",
2783
+ "v",
2784
+ "v.",
2785
+ "v.s",
2786
+ "v.s.",
2787
+ "v.v",
2788
+ "v_v",
2789
+ "va",
2790
+ "va.",
2791
+ "vaccine",
2792
+ "vaccines",
2793
+ "vaccines.[30",
2794
+ "vaginal",
2795
+ "vaginalis",
2796
+ "vaginosis",
2797
+ "val",
2798
+ "varicella",
2799
+ "variety",
2800
+ "various",
2801
+ "vast",
2802
+ "ve",
2803
+ "ved",
2804
+ "vel",
2805
+ "ven",
2806
+ "venlafaxine",
2807
+ "ventilation",
2808
+ "ver",
2809
+ "very",
2810
+ "ves",
2811
+ "via",
2812
+ "vildagliptin",
2813
+ "village",
2814
+ "vin",
2815
+ "vir",
2816
+ "viral",
2817
+ "viroid",
2818
+ "virulence",
2819
+ "virus",
2820
+ "virus.[1",
2821
+ "virus.[154",
2822
+ "virus.[39",
2823
+ "virus.[86",
2824
+ "viruses",
2825
+ "visible",
2826
+ "vomiting",
2827
+ "vs",
2828
+ "vs.",
2829
+ "w",
2830
+ "w's",
2831
+ "w.",
2832
+ "w/o",
2833
+ "was",
2834
+ "wash",
2835
+ "wash.",
2836
+ "waste",
2837
+ "watery",
2838
+ "we",
2839
+ "weakened",
2840
+ "wed",
2841
+ "week.[1",
2842
+ "weeks.[1",
2843
+ "weight",
2844
+ "wel",
2845
+ "well",
2846
+ "wellbutrin",
2847
+ "wer",
2848
+ "were",
2849
+ "west",
2850
+ "western",
2851
+ "what",
2852
+ "what's",
2853
+ "what\u2019s",
2854
+ "when",
2855
+ "when's",
2856
+ "when\u2019s",
2857
+ "where",
2858
+ "where's",
2859
+ "where\u2019s",
2860
+ "whether",
2861
+ "which",
2862
+ "while",
2863
+ "who",
2864
+ "who's",
2865
+ "whom",
2866
+ "who\u2019s",
2867
+ "why",
2868
+ "why's",
2869
+ "why\u2019s",
2870
+ "widespread",
2871
+ "will",
2872
+ "willing",
2873
+ "wis",
2874
+ "wis.",
2875
+ "with",
2876
+ "within",
2877
+ "without",
2878
+ "wo",
2879
+ "work",
2880
+ "world",
2881
+ "worsening",
2882
+ "would",
2883
+ "wounds",
2884
+ "wth",
2885
+ "w\u2019s",
2886
+ "x",
2887
+ "x'",
2888
+ "x'Xxxxx",
2889
+ "x'x",
2890
+ "x'xxxx",
2891
+ "x.",
2892
+ "x.X",
2893
+ "x.d",
2894
+ "x.x",
2895
+ "x.x.",
2896
+ "x/x",
2897
+ "xD",
2898
+ "xDD",
2899
+ "xX",
2900
+ "xXX",
2901
+ "x_X",
2902
+ "x_d",
2903
+ "x_x",
2904
+ "xd",
2905
+ "xdd",
2906
+ "xdxd",
2907
+ "xed",
2908
+ "xis",
2909
+ "xx",
2910
+ "xx'",
2911
+ "xx'x",
2912
+ "xx'xx",
2913
+ "xx.",
2914
+ "xx.[d",
2915
+ "xx.[dd",
2916
+ "xxx",
2917
+ "xxx\".[d",
2918
+ "xxx'x",
2919
+ "xxx.[d",
2920
+ "xxx.[dd",
2921
+ "xxx.[ddd][ddd",
2922
+ "xxx/xx",
2923
+ "xxx[dd",
2924
+ "xxxd",
2925
+ "xxxdd",
2926
+ "xxxx",
2927
+ "xxxx\").[dd",
2928
+ "xxxx\".[dd",
2929
+ "xxxx'",
2930
+ "xxxx'x",
2931
+ "xxxx).[d",
2932
+ "xxxx).[d][d",
2933
+ "xxxx).[dd][dd",
2934
+ "xxxx,[dd",
2935
+ "xxxx,[ddd",
2936
+ "xxxx.[d",
2937
+ "xxxx.[d][d",
2938
+ "xxxx.[d][d][d",
2939
+ "xxxx.[d][d][dd",
2940
+ "xxxx.[d][dd",
2941
+ "xxxx.[dd",
2942
+ "xxxx.[dd][dd",
2943
+ "xxxx.[dd][dd][dd",
2944
+ "xxxx.[dd][dd][dd][dd",
2945
+ "xxxx.[ddd",
2946
+ "xxxx.[ddd][ddd",
2947
+ "xxxx;[dd",
2948
+ "xxxx[dd",
2949
+ "xxxx[ddd",
2950
+ "xxxxd",
2951
+ "xxxx\u2019",
2952
+ "xxxx\u2019x",
2953
+ "xxxx\u20ac\u201cxxxx",
2954
+ "xxx\u2019x",
2955
+ "xx\u2019",
2956
+ "xx\u2019x",
2957
+ "xx\u2019xx",
2958
+ "x\u2019",
2959
+ "x\u2019x",
2960
+ "x\u2019xxxx",
2961
+ "x\u20ac",
2962
+ "x\ufe35x",
2963
+ "y",
2964
+ "y'",
2965
+ "y's",
2966
+ "y.",
2967
+ "year",
2968
+ "year.[91",
2969
+ "years.[89",
2970
+ "yeast",
2971
+ "yersinia",
2972
+ "you",
2973
+ "young",
2974
+ "ysm",
2975
+ "y\u2019",
2976
+ "y\u2019s",
2977
+ "z",
2978
+ "z.",
2979
+ "zanamivir",
2980
+ "zid",
2981
+ "zoster",
2982
+ "zyban",
2983
+ "|",
2984
+ "}",
2985
+ "\u00a0",
2986
+ "\u00a9",
2987
+ "\u00ac",
2988
+ "\u00ac_\u00ac",
2989
+ "\u00af",
2990
+ "\u00af\\(x)/\u00af",
2991
+ "\u00af\\(\u30c4)/\u00af",
2992
+ "\u00b0",
2993
+ "\u00b0C.",
2994
+ "\u00b0F.",
2995
+ "\u00b0K.",
2996
+ "\u00b0X.",
2997
+ "\u00b0c.",
2998
+ "\u00b0f.",
2999
+ "\u00b0k.",
3000
+ "\u00b0x.",
3001
+ "\u00e2",
3002
+ "\u00e2\u20ac",
3003
+ "\u00e4",
3004
+ "\u00e4.",
3005
+ "\u00f6",
3006
+ "\u00f6.",
3007
+ "\u00fc",
3008
+ "\u00fc.",
3009
+ "\u0ca0",
3010
+ "\u0ca0_\u0ca0",
3011
+ "\u0ca0\ufe35\u0ca0",
3012
+ "\u2014",
3013
+ "\u2018",
3014
+ "\u2018S",
3015
+ "\u2018X",
3016
+ "\u2018s",
3017
+ "\u2018x",
3018
+ "\u2019",
3019
+ "\u2019-(",
3020
+ "\u2019-)",
3021
+ "\u2019Cause",
3022
+ "\u2019Cos",
3023
+ "\u2019Coz",
3024
+ "\u2019Cuz",
3025
+ "\u2019S",
3026
+ "\u2019X",
3027
+ "\u2019Xxx",
3028
+ "\u2019Xxxxx",
3029
+ "\u2019am",
3030
+ "\u2019bout",
3031
+ "\u2019cause",
3032
+ "\u2019cos",
3033
+ "\u2019coz",
3034
+ "\u2019cuz",
3035
+ "\u2019d",
3036
+ "\u2019em",
3037
+ "\u2019ll",
3038
+ "\u2019m",
3039
+ "\u2019nuff",
3040
+ "\u2019re",
3041
+ "\u2019s",
3042
+ "\u2019ve",
3043
+ "\u2019x",
3044
+ "\u2019xx",
3045
+ "\u2019xxx",
3046
+ "\u2019xxxx",
3047
+ "\u2019y",
3048
+ "\u2019\u2019",
3049
+ "\u201c",
3050
+ "\u201c06",
3051
+ "\u201c10",
3052
+ "\u201c12",
3053
+ "\u201c20",
3054
+ "\u2501",
3055
+ "\u253b",
3056
+ "\u253b\u2501\u253b",
3057
+ "\u256f",
3058
+ "\u25a1",
3059
+ "\ufe35",
3060
+ "\uff09"
3061
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }