Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +28 -0
- medical-ner-task1/config.cfg +130 -0
- medical-ner-task1/meta.json +36 -0
- medical-ner-task1/ner/cfg +13 -0
- medical-ner-task1/ner/model +3 -0
- medical-ner-task1/ner/moves +1 -0
- medical-ner-task1/tokenizer +3 -0
- medical-ner-task1/vocab/key2row +1 -0
- medical-ner-task1/vocab/lookups.bin +3 -0
- medical-ner-task1/vocab/strings.json +5276 -0
- medical-ner-task1/vocab/vectors +0 -0
- medical-ner-task1/vocab/vectors.cfg +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ 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 |
+
medical-ner-task1/ner/model filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- spacy
|
| 4 |
+
- ner
|
| 5 |
+
- medical-ner
|
| 6 |
+
library_name: spacy
|
| 7 |
+
pipeline_tag: ner
|
| 8 |
+
language: en
|
| 9 |
+
license: mit
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Medical NER Model - medical-ner-task1
|
| 13 |
+
|
| 14 |
+
This model is trained to recognize medical entities including treatments, chronic diseases, cancers, and allergies.
|
| 15 |
+
|
| 16 |
+
## Model Details
|
| 17 |
+
- Task: medical-ner-task1
|
| 18 |
+
- Framework: spaCy
|
| 19 |
+
- Entity Types: TREATMENT, CHRONIC DISEASE, CANCER, ALLERGY, OTHER
|
| 20 |
+
|
| 21 |
+
## Usage
|
| 22 |
+
```python
|
| 23 |
+
import spacy
|
| 24 |
+
nlp = spacy.load("nitinyadav/continual_learning_ner_task1")
|
| 25 |
+
doc = nlp("Patient has been diagnosed with Type 2 Diabetes")
|
| 26 |
+
for ent in doc.ents:
|
| 27 |
+
print(ent.text, ent.label_)
|
| 28 |
+
```
|
medical-ner-task1/config.cfg
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[paths]
|
| 2 |
+
train = null
|
| 3 |
+
dev = null
|
| 4 |
+
vectors = null
|
| 5 |
+
init_tok2vec = null
|
| 6 |
+
|
| 7 |
+
[system]
|
| 8 |
+
seed = 0
|
| 9 |
+
gpu_allocator = null
|
| 10 |
+
|
| 11 |
+
[nlp]
|
| 12 |
+
lang = "en"
|
| 13 |
+
pipeline = ["ner"]
|
| 14 |
+
disabled = []
|
| 15 |
+
before_creation = null
|
| 16 |
+
after_creation = null
|
| 17 |
+
after_pipeline_creation = null
|
| 18 |
+
batch_size = 1000
|
| 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.HashEmbedCNN.v2"
|
| 42 |
+
pretrained_vectors = null
|
| 43 |
+
width = 96
|
| 44 |
+
depth = 4
|
| 45 |
+
embed_size = 2000
|
| 46 |
+
window_size = 1
|
| 47 |
+
maxout_pieces = 3
|
| 48 |
+
subword_features = true
|
| 49 |
+
|
| 50 |
+
[corpora]
|
| 51 |
+
|
| 52 |
+
[corpora.dev]
|
| 53 |
+
@readers = "spacy.Corpus.v1"
|
| 54 |
+
path = ${paths.dev}
|
| 55 |
+
gold_preproc = false
|
| 56 |
+
max_length = 0
|
| 57 |
+
limit = 0
|
| 58 |
+
augmenter = null
|
| 59 |
+
|
| 60 |
+
[corpora.train]
|
| 61 |
+
@readers = "spacy.Corpus.v1"
|
| 62 |
+
path = ${paths.train}
|
| 63 |
+
gold_preproc = false
|
| 64 |
+
max_length = 0
|
| 65 |
+
limit = 0
|
| 66 |
+
augmenter = null
|
| 67 |
+
|
| 68 |
+
[training]
|
| 69 |
+
seed = ${system.seed}
|
| 70 |
+
gpu_allocator = ${system.gpu_allocator}
|
| 71 |
+
dropout = 0.1
|
| 72 |
+
accumulate_gradient = 1
|
| 73 |
+
patience = 1600
|
| 74 |
+
max_epochs = 0
|
| 75 |
+
max_steps = 20000
|
| 76 |
+
eval_frequency = 200
|
| 77 |
+
frozen_components = []
|
| 78 |
+
annotating_components = []
|
| 79 |
+
dev_corpus = "corpora.dev"
|
| 80 |
+
train_corpus = "corpora.train"
|
| 81 |
+
before_to_disk = null
|
| 82 |
+
before_update = null
|
| 83 |
+
|
| 84 |
+
[training.batcher]
|
| 85 |
+
@batchers = "spacy.batch_by_words.v1"
|
| 86 |
+
discard_oversize = false
|
| 87 |
+
tolerance = 0.2
|
| 88 |
+
get_length = null
|
| 89 |
+
|
| 90 |
+
[training.batcher.size]
|
| 91 |
+
@schedules = "compounding.v1"
|
| 92 |
+
start = 100
|
| 93 |
+
stop = 1000
|
| 94 |
+
compound = 1.001
|
| 95 |
+
t = 0.0
|
| 96 |
+
|
| 97 |
+
[training.logger]
|
| 98 |
+
@loggers = "spacy.ConsoleLogger.v1"
|
| 99 |
+
progress_bar = false
|
| 100 |
+
|
| 101 |
+
[training.optimizer]
|
| 102 |
+
@optimizers = "Adam.v1"
|
| 103 |
+
beta1 = 0.9
|
| 104 |
+
beta2 = 0.999
|
| 105 |
+
L2_is_weight_decay = true
|
| 106 |
+
L2 = 0.01
|
| 107 |
+
grad_clip = 1.0
|
| 108 |
+
use_averages = false
|
| 109 |
+
eps = 0.00000001
|
| 110 |
+
learn_rate = 0.001
|
| 111 |
+
|
| 112 |
+
[training.score_weights]
|
| 113 |
+
ents_f = 1.0
|
| 114 |
+
ents_p = 0.0
|
| 115 |
+
ents_r = 0.0
|
| 116 |
+
ents_per_type = null
|
| 117 |
+
|
| 118 |
+
[pretraining]
|
| 119 |
+
|
| 120 |
+
[initialize]
|
| 121 |
+
vectors = ${paths.vectors}
|
| 122 |
+
init_tok2vec = ${paths.init_tok2vec}
|
| 123 |
+
vocab_data = null
|
| 124 |
+
lookups = null
|
| 125 |
+
before_init = null
|
| 126 |
+
after_init = null
|
| 127 |
+
|
| 128 |
+
[initialize.components]
|
| 129 |
+
|
| 130 |
+
[initialize.tokenizer]
|
medical-ner-task1/meta.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"lang":"en",
|
| 3 |
+
"name":"pipeline",
|
| 4 |
+
"version":"0.0.0",
|
| 5 |
+
"spacy_version":">=3.7.5,<3.8.0",
|
| 6 |
+
"description":"",
|
| 7 |
+
"author":"",
|
| 8 |
+
"email":"",
|
| 9 |
+
"url":"",
|
| 10 |
+
"license":"",
|
| 11 |
+
"spacy_git_version":"a6d0fc360",
|
| 12 |
+
"vectors":{
|
| 13 |
+
"width":0,
|
| 14 |
+
"vectors":0,
|
| 15 |
+
"keys":0,
|
| 16 |
+
"name":null,
|
| 17 |
+
"mode":"default"
|
| 18 |
+
},
|
| 19 |
+
"labels":{
|
| 20 |
+
"ner":[
|
| 21 |
+
"ALLERGY",
|
| 22 |
+
"CANCER",
|
| 23 |
+
"CHRONIC DISEASE",
|
| 24 |
+
"TREATMENT"
|
| 25 |
+
]
|
| 26 |
+
},
|
| 27 |
+
"pipeline":[
|
| 28 |
+
"ner"
|
| 29 |
+
],
|
| 30 |
+
"components":[
|
| 31 |
+
"ner"
|
| 32 |
+
],
|
| 33 |
+
"disabled":[
|
| 34 |
+
|
| 35 |
+
]
|
| 36 |
+
}
|
medical-ner-task1/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 |
+
}
|
medical-ner-task1/ner/model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9800cc26029116735fde5785a653bca0c09e7a89e8e44c0f74bb0adbbcee91c3
|
| 3 |
+
size 3836040
|
medical-ner-task1/ner/moves
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
��moves�${"0":{},"1":{"TREATMENT":-1,"CANCER":-2,"CHRONIC DISEASE":-3,"ALLERGY":-4},"2":{"TREATMENT":-1,"CANCER":-2,"CHRONIC DISEASE":-3,"ALLERGY":-4},"3":{"TREATMENT":-1,"CANCER":-2,"CHRONIC DISEASE":-3,"ALLERGY":-4},"4":{"":1,"TREATMENT":-1,"CANCER":-2,"CHRONIC DISEASE":-3,"ALLERGY":-4},"5":{"":1}}�cfg��neg_key�
|
medical-ner-task1/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�
|
medical-ner-task1/vocab/key2row
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
�
|
medical-ner-task1/vocab/lookups.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
|
| 3 |
+
size 1
|
medical-ner-task1/vocab/strings.json
ADDED
|
@@ -0,0 +1,5276 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
"\t",
|
| 3 |
+
"\n",
|
| 4 |
+
" ",
|
| 5 |
+
" ",
|
| 6 |
+
"!",
|
| 7 |
+
"\"",
|
| 8 |
+
"#",
|
| 9 |
+
"%",
|
| 10 |
+
"'",
|
| 11 |
+
"''",
|
| 12 |
+
"'-(",
|
| 13 |
+
"'-)",
|
| 14 |
+
"'Cause",
|
| 15 |
+
"'Cos",
|
| 16 |
+
"'Coz",
|
| 17 |
+
"'Cuz",
|
| 18 |
+
"'S",
|
| 19 |
+
"'X",
|
| 20 |
+
"'Xxx",
|
| 21 |
+
"'Xxxxx",
|
| 22 |
+
"'am",
|
| 23 |
+
"'bout",
|
| 24 |
+
"'cause",
|
| 25 |
+
"'cos",
|
| 26 |
+
"'coz",
|
| 27 |
+
"'cuz",
|
| 28 |
+
"'d",
|
| 29 |
+
"'em",
|
| 30 |
+
"'ll",
|
| 31 |
+
"'m",
|
| 32 |
+
"'nuff",
|
| 33 |
+
"'re",
|
| 34 |
+
"'s",
|
| 35 |
+
"'ve",
|
| 36 |
+
"'x",
|
| 37 |
+
"'xx",
|
| 38 |
+
"'xxx",
|
| 39 |
+
"'xxxx",
|
| 40 |
+
"'y",
|
| 41 |
+
"(",
|
| 42 |
+
"(((",
|
| 43 |
+
"(*>",
|
| 44 |
+
"(*_*)",
|
| 45 |
+
"(-8",
|
| 46 |
+
"(-:",
|
| 47 |
+
"(-;",
|
| 48 |
+
"(-_-)",
|
| 49 |
+
"(-d",
|
| 50 |
+
"(._.)",
|
| 51 |
+
"(:",
|
| 52 |
+
"(;",
|
| 53 |
+
"(=",
|
| 54 |
+
"(>_<)",
|
| 55 |
+
"(^_^)",
|
| 56 |
+
"(o:",
|
| 57 |
+
"(x:",
|
| 58 |
+
"(x_x)",
|
| 59 |
+
"(\u00ac_\u00ac)",
|
| 60 |
+
"(\u0ca0_\u0ca0)",
|
| 61 |
+
"(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
|
| 62 |
+
")",
|
| 63 |
+
")(1",
|
| 64 |
+
")))",
|
| 65 |
+
")-:",
|
| 66 |
+
")/\u00af",
|
| 67 |
+
")20",
|
| 68 |
+
"):",
|
| 69 |
+
"*",
|
| 70 |
+
"+",
|
| 71 |
+
",",
|
| 72 |
+
",pericarditis",
|
| 73 |
+
",xxxx",
|
| 74 |
+
"-",
|
| 75 |
+
"-((",
|
| 76 |
+
"-))",
|
| 77 |
+
"-/",
|
| 78 |
+
"-0",
|
| 79 |
+
"-1",
|
| 80 |
+
"-14",
|
| 81 |
+
"-17",
|
| 82 |
+
"-3",
|
| 83 |
+
"-8",
|
| 84 |
+
"-D",
|
| 85 |
+
"-O",
|
| 86 |
+
"-P",
|
| 87 |
+
"-X",
|
| 88 |
+
"-_-",
|
| 89 |
+
"-__-",
|
| 90 |
+
"-d",
|
| 91 |
+
"-dd",
|
| 92 |
+
"-o",
|
| 93 |
+
"-p",
|
| 94 |
+
"-reported",
|
| 95 |
+
"-x",
|
| 96 |
+
"-xxxx",
|
| 97 |
+
"-|",
|
| 98 |
+
".",
|
| 99 |
+
".5x",
|
| 100 |
+
".73",
|
| 101 |
+
".C.",
|
| 102 |
+
".D.",
|
| 103 |
+
".E.",
|
| 104 |
+
".G.",
|
| 105 |
+
".H.",
|
| 106 |
+
".J.",
|
| 107 |
+
".M.",
|
| 108 |
+
".Y.",
|
| 109 |
+
"._.",
|
| 110 |
+
".e.",
|
| 111 |
+
".g.",
|
| 112 |
+
".m.",
|
| 113 |
+
".s.",
|
| 114 |
+
"/",
|
| 115 |
+
"/10",
|
| 116 |
+
"/3",
|
| 117 |
+
"/95",
|
| 118 |
+
"/=",
|
| 119 |
+
"/d",
|
| 120 |
+
"/or",
|
| 121 |
+
"0",
|
| 122 |
+
"0.0",
|
| 123 |
+
"0.5",
|
| 124 |
+
"0.o",
|
| 125 |
+
"000",
|
| 126 |
+
"004",
|
| 127 |
+
"015",
|
| 128 |
+
"016",
|
| 129 |
+
"0_0",
|
| 130 |
+
"0_o",
|
| 131 |
+
"1",
|
| 132 |
+
"1,000",
|
| 133 |
+
"1,500",
|
| 134 |
+
"1.1",
|
| 135 |
+
"1.3",
|
| 136 |
+
"1.5",
|
| 137 |
+
"1.5x",
|
| 138 |
+
"1.6",
|
| 139 |
+
"1.6mg",
|
| 140 |
+
"1/2",
|
| 141 |
+
"10",
|
| 142 |
+
"10,000",
|
| 143 |
+
"100",
|
| 144 |
+
"1000",
|
| 145 |
+
"102",
|
| 146 |
+
"103",
|
| 147 |
+
"10a.m",
|
| 148 |
+
"10a.m.",
|
| 149 |
+
"10p.m",
|
| 150 |
+
"10p.m.",
|
| 151 |
+
"11",
|
| 152 |
+
"1100",
|
| 153 |
+
"11a.m",
|
| 154 |
+
"11a.m.",
|
| 155 |
+
"11p.m",
|
| 156 |
+
"11p.m.",
|
| 157 |
+
"12",
|
| 158 |
+
"126",
|
| 159 |
+
"12a.m",
|
| 160 |
+
"12a.m.",
|
| 161 |
+
"12p.m",
|
| 162 |
+
"12p.m.",
|
| 163 |
+
"13",
|
| 164 |
+
"131",
|
| 165 |
+
"14",
|
| 166 |
+
"1500",
|
| 167 |
+
"16",
|
| 168 |
+
"165/95",
|
| 169 |
+
"177",
|
| 170 |
+
"18",
|
| 171 |
+
"180",
|
| 172 |
+
"18F]Flutemetamol",
|
| 173 |
+
"18f]flutemetamol",
|
| 174 |
+
"19X",
|
| 175 |
+
"1D1",
|
| 176 |
+
"1a.m",
|
| 177 |
+
"1a.m.",
|
| 178 |
+
"1p.m",
|
| 179 |
+
"1p.m.",
|
| 180 |
+
"2",
|
| 181 |
+
"2.0",
|
| 182 |
+
"2.5",
|
| 183 |
+
"20",
|
| 184 |
+
"20,000",
|
| 185 |
+
"200",
|
| 186 |
+
"2000",
|
| 187 |
+
"2004",
|
| 188 |
+
"2015",
|
| 189 |
+
"2016",
|
| 190 |
+
"21",
|
| 191 |
+
"23",
|
| 192 |
+
"24",
|
| 193 |
+
"25",
|
| 194 |
+
"28",
|
| 195 |
+
"2C8",
|
| 196 |
+
"2a.m",
|
| 197 |
+
"2a.m.",
|
| 198 |
+
"2nd",
|
| 199 |
+
"2p.m",
|
| 200 |
+
"2p.m.",
|
| 201 |
+
"3",
|
| 202 |
+
"3.0",
|
| 203 |
+
"3.1.1",
|
| 204 |
+
"30",
|
| 205 |
+
"33",
|
| 206 |
+
"333",
|
| 207 |
+
"35",
|
| 208 |
+
"350",
|
| 209 |
+
"36",
|
| 210 |
+
"3A4",
|
| 211 |
+
"3a.m",
|
| 212 |
+
"3a.m.",
|
| 213 |
+
"3m2",
|
| 214 |
+
"3p.m",
|
| 215 |
+
"3p.m.",
|
| 216 |
+
"3rd",
|
| 217 |
+
"4",
|
| 218 |
+
"40",
|
| 219 |
+
"42",
|
| 220 |
+
"450",
|
| 221 |
+
"48",
|
| 222 |
+
"4S",
|
| 223 |
+
"4a.m",
|
| 224 |
+
"4a.m.",
|
| 225 |
+
"4p.m",
|
| 226 |
+
"4p.m.",
|
| 227 |
+
"4s",
|
| 228 |
+
"5",
|
| 229 |
+
"5.0",
|
| 230 |
+
"50",
|
| 231 |
+
"50,000",
|
| 232 |
+
"500",
|
| 233 |
+
"58R",
|
| 234 |
+
"5a.m",
|
| 235 |
+
"5a.m.",
|
| 236 |
+
"5p.m",
|
| 237 |
+
"5p.m.",
|
| 238 |
+
"5x",
|
| 239 |
+
"6",
|
| 240 |
+
"6.5",
|
| 241 |
+
"60",
|
| 242 |
+
"61Q",
|
| 243 |
+
"65",
|
| 244 |
+
"65R",
|
| 245 |
+
"6a.m",
|
| 246 |
+
"6a.m.",
|
| 247 |
+
"6mg",
|
| 248 |
+
"6p.m",
|
| 249 |
+
"6p.m.",
|
| 250 |
+
"7",
|
| 251 |
+
"70",
|
| 252 |
+
"72",
|
| 253 |
+
"75",
|
| 254 |
+
"75,000",
|
| 255 |
+
"750",
|
| 256 |
+
"7a.m",
|
| 257 |
+
"7a.m.",
|
| 258 |
+
"7p.m",
|
| 259 |
+
"7p.m.",
|
| 260 |
+
"8",
|
| 261 |
+
"8)",
|
| 262 |
+
"8-",
|
| 263 |
+
"8-)",
|
| 264 |
+
"8-D",
|
| 265 |
+
"8-d",
|
| 266 |
+
"8.0",
|
| 267 |
+
"84V",
|
| 268 |
+
"8D",
|
| 269 |
+
"8a.m",
|
| 270 |
+
"8a.m.",
|
| 271 |
+
"8d",
|
| 272 |
+
"8p.m",
|
| 273 |
+
"8p.m.",
|
| 274 |
+
"9",
|
| 275 |
+
"9/10",
|
| 276 |
+
"90",
|
| 277 |
+
"970",
|
| 278 |
+
"9a.m",
|
| 279 |
+
"9a.m.",
|
| 280 |
+
"9p.m",
|
| 281 |
+
"9p.m.",
|
| 282 |
+
":",
|
| 283 |
+
":'(",
|
| 284 |
+
":')",
|
| 285 |
+
":'-(",
|
| 286 |
+
":'-)",
|
| 287 |
+
":(",
|
| 288 |
+
":((",
|
| 289 |
+
":(((",
|
| 290 |
+
":()",
|
| 291 |
+
":)",
|
| 292 |
+
":))",
|
| 293 |
+
":)))",
|
| 294 |
+
":*",
|
| 295 |
+
":-(",
|
| 296 |
+
":-((",
|
| 297 |
+
":-(((",
|
| 298 |
+
":-)",
|
| 299 |
+
":-))",
|
| 300 |
+
":-)))",
|
| 301 |
+
":-*",
|
| 302 |
+
":-/",
|
| 303 |
+
":-0",
|
| 304 |
+
":-3",
|
| 305 |
+
":->",
|
| 306 |
+
":-D",
|
| 307 |
+
":-O",
|
| 308 |
+
":-P",
|
| 309 |
+
":-X",
|
| 310 |
+
":-]",
|
| 311 |
+
":-d",
|
| 312 |
+
":-o",
|
| 313 |
+
":-p",
|
| 314 |
+
":-x",
|
| 315 |
+
":-|",
|
| 316 |
+
":-}",
|
| 317 |
+
":/",
|
| 318 |
+
":0",
|
| 319 |
+
":1",
|
| 320 |
+
":3",
|
| 321 |
+
":>",
|
| 322 |
+
":D",
|
| 323 |
+
":O",
|
| 324 |
+
":P",
|
| 325 |
+
":X",
|
| 326 |
+
":]",
|
| 327 |
+
":d",
|
| 328 |
+
":o",
|
| 329 |
+
":o)",
|
| 330 |
+
":p",
|
| 331 |
+
":x",
|
| 332 |
+
":x)",
|
| 333 |
+
":|",
|
| 334 |
+
":}",
|
| 335 |
+
":\u2019(",
|
| 336 |
+
":\u2019)",
|
| 337 |
+
":\u2019-(",
|
| 338 |
+
":\u2019-)",
|
| 339 |
+
";",
|
| 340 |
+
";)",
|
| 341 |
+
";-)",
|
| 342 |
+
";-D",
|
| 343 |
+
";-X",
|
| 344 |
+
";-d",
|
| 345 |
+
";14",
|
| 346 |
+
";D",
|
| 347 |
+
";X",
|
| 348 |
+
";_;",
|
| 349 |
+
";d",
|
| 350 |
+
"<",
|
| 351 |
+
"<.<",
|
| 352 |
+
"</3",
|
| 353 |
+
"</d",
|
| 354 |
+
"<3",
|
| 355 |
+
"<33",
|
| 356 |
+
"<333",
|
| 357 |
+
"<d",
|
| 358 |
+
"<dd",
|
| 359 |
+
"<ddd",
|
| 360 |
+
"<space>",
|
| 361 |
+
"<xxxx>",
|
| 362 |
+
"=",
|
| 363 |
+
"=(",
|
| 364 |
+
"=)",
|
| 365 |
+
"=/",
|
| 366 |
+
"=3",
|
| 367 |
+
"=D",
|
| 368 |
+
"=X",
|
| 369 |
+
"=[",
|
| 370 |
+
"=]",
|
| 371 |
+
"=d",
|
| 372 |
+
"=|",
|
| 373 |
+
">",
|
| 374 |
+
">.<",
|
| 375 |
+
">.>",
|
| 376 |
+
">90",
|
| 377 |
+
">:(",
|
| 378 |
+
">:o",
|
| 379 |
+
">:x",
|
| 380 |
+
"><(((*>",
|
| 381 |
+
"@",
|
| 382 |
+
"@_@",
|
| 383 |
+
"A",
|
| 384 |
+
"A-4",
|
| 385 |
+
"A1C",
|
| 386 |
+
"A1c",
|
| 387 |
+
"AAA",
|
| 388 |
+
"AASLD",
|
| 389 |
+
"ABG",
|
| 390 |
+
"ACE",
|
| 391 |
+
"ACOG",
|
| 392 |
+
"ACR",
|
| 393 |
+
"ACS",
|
| 394 |
+
"ACS/",
|
| 395 |
+
"AEs",
|
| 396 |
+
"AF",
|
| 397 |
+
"AI",
|
| 398 |
+
"AIDS",
|
| 399 |
+
"AITL",
|
| 400 |
+
"AKT",
|
| 401 |
+
"ALL",
|
| 402 |
+
"ALLERGY",
|
| 403 |
+
"ALT",
|
| 404 |
+
"AML",
|
| 405 |
+
"ANC",
|
| 406 |
+
"AOI",
|
| 407 |
+
"ART",
|
| 408 |
+
"ASA",
|
| 409 |
+
"ASCT",
|
| 410 |
+
"AST",
|
| 411 |
+
"AST)/alanine",
|
| 412 |
+
"AT",
|
| 413 |
+
"ATS",
|
| 414 |
+
"AV",
|
| 415 |
+
"Able",
|
| 416 |
+
"Abnormal",
|
| 417 |
+
"Absolute",
|
| 418 |
+
"Access",
|
| 419 |
+
"Accident",
|
| 420 |
+
"Acromegaly",
|
| 421 |
+
"Active",
|
| 422 |
+
"Acute",
|
| 423 |
+
"Acutely",
|
| 424 |
+
"Additional",
|
| 425 |
+
"Additionally",
|
| 426 |
+
"Adequate",
|
| 427 |
+
"Adm",
|
| 428 |
+
"Adm.",
|
| 429 |
+
"Administration",
|
| 430 |
+
"Adolescents",
|
| 431 |
+
"Adriamycin",
|
| 432 |
+
"Adult",
|
| 433 |
+
"Advanced",
|
| 434 |
+
"Afrin",
|
| 435 |
+
"Age",
|
| 436 |
+
"Agents",
|
| 437 |
+
"Ai",
|
| 438 |
+
"Ak",
|
| 439 |
+
"Ak.",
|
| 440 |
+
"Ala",
|
| 441 |
+
"Ala.",
|
| 442 |
+
"Alabama",
|
| 443 |
+
"Alaska",
|
| 444 |
+
"Alcohol",
|
| 445 |
+
"Alcoholic",
|
| 446 |
+
"Alkylators",
|
| 447 |
+
"All",
|
| 448 |
+
"Allergic",
|
| 449 |
+
"Allergy",
|
| 450 |
+
"Already",
|
| 451 |
+
"Alterations",
|
| 452 |
+
"Amblyopia",
|
| 453 |
+
"American",
|
| 454 |
+
"Amputees",
|
| 455 |
+
"Amylase",
|
| 456 |
+
"An",
|
| 457 |
+
"Anesthesiologists",
|
| 458 |
+
"Ann",
|
| 459 |
+
"Anti",
|
| 460 |
+
"Anticoagulant",
|
| 461 |
+
"Any",
|
| 462 |
+
"Aplastic",
|
| 463 |
+
"Appendix",
|
| 464 |
+
"Apr",
|
| 465 |
+
"Apr.",
|
| 466 |
+
"April",
|
| 467 |
+
"Arbor",
|
| 468 |
+
"Are",
|
| 469 |
+
"Ariz",
|
| 470 |
+
"Ariz.",
|
| 471 |
+
"Arizona",
|
| 472 |
+
"Ark",
|
| 473 |
+
"Ark.",
|
| 474 |
+
"Arkansas",
|
| 475 |
+
"Arm",
|
| 476 |
+
"Army",
|
| 477 |
+
"Arterial",
|
| 478 |
+
"Artery",
|
| 479 |
+
"Aspartate",
|
| 480 |
+
"Association",
|
| 481 |
+
"At",
|
| 482 |
+
"Attack",
|
| 483 |
+
"Aug",
|
| 484 |
+
"Aug.",
|
| 485 |
+
"August",
|
| 486 |
+
"Available",
|
| 487 |
+
"Avastin",
|
| 488 |
+
"Axillary",
|
| 489 |
+
"Axis",
|
| 490 |
+
"B",
|
| 491 |
+
"B-2",
|
| 492 |
+
"B2",
|
| 493 |
+
"BCL",
|
| 494 |
+
"BCL2",
|
| 495 |
+
"BCL6",
|
| 496 |
+
"BLINATUMOMAB",
|
| 497 |
+
"BM",
|
| 498 |
+
"BNP",
|
| 499 |
+
"BOC",
|
| 500 |
+
"BOS",
|
| 501 |
+
"BRAF",
|
| 502 |
+
"BRCA",
|
| 503 |
+
"BRCA1",
|
| 504 |
+
"BRCA2",
|
| 505 |
+
"Based",
|
| 506 |
+
"Baseline",
|
| 507 |
+
"Because",
|
| 508 |
+
"Bilateral",
|
| 509 |
+
"Biopsy",
|
| 510 |
+
"Blenoxane",
|
| 511 |
+
"Board",
|
| 512 |
+
"Body",
|
| 513 |
+
"Bone",
|
| 514 |
+
"Bosentan",
|
| 515 |
+
"Both",
|
| 516 |
+
"Bovine",
|
| 517 |
+
"Breast",
|
| 518 |
+
"Bronchial",
|
| 519 |
+
"Bros",
|
| 520 |
+
"Bros.",
|
| 521 |
+
"Burr",
|
| 522 |
+
"Burtomab",
|
| 523 |
+
"Bypass",
|
| 524 |
+
"C",
|
| 525 |
+
"C'm",
|
| 526 |
+
"C++",
|
| 527 |
+
"C.",
|
| 528 |
+
"C1D1",
|
| 529 |
+
"CA1",
|
| 530 |
+
"CA2",
|
| 531 |
+
"CABG",
|
| 532 |
+
"CAE",
|
| 533 |
+
"CANCER",
|
| 534 |
+
"CBP",
|
| 535 |
+
"CBT",
|
| 536 |
+
"CCC",
|
| 537 |
+
"CD)20",
|
| 538 |
+
"CD10",
|
| 539 |
+
"CD15",
|
| 540 |
+
"CD19",
|
| 541 |
+
"CD20",
|
| 542 |
+
"CD30",
|
| 543 |
+
"CD4",
|
| 544 |
+
"CD45",
|
| 545 |
+
"CDH",
|
| 546 |
+
"CFU",
|
| 547 |
+
"CHF",
|
| 548 |
+
"CHO",
|
| 549 |
+
"CHRONIC DISEASE",
|
| 550 |
+
"CID",
|
| 551 |
+
"CIS",
|
| 552 |
+
"CKD",
|
| 553 |
+
"CL2",
|
| 554 |
+
"CL6",
|
| 555 |
+
"CLC",
|
| 556 |
+
"CLI",
|
| 557 |
+
"CLL",
|
| 558 |
+
"CMC",
|
| 559 |
+
"CMML",
|
| 560 |
+
"CMV",
|
| 561 |
+
"CNI",
|
| 562 |
+
"CNS",
|
| 563 |
+
"COG",
|
| 564 |
+
"COTI-2",
|
| 565 |
+
"CPAP",
|
| 566 |
+
"CPB>90",
|
| 567 |
+
"CPY3A4",
|
| 568 |
+
"CR",
|
| 569 |
+
"CRAB",
|
| 570 |
+
"CRC",
|
| 571 |
+
"CS/",
|
| 572 |
+
"CSF",
|
| 573 |
+
"CT",
|
| 574 |
+
"CTCAE",
|
| 575 |
+
"CTLA-4",
|
| 576 |
+
"CVA",
|
| 577 |
+
"CVAD",
|
| 578 |
+
"CYP",
|
| 579 |
+
"CYP2C8",
|
| 580 |
+
"CYP3A4",
|
| 581 |
+
"Ca",
|
| 582 |
+
"Calan",
|
| 583 |
+
"Calcium",
|
| 584 |
+
"Calif",
|
| 585 |
+
"Calif.",
|
| 586 |
+
"California",
|
| 587 |
+
"Can",
|
| 588 |
+
"Cancer",
|
| 589 |
+
"Cancers",
|
| 590 |
+
"Cannabis",
|
| 591 |
+
"Caplin",
|
| 592 |
+
"Captopril",
|
| 593 |
+
"Cardiac",
|
| 594 |
+
"Carfilzomib",
|
| 595 |
+
"Category",
|
| 596 |
+
"Cauda",
|
| 597 |
+
"Cause",
|
| 598 |
+
"Caution",
|
| 599 |
+
"Cell",
|
| 600 |
+
"Center",
|
| 601 |
+
"Central",
|
| 602 |
+
"Cerebral",
|
| 603 |
+
"Cerebrovascular",
|
| 604 |
+
"Cervical",
|
| 605 |
+
"Chagas",
|
| 606 |
+
"Chemotherapy",
|
| 607 |
+
"Chest",
|
| 608 |
+
"Chron",
|
| 609 |
+
"Chronic",
|
| 610 |
+
"Class",
|
| 611 |
+
"Classification",
|
| 612 |
+
"Clinic",
|
| 613 |
+
"Clinical",
|
| 614 |
+
"Clinically",
|
| 615 |
+
"Co",
|
| 616 |
+
"Co.",
|
| 617 |
+
"Cohort",
|
| 618 |
+
"Collagen",
|
| 619 |
+
"Colo",
|
| 620 |
+
"Colo.",
|
| 621 |
+
"Colorado",
|
| 622 |
+
"Committee",
|
| 623 |
+
"Complete",
|
| 624 |
+
"Concomitant",
|
| 625 |
+
"Concurrent",
|
| 626 |
+
"Confirmed",
|
| 627 |
+
"Congestive",
|
| 628 |
+
"Conn",
|
| 629 |
+
"Conn.",
|
| 630 |
+
"Connecticut",
|
| 631 |
+
"Continue",
|
| 632 |
+
"Cooperative",
|
| 633 |
+
"Coronary",
|
| 634 |
+
"Corp",
|
| 635 |
+
"Corp.",
|
| 636 |
+
"Corticosteroid",
|
| 637 |
+
"Cortisol",
|
| 638 |
+
"Cos",
|
| 639 |
+
"Could",
|
| 640 |
+
"Coz",
|
| 641 |
+
"Criteria",
|
| 642 |
+
"Cuff",
|
| 643 |
+
"Current",
|
| 644 |
+
"Currently",
|
| 645 |
+
"Cushing",
|
| 646 |
+
"Cuz",
|
| 647 |
+
"Cycle",
|
| 648 |
+
"Cytopenias",
|
| 649 |
+
"C\u2019m",
|
| 650 |
+
"D",
|
| 651 |
+
"D)(1",
|
| 652 |
+
"D.",
|
| 653 |
+
"D.C.",
|
| 654 |
+
"D1",
|
| 655 |
+
"D10",
|
| 656 |
+
"D15",
|
| 657 |
+
"D19",
|
| 658 |
+
"D20",
|
| 659 |
+
"D3",
|
| 660 |
+
"D30",
|
| 661 |
+
"D45",
|
| 662 |
+
"DAC",
|
| 663 |
+
"DCIS",
|
| 664 |
+
"DE5",
|
| 665 |
+
"DIPG",
|
| 666 |
+
"DLBCL",
|
| 667 |
+
"DLCO",
|
| 668 |
+
"DM",
|
| 669 |
+
"DMT",
|
| 670 |
+
"DOTA",
|
| 671 |
+
"DSA",
|
| 672 |
+
"Dana",
|
| 673 |
+
"Dare",
|
| 674 |
+
"Day",
|
| 675 |
+
"Dec",
|
| 676 |
+
"Dec.",
|
| 677 |
+
"December",
|
| 678 |
+
"Defining",
|
| 679 |
+
"Definite",
|
| 680 |
+
"Del",
|
| 681 |
+
"Del.",
|
| 682 |
+
"Delaware",
|
| 683 |
+
"Dementia",
|
| 684 |
+
"Demonstration",
|
| 685 |
+
"Department",
|
| 686 |
+
"Depression",
|
| 687 |
+
"Desires",
|
| 688 |
+
"Device",
|
| 689 |
+
"Diagnosed",
|
| 690 |
+
"Diagnosis",
|
| 691 |
+
"Diagnostic",
|
| 692 |
+
"Did",
|
| 693 |
+
"Disease",
|
| 694 |
+
"Disorders",
|
| 695 |
+
"Do",
|
| 696 |
+
"Documented",
|
| 697 |
+
"Does",
|
| 698 |
+
"Doin",
|
| 699 |
+
"Doin'",
|
| 700 |
+
"Doin\u2019",
|
| 701 |
+
"Dose",
|
| 702 |
+
"Double",
|
| 703 |
+
"Dr",
|
| 704 |
+
"Dr.",
|
| 705 |
+
"Drugs",
|
| 706 |
+
"Dysplasia",
|
| 707 |
+
"E",
|
| 708 |
+
"E.G.",
|
| 709 |
+
"E.g",
|
| 710 |
+
"E.g.",
|
| 711 |
+
"EBV",
|
| 712 |
+
"ECG",
|
| 713 |
+
"ECHO",
|
| 714 |
+
"ECT",
|
| 715 |
+
"EEP",
|
| 716 |
+
"EGFR",
|
| 717 |
+
"EKG",
|
| 718 |
+
"ELISA",
|
| 719 |
+
"ELN",
|
| 720 |
+
"EMA",
|
| 721 |
+
"EPP",
|
| 722 |
+
"ER",
|
| 723 |
+
"ER-/PR-/Her2-",
|
| 724 |
+
"ER2",
|
| 725 |
+
"ERAs",
|
| 726 |
+
"ERCP",
|
| 727 |
+
"ERD",
|
| 728 |
+
"ERROR",
|
| 729 |
+
"ERS",
|
| 730 |
+
"EV1",
|
| 731 |
+
"Ebstein",
|
| 732 |
+
"Ectodermal",
|
| 733 |
+
"Either",
|
| 734 |
+
"Ejection",
|
| 735 |
+
"Elderly",
|
| 736 |
+
"Elective",
|
| 737 |
+
"Eligible",
|
| 738 |
+
"Embolism",
|
| 739 |
+
"Emergency",
|
| 740 |
+
"Enrollment",
|
| 741 |
+
"Epidermal",
|
| 742 |
+
"Epidural",
|
| 743 |
+
"Epoprostenol",
|
| 744 |
+
"Escalation",
|
| 745 |
+
"Estrogen",
|
| 746 |
+
"Events",
|
| 747 |
+
"Evidence",
|
| 748 |
+
"Ewing",
|
| 749 |
+
"ExAblate",
|
| 750 |
+
"Examination",
|
| 751 |
+
"Expansion",
|
| 752 |
+
"Expected",
|
| 753 |
+
"Express",
|
| 754 |
+
"F",
|
| 755 |
+
"F.",
|
| 756 |
+
"FCBP",
|
| 757 |
+
"FD",
|
| 758 |
+
"FDG",
|
| 759 |
+
"FEV1",
|
| 760 |
+
"FISH",
|
| 761 |
+
"FL",
|
| 762 |
+
"FSH",
|
| 763 |
+
"FTC",
|
| 764 |
+
"FTs",
|
| 765 |
+
"FVC",
|
| 766 |
+
"Factor",
|
| 767 |
+
"Failed",
|
| 768 |
+
"Failure",
|
| 769 |
+
"Fall",
|
| 770 |
+
"Farber",
|
| 771 |
+
"Feb",
|
| 772 |
+
"Feb.",
|
| 773 |
+
"February",
|
| 774 |
+
"Female",
|
| 775 |
+
"Females",
|
| 776 |
+
"Fertile",
|
| 777 |
+
"Fibromyalgia",
|
| 778 |
+
"First",
|
| 779 |
+
"Fla",
|
| 780 |
+
"Fla.",
|
| 781 |
+
"Flolan",
|
| 782 |
+
"Florida",
|
| 783 |
+
"Flutamide",
|
| 784 |
+
"Fluvoxamine",
|
| 785 |
+
"Food",
|
| 786 |
+
"For",
|
| 787 |
+
"Fort",
|
| 788 |
+
"Fraction",
|
| 789 |
+
"Francis",
|
| 790 |
+
"Fulvestrant",
|
| 791 |
+
"G",
|
| 792 |
+
"G719X",
|
| 793 |
+
"GBM",
|
| 794 |
+
"GDMT",
|
| 795 |
+
"GEF",
|
| 796 |
+
"GEM",
|
| 797 |
+
"GERD",
|
| 798 |
+
"GFR",
|
| 799 |
+
"GI",
|
| 800 |
+
"GIST",
|
| 801 |
+
"GVHD",
|
| 802 |
+
"Ga",
|
| 803 |
+
"Ga.",
|
| 804 |
+
"Gen",
|
| 805 |
+
"Gen.",
|
| 806 |
+
"Georgia",
|
| 807 |
+
"Gilbert",
|
| 808 |
+
"Gliadel",
|
| 809 |
+
"Goin",
|
| 810 |
+
"Goin'",
|
| 811 |
+
"Goin\u2019",
|
| 812 |
+
"Gon",
|
| 813 |
+
"Got",
|
| 814 |
+
"Gov",
|
| 815 |
+
"Gov.",
|
| 816 |
+
"Grade",
|
| 817 |
+
"Graft",
|
| 818 |
+
"Greater",
|
| 819 |
+
"Growth",
|
| 820 |
+
"H",
|
| 821 |
+
"H.",
|
| 822 |
+
"HAART",
|
| 823 |
+
"HBOC",
|
| 824 |
+
"HBV",
|
| 825 |
+
"HCC",
|
| 826 |
+
"HCG",
|
| 827 |
+
"HCL",
|
| 828 |
+
"HCT",
|
| 829 |
+
"HCV",
|
| 830 |
+
"HDRS-17",
|
| 831 |
+
"HER-2",
|
| 832 |
+
"HER2",
|
| 833 |
+
"HFpEF",
|
| 834 |
+
"HHV6",
|
| 835 |
+
"HHV8",
|
| 836 |
+
"HIFU",
|
| 837 |
+
"HIV",
|
| 838 |
+
"HIV)-positive",
|
| 839 |
+
"HIV+",
|
| 840 |
+
"HIV-1",
|
| 841 |
+
"HL",
|
| 842 |
+
"HLA",
|
| 843 |
+
"HPV",
|
| 844 |
+
"HRH",
|
| 845 |
+
"HSCT",
|
| 846 |
+
"HSV",
|
| 847 |
+
"HTLV",
|
| 848 |
+
"HV6",
|
| 849 |
+
"HV8",
|
| 850 |
+
"Had",
|
| 851 |
+
"Hamilton",
|
| 852 |
+
"Has",
|
| 853 |
+
"Have",
|
| 854 |
+
"Havin",
|
| 855 |
+
"Havin'",
|
| 856 |
+
"Having",
|
| 857 |
+
"Havin\u2019",
|
| 858 |
+
"HbA1C",
|
| 859 |
+
"HbA1c",
|
| 860 |
+
"He",
|
| 861 |
+
"He's",
|
| 862 |
+
"Head",
|
| 863 |
+
"Healthy",
|
| 864 |
+
"Heart",
|
| 865 |
+
"Hematologic",
|
| 866 |
+
"Hemodynamic",
|
| 867 |
+
"Hepatitis",
|
| 868 |
+
"He\u2019s",
|
| 869 |
+
"Hh",
|
| 870 |
+
"High",
|
| 871 |
+
"Histologic",
|
| 872 |
+
"Histologically",
|
| 873 |
+
"History",
|
| 874 |
+
"Hormonal",
|
| 875 |
+
"Houston",
|
| 876 |
+
"How",
|
| 877 |
+
"How's",
|
| 878 |
+
"However",
|
| 879 |
+
"How\u2019s",
|
| 880 |
+
"Human",
|
| 881 |
+
"Hunter",
|
| 882 |
+
"Hydochlorothiazide",
|
| 883 |
+
"I",
|
| 884 |
+
"I-131",
|
| 885 |
+
"I-2",
|
| 886 |
+
"I.E.",
|
| 887 |
+
"I.e",
|
| 888 |
+
"I.e.",
|
| 889 |
+
"I3k",
|
| 890 |
+
"IB2",
|
| 891 |
+
"IBG",
|
| 892 |
+
"IDS",
|
| 893 |
+
"IDSA",
|
| 894 |
+
"IDs",
|
| 895 |
+
"IFU",
|
| 896 |
+
"IHC",
|
| 897 |
+
"II",
|
| 898 |
+
"IIA",
|
| 899 |
+
"IIB",
|
| 900 |
+
"III",
|
| 901 |
+
"IIIB",
|
| 902 |
+
"IMWG",
|
| 903 |
+
"INR",
|
| 904 |
+
"INSTIs",
|
| 905 |
+
"ION",
|
| 906 |
+
"IPEX",
|
| 907 |
+
"IPG",
|
| 908 |
+
"IRS",
|
| 909 |
+
"ISA",
|
| 910 |
+
"ISH",
|
| 911 |
+
"IST",
|
| 912 |
+
"ITL",
|
| 913 |
+
"IU",
|
| 914 |
+
"IUD",
|
| 915 |
+
"IV",
|
| 916 |
+
"IV+",
|
| 917 |
+
"IVA",
|
| 918 |
+
"Ia",
|
| 919 |
+
"Ia.",
|
| 920 |
+
"Id",
|
| 921 |
+
"Id.",
|
| 922 |
+
"Idaho",
|
| 923 |
+
"If",
|
| 924 |
+
"IgA",
|
| 925 |
+
"Ill",
|
| 926 |
+
"Ill.",
|
| 927 |
+
"Illinois",
|
| 928 |
+
"Iloprost",
|
| 929 |
+
"Immunodeficiency",
|
| 930 |
+
"Immunodysregulation",
|
| 931 |
+
"Immunoglobulin",
|
| 932 |
+
"Impaired",
|
| 933 |
+
"Implants",
|
| 934 |
+
"In",
|
| 935 |
+
"Inc",
|
| 936 |
+
"Inc.",
|
| 937 |
+
"Ind",
|
| 938 |
+
"Ind.",
|
| 939 |
+
"Indiana",
|
| 940 |
+
"Individuals",
|
| 941 |
+
"Induction",
|
| 942 |
+
"Infection",
|
| 943 |
+
"Infrainguinal",
|
| 944 |
+
"Inherent",
|
| 945 |
+
"Institute",
|
| 946 |
+
"International",
|
| 947 |
+
"Investigator",
|
| 948 |
+
"Iowa",
|
| 949 |
+
"Is",
|
| 950 |
+
"Ischemic",
|
| 951 |
+
"Isoptin",
|
| 952 |
+
"It",
|
| 953 |
+
"It's",
|
| 954 |
+
"It\u2019s",
|
| 955 |
+
"J",
|
| 956 |
+
"Jan",
|
| 957 |
+
"Jan.",
|
| 958 |
+
"January",
|
| 959 |
+
"Jr",
|
| 960 |
+
"Jr.",
|
| 961 |
+
"Jul",
|
| 962 |
+
"Jul.",
|
| 963 |
+
"July",
|
| 964 |
+
"Jun",
|
| 965 |
+
"Jun.",
|
| 966 |
+
"June",
|
| 967 |
+
"K",
|
| 968 |
+
"K.",
|
| 969 |
+
"K65R",
|
| 970 |
+
"KCC",
|
| 971 |
+
"KS",
|
| 972 |
+
"Kan",
|
| 973 |
+
"Kan.",
|
| 974 |
+
"Kans",
|
| 975 |
+
"Kans.",
|
| 976 |
+
"Kansas",
|
| 977 |
+
"Kentucky",
|
| 978 |
+
"Knee",
|
| 979 |
+
"Known",
|
| 980 |
+
"Ky",
|
| 981 |
+
"Ky.",
|
| 982 |
+
"L",
|
| 983 |
+
"L1",
|
| 984 |
+
"L858R",
|
| 985 |
+
"L861Q",
|
| 986 |
+
"LA",
|
| 987 |
+
"LBP",
|
| 988 |
+
"LCO",
|
| 989 |
+
"LEEP",
|
| 990 |
+
"LHRH",
|
| 991 |
+
"LMWH",
|
| 992 |
+
"LV",
|
| 993 |
+
"LVEF",
|
| 994 |
+
"La",
|
| 995 |
+
"La.",
|
| 996 |
+
"Large",
|
| 997 |
+
"Late",
|
| 998 |
+
"Lesions",
|
| 999 |
+
"Let",
|
| 1000 |
+
"Let's",
|
| 1001 |
+
"Let\u2019s",
|
| 1002 |
+
"Level",
|
| 1003 |
+
"Lidocaine",
|
| 1004 |
+
"Life",
|
| 1005 |
+
"Limb",
|
| 1006 |
+
"Lipase",
|
| 1007 |
+
"Liver",
|
| 1008 |
+
"Localized",
|
| 1009 |
+
"Louisiana",
|
| 1010 |
+
"Lovin",
|
| 1011 |
+
"Lovin'",
|
| 1012 |
+
"Lovin\u2019",
|
| 1013 |
+
"Lower",
|
| 1014 |
+
"Ltd",
|
| 1015 |
+
"Ltd.",
|
| 1016 |
+
"Lumpectomy",
|
| 1017 |
+
"Lung",
|
| 1018 |
+
"Luvox",
|
| 1019 |
+
"Lymphoma",
|
| 1020 |
+
"M",
|
| 1021 |
+
"M-1",
|
| 1022 |
+
"M0",
|
| 1023 |
+
"M184V",
|
| 1024 |
+
"M2",
|
| 1025 |
+
"M3",
|
| 1026 |
+
"MAB",
|
| 1027 |
+
"MAOI",
|
| 1028 |
+
"MBC",
|
| 1029 |
+
"MCI",
|
| 1030 |
+
"MCL",
|
| 1031 |
+
"MDI",
|
| 1032 |
+
"MEK",
|
| 1033 |
+
"MFI",
|
| 1034 |
+
"MGH",
|
| 1035 |
+
"MI",
|
| 1036 |
+
"MIBG",
|
| 1037 |
+
"MM",
|
| 1038 |
+
"MML",
|
| 1039 |
+
"MMSE",
|
| 1040 |
+
"MPNSTs",
|
| 1041 |
+
"MPS",
|
| 1042 |
+
"MRI",
|
| 1043 |
+
"MRSA",
|
| 1044 |
+
"MS",
|
| 1045 |
+
"MSE",
|
| 1046 |
+
"MSKCC",
|
| 1047 |
+
"MTD",
|
| 1048 |
+
"MUGA",
|
| 1049 |
+
"MUM-1",
|
| 1050 |
+
"MWG",
|
| 1051 |
+
"MWH",
|
| 1052 |
+
"MYCN",
|
| 1053 |
+
"Ma'am",
|
| 1054 |
+
"Magnamosis",
|
| 1055 |
+
"Major",
|
| 1056 |
+
"Male",
|
| 1057 |
+
"Males",
|
| 1058 |
+
"Malignancies",
|
| 1059 |
+
"Malignancy",
|
| 1060 |
+
"Management",
|
| 1061 |
+
"Mar",
|
| 1062 |
+
"Mar.",
|
| 1063 |
+
"March",
|
| 1064 |
+
"Mass",
|
| 1065 |
+
"Mass.",
|
| 1066 |
+
"Massachusetts",
|
| 1067 |
+
"May",
|
| 1068 |
+
"Mayo",
|
| 1069 |
+
"Ma\u2019am",
|
| 1070 |
+
"Md",
|
| 1071 |
+
"Md.",
|
| 1072 |
+
"Medical",
|
| 1073 |
+
"Medically",
|
| 1074 |
+
"Medications",
|
| 1075 |
+
"Meets",
|
| 1076 |
+
"Men",
|
| 1077 |
+
"Mental",
|
| 1078 |
+
"Messrs",
|
| 1079 |
+
"Messrs.",
|
| 1080 |
+
"Metastatic",
|
| 1081 |
+
"Mich",
|
| 1082 |
+
"Mich.",
|
| 1083 |
+
"Michigan",
|
| 1084 |
+
"Middle",
|
| 1085 |
+
"Might",
|
| 1086 |
+
"Mini",
|
| 1087 |
+
"Minn",
|
| 1088 |
+
"Minn.",
|
| 1089 |
+
"Minnesota",
|
| 1090 |
+
"Minor",
|
| 1091 |
+
"Miss",
|
| 1092 |
+
"Miss.",
|
| 1093 |
+
"Mississippi",
|
| 1094 |
+
"Mo",
|
| 1095 |
+
"Mo.",
|
| 1096 |
+
"Moderate",
|
| 1097 |
+
"Mont",
|
| 1098 |
+
"Mont.",
|
| 1099 |
+
"Mood",
|
| 1100 |
+
"More",
|
| 1101 |
+
"Morning",
|
| 1102 |
+
"Mount",
|
| 1103 |
+
"Mr",
|
| 1104 |
+
"Mr.",
|
| 1105 |
+
"Mrs",
|
| 1106 |
+
"Mrs.",
|
| 1107 |
+
"Ms",
|
| 1108 |
+
"Ms.",
|
| 1109 |
+
"Mt",
|
| 1110 |
+
"Mt.",
|
| 1111 |
+
"Must",
|
| 1112 |
+
"Myeloma",
|
| 1113 |
+
"Myocardial",
|
| 1114 |
+
"N",
|
| 1115 |
+
"N.C.",
|
| 1116 |
+
"N.D.",
|
| 1117 |
+
"N.H.",
|
| 1118 |
+
"N.J.",
|
| 1119 |
+
"N.M.",
|
| 1120 |
+
"N.Y.",
|
| 1121 |
+
"N0",
|
| 1122 |
+
"NAEPP",
|
| 1123 |
+
"NAT",
|
| 1124 |
+
"NB",
|
| 1125 |
+
"NBC",
|
| 1126 |
+
"NCI",
|
| 1127 |
+
"NEC",
|
| 1128 |
+
"NET",
|
| 1129 |
+
"NKA",
|
| 1130 |
+
"NMP",
|
| 1131 |
+
"NO",
|
| 1132 |
+
"NOS",
|
| 1133 |
+
"NSAIDS",
|
| 1134 |
+
"NSAIDs",
|
| 1135 |
+
"NSCLC",
|
| 1136 |
+
"NT",
|
| 1137 |
+
"NYHA",
|
| 1138 |
+
"Neb",
|
| 1139 |
+
"Neb.",
|
| 1140 |
+
"Nebr",
|
| 1141 |
+
"Nebr.",
|
| 1142 |
+
"Nebraska",
|
| 1143 |
+
"Neck",
|
| 1144 |
+
"Need",
|
| 1145 |
+
"Negative",
|
| 1146 |
+
"Neoplasms",
|
| 1147 |
+
"Nerve",
|
| 1148 |
+
"Nervous",
|
| 1149 |
+
"Neuro",
|
| 1150 |
+
"Neuroendocrine",
|
| 1151 |
+
"Neutropenia",
|
| 1152 |
+
"Nev",
|
| 1153 |
+
"Nev.",
|
| 1154 |
+
"Nevada",
|
| 1155 |
+
"New",
|
| 1156 |
+
"New Hampshire",
|
| 1157 |
+
"New Jersey",
|
| 1158 |
+
"New Mexico",
|
| 1159 |
+
"New York",
|
| 1160 |
+
"No",
|
| 1161 |
+
"Non",
|
| 1162 |
+
"Normalized",
|
| 1163 |
+
"North Carolina",
|
| 1164 |
+
"North Dakota",
|
| 1165 |
+
"Not",
|
| 1166 |
+
"Nothin",
|
| 1167 |
+
"Nothin'",
|
| 1168 |
+
"Nothin\u2019",
|
| 1169 |
+
"Nov",
|
| 1170 |
+
"Nov.",
|
| 1171 |
+
"November",
|
| 1172 |
+
"Nuthin",
|
| 1173 |
+
"Nuthin'",
|
| 1174 |
+
"Nuthin\u2019",
|
| 1175 |
+
"O",
|
| 1176 |
+
"O'clock",
|
| 1177 |
+
"O.O",
|
| 1178 |
+
"O.o",
|
| 1179 |
+
"OPI",
|
| 1180 |
+
"OR",
|
| 1181 |
+
"OTA",
|
| 1182 |
+
"O_O",
|
| 1183 |
+
"O_o",
|
| 1184 |
+
"Oct",
|
| 1185 |
+
"Oct.",
|
| 1186 |
+
"October",
|
| 1187 |
+
"Okla",
|
| 1188 |
+
"Okla.",
|
| 1189 |
+
"Oklahoma",
|
| 1190 |
+
"Ol",
|
| 1191 |
+
"Ol'",
|
| 1192 |
+
"Ol\u2019",
|
| 1193 |
+
"On",
|
| 1194 |
+
"Oncology",
|
| 1195 |
+
"Ongoing",
|
| 1196 |
+
"Operating",
|
| 1197 |
+
"Ore",
|
| 1198 |
+
"Ore.",
|
| 1199 |
+
"Oregon",
|
| 1200 |
+
"Orenitram",
|
| 1201 |
+
"Osteoarthritis",
|
| 1202 |
+
"Other",
|
| 1203 |
+
"Otherwise",
|
| 1204 |
+
"Ought",
|
| 1205 |
+
"Outpatient",
|
| 1206 |
+
"O\u2019clock",
|
| 1207 |
+
"P",
|
| 1208 |
+
"P2D",
|
| 1209 |
+
"P450",
|
| 1210 |
+
"P53",
|
| 1211 |
+
"PAP",
|
| 1212 |
+
"PBC",
|
| 1213 |
+
"PCR",
|
| 1214 |
+
"PDAC",
|
| 1215 |
+
"PDE5",
|
| 1216 |
+
"PE",
|
| 1217 |
+
"PET",
|
| 1218 |
+
"PETHEMA",
|
| 1219 |
+
"PEX",
|
| 1220 |
+
"PFTs",
|
| 1221 |
+
"PI",
|
| 1222 |
+
"PI3k",
|
| 1223 |
+
"PN",
|
| 1224 |
+
"PNET",
|
| 1225 |
+
"POPI",
|
| 1226 |
+
"PR",
|
| 1227 |
+
"PSA",
|
| 1228 |
+
"PSC",
|
| 1229 |
+
"PT",
|
| 1230 |
+
"PT)/",
|
| 1231 |
+
"PT)/international",
|
| 1232 |
+
"PTCL",
|
| 1233 |
+
"PTLD",
|
| 1234 |
+
"PTT",
|
| 1235 |
+
"PV",
|
| 1236 |
+
"Pa",
|
| 1237 |
+
"Pa.",
|
| 1238 |
+
"Pain",
|
| 1239 |
+
"Parkinson",
|
| 1240 |
+
"Part",
|
| 1241 |
+
"Participant",
|
| 1242 |
+
"Participants",
|
| 1243 |
+
"Past",
|
| 1244 |
+
"Pathologically",
|
| 1245 |
+
"Patient",
|
| 1246 |
+
"Patients",
|
| 1247 |
+
"Penetrating",
|
| 1248 |
+
"Pennsylvania",
|
| 1249 |
+
"Period",
|
| 1250 |
+
"Periodontal",
|
| 1251 |
+
"Peripheral",
|
| 1252 |
+
"Persistent",
|
| 1253 |
+
"Persisting",
|
| 1254 |
+
"Persons",
|
| 1255 |
+
"Petersen",
|
| 1256 |
+
"Ph",
|
| 1257 |
+
"Ph.D.",
|
| 1258 |
+
"Phase",
|
| 1259 |
+
"Physical",
|
| 1260 |
+
"PiMZ",
|
| 1261 |
+
"Planned",
|
| 1262 |
+
"Platelets",
|
| 1263 |
+
"Pointes",
|
| 1264 |
+
"Poorly",
|
| 1265 |
+
"Positive",
|
| 1266 |
+
"Post",
|
| 1267 |
+
"Pre",
|
| 1268 |
+
"Pregnant",
|
| 1269 |
+
"Presence",
|
| 1270 |
+
"Preserved",
|
| 1271 |
+
"Pretreatment",
|
| 1272 |
+
"Previous",
|
| 1273 |
+
"Previously",
|
| 1274 |
+
"Primary",
|
| 1275 |
+
"Primative",
|
| 1276 |
+
"Principle",
|
| 1277 |
+
"Prior",
|
| 1278 |
+
"Prof",
|
| 1279 |
+
"Prof.",
|
| 1280 |
+
"Progesterone",
|
| 1281 |
+
"Progressive",
|
| 1282 |
+
"Prophylactic",
|
| 1283 |
+
"Prostate",
|
| 1284 |
+
"Proton",
|
| 1285 |
+
"Protons",
|
| 1286 |
+
"Pulmonary",
|
| 1287 |
+
"Q",
|
| 1288 |
+
"QT",
|
| 1289 |
+
"QTc",
|
| 1290 |
+
"QTcB",
|
| 1291 |
+
"R",
|
| 1292 |
+
"R-2",
|
| 1293 |
+
"RAB",
|
| 1294 |
+
"RAEB-2",
|
| 1295 |
+
"RAF",
|
| 1296 |
+
"RANDOMIZATION",
|
| 1297 |
+
"RAs",
|
| 1298 |
+
"RCA",
|
| 1299 |
+
"RCP",
|
| 1300 |
+
"RFA",
|
| 1301 |
+
"RHC",
|
| 1302 |
+
"RNA",
|
| 1303 |
+
"ROOT",
|
| 1304 |
+
"ROR",
|
| 1305 |
+
"RP",
|
| 1306 |
+
"RP2D",
|
| 1307 |
+
"RPR",
|
| 1308 |
+
"RSA",
|
| 1309 |
+
"RUS",
|
| 1310 |
+
"RV",
|
| 1311 |
+
"Radiation",
|
| 1312 |
+
"Radiographic",
|
| 1313 |
+
"Rapamycin",
|
| 1314 |
+
"Rating",
|
| 1315 |
+
"Ratio",
|
| 1316 |
+
"Receiving",
|
| 1317 |
+
"Recent",
|
| 1318 |
+
"Receptor",
|
| 1319 |
+
"Recipients",
|
| 1320 |
+
"Recovered",
|
| 1321 |
+
"Recovery",
|
| 1322 |
+
"Recurrent",
|
| 1323 |
+
"Refractory",
|
| 1324 |
+
"Regional",
|
| 1325 |
+
"Relapsed",
|
| 1326 |
+
"Remodulin",
|
| 1327 |
+
"Renal",
|
| 1328 |
+
"Rep",
|
| 1329 |
+
"Rep.",
|
| 1330 |
+
"Repeat",
|
| 1331 |
+
"Reported",
|
| 1332 |
+
"Reports",
|
| 1333 |
+
"Requires",
|
| 1334 |
+
"Rev",
|
| 1335 |
+
"Rev.",
|
| 1336 |
+
"Rhabdoid",
|
| 1337 |
+
"Rheumatoid",
|
| 1338 |
+
"Riley",
|
| 1339 |
+
"Risk",
|
| 1340 |
+
"Room",
|
| 1341 |
+
"Rutherford",
|
| 1342 |
+
"S",
|
| 1343 |
+
"S.C.",
|
| 1344 |
+
"SC",
|
| 1345 |
+
"SCID",
|
| 1346 |
+
"SCLC",
|
| 1347 |
+
"SCT",
|
| 1348 |
+
"SIRS",
|
| 1349 |
+
"SKCCC",
|
| 1350 |
+
"SLD",
|
| 1351 |
+
"SLL",
|
| 1352 |
+
"SMM",
|
| 1353 |
+
"SMV",
|
| 1354 |
+
"SR",
|
| 1355 |
+
"SRH",
|
| 1356 |
+
"SRL",
|
| 1357 |
+
"SS",
|
| 1358 |
+
"STEP",
|
| 1359 |
+
"STs",
|
| 1360 |
+
"SWL",
|
| 1361 |
+
"Sacrum",
|
| 1362 |
+
"Sam",
|
| 1363 |
+
"Scale",
|
| 1364 |
+
"School",
|
| 1365 |
+
"Screening",
|
| 1366 |
+
"See",
|
| 1367 |
+
"Self",
|
| 1368 |
+
"Sen",
|
| 1369 |
+
"Sen.",
|
| 1370 |
+
"Sensitivity",
|
| 1371 |
+
"Sep",
|
| 1372 |
+
"Sep.",
|
| 1373 |
+
"Sept",
|
| 1374 |
+
"Sept.",
|
| 1375 |
+
"September",
|
| 1376 |
+
"Serious",
|
| 1377 |
+
"Serous",
|
| 1378 |
+
"Serum",
|
| 1379 |
+
"Severe",
|
| 1380 |
+
"Sexually",
|
| 1381 |
+
"Sha",
|
| 1382 |
+
"She",
|
| 1383 |
+
"She's",
|
| 1384 |
+
"She\u2019s",
|
| 1385 |
+
"Should",
|
| 1386 |
+
"Signaling",
|
| 1387 |
+
"Significant",
|
| 1388 |
+
"SimCYP",
|
| 1389 |
+
"Small",
|
| 1390 |
+
"Society",
|
| 1391 |
+
"Solid",
|
| 1392 |
+
"Somethin",
|
| 1393 |
+
"Somethin'",
|
| 1394 |
+
"Somethin\u2019",
|
| 1395 |
+
"South Carolina",
|
| 1396 |
+
"Spanish",
|
| 1397 |
+
"SpeechVive",
|
| 1398 |
+
"St",
|
| 1399 |
+
"St.",
|
| 1400 |
+
"Stable",
|
| 1401 |
+
"Stage",
|
| 1402 |
+
"Status",
|
| 1403 |
+
"Subject",
|
| 1404 |
+
"Subjects",
|
| 1405 |
+
"Substance",
|
| 1406 |
+
"Supra",
|
| 1407 |
+
"Surgery",
|
| 1408 |
+
"Suspected",
|
| 1409 |
+
"Symptomatic",
|
| 1410 |
+
"Syndrome",
|
| 1411 |
+
"Syndromes",
|
| 1412 |
+
"Syphilis",
|
| 1413 |
+
"System",
|
| 1414 |
+
"Systemic",
|
| 1415 |
+
"T",
|
| 1416 |
+
"T)/",
|
| 1417 |
+
"T.cruzi",
|
| 1418 |
+
"T1",
|
| 1419 |
+
"T2D",
|
| 1420 |
+
"TB",
|
| 1421 |
+
"TBI",
|
| 1422 |
+
"TCL",
|
| 1423 |
+
"TEP",
|
| 1424 |
+
"TFV",
|
| 1425 |
+
"TIA",
|
| 1426 |
+
"TIs",
|
| 1427 |
+
"TLD",
|
| 1428 |
+
"TLV",
|
| 1429 |
+
"TNBC",
|
| 1430 |
+
"TO",
|
| 1431 |
+
"TOR",
|
| 1432 |
+
"TP",
|
| 1433 |
+
"TP53",
|
| 1434 |
+
"TRC102",
|
| 1435 |
+
"TREATMENT",
|
| 1436 |
+
"TRUS",
|
| 1437 |
+
"Takes",
|
| 1438 |
+
"Targeted",
|
| 1439 |
+
"Taxol",
|
| 1440 |
+
"TcB",
|
| 1441 |
+
"Tenn",
|
| 1442 |
+
"Tenn.",
|
| 1443 |
+
"Tennessee",
|
| 1444 |
+
"Tested",
|
| 1445 |
+
"That",
|
| 1446 |
+
"That's",
|
| 1447 |
+
"That\u2019s",
|
| 1448 |
+
"The",
|
| 1449 |
+
"Therapy",
|
| 1450 |
+
"There",
|
| 1451 |
+
"There's",
|
| 1452 |
+
"There\u2019s",
|
| 1453 |
+
"These",
|
| 1454 |
+
"They",
|
| 1455 |
+
"This",
|
| 1456 |
+
"This's",
|
| 1457 |
+
"This\u2019s",
|
| 1458 |
+
"Those",
|
| 1459 |
+
"Thrombotic",
|
| 1460 |
+
"Timing",
|
| 1461 |
+
"Torsades",
|
| 1462 |
+
"Transformed",
|
| 1463 |
+
"Transient",
|
| 1464 |
+
"Treatment",
|
| 1465 |
+
"Treprostinil",
|
| 1466 |
+
"Trimethoprim",
|
| 1467 |
+
"Triple",
|
| 1468 |
+
"Tumor",
|
| 1469 |
+
"Tumor(s",
|
| 1470 |
+
"Tumors",
|
| 1471 |
+
"Type",
|
| 1472 |
+
"U",
|
| 1473 |
+
"UC",
|
| 1474 |
+
"UCBT",
|
| 1475 |
+
"UCC",
|
| 1476 |
+
"UGA",
|
| 1477 |
+
"UGI",
|
| 1478 |
+
"UK",
|
| 1479 |
+
"ULN",
|
| 1480 |
+
"UMC",
|
| 1481 |
+
"URD",
|
| 1482 |
+
"Unable",
|
| 1483 |
+
"Uncontrolled",
|
| 1484 |
+
"Undergoing",
|
| 1485 |
+
"University",
|
| 1486 |
+
"Unstable",
|
| 1487 |
+
"Untreated",
|
| 1488 |
+
"Use",
|
| 1489 |
+
"Using",
|
| 1490 |
+
"V",
|
| 1491 |
+
"V-1",
|
| 1492 |
+
"V.V",
|
| 1493 |
+
"VAD",
|
| 1494 |
+
"VEF",
|
| 1495 |
+
"VGEF",
|
| 1496 |
+
"VHD",
|
| 1497 |
+
"VIA",
|
| 1498 |
+
"VUMC",
|
| 1499 |
+
"VX-970",
|
| 1500 |
+
"V_V",
|
| 1501 |
+
"Va",
|
| 1502 |
+
"Va.",
|
| 1503 |
+
"Vanderbilt",
|
| 1504 |
+
"Veltri",
|
| 1505 |
+
"Venous",
|
| 1506 |
+
"Ventavis",
|
| 1507 |
+
"Verapamil",
|
| 1508 |
+
"Verelan",
|
| 1509 |
+
"Virginia",
|
| 1510 |
+
"Virus",
|
| 1511 |
+
"Visit",
|
| 1512 |
+
"W",
|
| 1513 |
+
"WBC",
|
| 1514 |
+
"WHO",
|
| 1515 |
+
"Was",
|
| 1516 |
+
"Wash",
|
| 1517 |
+
"Wash.",
|
| 1518 |
+
"Washington",
|
| 1519 |
+
"We",
|
| 1520 |
+
"Were",
|
| 1521 |
+
"What",
|
| 1522 |
+
"What's",
|
| 1523 |
+
"What\u2019s",
|
| 1524 |
+
"When",
|
| 1525 |
+
"When's",
|
| 1526 |
+
"When\u2019s",
|
| 1527 |
+
"Where",
|
| 1528 |
+
"Where's",
|
| 1529 |
+
"Where\u2019s",
|
| 1530 |
+
"Who",
|
| 1531 |
+
"Who's",
|
| 1532 |
+
"Who\u2019s",
|
| 1533 |
+
"Why",
|
| 1534 |
+
"Why's",
|
| 1535 |
+
"Why\u2019s",
|
| 1536 |
+
"Willingness",
|
| 1537 |
+
"Wilm",
|
| 1538 |
+
"Wilson",
|
| 1539 |
+
"Wis",
|
| 1540 |
+
"Wis.",
|
| 1541 |
+
"Wisconsin",
|
| 1542 |
+
"With",
|
| 1543 |
+
"Wnt",
|
| 1544 |
+
"Wo",
|
| 1545 |
+
"Women",
|
| 1546 |
+
"Would",
|
| 1547 |
+
"X'x",
|
| 1548 |
+
"X'xxxx",
|
| 1549 |
+
"X)(d",
|
| 1550 |
+
"X++",
|
| 1551 |
+
"X-ddd",
|
| 1552 |
+
"X.",
|
| 1553 |
+
"X.X",
|
| 1554 |
+
"X.X.",
|
| 1555 |
+
"X.x",
|
| 1556 |
+
"X.x.",
|
| 1557 |
+
"X.xxxx",
|
| 1558 |
+
"XD",
|
| 1559 |
+
"XDD",
|
| 1560 |
+
"XX",
|
| 1561 |
+
"XX)/",
|
| 1562 |
+
"XX)/xxxx",
|
| 1563 |
+
"XX)dd",
|
| 1564 |
+
"XX-/XX-/Xxxd-",
|
| 1565 |
+
"XX-ddd",
|
| 1566 |
+
"XXX",
|
| 1567 |
+
"XXX)-xxxx",
|
| 1568 |
+
"XXX)/xxxx",
|
| 1569 |
+
"XXX+",
|
| 1570 |
+
"XXX-d",
|
| 1571 |
+
"XXX/",
|
| 1572 |
+
"XXX>dd",
|
| 1573 |
+
"XXXX",
|
| 1574 |
+
"XXXX-d",
|
| 1575 |
+
"XXXX-dd",
|
| 1576 |
+
"XXXXd",
|
| 1577 |
+
"XXXXx",
|
| 1578 |
+
"XXXd",
|
| 1579 |
+
"XXXdXd",
|
| 1580 |
+
"XXXddd",
|
| 1581 |
+
"XXXx",
|
| 1582 |
+
"XXd",
|
| 1583 |
+
"XXdX",
|
| 1584 |
+
"XXdd",
|
| 1585 |
+
"XXdx",
|
| 1586 |
+
"XXx",
|
| 1587 |
+
"XXxX",
|
| 1588 |
+
"XXxXX",
|
| 1589 |
+
"X_X",
|
| 1590 |
+
"X_x",
|
| 1591 |
+
"Xd",
|
| 1592 |
+
"XdX",
|
| 1593 |
+
"XdXd",
|
| 1594 |
+
"XddX",
|
| 1595 |
+
"Xddd",
|
| 1596 |
+
"XdddX",
|
| 1597 |
+
"Xdx",
|
| 1598 |
+
"Xx",
|
| 1599 |
+
"Xx'",
|
| 1600 |
+
"Xx'x",
|
| 1601 |
+
"Xx'xx",
|
| 1602 |
+
"Xx.",
|
| 1603 |
+
"Xx.X.",
|
| 1604 |
+
"XxX",
|
| 1605 |
+
"XxXX",
|
| 1606 |
+
"XxXdX",
|
| 1607 |
+
"XxXdx",
|
| 1608 |
+
"XxXxxxx",
|
| 1609 |
+
"Xxx",
|
| 1610 |
+
"Xxx'x",
|
| 1611 |
+
"Xxx.",
|
| 1612 |
+
"XxxXXX",
|
| 1613 |
+
"Xxxx",
|
| 1614 |
+
"Xxxx'",
|
| 1615 |
+
"Xxxx'x",
|
| 1616 |
+
"Xxxx.",
|
| 1617 |
+
"Xxxxx",
|
| 1618 |
+
"Xxxxx'",
|
| 1619 |
+
"Xxxxx'x",
|
| 1620 |
+
"Xxxxx(x",
|
| 1621 |
+
"Xxxxx.",
|
| 1622 |
+
"XxxxxXxxx",
|
| 1623 |
+
"Xxxxx\u2019",
|
| 1624 |
+
"Xxxxx\u2019x",
|
| 1625 |
+
"Xxxx\u2019",
|
| 1626 |
+
"Xxxx\u2019x",
|
| 1627 |
+
"Xxx\u2019x",
|
| 1628 |
+
"Xx\u2019",
|
| 1629 |
+
"Xx\u2019x",
|
| 1630 |
+
"Xx\u2019xx",
|
| 1631 |
+
"X\u2019x",
|
| 1632 |
+
"X\u2019xxxx",
|
| 1633 |
+
"Y",
|
| 1634 |
+
"YCN",
|
| 1635 |
+
"YHA",
|
| 1636 |
+
"York",
|
| 1637 |
+
"You",
|
| 1638 |
+
"Z",
|
| 1639 |
+
"Zofenopril",
|
| 1640 |
+
"[",
|
| 1641 |
+
"[-:",
|
| 1642 |
+
"[:",
|
| 1643 |
+
"[=",
|
| 1644 |
+
"\\",
|
| 1645 |
+
"\\\")",
|
| 1646 |
+
"\\n",
|
| 1647 |
+
"\\t",
|
| 1648 |
+
"\\x",
|
| 1649 |
+
"]",
|
| 1650 |
+
"]=",
|
| 1651 |
+
"^",
|
| 1652 |
+
"^_^",
|
| 1653 |
+
"^__^",
|
| 1654 |
+
"^___^",
|
| 1655 |
+
"_*)",
|
| 1656 |
+
"_-)",
|
| 1657 |
+
"_.)",
|
| 1658 |
+
"_<)",
|
| 1659 |
+
"_^)",
|
| 1660 |
+
"__-",
|
| 1661 |
+
"__^",
|
| 1662 |
+
"_\u00ac)",
|
| 1663 |
+
"_\u0ca0)",
|
| 1664 |
+
"a",
|
| 1665 |
+
"a-1",
|
| 1666 |
+
"a.",
|
| 1667 |
+
"a.m",
|
| 1668 |
+
"a.m.",
|
| 1669 |
+
"a1c",
|
| 1670 |
+
"aaa",
|
| 1671 |
+
"aasld",
|
| 1672 |
+
"ab",
|
| 1673 |
+
"abdomen",
|
| 1674 |
+
"abdominal",
|
| 1675 |
+
"abdominoplasty",
|
| 1676 |
+
"ability",
|
| 1677 |
+
"ablation",
|
| 1678 |
+
"able",
|
| 1679 |
+
"abnormal",
|
| 1680 |
+
"abnormalities",
|
| 1681 |
+
"abortifacient",
|
| 1682 |
+
"about",
|
| 1683 |
+
"above",
|
| 1684 |
+
"abscess",
|
| 1685 |
+
"absence",
|
| 1686 |
+
"absolute",
|
| 1687 |
+
"absorption",
|
| 1688 |
+
"abstinence",
|
| 1689 |
+
"abuse",
|
| 1690 |
+
"acceptable",
|
| 1691 |
+
"acceptance",
|
| 1692 |
+
"accepted",
|
| 1693 |
+
"access",
|
| 1694 |
+
"accessible",
|
| 1695 |
+
"accident",
|
| 1696 |
+
"according",
|
| 1697 |
+
"accurately",
|
| 1698 |
+
"ace",
|
| 1699 |
+
"ach",
|
| 1700 |
+
"acid",
|
| 1701 |
+
"ack",
|
| 1702 |
+
"acog",
|
| 1703 |
+
"acquisition",
|
| 1704 |
+
"acr",
|
| 1705 |
+
"acromegaly",
|
| 1706 |
+
"acs",
|
| 1707 |
+
"acs/",
|
| 1708 |
+
"act",
|
| 1709 |
+
"active",
|
| 1710 |
+
"actively",
|
| 1711 |
+
"activity",
|
| 1712 |
+
"acupuncture",
|
| 1713 |
+
"acute",
|
| 1714 |
+
"acutely",
|
| 1715 |
+
"acyclovir",
|
| 1716 |
+
"ad",
|
| 1717 |
+
"adalimumab",
|
| 1718 |
+
"addition",
|
| 1719 |
+
"additional",
|
| 1720 |
+
"additionally",
|
| 1721 |
+
"address",
|
| 1722 |
+
"ade",
|
| 1723 |
+
"adenocarcinoma",
|
| 1724 |
+
"adenoidectomy",
|
| 1725 |
+
"adenoma",
|
| 1726 |
+
"adenopathy",
|
| 1727 |
+
"adequate",
|
| 1728 |
+
"adequately",
|
| 1729 |
+
"adhere",
|
| 1730 |
+
"adjacent",
|
| 1731 |
+
"adjusted",
|
| 1732 |
+
"adjuvant",
|
| 1733 |
+
"adm",
|
| 1734 |
+
"adm.",
|
| 1735 |
+
"administered",
|
| 1736 |
+
"administering",
|
| 1737 |
+
"administration",
|
| 1738 |
+
"admitted",
|
| 1739 |
+
"adolescents",
|
| 1740 |
+
"adrenal",
|
| 1741 |
+
"adrenocortical",
|
| 1742 |
+
"adriamycin",
|
| 1743 |
+
"adult",
|
| 1744 |
+
"advanced",
|
| 1745 |
+
"adverse",
|
| 1746 |
+
"ady",
|
| 1747 |
+
"aes",
|
| 1748 |
+
"af",
|
| 1749 |
+
"afe",
|
| 1750 |
+
"affect",
|
| 1751 |
+
"affected",
|
| 1752 |
+
"affective",
|
| 1753 |
+
"afrin",
|
| 1754 |
+
"aft",
|
| 1755 |
+
"after",
|
| 1756 |
+
"against",
|
| 1757 |
+
"age",
|
| 1758 |
+
"agents",
|
| 1759 |
+
"agm",
|
| 1760 |
+
"ago",
|
| 1761 |
+
"agonist",
|
| 1762 |
+
"agonists",
|
| 1763 |
+
"agree",
|
| 1764 |
+
"agreement",
|
| 1765 |
+
"agrees",
|
| 1766 |
+
"ai",
|
| 1767 |
+
"aids",
|
| 1768 |
+
"ain",
|
| 1769 |
+
"air",
|
| 1770 |
+
"airway",
|
| 1771 |
+
"aitl",
|
| 1772 |
+
"ak",
|
| 1773 |
+
"ak.",
|
| 1774 |
+
"ake",
|
| 1775 |
+
"akt",
|
| 1776 |
+
"ala",
|
| 1777 |
+
"ala.",
|
| 1778 |
+
"alanine",
|
| 1779 |
+
"albinism",
|
| 1780 |
+
"albumin",
|
| 1781 |
+
"albuterol",
|
| 1782 |
+
"alcohol",
|
| 1783 |
+
"alcoholic",
|
| 1784 |
+
"ale",
|
| 1785 |
+
"alf",
|
| 1786 |
+
"alk",
|
| 1787 |
+
"alkylators",
|
| 1788 |
+
"all",
|
| 1789 |
+
"allele",
|
| 1790 |
+
"allergic",
|
| 1791 |
+
"allergies",
|
| 1792 |
+
"allergy",
|
| 1793 |
+
"allo",
|
| 1794 |
+
"alloHSCT",
|
| 1795 |
+
"allogeneic",
|
| 1796 |
+
"allograft",
|
| 1797 |
+
"allohsct",
|
| 1798 |
+
"allowed",
|
| 1799 |
+
"alopecia",
|
| 1800 |
+
"alpha",
|
| 1801 |
+
"alpha-1",
|
| 1802 |
+
"already",
|
| 1803 |
+
"als",
|
| 1804 |
+
"also",
|
| 1805 |
+
"alt",
|
| 1806 |
+
"alter",
|
| 1807 |
+
"alterations",
|
| 1808 |
+
"alveolar",
|
| 1809 |
+
"aly",
|
| 1810 |
+
"am",
|
| 1811 |
+
"amblyopia",
|
| 1812 |
+
"ambulatory",
|
| 1813 |
+
"ame",
|
| 1814 |
+
"amenable",
|
| 1815 |
+
"american",
|
| 1816 |
+
"amino",
|
| 1817 |
+
"aminotransferase",
|
| 1818 |
+
"aml",
|
| 1819 |
+
"amnestic",
|
| 1820 |
+
"amoxicillin",
|
| 1821 |
+
"amphetamine",
|
| 1822 |
+
"amplification",
|
| 1823 |
+
"amplified",
|
| 1824 |
+
"amputees",
|
| 1825 |
+
"ams",
|
| 1826 |
+
"amylase",
|
| 1827 |
+
"an",
|
| 1828 |
+
"an.",
|
| 1829 |
+
"ana",
|
| 1830 |
+
"anabolic",
|
| 1831 |
+
"analgesia",
|
| 1832 |
+
"analogue",
|
| 1833 |
+
"analysis",
|
| 1834 |
+
"anastomosis",
|
| 1835 |
+
"anastomotic",
|
| 1836 |
+
"anatomic",
|
| 1837 |
+
"anc",
|
| 1838 |
+
"and",
|
| 1839 |
+
"and/or",
|
| 1840 |
+
"ane",
|
| 1841 |
+
"anemia",
|
| 1842 |
+
"anesthesia",
|
| 1843 |
+
"anesthesiologists",
|
| 1844 |
+
"aneurysm",
|
| 1845 |
+
"aneurysmal",
|
| 1846 |
+
"angina",
|
| 1847 |
+
"anginal",
|
| 1848 |
+
"angiogenic",
|
| 1849 |
+
"angioimmunoblastic",
|
| 1850 |
+
"angioplasty",
|
| 1851 |
+
"angle",
|
| 1852 |
+
"ank",
|
| 1853 |
+
"ann",
|
| 1854 |
+
"another",
|
| 1855 |
+
"ans",
|
| 1856 |
+
"ant",
|
| 1857 |
+
"antagonist",
|
| 1858 |
+
"antagonists",
|
| 1859 |
+
"anterior",
|
| 1860 |
+
"anthracycline",
|
| 1861 |
+
"anti",
|
| 1862 |
+
"antibiotic",
|
| 1863 |
+
"antibiotics",
|
| 1864 |
+
"antibodies",
|
| 1865 |
+
"anticholinergic",
|
| 1866 |
+
"anticholinergics",
|
| 1867 |
+
"anticipated",
|
| 1868 |
+
"anticoagulant",
|
| 1869 |
+
"anticoagulants",
|
| 1870 |
+
"anticoagulation",
|
| 1871 |
+
"anticonvulsants",
|
| 1872 |
+
"antidepressant",
|
| 1873 |
+
"antidepressants",
|
| 1874 |
+
"antidiabetic",
|
| 1875 |
+
"antiepileptic",
|
| 1876 |
+
"antifungal",
|
| 1877 |
+
"antifungals",
|
| 1878 |
+
"antigen",
|
| 1879 |
+
"antihypertensive",
|
| 1880 |
+
"antineoplastic",
|
| 1881 |
+
"antioxidant",
|
| 1882 |
+
"antiplatelet",
|
| 1883 |
+
"antipsychotic",
|
| 1884 |
+
"antipsychotics",
|
| 1885 |
+
"antiretroviral",
|
| 1886 |
+
"antitrypsin",
|
| 1887 |
+
"antivirals",
|
| 1888 |
+
"anxiety",
|
| 1889 |
+
"anxiolytics",
|
| 1890 |
+
"any",
|
| 1891 |
+
"anywhere",
|
| 1892 |
+
"aortic",
|
| 1893 |
+
"apheresis",
|
| 1894 |
+
"apical",
|
| 1895 |
+
"aplasia",
|
| 1896 |
+
"aplastic",
|
| 1897 |
+
"apnea",
|
| 1898 |
+
"apparent",
|
| 1899 |
+
"appendiceal",
|
| 1900 |
+
"appendix",
|
| 1901 |
+
"appointment",
|
| 1902 |
+
"appropriate",
|
| 1903 |
+
"approval",
|
| 1904 |
+
"approved",
|
| 1905 |
+
"approximate",
|
| 1906 |
+
"approximately",
|
| 1907 |
+
"apr",
|
| 1908 |
+
"apr.",
|
| 1909 |
+
"apy",
|
| 1910 |
+
"ar.",
|
| 1911 |
+
"arbor",
|
| 1912 |
+
"ard",
|
| 1913 |
+
"are",
|
| 1914 |
+
"area",
|
| 1915 |
+
"ariz",
|
| 1916 |
+
"ariz.",
|
| 1917 |
+
"ark",
|
| 1918 |
+
"ark.",
|
| 1919 |
+
"arm",
|
| 1920 |
+
"arms",
|
| 1921 |
+
"army",
|
| 1922 |
+
"arrhythmia",
|
| 1923 |
+
"arrhythmias",
|
| 1924 |
+
"ars",
|
| 1925 |
+
"art",
|
| 1926 |
+
"arterial",
|
| 1927 |
+
"artery",
|
| 1928 |
+
"arthritis",
|
| 1929 |
+
"articular",
|
| 1930 |
+
"ary",
|
| 1931 |
+
"as",
|
| 1932 |
+
"asa",
|
| 1933 |
+
"ascites",
|
| 1934 |
+
"asct",
|
| 1935 |
+
"ase",
|
| 1936 |
+
"ash",
|
| 1937 |
+
"asm",
|
| 1938 |
+
"aspartate",
|
| 1939 |
+
"aspiration",
|
| 1940 |
+
"aspirin",
|
| 1941 |
+
"ass",
|
| 1942 |
+
"assessed",
|
| 1943 |
+
"assessment",
|
| 1944 |
+
"assignment",
|
| 1945 |
+
"assistance",
|
| 1946 |
+
"assisted",
|
| 1947 |
+
"associated",
|
| 1948 |
+
"association",
|
| 1949 |
+
"ast",
|
| 1950 |
+
"ast)/alanine",
|
| 1951 |
+
"asthma",
|
| 1952 |
+
"at",
|
| 1953 |
+
"ata",
|
| 1954 |
+
"ate",
|
| 1955 |
+
"ath",
|
| 1956 |
+
"atrial",
|
| 1957 |
+
"atrio",
|
| 1958 |
+
"ats",
|
| 1959 |
+
"attack",
|
| 1960 |
+
"attenuated",
|
| 1961 |
+
"atypical",
|
| 1962 |
+
"aug",
|
| 1963 |
+
"aug.",
|
| 1964 |
+
"autoimmune",
|
| 1965 |
+
"autologous",
|
| 1966 |
+
"av",
|
| 1967 |
+
"availability",
|
| 1968 |
+
"available",
|
| 1969 |
+
"avastin",
|
| 1970 |
+
"ave",
|
| 1971 |
+
"avid",
|
| 1972 |
+
"avoided",
|
| 1973 |
+
"axillary",
|
| 1974 |
+
"axis",
|
| 1975 |
+
"ayo",
|
| 1976 |
+
"ays",
|
| 1977 |
+
"azathioprine",
|
| 1978 |
+
"b",
|
| 1979 |
+
"b.",
|
| 1980 |
+
"b2",
|
| 1981 |
+
"background",
|
| 1982 |
+
"baclofen",
|
| 1983 |
+
"bacterial",
|
| 1984 |
+
"bal",
|
| 1985 |
+
"bank",
|
| 1986 |
+
"bar",
|
| 1987 |
+
"barrier",
|
| 1988 |
+
"basal",
|
| 1989 |
+
"base",
|
| 1990 |
+
"based",
|
| 1991 |
+
"baseline",
|
| 1992 |
+
"basis",
|
| 1993 |
+
"bcl2",
|
| 1994 |
+
"bcl6",
|
| 1995 |
+
"be",
|
| 1996 |
+
"beam",
|
| 1997 |
+
"bear",
|
| 1998 |
+
"bearing",
|
| 1999 |
+
"because",
|
| 2000 |
+
"become",
|
| 2001 |
+
"bed",
|
| 2002 |
+
"been",
|
| 2003 |
+
"before",
|
| 2004 |
+
"beginning",
|
| 2005 |
+
"behavioral",
|
| 2006 |
+
"being",
|
| 2007 |
+
"below",
|
| 2008 |
+
"benign",
|
| 2009 |
+
"benzodiazepines",
|
| 2010 |
+
"ber",
|
| 2011 |
+
"bes",
|
| 2012 |
+
"beta",
|
| 2013 |
+
"between",
|
| 2014 |
+
"beyond",
|
| 2015 |
+
"bic",
|
| 2016 |
+
"bid",
|
| 2017 |
+
"bifida",
|
| 2018 |
+
"bilateral",
|
| 2019 |
+
"bilirubin",
|
| 2020 |
+
"bin",
|
| 2021 |
+
"bioavailability",
|
| 2022 |
+
"biologic",
|
| 2023 |
+
"biological",
|
| 2024 |
+
"biopsied",
|
| 2025 |
+
"biopsies",
|
| 2026 |
+
"biopsy",
|
| 2027 |
+
"bipolar",
|
| 2028 |
+
"birth",
|
| 2029 |
+
"bis",
|
| 2030 |
+
"bisphosphonates",
|
| 2031 |
+
"bit",
|
| 2032 |
+
"bladder",
|
| 2033 |
+
"blasts",
|
| 2034 |
+
"ble",
|
| 2035 |
+
"bleeding",
|
| 2036 |
+
"blenoxane",
|
| 2037 |
+
"bleomycin",
|
| 2038 |
+
"blinatumomab",
|
| 2039 |
+
"block",
|
| 2040 |
+
"blockers",
|
| 2041 |
+
"blood",
|
| 2042 |
+
"bly",
|
| 2043 |
+
"bm",
|
| 2044 |
+
"bnp",
|
| 2045 |
+
"board",
|
| 2046 |
+
"body",
|
| 2047 |
+
"bolus",
|
| 2048 |
+
"bon",
|
| 2049 |
+
"bone",
|
| 2050 |
+
"bor",
|
| 2051 |
+
"bos",
|
| 2052 |
+
"bosentan",
|
| 2053 |
+
"botanical",
|
| 2054 |
+
"both",
|
| 2055 |
+
"bout",
|
| 2056 |
+
"bovine",
|
| 2057 |
+
"bowel",
|
| 2058 |
+
"bowels",
|
| 2059 |
+
"br.",
|
| 2060 |
+
"brachytherapy",
|
| 2061 |
+
"bradycardia",
|
| 2062 |
+
"braf",
|
| 2063 |
+
"brain",
|
| 2064 |
+
"brainstem",
|
| 2065 |
+
"brca",
|
| 2066 |
+
"brca1",
|
| 2067 |
+
"brca2",
|
| 2068 |
+
"breast",
|
| 2069 |
+
"breastfeeding",
|
| 2070 |
+
"bronchial",
|
| 2071 |
+
"bros",
|
| 2072 |
+
"bros.",
|
| 2073 |
+
"bulky",
|
| 2074 |
+
"bupropion",
|
| 2075 |
+
"burr",
|
| 2076 |
+
"burtomab",
|
| 2077 |
+
"bus",
|
| 2078 |
+
"busulfan",
|
| 2079 |
+
"but",
|
| 2080 |
+
"by",
|
| 2081 |
+
"bypass",
|
| 2082 |
+
"c",
|
| 2083 |
+
"c'm",
|
| 2084 |
+
"c++",
|
| 2085 |
+
"c.",
|
| 2086 |
+
"c1d1",
|
| 2087 |
+
"cART",
|
| 2088 |
+
"cGy",
|
| 2089 |
+
"ca",
|
| 2090 |
+
"cabg",
|
| 2091 |
+
"cabozantinib",
|
| 2092 |
+
"caffeine",
|
| 2093 |
+
"cal",
|
| 2094 |
+
"calan",
|
| 2095 |
+
"calcitriol",
|
| 2096 |
+
"calcium",
|
| 2097 |
+
"calculating",
|
| 2098 |
+
"calif",
|
| 2099 |
+
"calif.",
|
| 2100 |
+
"calipers",
|
| 2101 |
+
"can",
|
| 2102 |
+
"cancer",
|
| 2103 |
+
"cancers",
|
| 2104 |
+
"candidate",
|
| 2105 |
+
"cannabis",
|
| 2106 |
+
"cap",
|
| 2107 |
+
"capable",
|
| 2108 |
+
"capacity",
|
| 2109 |
+
"caplin",
|
| 2110 |
+
"captopril",
|
| 2111 |
+
"carbamazepine",
|
| 2112 |
+
"carbon",
|
| 2113 |
+
"carcinoid",
|
| 2114 |
+
"carcinoma",
|
| 2115 |
+
"carcinomas",
|
| 2116 |
+
"carcinomatosis",
|
| 2117 |
+
"carcinomatous",
|
| 2118 |
+
"cardiac",
|
| 2119 |
+
"cardiology",
|
| 2120 |
+
"cardiomyopathy",
|
| 2121 |
+
"cardiopulmonary",
|
| 2122 |
+
"cardiovascular",
|
| 2123 |
+
"care",
|
| 2124 |
+
"carfilzomib",
|
| 2125 |
+
"caring",
|
| 2126 |
+
"carotid",
|
| 2127 |
+
"carry",
|
| 2128 |
+
"cart",
|
| 2129 |
+
"case",
|
| 2130 |
+
"casein",
|
| 2131 |
+
"castrate",
|
| 2132 |
+
"category",
|
| 2133 |
+
"catheter",
|
| 2134 |
+
"cauda",
|
| 2135 |
+
"cause",
|
| 2136 |
+
"caused",
|
| 2137 |
+
"causes",
|
| 2138 |
+
"causing",
|
| 2139 |
+
"caution",
|
| 2140 |
+
"cavity",
|
| 2141 |
+
"cd)20",
|
| 2142 |
+
"cd10",
|
| 2143 |
+
"cd15",
|
| 2144 |
+
"cd19",
|
| 2145 |
+
"cd20",
|
| 2146 |
+
"cd30",
|
| 2147 |
+
"cd4",
|
| 2148 |
+
"cd45",
|
| 2149 |
+
"cdh",
|
| 2150 |
+
"ce>",
|
| 2151 |
+
"cease",
|
| 2152 |
+
"ced",
|
| 2153 |
+
"cell",
|
| 2154 |
+
"cells",
|
| 2155 |
+
"center",
|
| 2156 |
+
"central",
|
| 2157 |
+
"cer",
|
| 2158 |
+
"cerebellum",
|
| 2159 |
+
"cerebral",
|
| 2160 |
+
"cerebrovascular",
|
| 2161 |
+
"ceritinib",
|
| 2162 |
+
"certain",
|
| 2163 |
+
"cervical",
|
| 2164 |
+
"cervicography",
|
| 2165 |
+
"cervix",
|
| 2166 |
+
"ces",
|
| 2167 |
+
"cessation",
|
| 2168 |
+
"cfu",
|
| 2169 |
+
"cgy",
|
| 2170 |
+
"ch.",
|
| 2171 |
+
"chagas",
|
| 2172 |
+
"chain",
|
| 2173 |
+
"chancroid",
|
| 2174 |
+
"change",
|
| 2175 |
+
"changed",
|
| 2176 |
+
"changes",
|
| 2177 |
+
"chemo",
|
| 2178 |
+
"chemotherapeutic",
|
| 2179 |
+
"chemotherapy",
|
| 2180 |
+
"chest",
|
| 2181 |
+
"chf",
|
| 2182 |
+
"child",
|
| 2183 |
+
"childbearing",
|
| 2184 |
+
"children",
|
| 2185 |
+
"cho",
|
| 2186 |
+
"cholangiocarcinoma",
|
| 2187 |
+
"cholinergic",
|
| 2188 |
+
"chorionic",
|
| 2189 |
+
"chron",
|
| 2190 |
+
"chronic",
|
| 2191 |
+
"chylous",
|
| 2192 |
+
"cia",
|
| 2193 |
+
"cic",
|
| 2194 |
+
"cid",
|
| 2195 |
+
"cimetidine",
|
| 2196 |
+
"cin",
|
| 2197 |
+
"cirrhosis",
|
| 2198 |
+
"cis",
|
| 2199 |
+
"cisplatin",
|
| 2200 |
+
"cit",
|
| 2201 |
+
"ckd",
|
| 2202 |
+
"clarithromycin",
|
| 2203 |
+
"class",
|
| 2204 |
+
"classification",
|
| 2205 |
+
"classified",
|
| 2206 |
+
"clavicles",
|
| 2207 |
+
"clavulanate",
|
| 2208 |
+
"cle",
|
| 2209 |
+
"clean",
|
| 2210 |
+
"clear",
|
| 2211 |
+
"clearance",
|
| 2212 |
+
"cli",
|
| 2213 |
+
"clinic",
|
| 2214 |
+
"clinical",
|
| 2215 |
+
"clinically",
|
| 2216 |
+
"clinician",
|
| 2217 |
+
"clip",
|
| 2218 |
+
"cll",
|
| 2219 |
+
"clonidine",
|
| 2220 |
+
"closed",
|
| 2221 |
+
"closely",
|
| 2222 |
+
"cluster",
|
| 2223 |
+
"cm",
|
| 2224 |
+
"cmc",
|
| 2225 |
+
"cmml",
|
| 2226 |
+
"cmv",
|
| 2227 |
+
"cni",
|
| 2228 |
+
"cns",
|
| 2229 |
+
"co",
|
| 2230 |
+
"co.",
|
| 2231 |
+
"coagulopathy",
|
| 2232 |
+
"cognitive",
|
| 2233 |
+
"cohort",
|
| 2234 |
+
"cohorts",
|
| 2235 |
+
"coincidental",
|
| 2236 |
+
"col",
|
| 2237 |
+
"cold",
|
| 2238 |
+
"colectomy",
|
| 2239 |
+
"colitis",
|
| 2240 |
+
"collagen",
|
| 2241 |
+
"collected",
|
| 2242 |
+
"collection",
|
| 2243 |
+
"colo",
|
| 2244 |
+
"colo.",
|
| 2245 |
+
"colon",
|
| 2246 |
+
"colorectal",
|
| 2247 |
+
"colposcopy",
|
| 2248 |
+
"combination",
|
| 2249 |
+
"combined",
|
| 2250 |
+
"come",
|
| 2251 |
+
"commit",
|
| 2252 |
+
"committee",
|
| 2253 |
+
"commonly",
|
| 2254 |
+
"communication",
|
| 2255 |
+
"comorbid",
|
| 2256 |
+
"comorbidities",
|
| 2257 |
+
"comorbidity",
|
| 2258 |
+
"complete",
|
| 2259 |
+
"completed",
|
| 2260 |
+
"completely",
|
| 2261 |
+
"completes",
|
| 2262 |
+
"completing",
|
| 2263 |
+
"completion",
|
| 2264 |
+
"compliance",
|
| 2265 |
+
"complicated",
|
| 2266 |
+
"complications",
|
| 2267 |
+
"comply",
|
| 2268 |
+
"components",
|
| 2269 |
+
"compound",
|
| 2270 |
+
"compounds",
|
| 2271 |
+
"comprehensive",
|
| 2272 |
+
"compression",
|
| 2273 |
+
"compromise",
|
| 2274 |
+
"compromising",
|
| 2275 |
+
"compulsive",
|
| 2276 |
+
"computed",
|
| 2277 |
+
"concerning",
|
| 2278 |
+
"concerns",
|
| 2279 |
+
"concomitant",
|
| 2280 |
+
"concomitantly",
|
| 2281 |
+
"concurrent",
|
| 2282 |
+
"concurrently",
|
| 2283 |
+
"condition",
|
| 2284 |
+
"conditioning",
|
| 2285 |
+
"conditions",
|
| 2286 |
+
"condom",
|
| 2287 |
+
"confined",
|
| 2288 |
+
"confirmation",
|
| 2289 |
+
"confirmed",
|
| 2290 |
+
"confound",
|
| 2291 |
+
"congestive",
|
| 2292 |
+
"conn",
|
| 2293 |
+
"conn.",
|
| 2294 |
+
"consciousness",
|
| 2295 |
+
"consecutive",
|
| 2296 |
+
"consent",
|
| 2297 |
+
"conservative",
|
| 2298 |
+
"conserving",
|
| 2299 |
+
"considered",
|
| 2300 |
+
"consistent",
|
| 2301 |
+
"consult",
|
| 2302 |
+
"consultation",
|
| 2303 |
+
"contact",
|
| 2304 |
+
"contain",
|
| 2305 |
+
"containing",
|
| 2306 |
+
"continue",
|
| 2307 |
+
"continuity",
|
| 2308 |
+
"continuous",
|
| 2309 |
+
"contraception",
|
| 2310 |
+
"contraceptives",
|
| 2311 |
+
"contractions",
|
| 2312 |
+
"contraindicate",
|
| 2313 |
+
"contraindicated",
|
| 2314 |
+
"contraindicates",
|
| 2315 |
+
"contraindications",
|
| 2316 |
+
"control",
|
| 2317 |
+
"controlled",
|
| 2318 |
+
"controlling",
|
| 2319 |
+
"conventional",
|
| 2320 |
+
"cooperate",
|
| 2321 |
+
"cooperative",
|
| 2322 |
+
"copies",
|
| 2323 |
+
"cord",
|
| 2324 |
+
"core",
|
| 2325 |
+
"corneal",
|
| 2326 |
+
"coronary",
|
| 2327 |
+
"corp",
|
| 2328 |
+
"corp.",
|
| 2329 |
+
"corrected",
|
| 2330 |
+
"correlative",
|
| 2331 |
+
"corticosteroid",
|
| 2332 |
+
"corticosteroids",
|
| 2333 |
+
"cortisol",
|
| 2334 |
+
"cos",
|
| 2335 |
+
"coti-2",
|
| 2336 |
+
"cough",
|
| 2337 |
+
"could",
|
| 2338 |
+
"counseling",
|
| 2339 |
+
"count",
|
| 2340 |
+
"counts",
|
| 2341 |
+
"course",
|
| 2342 |
+
"coz",
|
| 2343 |
+
"cpap",
|
| 2344 |
+
"cpb>90",
|
| 2345 |
+
"cpy3a4",
|
| 2346 |
+
"cr",
|
| 2347 |
+
"crab",
|
| 2348 |
+
"cranial",
|
| 2349 |
+
"craniotomy",
|
| 2350 |
+
"crc",
|
| 2351 |
+
"create",
|
| 2352 |
+
"creatinine",
|
| 2353 |
+
"criteria",
|
| 2354 |
+
"criterion",
|
| 2355 |
+
"critical",
|
| 2356 |
+
"cross",
|
| 2357 |
+
"cryosurgery",
|
| 2358 |
+
"csf",
|
| 2359 |
+
"ct",
|
| 2360 |
+
"ct.",
|
| 2361 |
+
"ctcae",
|
| 2362 |
+
"ctla-4",
|
| 2363 |
+
"cts",
|
| 2364 |
+
"cuff",
|
| 2365 |
+
"culture",
|
| 2366 |
+
"cumulative",
|
| 2367 |
+
"cur",
|
| 2368 |
+
"curative",
|
| 2369 |
+
"current",
|
| 2370 |
+
"currently",
|
| 2371 |
+
"cus",
|
| 2372 |
+
"cushing",
|
| 2373 |
+
"cutanea",
|
| 2374 |
+
"cutaneous",
|
| 2375 |
+
"cuz",
|
| 2376 |
+
"cva",
|
| 2377 |
+
"cvad",
|
| 2378 |
+
"cyclase",
|
| 2379 |
+
"cycle",
|
| 2380 |
+
"cycles",
|
| 2381 |
+
"cyclin",
|
| 2382 |
+
"cyclophosphamide",
|
| 2383 |
+
"cyclosporine",
|
| 2384 |
+
"cyclothymic",
|
| 2385 |
+
"cyp",
|
| 2386 |
+
"cyp2c8",
|
| 2387 |
+
"cyp3a4",
|
| 2388 |
+
"cystitis",
|
| 2389 |
+
"cytochrome",
|
| 2390 |
+
"cytogenetics",
|
| 2391 |
+
"cytologically",
|
| 2392 |
+
"cytometry",
|
| 2393 |
+
"cytopenias",
|
| 2394 |
+
"cytoreduction",
|
| 2395 |
+
"cytotoxic",
|
| 2396 |
+
"c\u2019m",
|
| 2397 |
+
"d",
|
| 2398 |
+
"d)",
|
| 2399 |
+
"d)(1",
|
| 2400 |
+
"d,ddd",
|
| 2401 |
+
"d-",
|
| 2402 |
+
"d-)",
|
| 2403 |
+
"d-X",
|
| 2404 |
+
"d.",
|
| 2405 |
+
"d.c.",
|
| 2406 |
+
"d.d",
|
| 2407 |
+
"d.d.d",
|
| 2408 |
+
"d.dx",
|
| 2409 |
+
"d.dxx",
|
| 2410 |
+
"d.x",
|
| 2411 |
+
"d/d",
|
| 2412 |
+
"d/dd",
|
| 2413 |
+
"d1",
|
| 2414 |
+
"d3",
|
| 2415 |
+
"dL",
|
| 2416 |
+
"dX",
|
| 2417 |
+
"d_d",
|
| 2418 |
+
"d_x",
|
| 2419 |
+
"dal",
|
| 2420 |
+
"damage",
|
| 2421 |
+
"dana",
|
| 2422 |
+
"dangerous",
|
| 2423 |
+
"dare",
|
| 2424 |
+
"data",
|
| 2425 |
+
"day",
|
| 2426 |
+
"days",
|
| 2427 |
+
"dcis",
|
| 2428 |
+
"dd",
|
| 2429 |
+
"dd,ddd",
|
| 2430 |
+
"ddX]Xxxxx",
|
| 2431 |
+
"ddd",
|
| 2432 |
+
"ddd/dd",
|
| 2433 |
+
"dddd",
|
| 2434 |
+
"ddx.x",
|
| 2435 |
+
"ddx.x.",
|
| 2436 |
+
"de",
|
| 2437 |
+
"death",
|
| 2438 |
+
"dec",
|
| 2439 |
+
"dec.",
|
| 2440 |
+
"deciliter",
|
| 2441 |
+
"ded",
|
| 2442 |
+
"deemed",
|
| 2443 |
+
"deep",
|
| 2444 |
+
"deficiency",
|
| 2445 |
+
"deficit",
|
| 2446 |
+
"defined",
|
| 2447 |
+
"defining",
|
| 2448 |
+
"definite",
|
| 2449 |
+
"definitions",
|
| 2450 |
+
"definitive",
|
| 2451 |
+
"definitively",
|
| 2452 |
+
"deformity",
|
| 2453 |
+
"degeneration",
|
| 2454 |
+
"degree",
|
| 2455 |
+
"del",
|
| 2456 |
+
"del.",
|
| 2457 |
+
"del19",
|
| 2458 |
+
"delayed",
|
| 2459 |
+
"deletion",
|
| 2460 |
+
"delirium",
|
| 2461 |
+
"delivered",
|
| 2462 |
+
"delusional",
|
| 2463 |
+
"dem",
|
| 2464 |
+
"dementia",
|
| 2465 |
+
"demonstrate",
|
| 2466 |
+
"demonstrated",
|
| 2467 |
+
"demonstrates",
|
| 2468 |
+
"demonstrating",
|
| 2469 |
+
"demonstration",
|
| 2470 |
+
"department",
|
| 2471 |
+
"dependence",
|
| 2472 |
+
"depot",
|
| 2473 |
+
"depressed",
|
| 2474 |
+
"depression",
|
| 2475 |
+
"depressive",
|
| 2476 |
+
"der",
|
| 2477 |
+
"derivative",
|
| 2478 |
+
"dermatologic",
|
| 2479 |
+
"des",
|
| 2480 |
+
"described",
|
| 2481 |
+
"designee",
|
| 2482 |
+
"desires",
|
| 2483 |
+
"despite",
|
| 2484 |
+
"detectable",
|
| 2485 |
+
"detected",
|
| 2486 |
+
"determined",
|
| 2487 |
+
"developing",
|
| 2488 |
+
"device",
|
| 2489 |
+
"devices",
|
| 2490 |
+
"dex",
|
| 2491 |
+
"dextran",
|
| 2492 |
+
"dextromethorphan",
|
| 2493 |
+
"dia",
|
| 2494 |
+
"diabetes",
|
| 2495 |
+
"diabetic",
|
| 2496 |
+
"diagnosed",
|
| 2497 |
+
"diagnosis",
|
| 2498 |
+
"diagnostic",
|
| 2499 |
+
"diameter",
|
| 2500 |
+
"diaphragm",
|
| 2501 |
+
"diarrhea",
|
| 2502 |
+
"diastolic",
|
| 2503 |
+
"diatheses",
|
| 2504 |
+
"dic",
|
| 2505 |
+
"did",
|
| 2506 |
+
"didanosine",
|
| 2507 |
+
"dietary",
|
| 2508 |
+
"differentiated",
|
| 2509 |
+
"differentiation",
|
| 2510 |
+
"difficulty",
|
| 2511 |
+
"diffuse",
|
| 2512 |
+
"diffusing",
|
| 2513 |
+
"digestive",
|
| 2514 |
+
"dilation",
|
| 2515 |
+
"dimension",
|
| 2516 |
+
"dipg",
|
| 2517 |
+
"dir",
|
| 2518 |
+
"directed",
|
| 2519 |
+
"directly",
|
| 2520 |
+
"disability",
|
| 2521 |
+
"discontinuation",
|
| 2522 |
+
"discontinue",
|
| 2523 |
+
"discontinued",
|
| 2524 |
+
"discretion",
|
| 2525 |
+
"discrimination",
|
| 2526 |
+
"disease",
|
| 2527 |
+
"disease-",
|
| 2528 |
+
"diseases",
|
| 2529 |
+
"disk",
|
| 2530 |
+
"dislocations",
|
| 2531 |
+
"disorder",
|
| 2532 |
+
"disorder(s",
|
| 2533 |
+
"disorders",
|
| 2534 |
+
"disseminated",
|
| 2535 |
+
"distant",
|
| 2536 |
+
"distress",
|
| 2537 |
+
"distribution",
|
| 2538 |
+
"dix",
|
| 2539 |
+
"dl",
|
| 2540 |
+
"dlbcl",
|
| 2541 |
+
"dlco",
|
| 2542 |
+
"dle",
|
| 2543 |
+
"dly",
|
| 2544 |
+
"dm",
|
| 2545 |
+
"dm.",
|
| 2546 |
+
"do",
|
| 2547 |
+
"documentation",
|
| 2548 |
+
"documented",
|
| 2549 |
+
"does",
|
| 2550 |
+
"doin",
|
| 2551 |
+
"doin'",
|
| 2552 |
+
"doing",
|
| 2553 |
+
"doin\u2019",
|
| 2554 |
+
"dom",
|
| 2555 |
+
"dominant",
|
| 2556 |
+
"donation",
|
| 2557 |
+
"donor",
|
| 2558 |
+
"donors",
|
| 2559 |
+
"dopamine",
|
| 2560 |
+
"dose",
|
| 2561 |
+
"doses",
|
| 2562 |
+
"dosing",
|
| 2563 |
+
"dota",
|
| 2564 |
+
"double",
|
| 2565 |
+
"doxercalciferol",
|
| 2566 |
+
"doxorubicin",
|
| 2567 |
+
"dr",
|
| 2568 |
+
"dr.",
|
| 2569 |
+
"drainage",
|
| 2570 |
+
"drug",
|
| 2571 |
+
"drugs",
|
| 2572 |
+
"ductal",
|
| 2573 |
+
"due",
|
| 2574 |
+
"duodenal",
|
| 2575 |
+
"duodenum",
|
| 2576 |
+
"duration",
|
| 2577 |
+
"during",
|
| 2578 |
+
"dx",
|
| 2579 |
+
"dx.x",
|
| 2580 |
+
"dx.x.",
|
| 2581 |
+
"dxx",
|
| 2582 |
+
"dysautonomia",
|
| 2583 |
+
"dysfunction",
|
| 2584 |
+
"dysplasia",
|
| 2585 |
+
"dyspnea",
|
| 2586 |
+
"dystonia",
|
| 2587 |
+
"dystrophy",
|
| 2588 |
+
"e",
|
| 2589 |
+
"e's",
|
| 2590 |
+
"e(s",
|
| 2591 |
+
"e-5",
|
| 2592 |
+
"e.",
|
| 2593 |
+
"e.g",
|
| 2594 |
+
"e.g.",
|
| 2595 |
+
"eGFR",
|
| 2596 |
+
"each",
|
| 2597 |
+
"ead",
|
| 2598 |
+
"eal",
|
| 2599 |
+
"eam",
|
| 2600 |
+
"ean",
|
| 2601 |
+
"ear",
|
| 2602 |
+
"eas",
|
| 2603 |
+
"eat",
|
| 2604 |
+
"eating",
|
| 2605 |
+
"eb.",
|
| 2606 |
+
"ebr",
|
| 2607 |
+
"ebstein",
|
| 2608 |
+
"ebv",
|
| 2609 |
+
"ec.",
|
| 2610 |
+
"ecg",
|
| 2611 |
+
"echo",
|
| 2612 |
+
"echocardiogram",
|
| 2613 |
+
"echocardiography",
|
| 2614 |
+
"eck",
|
| 2615 |
+
"ect",
|
| 2616 |
+
"ectodermal",
|
| 2617 |
+
"edotreotide",
|
| 2618 |
+
"eds",
|
| 2619 |
+
"eed",
|
| 2620 |
+
"eek",
|
| 2621 |
+
"eel",
|
| 2622 |
+
"een",
|
| 2623 |
+
"eep",
|
| 2624 |
+
"ees",
|
| 2625 |
+
"eet",
|
| 2626 |
+
"efavirenz",
|
| 2627 |
+
"effect",
|
| 2628 |
+
"effective",
|
| 2629 |
+
"effects",
|
| 2630 |
+
"effusion",
|
| 2631 |
+
"effusions",
|
| 2632 |
+
"eft",
|
| 2633 |
+
"eg",
|
| 2634 |
+
"egfr",
|
| 2635 |
+
"egg",
|
| 2636 |
+
"eic",
|
| 2637 |
+
"ein",
|
| 2638 |
+
"eir",
|
| 2639 |
+
"either",
|
| 2640 |
+
"ejection",
|
| 2641 |
+
"ekg",
|
| 2642 |
+
"eks",
|
| 2643 |
+
"el.",
|
| 2644 |
+
"elapsed",
|
| 2645 |
+
"elderly",
|
| 2646 |
+
"ele",
|
| 2647 |
+
"elective",
|
| 2648 |
+
"electrocardiogram",
|
| 2649 |
+
"elevation",
|
| 2650 |
+
"elevations",
|
| 2651 |
+
"elf",
|
| 2652 |
+
"eligibility",
|
| 2653 |
+
"eligible",
|
| 2654 |
+
"elisa",
|
| 2655 |
+
"ell",
|
| 2656 |
+
"eln",
|
| 2657 |
+
"els",
|
| 2658 |
+
"elsewhere",
|
| 2659 |
+
"elt",
|
| 2660 |
+
"ely",
|
| 2661 |
+
"em",
|
| 2662 |
+
"embolism",
|
| 2663 |
+
"embolization",
|
| 2664 |
+
"embryo",
|
| 2665 |
+
"embryonal",
|
| 2666 |
+
"emergency",
|
| 2667 |
+
"emergent",
|
| 2668 |
+
"emission",
|
| 2669 |
+
"emo",
|
| 2670 |
+
"emotional",
|
| 2671 |
+
"ems",
|
| 2672 |
+
"emtricitabine",
|
| 2673 |
+
"en",
|
| 2674 |
+
"en.",
|
| 2675 |
+
"end",
|
| 2676 |
+
"endocarditis",
|
| 2677 |
+
"endocrine",
|
| 2678 |
+
"endoscopy",
|
| 2679 |
+
"endothelial",
|
| 2680 |
+
"endothelin",
|
| 2681 |
+
"ene",
|
| 2682 |
+
"enhances",
|
| 2683 |
+
"enhancing",
|
| 2684 |
+
"enn",
|
| 2685 |
+
"eno",
|
| 2686 |
+
"enough",
|
| 2687 |
+
"enroll",
|
| 2688 |
+
"enrolled",
|
| 2689 |
+
"enrolling",
|
| 2690 |
+
"enrollment",
|
| 2691 |
+
"ens",
|
| 2692 |
+
"ent",
|
| 2693 |
+
"entering",
|
| 2694 |
+
"enterocutaneous",
|
| 2695 |
+
"enteropathy",
|
| 2696 |
+
"entry",
|
| 2697 |
+
"enz",
|
| 2698 |
+
"enzyme",
|
| 2699 |
+
"enzymes",
|
| 2700 |
+
"eosinophilia",
|
| 2701 |
+
"ep.",
|
| 2702 |
+
"ependymoma",
|
| 2703 |
+
"epidermal",
|
| 2704 |
+
"epidural",
|
| 2705 |
+
"epilepsy",
|
| 2706 |
+
"epileptic",
|
| 2707 |
+
"epiphyses",
|
| 2708 |
+
"episode",
|
| 2709 |
+
"episodes",
|
| 2710 |
+
"epithelial",
|
| 2711 |
+
"epoprostenol",
|
| 2712 |
+
"ept",
|
| 2713 |
+
"equal",
|
| 2714 |
+
"equina",
|
| 2715 |
+
"equivalent",
|
| 2716 |
+
"er",
|
| 2717 |
+
"er-/pr-/her2-",
|
| 2718 |
+
"eras",
|
| 2719 |
+
"ercp",
|
| 2720 |
+
"ere",
|
| 2721 |
+
"erm",
|
| 2722 |
+
"error",
|
| 2723 |
+
"errors",
|
| 2724 |
+
"ers",
|
| 2725 |
+
"ert",
|
| 2726 |
+
"ery",
|
| 2727 |
+
"erythematosus",
|
| 2728 |
+
"erythromycin",
|
| 2729 |
+
"erythropoietic",
|
| 2730 |
+
"escalation",
|
| 2731 |
+
"ese",
|
| 2732 |
+
"esophageal",
|
| 2733 |
+
"esophagus",
|
| 2734 |
+
"ess",
|
| 2735 |
+
"est",
|
| 2736 |
+
"established",
|
| 2737 |
+
"estimated",
|
| 2738 |
+
"estradiol",
|
| 2739 |
+
"estrogen",
|
| 2740 |
+
"eta",
|
| 2741 |
+
"etc",
|
| 2742 |
+
"ete",
|
| 2743 |
+
"eth",
|
| 2744 |
+
"etiology",
|
| 2745 |
+
"etoposide",
|
| 2746 |
+
"ets",
|
| 2747 |
+
"ety",
|
| 2748 |
+
"eum",
|
| 2749 |
+
"eus",
|
| 2750 |
+
"ev.",
|
| 2751 |
+
"evaluable",
|
| 2752 |
+
"evaluated",
|
| 2753 |
+
"evaluation",
|
| 2754 |
+
"evaluations",
|
| 2755 |
+
"even",
|
| 2756 |
+
"event",
|
| 2757 |
+
"events",
|
| 2758 |
+
"everolimus",
|
| 2759 |
+
"evidence",
|
| 2760 |
+
"evidenced",
|
| 2761 |
+
"evolving",
|
| 2762 |
+
"ewing",
|
| 2763 |
+
"exablate",
|
| 2764 |
+
"exacerbation",
|
| 2765 |
+
"exam",
|
| 2766 |
+
"examination",
|
| 2767 |
+
"example",
|
| 2768 |
+
"exceeding",
|
| 2769 |
+
"except",
|
| 2770 |
+
"exception",
|
| 2771 |
+
"exceptions",
|
| 2772 |
+
"excipient",
|
| 2773 |
+
"excision",
|
| 2774 |
+
"excluded",
|
| 2775 |
+
"excluding",
|
| 2776 |
+
"exclusion",
|
| 2777 |
+
"excretion",
|
| 2778 |
+
"exercise",
|
| 2779 |
+
"exercised",
|
| 2780 |
+
"exist",
|
| 2781 |
+
"existing",
|
| 2782 |
+
"expansion",
|
| 2783 |
+
"expectancy",
|
| 2784 |
+
"expectation",
|
| 2785 |
+
"expected",
|
| 2786 |
+
"experience",
|
| 2787 |
+
"experienced",
|
| 2788 |
+
"experiment",
|
| 2789 |
+
"expiratory",
|
| 2790 |
+
"explained",
|
| 2791 |
+
"exposure",
|
| 2792 |
+
"express",
|
| 2793 |
+
"expresses",
|
| 2794 |
+
"expression",
|
| 2795 |
+
"extends",
|
| 2796 |
+
"extension",
|
| 2797 |
+
"external",
|
| 2798 |
+
"extra",
|
| 2799 |
+
"extramedullary",
|
| 2800 |
+
"extrapancreatic",
|
| 2801 |
+
"extremely",
|
| 2802 |
+
"extremity",
|
| 2803 |
+
"e\u2019s",
|
| 2804 |
+
"f",
|
| 2805 |
+
"f.",
|
| 2806 |
+
"fMRI",
|
| 2807 |
+
"factor",
|
| 2808 |
+
"factors",
|
| 2809 |
+
"faculty",
|
| 2810 |
+
"failed",
|
| 2811 |
+
"failure",
|
| 2812 |
+
"fall",
|
| 2813 |
+
"famciclovir",
|
| 2814 |
+
"familial",
|
| 2815 |
+
"family",
|
| 2816 |
+
"fan",
|
| 2817 |
+
"farber",
|
| 2818 |
+
"fasting",
|
| 2819 |
+
"fatty",
|
| 2820 |
+
"fcbp",
|
| 2821 |
+
"fd",
|
| 2822 |
+
"fdg",
|
| 2823 |
+
"feasible",
|
| 2824 |
+
"features",
|
| 2825 |
+
"feb",
|
| 2826 |
+
"feb.",
|
| 2827 |
+
"feeding",
|
| 2828 |
+
"feeds",
|
| 2829 |
+
"feels",
|
| 2830 |
+
"felt",
|
| 2831 |
+
"female",
|
| 2832 |
+
"females",
|
| 2833 |
+
"fen",
|
| 2834 |
+
"fer",
|
| 2835 |
+
"fertile",
|
| 2836 |
+
"fertility",
|
| 2837 |
+
"ferumoxytol",
|
| 2838 |
+
"fetus",
|
| 2839 |
+
"fev1",
|
| 2840 |
+
"fibrillation",
|
| 2841 |
+
"fibromyalgia",
|
| 2842 |
+
"fibrosis",
|
| 2843 |
+
"fic",
|
| 2844 |
+
"filtration",
|
| 2845 |
+
"final",
|
| 2846 |
+
"findings",
|
| 2847 |
+
"first",
|
| 2848 |
+
"fish",
|
| 2849 |
+
"fistula",
|
| 2850 |
+
"fit",
|
| 2851 |
+
"five",
|
| 2852 |
+
"fixation",
|
| 2853 |
+
"fl",
|
| 2854 |
+
"fla",
|
| 2855 |
+
"fla.",
|
| 2856 |
+
"flank",
|
| 2857 |
+
"flolan",
|
| 2858 |
+
"flow",
|
| 2859 |
+
"fluid",
|
| 2860 |
+
"fluorescence",
|
| 2861 |
+
"fluoxetine",
|
| 2862 |
+
"flutamide",
|
| 2863 |
+
"fluvoxamine",
|
| 2864 |
+
"fmri",
|
| 2865 |
+
"focus",
|
| 2866 |
+
"focused",
|
| 2867 |
+
"follow",
|
| 2868 |
+
"following",
|
| 2869 |
+
"food",
|
| 2870 |
+
"foot",
|
| 2871 |
+
"for",
|
| 2872 |
+
"forced",
|
| 2873 |
+
"form",
|
| 2874 |
+
"forms",
|
| 2875 |
+
"fort",
|
| 2876 |
+
"forth",
|
| 2877 |
+
"fortified",
|
| 2878 |
+
"fosphenytoin",
|
| 2879 |
+
"four",
|
| 2880 |
+
"fraction",
|
| 2881 |
+
"fracture",
|
| 2882 |
+
"francis",
|
| 2883 |
+
"free",
|
| 2884 |
+
"frequent",
|
| 2885 |
+
"frequently",
|
| 2886 |
+
"from",
|
| 2887 |
+
"fsh",
|
| 2888 |
+
"ftc",
|
| 2889 |
+
"ful",
|
| 2890 |
+
"full",
|
| 2891 |
+
"fully",
|
| 2892 |
+
"fulvestrant",
|
| 2893 |
+
"function",
|
| 2894 |
+
"functional",
|
| 2895 |
+
"fungal",
|
| 2896 |
+
"fusion",
|
| 2897 |
+
"fvc",
|
| 2898 |
+
"g",
|
| 2899 |
+
"g.",
|
| 2900 |
+
"g719x",
|
| 2901 |
+
"gBRCA1/2",
|
| 2902 |
+
"ga",
|
| 2903 |
+
"ga.",
|
| 2904 |
+
"gabapentin",
|
| 2905 |
+
"gal",
|
| 2906 |
+
"gamma",
|
| 2907 |
+
"gan",
|
| 2908 |
+
"ganciclovir",
|
| 2909 |
+
"gangliosidosis",
|
| 2910 |
+
"gas",
|
| 2911 |
+
"gastric",
|
| 2912 |
+
"gastro",
|
| 2913 |
+
"gastrointestinal",
|
| 2914 |
+
"gated",
|
| 2915 |
+
"gbm",
|
| 2916 |
+
"gbrca1/2",
|
| 2917 |
+
"gdmt",
|
| 2918 |
+
"ged",
|
| 2919 |
+
"gem",
|
| 2920 |
+
"gemcitabine",
|
| 2921 |
+
"gemfibrozil",
|
| 2922 |
+
"gen",
|
| 2923 |
+
"gen.",
|
| 2924 |
+
"genders",
|
| 2925 |
+
"gene",
|
| 2926 |
+
"generalist",
|
| 2927 |
+
"genetic",
|
| 2928 |
+
"genital",
|
| 2929 |
+
"genotype",
|
| 2930 |
+
"ger",
|
| 2931 |
+
"gerd",
|
| 2932 |
+
"germline",
|
| 2933 |
+
"ges",
|
| 2934 |
+
"get",
|
| 2935 |
+
"gfr",
|
| 2936 |
+
"ght",
|
| 2937 |
+
"gi",
|
| 2938 |
+
"gia",
|
| 2939 |
+
"gib",
|
| 2940 |
+
"gic",
|
| 2941 |
+
"gilbert",
|
| 2942 |
+
"gist",
|
| 2943 |
+
"given",
|
| 2944 |
+
"glaucoma",
|
| 2945 |
+
"gle",
|
| 2946 |
+
"gliadel",
|
| 2947 |
+
"glioblastoma",
|
| 2948 |
+
"glioma",
|
| 2949 |
+
"glomerular",
|
| 2950 |
+
"glomerulonephritis",
|
| 2951 |
+
"glucocorticoids",
|
| 2952 |
+
"glucose",
|
| 2953 |
+
"gluten",
|
| 2954 |
+
"goin",
|
| 2955 |
+
"goin'",
|
| 2956 |
+
"going",
|
| 2957 |
+
"goin\u2019",
|
| 2958 |
+
"gold",
|
| 2959 |
+
"gon",
|
| 2960 |
+
"gonadotropin",
|
| 2961 |
+
"gonna",
|
| 2962 |
+
"got",
|
| 2963 |
+
"gov",
|
| 2964 |
+
"gov.",
|
| 2965 |
+
"grade",
|
| 2966 |
+
"graft",
|
| 2967 |
+
"gram",
|
| 2968 |
+
"granisetron",
|
| 2969 |
+
"greater",
|
| 2970 |
+
"groin",
|
| 2971 |
+
"group",
|
| 2972 |
+
"growth",
|
| 2973 |
+
"guanylate",
|
| 2974 |
+
"gue",
|
| 2975 |
+
"guided",
|
| 2976 |
+
"guidelines",
|
| 2977 |
+
"gus",
|
| 2978 |
+
"gvhd",
|
| 2979 |
+
"h",
|
| 2980 |
+
"h.",
|
| 2981 |
+
"hCG",
|
| 2982 |
+
"haart",
|
| 2983 |
+
"had",
|
| 2984 |
+
"hal",
|
| 2985 |
+
"half",
|
| 2986 |
+
"hamilton",
|
| 2987 |
+
"han",
|
| 2988 |
+
"haploidentical",
|
| 2989 |
+
"harvest",
|
| 2990 |
+
"has",
|
| 2991 |
+
"hat",
|
| 2992 |
+
"have",
|
| 2993 |
+
"havin",
|
| 2994 |
+
"havin'",
|
| 2995 |
+
"having",
|
| 2996 |
+
"havin\u2019",
|
| 2997 |
+
"hba1c",
|
| 2998 |
+
"hboc",
|
| 2999 |
+
"hbv",
|
| 3000 |
+
"hcc",
|
| 3001 |
+
"hcg",
|
| 3002 |
+
"hcl",
|
| 3003 |
+
"hct",
|
| 3004 |
+
"hcv",
|
| 3005 |
+
"hdrs-17",
|
| 3006 |
+
"he",
|
| 3007 |
+
"he's",
|
| 3008 |
+
"hea",
|
| 3009 |
+
"head",
|
| 3010 |
+
"healing",
|
| 3011 |
+
"health",
|
| 3012 |
+
"healthy",
|
| 3013 |
+
"hearing",
|
| 3014 |
+
"heart",
|
| 3015 |
+
"hed",
|
| 3016 |
+
"hematologic",
|
| 3017 |
+
"hematological",
|
| 3018 |
+
"hematopoietic",
|
| 3019 |
+
"hematuria",
|
| 3020 |
+
"hemisphere",
|
| 3021 |
+
"hemodynamic",
|
| 3022 |
+
"hemoglobin",
|
| 3023 |
+
"hemorrhage",
|
| 3024 |
+
"hemorrhagic",
|
| 3025 |
+
"hen",
|
| 3026 |
+
"heparin",
|
| 3027 |
+
"hepatic",
|
| 3028 |
+
"hepatitis",
|
| 3029 |
+
"hepatocellular",
|
| 3030 |
+
"her",
|
| 3031 |
+
"her-2",
|
| 3032 |
+
"her2",
|
| 3033 |
+
"herbal",
|
| 3034 |
+
"hereditary",
|
| 3035 |
+
"herniated",
|
| 3036 |
+
"hey",
|
| 3037 |
+
"he\u2019s",
|
| 3038 |
+
"hfpef",
|
| 3039 |
+
"hh",
|
| 3040 |
+
"hhv6",
|
| 3041 |
+
"hhv8",
|
| 3042 |
+
"hic",
|
| 3043 |
+
"hifu",
|
| 3044 |
+
"high",
|
| 3045 |
+
"higher",
|
| 3046 |
+
"highly",
|
| 3047 |
+
"hil",
|
| 3048 |
+
"hin",
|
| 3049 |
+
"his",
|
| 3050 |
+
"histologic",
|
| 3051 |
+
"histological",
|
| 3052 |
+
"histologically",
|
| 3053 |
+
"histologies",
|
| 3054 |
+
"histology",
|
| 3055 |
+
"history",
|
| 3056 |
+
"hit",
|
| 3057 |
+
"hiv",
|
| 3058 |
+
"hiv)-positive",
|
| 3059 |
+
"hiv+",
|
| 3060 |
+
"hiv-1",
|
| 3061 |
+
"hl",
|
| 3062 |
+
"hla",
|
| 3063 |
+
"hly",
|
| 3064 |
+
"hma",
|
| 3065 |
+
"hoc",
|
| 3066 |
+
"hod",
|
| 3067 |
+
"hol",
|
| 3068 |
+
"hom",
|
| 3069 |
+
"home",
|
| 3070 |
+
"hormonal",
|
| 3071 |
+
"hormone",
|
| 3072 |
+
"hormones",
|
| 3073 |
+
"hospital",
|
| 3074 |
+
"hospitalization",
|
| 3075 |
+
"hospitalized",
|
| 3076 |
+
"hour",
|
| 3077 |
+
"hours",
|
| 3078 |
+
"houston",
|
| 3079 |
+
"how",
|
| 3080 |
+
"how's",
|
| 3081 |
+
"however",
|
| 3082 |
+
"how\u2019s",
|
| 3083 |
+
"hpv",
|
| 3084 |
+
"hsct",
|
| 3085 |
+
"hsv",
|
| 3086 |
+
"htlv",
|
| 3087 |
+
"human",
|
| 3088 |
+
"hunter",
|
| 3089 |
+
"hybridization",
|
| 3090 |
+
"hydochlorothiazide",
|
| 3091 |
+
"hydroxyurea",
|
| 3092 |
+
"hyperbilirubinemia",
|
| 3093 |
+
"hypercalcemia",
|
| 3094 |
+
"hyperlipidemia",
|
| 3095 |
+
"hyperlipoproteinemia",
|
| 3096 |
+
"hyperparathyroidism",
|
| 3097 |
+
"hypersensitivity",
|
| 3098 |
+
"hypertension",
|
| 3099 |
+
"hyperthyroidism",
|
| 3100 |
+
"hypertrophy",
|
| 3101 |
+
"hypnotic",
|
| 3102 |
+
"hypnotics",
|
| 3103 |
+
"hypokalemia",
|
| 3104 |
+
"hypothyroidism",
|
| 3105 |
+
"hysterectomy",
|
| 3106 |
+
"i",
|
| 3107 |
+
"i-131",
|
| 3108 |
+
"i.",
|
| 3109 |
+
"i.e",
|
| 3110 |
+
"i.e.",
|
| 3111 |
+
"i.v",
|
| 3112 |
+
"iMZ",
|
| 3113 |
+
"ia",
|
| 3114 |
+
"ia.",
|
| 3115 |
+
"iac",
|
| 3116 |
+
"ial",
|
| 3117 |
+
"ian",
|
| 3118 |
+
"ias",
|
| 3119 |
+
"iatrogenic",
|
| 3120 |
+
"ib2",
|
| 3121 |
+
"ibuprofen",
|
| 3122 |
+
"ice",
|
| 3123 |
+
"ich",
|
| 3124 |
+
"ics",
|
| 3125 |
+
"id",
|
| 3126 |
+
"id.",
|
| 3127 |
+
"ida",
|
| 3128 |
+
"ide",
|
| 3129 |
+
"identical",
|
| 3130 |
+
"ids",
|
| 3131 |
+
"idsa",
|
| 3132 |
+
"ied",
|
| 3133 |
+
"ier",
|
| 3134 |
+
"ies",
|
| 3135 |
+
"iew",
|
| 3136 |
+
"if",
|
| 3137 |
+
"if.",
|
| 3138 |
+
"ife",
|
| 3139 |
+
"ify",
|
| 3140 |
+
"iga",
|
| 3141 |
+
"igh",
|
| 3142 |
+
"ign",
|
| 3143 |
+
"ihc",
|
| 3144 |
+
"ii",
|
| 3145 |
+
"iia",
|
| 3146 |
+
"iii",
|
| 3147 |
+
"iiib",
|
| 3148 |
+
"ike",
|
| 3149 |
+
"ild",
|
| 3150 |
+
"ile",
|
| 3151 |
+
"ileus",
|
| 3152 |
+
"ilk",
|
| 3153 |
+
"ill",
|
| 3154 |
+
"ill.",
|
| 3155 |
+
"illness",
|
| 3156 |
+
"illnesses",
|
| 3157 |
+
"ilm",
|
| 3158 |
+
"iloprost",
|
| 3159 |
+
"ilt",
|
| 3160 |
+
"ily",
|
| 3161 |
+
"image",
|
| 3162 |
+
"imaging",
|
| 3163 |
+
"imb",
|
| 3164 |
+
"ime",
|
| 3165 |
+
"imidazole",
|
| 3166 |
+
"imipramine",
|
| 3167 |
+
"immediate",
|
| 3168 |
+
"immediately",
|
| 3169 |
+
"immune",
|
| 3170 |
+
"immuno-",
|
| 3171 |
+
"immunocompromised",
|
| 3172 |
+
"immunodeficiency",
|
| 3173 |
+
"immunodysregulation",
|
| 3174 |
+
"immunoglobulin",
|
| 3175 |
+
"immunohistochemical",
|
| 3176 |
+
"immunohistochemistry",
|
| 3177 |
+
"immunologic",
|
| 3178 |
+
"immunomodulatory",
|
| 3179 |
+
"immunosuppression",
|
| 3180 |
+
"immunosuppressive",
|
| 3181 |
+
"immunotherapy",
|
| 3182 |
+
"impact",
|
| 3183 |
+
"impair",
|
| 3184 |
+
"impaired",
|
| 3185 |
+
"impairment",
|
| 3186 |
+
"implant",
|
| 3187 |
+
"implants",
|
| 3188 |
+
"important",
|
| 3189 |
+
"imwg",
|
| 3190 |
+
"in",
|
| 3191 |
+
"in'",
|
| 3192 |
+
"ina",
|
| 3193 |
+
"inborn",
|
| 3194 |
+
"inc",
|
| 3195 |
+
"inc.",
|
| 3196 |
+
"incidence",
|
| 3197 |
+
"incision",
|
| 3198 |
+
"include",
|
| 3199 |
+
"included",
|
| 3200 |
+
"includes",
|
| 3201 |
+
"including",
|
| 3202 |
+
"inclusion",
|
| 3203 |
+
"inclusive",
|
| 3204 |
+
"incontinence",
|
| 3205 |
+
"increase",
|
| 3206 |
+
"increased",
|
| 3207 |
+
"incurable",
|
| 3208 |
+
"ind",
|
| 3209 |
+
"ind.",
|
| 3210 |
+
"indeterminate",
|
| 3211 |
+
"index",
|
| 3212 |
+
"indication",
|
| 3213 |
+
"indications",
|
| 3214 |
+
"indinavir",
|
| 3215 |
+
"individual",
|
| 3216 |
+
"individuals",
|
| 3217 |
+
"induce",
|
| 3218 |
+
"induced",
|
| 3219 |
+
"inducer",
|
| 3220 |
+
"inducers",
|
| 3221 |
+
"inducing",
|
| 3222 |
+
"induction",
|
| 3223 |
+
"ine",
|
| 3224 |
+
"ineligible",
|
| 3225 |
+
"infant",
|
| 3226 |
+
"infantile",
|
| 3227 |
+
"infarction",
|
| 3228 |
+
"infected",
|
| 3229 |
+
"infection",
|
| 3230 |
+
"infections",
|
| 3231 |
+
"infectious",
|
| 3232 |
+
"infertility",
|
| 3233 |
+
"infiltration",
|
| 3234 |
+
"inflammation",
|
| 3235 |
+
"inflammatory",
|
| 3236 |
+
"infliximab",
|
| 3237 |
+
"inform",
|
| 3238 |
+
"informed",
|
| 3239 |
+
"infrainguinal",
|
| 3240 |
+
"infusion",
|
| 3241 |
+
"ing",
|
| 3242 |
+
"inhaled",
|
| 3243 |
+
"inherent",
|
| 3244 |
+
"inherited",
|
| 3245 |
+
"inhibit",
|
| 3246 |
+
"inhibition",
|
| 3247 |
+
"inhibitor",
|
| 3248 |
+
"inhibitors",
|
| 3249 |
+
"ini",
|
| 3250 |
+
"initial",
|
| 3251 |
+
"initiate",
|
| 3252 |
+
"initiated",
|
| 3253 |
+
"initiation",
|
| 3254 |
+
"injection",
|
| 3255 |
+
"injuries",
|
| 3256 |
+
"injury",
|
| 3257 |
+
"inn",
|
| 3258 |
+
"ino",
|
| 3259 |
+
"inotropic",
|
| 3260 |
+
"inr",
|
| 3261 |
+
"ins",
|
| 3262 |
+
"inserted",
|
| 3263 |
+
"insertion",
|
| 3264 |
+
"instability",
|
| 3265 |
+
"instead",
|
| 3266 |
+
"instis",
|
| 3267 |
+
"institute",
|
| 3268 |
+
"institutional",
|
| 3269 |
+
"insufficiency",
|
| 3270 |
+
"insufficient",
|
| 3271 |
+
"insulin",
|
| 3272 |
+
"integrase",
|
| 3273 |
+
"intended",
|
| 3274 |
+
"intense",
|
| 3275 |
+
"intensity",
|
| 3276 |
+
"intensive",
|
| 3277 |
+
"intent",
|
| 3278 |
+
"interaction",
|
| 3279 |
+
"interactions",
|
| 3280 |
+
"intercurrent",
|
| 3281 |
+
"interface",
|
| 3282 |
+
"interfere",
|
| 3283 |
+
"internal",
|
| 3284 |
+
"international",
|
| 3285 |
+
"interpretation",
|
| 3286 |
+
"interrupted",
|
| 3287 |
+
"interval",
|
| 3288 |
+
"intervention",
|
| 3289 |
+
"intestinal",
|
| 3290 |
+
"into",
|
| 3291 |
+
"intolerance",
|
| 3292 |
+
"intra",
|
| 3293 |
+
"intracranial",
|
| 3294 |
+
"intranasal",
|
| 3295 |
+
"intrauterine",
|
| 3296 |
+
"intravenous",
|
| 3297 |
+
"invasive",
|
| 3298 |
+
"investigational",
|
| 3299 |
+
"investigator",
|
| 3300 |
+
"investigators",
|
| 3301 |
+
"involved",
|
| 3302 |
+
"involvement",
|
| 3303 |
+
"involves",
|
| 3304 |
+
"involving",
|
| 3305 |
+
"inx",
|
| 3306 |
+
"in\u2019",
|
| 3307 |
+
"iod",
|
| 3308 |
+
"iol",
|
| 3309 |
+
"ion",
|
| 3310 |
+
"ior",
|
| 3311 |
+
"iothalamate",
|
| 3312 |
+
"ipex",
|
| 3313 |
+
"ipilimumab",
|
| 3314 |
+
"ipsilateral",
|
| 3315 |
+
"ire",
|
| 3316 |
+
"irinotecan",
|
| 3317 |
+
"iron",
|
| 3318 |
+
"is",
|
| 3319 |
+
"is.",
|
| 3320 |
+
"ischemia",
|
| 3321 |
+
"ischemic",
|
| 3322 |
+
"ise",
|
| 3323 |
+
"ish",
|
| 3324 |
+
"isk",
|
| 3325 |
+
"ism",
|
| 3326 |
+
"isoflavones",
|
| 3327 |
+
"isolated",
|
| 3328 |
+
"isoptin",
|
| 3329 |
+
"iss",
|
| 3330 |
+
"isseminated",
|
| 3331 |
+
"ist",
|
| 3332 |
+
"it",
|
| 3333 |
+
"it's",
|
| 3334 |
+
"ite",
|
| 3335 |
+
"ith",
|
| 3336 |
+
"its",
|
| 3337 |
+
"itu",
|
| 3338 |
+
"ity",
|
| 3339 |
+
"it\u2019s",
|
| 3340 |
+
"iu",
|
| 3341 |
+
"iud",
|
| 3342 |
+
"ium",
|
| 3343 |
+
"iv",
|
| 3344 |
+
"iva",
|
| 3345 |
+
"ive",
|
| 3346 |
+
"iz.",
|
| 3347 |
+
"ize",
|
| 3348 |
+
"izo",
|
| 3349 |
+
"j",
|
| 3350 |
+
"j.",
|
| 3351 |
+
"jan",
|
| 3352 |
+
"jan.",
|
| 3353 |
+
"jor",
|
| 3354 |
+
"jr",
|
| 3355 |
+
"jr.",
|
| 3356 |
+
"judged",
|
| 3357 |
+
"judgment",
|
| 3358 |
+
"jul",
|
| 3359 |
+
"jul.",
|
| 3360 |
+
"jun",
|
| 3361 |
+
"jun.",
|
| 3362 |
+
"junction",
|
| 3363 |
+
"juvenile",
|
| 3364 |
+
"k",
|
| 3365 |
+
"k.",
|
| 3366 |
+
"k65r",
|
| 3367 |
+
"kan",
|
| 3368 |
+
"kan.",
|
| 3369 |
+
"kans",
|
| 3370 |
+
"kans.",
|
| 3371 |
+
"ked",
|
| 3372 |
+
"ken",
|
| 3373 |
+
"kes",
|
| 3374 |
+
"ketoconazole",
|
| 3375 |
+
"kg",
|
| 3376 |
+
"kidney",
|
| 3377 |
+
"kin",
|
| 3378 |
+
"kinase",
|
| 3379 |
+
"kind",
|
| 3380 |
+
"kits",
|
| 3381 |
+
"kla",
|
| 3382 |
+
"kle",
|
| 3383 |
+
"knee",
|
| 3384 |
+
"knife",
|
| 3385 |
+
"known",
|
| 3386 |
+
"ks",
|
| 3387 |
+
"kup",
|
| 3388 |
+
"ky",
|
| 3389 |
+
"ky.",
|
| 3390 |
+
"l",
|
| 3391 |
+
"l.",
|
| 3392 |
+
"l1",
|
| 3393 |
+
"l19",
|
| 3394 |
+
"l858r",
|
| 3395 |
+
"l861q",
|
| 3396 |
+
"la",
|
| 3397 |
+
"la.",
|
| 3398 |
+
"laboratory",
|
| 3399 |
+
"lack",
|
| 3400 |
+
"lactating",
|
| 3401 |
+
"lan",
|
| 3402 |
+
"laparoscopy",
|
| 3403 |
+
"lar",
|
| 3404 |
+
"large",
|
| 3405 |
+
"last",
|
| 3406 |
+
"late",
|
| 3407 |
+
"latent",
|
| 3408 |
+
"later",
|
| 3409 |
+
"latex",
|
| 3410 |
+
"lax",
|
| 3411 |
+
"lbp",
|
| 3412 |
+
"lead",
|
| 3413 |
+
"least",
|
| 3414 |
+
"led",
|
| 3415 |
+
"leep",
|
| 3416 |
+
"left",
|
| 3417 |
+
"leg",
|
| 3418 |
+
"len",
|
| 3419 |
+
"leptomeningeal",
|
| 3420 |
+
"les",
|
| 3421 |
+
"lesion",
|
| 3422 |
+
"lesion(s",
|
| 3423 |
+
"lesions",
|
| 3424 |
+
"less",
|
| 3425 |
+
"let",
|
| 3426 |
+
"let's",
|
| 3427 |
+
"lethal",
|
| 3428 |
+
"let\u2019s",
|
| 3429 |
+
"leukemia",
|
| 3430 |
+
"level",
|
| 3431 |
+
"levels",
|
| 3432 |
+
"levonorgestrel",
|
| 3433 |
+
"ley",
|
| 3434 |
+
"lhrh",
|
| 3435 |
+
"lia",
|
| 3436 |
+
"lic",
|
| 3437 |
+
"lid",
|
| 3438 |
+
"lidocaine",
|
| 3439 |
+
"lif",
|
| 3440 |
+
"life",
|
| 3441 |
+
"like",
|
| 3442 |
+
"likely",
|
| 3443 |
+
"limb",
|
| 3444 |
+
"limit",
|
| 3445 |
+
"limited",
|
| 3446 |
+
"limiting",
|
| 3447 |
+
"limits",
|
| 3448 |
+
"lin",
|
| 3449 |
+
"line",
|
| 3450 |
+
"linked",
|
| 3451 |
+
"lip",
|
| 3452 |
+
"lipase",
|
| 3453 |
+
"lipodystrophy",
|
| 3454 |
+
"liposarcoma",
|
| 3455 |
+
"lis",
|
| 3456 |
+
"lithium",
|
| 3457 |
+
"lithotripsy",
|
| 3458 |
+
"live",
|
| 3459 |
+
"liver",
|
| 3460 |
+
"lives",
|
| 3461 |
+
"lky",
|
| 3462 |
+
"ll",
|
| 3463 |
+
"ll.",
|
| 3464 |
+
"llo",
|
| 3465 |
+
"lls",
|
| 3466 |
+
"lly",
|
| 3467 |
+
"lmwh",
|
| 3468 |
+
"lo.",
|
| 3469 |
+
"load",
|
| 3470 |
+
"local",
|
| 3471 |
+
"localized",
|
| 3472 |
+
"locally",
|
| 3473 |
+
"located",
|
| 3474 |
+
"location",
|
| 3475 |
+
"logistical",
|
| 3476 |
+
"lon",
|
| 3477 |
+
"long",
|
| 3478 |
+
"longer",
|
| 3479 |
+
"longest",
|
| 3480 |
+
"loss",
|
| 3481 |
+
"lovin",
|
| 3482 |
+
"lovin'",
|
| 3483 |
+
"loving",
|
| 3484 |
+
"lovin\u2019",
|
| 3485 |
+
"low",
|
| 3486 |
+
"lower",
|
| 3487 |
+
"lso",
|
| 3488 |
+
"ltd",
|
| 3489 |
+
"ltd.",
|
| 3490 |
+
"lth",
|
| 3491 |
+
"lts",
|
| 3492 |
+
"lty",
|
| 3493 |
+
"lue",
|
| 3494 |
+
"lum",
|
| 3495 |
+
"lumbar",
|
| 3496 |
+
"lumpectomy",
|
| 3497 |
+
"lung",
|
| 3498 |
+
"lupus",
|
| 3499 |
+
"lus",
|
| 3500 |
+
"lutetium-177",
|
| 3501 |
+
"luvox",
|
| 3502 |
+
"lv",
|
| 3503 |
+
"lvef",
|
| 3504 |
+
"lymph",
|
| 3505 |
+
"lymphatic",
|
| 3506 |
+
"lymphoblastic",
|
| 3507 |
+
"lymphoma",
|
| 3508 |
+
"lymphopenia",
|
| 3509 |
+
"lymphoproliferative",
|
| 3510 |
+
"m",
|
| 3511 |
+
"m.",
|
| 3512 |
+
"m0",
|
| 3513 |
+
"m184v",
|
| 3514 |
+
"m2",
|
| 3515 |
+
"m3",
|
| 3516 |
+
"mHg",
|
| 3517 |
+
"mL",
|
| 3518 |
+
"mTOR",
|
| 3519 |
+
"m^2",
|
| 3520 |
+
"m^3",
|
| 3521 |
+
"ma'am",
|
| 3522 |
+
"mab",
|
| 3523 |
+
"machine",
|
| 3524 |
+
"madam",
|
| 3525 |
+
"magnamosis",
|
| 3526 |
+
"magnetic",
|
| 3527 |
+
"main",
|
| 3528 |
+
"maintenance",
|
| 3529 |
+
"major",
|
| 3530 |
+
"make",
|
| 3531 |
+
"mal",
|
| 3532 |
+
"malabsorption",
|
| 3533 |
+
"male",
|
| 3534 |
+
"males",
|
| 3535 |
+
"malignancies",
|
| 3536 |
+
"malignancy",
|
| 3537 |
+
"malignant",
|
| 3538 |
+
"mammalian",
|
| 3539 |
+
"mammogram",
|
| 3540 |
+
"man",
|
| 3541 |
+
"management",
|
| 3542 |
+
"manganese",
|
| 3543 |
+
"mantle",
|
| 3544 |
+
"manufacturer",
|
| 3545 |
+
"maoi",
|
| 3546 |
+
"mar",
|
| 3547 |
+
"mar.",
|
| 3548 |
+
"margins",
|
| 3549 |
+
"marked",
|
| 3550 |
+
"markedly",
|
| 3551 |
+
"marrow",
|
| 3552 |
+
"mas",
|
| 3553 |
+
"mass",
|
| 3554 |
+
"mass.",
|
| 3555 |
+
"mastectomy",
|
| 3556 |
+
"matched",
|
| 3557 |
+
"materials",
|
| 3558 |
+
"mature",
|
| 3559 |
+
"maximally",
|
| 3560 |
+
"may",
|
| 3561 |
+
"maybe",
|
| 3562 |
+
"mayo",
|
| 3563 |
+
"ma\u2019am",
|
| 3564 |
+
"mbc",
|
| 3565 |
+
"mcL",
|
| 3566 |
+
"mci",
|
| 3567 |
+
"mcl",
|
| 3568 |
+
"md",
|
| 3569 |
+
"md.",
|
| 3570 |
+
"mdi",
|
| 3571 |
+
"me/",
|
| 3572 |
+
"mean",
|
| 3573 |
+
"means",
|
| 3574 |
+
"measurable",
|
| 3575 |
+
"measured",
|
| 3576 |
+
"measures",
|
| 3577 |
+
"mechanical",
|
| 3578 |
+
"med",
|
| 3579 |
+
"mediastinum",
|
| 3580 |
+
"mediated",
|
| 3581 |
+
"medical",
|
| 3582 |
+
"medically",
|
| 3583 |
+
"medicated",
|
| 3584 |
+
"medication",
|
| 3585 |
+
"medications",
|
| 3586 |
+
"medicines",
|
| 3587 |
+
"meet",
|
| 3588 |
+
"meets",
|
| 3589 |
+
"mek",
|
| 3590 |
+
"melanoma",
|
| 3591 |
+
"melanomas",
|
| 3592 |
+
"mellitus",
|
| 3593 |
+
"melphalan",
|
| 3594 |
+
"member",
|
| 3595 |
+
"men",
|
| 3596 |
+
"meningeal",
|
| 3597 |
+
"meningitis",
|
| 3598 |
+
"menopausal",
|
| 3599 |
+
"menopause",
|
| 3600 |
+
"menses",
|
| 3601 |
+
"menstruation",
|
| 3602 |
+
"mental",
|
| 3603 |
+
"mercaptopurine",
|
| 3604 |
+
"mes",
|
| 3605 |
+
"mesenteric",
|
| 3606 |
+
"messrs",
|
| 3607 |
+
"messrs.",
|
| 3608 |
+
"metabolism",
|
| 3609 |
+
"metastases",
|
| 3610 |
+
"metastasis",
|
| 3611 |
+
"metastatic",
|
| 3612 |
+
"metatarsal",
|
| 3613 |
+
"methadone",
|
| 3614 |
+
"method",
|
| 3615 |
+
"methods",
|
| 3616 |
+
"methoxsalen",
|
| 3617 |
+
"methylphenidate",
|
| 3618 |
+
"mfi",
|
| 3619 |
+
"mg",
|
| 3620 |
+
"mg)/deciliter",
|
| 3621 |
+
"mgh",
|
| 3622 |
+
"mi",
|
| 3623 |
+
"mia",
|
| 3624 |
+
"mib",
|
| 3625 |
+
"mibg",
|
| 3626 |
+
"mic",
|
| 3627 |
+
"mich",
|
| 3628 |
+
"mich.",
|
| 3629 |
+
"microliter",
|
| 3630 |
+
"middle",
|
| 3631 |
+
"might",
|
| 3632 |
+
"mil",
|
| 3633 |
+
"milk",
|
| 3634 |
+
"milligrams",
|
| 3635 |
+
"milliliters",
|
| 3636 |
+
"milliseconds",
|
| 3637 |
+
"min",
|
| 3638 |
+
"min/1.73",
|
| 3639 |
+
"min/1.73m2",
|
| 3640 |
+
"mini",
|
| 3641 |
+
"minimal",
|
| 3642 |
+
"minimum",
|
| 3643 |
+
"minn",
|
| 3644 |
+
"minn.",
|
| 3645 |
+
"minor",
|
| 3646 |
+
"minutes",
|
| 3647 |
+
"mismatched",
|
| 3648 |
+
"miss",
|
| 3649 |
+
"miss.",
|
| 3650 |
+
"mit",
|
| 3651 |
+
"ml",
|
| 3652 |
+
"mm",
|
| 3653 |
+
"mm3",
|
| 3654 |
+
"mmHg",
|
| 3655 |
+
"mm^3",
|
| 3656 |
+
"mma",
|
| 3657 |
+
"mmhg",
|
| 3658 |
+
"mmse",
|
| 3659 |
+
"mo",
|
| 3660 |
+
"mo.",
|
| 3661 |
+
"moderate",
|
| 3662 |
+
"modification",
|
| 3663 |
+
"modified",
|
| 3664 |
+
"mol",
|
| 3665 |
+
"molecular",
|
| 3666 |
+
"monitored",
|
| 3667 |
+
"monitoring",
|
| 3668 |
+
"monoamine",
|
| 3669 |
+
"monoxide",
|
| 3670 |
+
"mont",
|
| 3671 |
+
"mont.",
|
| 3672 |
+
"month",
|
| 3673 |
+
"months",
|
| 3674 |
+
"mood",
|
| 3675 |
+
"mor",
|
| 3676 |
+
"more",
|
| 3677 |
+
"morning",
|
| 3678 |
+
"morphology",
|
| 3679 |
+
"motivation",
|
| 3680 |
+
"motor",
|
| 3681 |
+
"mph",
|
| 3682 |
+
"mpnsts",
|
| 3683 |
+
"mps",
|
| 3684 |
+
"mr",
|
| 3685 |
+
"mr.",
|
| 3686 |
+
"mri",
|
| 3687 |
+
"mrs",
|
| 3688 |
+
"mrs.",
|
| 3689 |
+
"mrsa",
|
| 3690 |
+
"ms",
|
| 3691 |
+
"ms.",
|
| 3692 |
+
"mskcc",
|
| 3693 |
+
"mt",
|
| 3694 |
+
"mt.",
|
| 3695 |
+
"mtd",
|
| 3696 |
+
"mtor",
|
| 3697 |
+
"muga",
|
| 3698 |
+
"multiple",
|
| 3699 |
+
"mum",
|
| 3700 |
+
"mum-1",
|
| 3701 |
+
"mus",
|
| 3702 |
+
"muscle",
|
| 3703 |
+
"must",
|
| 3704 |
+
"mutation",
|
| 3705 |
+
"mutation(s",
|
| 3706 |
+
"mutations",
|
| 3707 |
+
"mycn",
|
| 3708 |
+
"myeloablative",
|
| 3709 |
+
"myeloblastic",
|
| 3710 |
+
"myelogenous",
|
| 3711 |
+
"myeloma",
|
| 3712 |
+
"myelosuppressive",
|
| 3713 |
+
"myocardial",
|
| 3714 |
+
"myringotomy",
|
| 3715 |
+
"n",
|
| 3716 |
+
"n's",
|
| 3717 |
+
"n't",
|
| 3718 |
+
"n(s",
|
| 3719 |
+
"n.",
|
| 3720 |
+
"n.c.",
|
| 3721 |
+
"n.d.",
|
| 3722 |
+
"n.h.",
|
| 3723 |
+
"n.j.",
|
| 3724 |
+
"n.m.",
|
| 3725 |
+
"n.y.",
|
| 3726 |
+
"n0",
|
| 3727 |
+
"na",
|
| 3728 |
+
"nadir",
|
| 3729 |
+
"naepp",
|
| 3730 |
+
"naive",
|
| 3731 |
+
"nal",
|
| 3732 |
+
"narcolepsy",
|
| 3733 |
+
"narrow",
|
| 3734 |
+
"narrowing",
|
| 3735 |
+
"nat",
|
| 3736 |
+
"nausea",
|
| 3737 |
+
"navitoclax",
|
| 3738 |
+
"na\u00efve",
|
| 3739 |
+
"nb",
|
| 3740 |
+
"nc.",
|
| 3741 |
+
"nce",
|
| 3742 |
+
"nci",
|
| 3743 |
+
"ncy",
|
| 3744 |
+
"nd.",
|
| 3745 |
+
"nds",
|
| 3746 |
+
"nea",
|
| 3747 |
+
"near",
|
| 3748 |
+
"neb",
|
| 3749 |
+
"neb.",
|
| 3750 |
+
"nebr",
|
| 3751 |
+
"nebr.",
|
| 3752 |
+
"nec",
|
| 3753 |
+
"necessary",
|
| 3754 |
+
"neck",
|
| 3755 |
+
"ned",
|
| 3756 |
+
"nee",
|
| 3757 |
+
"need",
|
| 3758 |
+
"needing",
|
| 3759 |
+
"negative",
|
| 3760 |
+
"nel",
|
| 3761 |
+
"nelfinavir",
|
| 3762 |
+
"neo",
|
| 3763 |
+
"neoadjuvant",
|
| 3764 |
+
"neoplasms",
|
| 3765 |
+
"ner",
|
| 3766 |
+
"neratinib",
|
| 3767 |
+
"nerve",
|
| 3768 |
+
"nervous",
|
| 3769 |
+
"nes",
|
| 3770 |
+
"neural",
|
| 3771 |
+
"neuro",
|
| 3772 |
+
"neurodegenerative",
|
| 3773 |
+
"neuroendocrine",
|
| 3774 |
+
"neurofibromatosis",
|
| 3775 |
+
"neurogenic",
|
| 3776 |
+
"neuroleptics",
|
| 3777 |
+
"neurological",
|
| 3778 |
+
"neuropathy",
|
| 3779 |
+
"neuropsychiatric",
|
| 3780 |
+
"neuroradiologist",
|
| 3781 |
+
"neurosarcoidosis",
|
| 3782 |
+
"neutropenia",
|
| 3783 |
+
"neutrophil",
|
| 3784 |
+
"nev",
|
| 3785 |
+
"nev.",
|
| 3786 |
+
"never",
|
| 3787 |
+
"nevirapine",
|
| 3788 |
+
"new",
|
| 3789 |
+
"newly",
|
| 3790 |
+
"ney",
|
| 3791 |
+
"nge",
|
| 3792 |
+
"ngs",
|
| 3793 |
+
"nia",
|
| 3794 |
+
"nib",
|
| 3795 |
+
"nic",
|
| 3796 |
+
"nil",
|
| 3797 |
+
"nit",
|
| 3798 |
+
"nitinol",
|
| 3799 |
+
"nitrates",
|
| 3800 |
+
"nivolumab",
|
| 3801 |
+
"nka",
|
| 3802 |
+
"nly",
|
| 3803 |
+
"nmp",
|
| 3804 |
+
"nn.",
|
| 3805 |
+
"no",
|
| 3806 |
+
"no-",
|
| 3807 |
+
"nocturnal",
|
| 3808 |
+
"nodal",
|
| 3809 |
+
"node",
|
| 3810 |
+
"nodes",
|
| 3811 |
+
"nol",
|
| 3812 |
+
"non",
|
| 3813 |
+
"nonenhancing",
|
| 3814 |
+
"nor",
|
| 3815 |
+
"normal",
|
| 3816 |
+
"normalized",
|
| 3817 |
+
"normothermic",
|
| 3818 |
+
"nos",
|
| 3819 |
+
"not",
|
| 3820 |
+
"note",
|
| 3821 |
+
"noted",
|
| 3822 |
+
"nothin",
|
| 3823 |
+
"nothin'",
|
| 3824 |
+
"nothing",
|
| 3825 |
+
"nothin\u2019",
|
| 3826 |
+
"nov",
|
| 3827 |
+
"nov.",
|
| 3828 |
+
"now",
|
| 3829 |
+
"ns.",
|
| 3830 |
+
"nsaids",
|
| 3831 |
+
"nsclc",
|
| 3832 |
+
"nse",
|
| 3833 |
+
"nst",
|
| 3834 |
+
"nt",
|
| 3835 |
+
"nt.",
|
| 3836 |
+
"nth",
|
| 3837 |
+
"nti",
|
| 3838 |
+
"nto",
|
| 3839 |
+
"nts",
|
| 3840 |
+
"nucleic",
|
| 3841 |
+
"nue",
|
| 3842 |
+
"nuff",
|
| 3843 |
+
"nuthin",
|
| 3844 |
+
"nuthin'",
|
| 3845 |
+
"nuthin\u2019",
|
| 3846 |
+
"nyha",
|
| 3847 |
+
"n\u2019s",
|
| 3848 |
+
"n\u2019t",
|
| 3849 |
+
"o",
|
| 3850 |
+
"o'clock",
|
| 3851 |
+
"o's",
|
| 3852 |
+
"o.",
|
| 3853 |
+
"o.0",
|
| 3854 |
+
"o.O",
|
| 3855 |
+
"o.o",
|
| 3856 |
+
"o_0",
|
| 3857 |
+
"o_O",
|
| 3858 |
+
"o_o",
|
| 3859 |
+
"oad",
|
| 3860 |
+
"observation",
|
| 3861 |
+
"obsessive",
|
| 3862 |
+
"obstruction",
|
| 3863 |
+
"obstructive",
|
| 3864 |
+
"obtained",
|
| 3865 |
+
"occlusive",
|
| 3866 |
+
"occur",
|
| 3867 |
+
"occurring",
|
| 3868 |
+
"ock",
|
| 3869 |
+
"oct",
|
| 3870 |
+
"oct.",
|
| 3871 |
+
"ocular",
|
| 3872 |
+
"ode",
|
| 3873 |
+
"ods",
|
| 3874 |
+
"ody",
|
| 3875 |
+
"oes",
|
| 3876 |
+
"of",
|
| 3877 |
+
"of.",
|
| 3878 |
+
"off",
|
| 3879 |
+
"oft",
|
| 3880 |
+
"ogy",
|
| 3881 |
+
"oic",
|
| 3882 |
+
"oid",
|
| 3883 |
+
"oin",
|
| 3884 |
+
"oke",
|
| 3885 |
+
"okla",
|
| 3886 |
+
"okla.",
|
| 3887 |
+
"ol",
|
| 3888 |
+
"ol'",
|
| 3889 |
+
"old",
|
| 3890 |
+
"ole",
|
| 3891 |
+
"oll",
|
| 3892 |
+
"olo",
|
| 3893 |
+
"ol\u2019",
|
| 3894 |
+
"oma",
|
| 3895 |
+
"ome",
|
| 3896 |
+
"oms",
|
| 3897 |
+
"omy",
|
| 3898 |
+
"on",
|
| 3899 |
+
"once",
|
| 3900 |
+
"oncology",
|
| 3901 |
+
"ond",
|
| 3902 |
+
"ondansetron",
|
| 3903 |
+
"one",
|
| 3904 |
+
"ong",
|
| 3905 |
+
"ongoing",
|
| 3906 |
+
"only",
|
| 3907 |
+
"onn",
|
| 3908 |
+
"ons",
|
| 3909 |
+
"onset",
|
| 3910 |
+
"ont",
|
| 3911 |
+
"ood",
|
| 3912 |
+
"ool",
|
| 3913 |
+
"oom",
|
| 3914 |
+
"oophorectomy",
|
| 3915 |
+
"oos",
|
| 3916 |
+
"oot",
|
| 3917 |
+
"open",
|
| 3918 |
+
"operable",
|
| 3919 |
+
"operating",
|
| 3920 |
+
"operation",
|
| 3921 |
+
"opinion",
|
| 3922 |
+
"opportunistic",
|
| 3923 |
+
"opt",
|
| 3924 |
+
"options",
|
| 3925 |
+
"opy",
|
| 3926 |
+
"or",
|
| 3927 |
+
"oral",
|
| 3928 |
+
"ord",
|
| 3929 |
+
"ore",
|
| 3930 |
+
"ore.",
|
| 3931 |
+
"orenitram",
|
| 3932 |
+
"organ",
|
| 3933 |
+
"originating",
|
| 3934 |
+
"ork",
|
| 3935 |
+
"orm",
|
| 3936 |
+
"orn",
|
| 3937 |
+
"orp",
|
| 3938 |
+
"ors",
|
| 3939 |
+
"ort",
|
| 3940 |
+
"orthopedic",
|
| 3941 |
+
"ory",
|
| 3942 |
+
"os.",
|
| 3943 |
+
"ose",
|
| 3944 |
+
"osimertinib",
|
| 3945 |
+
"oss",
|
| 3946 |
+
"ost",
|
| 3947 |
+
"osteoarthritis",
|
| 3948 |
+
"osteogenic",
|
| 3949 |
+
"osteomyelitis",
|
| 3950 |
+
"ote",
|
| 3951 |
+
"oth",
|
| 3952 |
+
"other",
|
| 3953 |
+
"otherwise",
|
| 3954 |
+
"ought",
|
| 3955 |
+
"oup",
|
| 3956 |
+
"our",
|
| 3957 |
+
"ous",
|
| 3958 |
+
"out",
|
| 3959 |
+
"outcome",
|
| 3960 |
+
"outpatient",
|
| 3961 |
+
"outside",
|
| 3962 |
+
"ov.",
|
| 3963 |
+
"ovarian",
|
| 3964 |
+
"ovaries",
|
| 3965 |
+
"ovary",
|
| 3966 |
+
"ove",
|
| 3967 |
+
"over",
|
| 3968 |
+
"overload",
|
| 3969 |
+
"overt",
|
| 3970 |
+
"own",
|
| 3971 |
+
"oxcarbazepine",
|
| 3972 |
+
"oxidase",
|
| 3973 |
+
"oxygen",
|
| 3974 |
+
"o\u2019clock",
|
| 3975 |
+
"o\u2019s",
|
| 3976 |
+
"p",
|
| 3977 |
+
"p.",
|
| 3978 |
+
"p.m",
|
| 3979 |
+
"p.m.",
|
| 3980 |
+
"p16",
|
| 3981 |
+
"p450",
|
| 3982 |
+
"pEF",
|
| 3983 |
+
"pa",
|
| 3984 |
+
"pa.",
|
| 3985 |
+
"paclitaxel",
|
| 3986 |
+
"pain",
|
| 3987 |
+
"pal",
|
| 3988 |
+
"palliative",
|
| 3989 |
+
"pancreas",
|
| 3990 |
+
"pancreatic",
|
| 3991 |
+
"pancreatitis",
|
| 3992 |
+
"panel",
|
| 3993 |
+
"panic",
|
| 3994 |
+
"papilloma",
|
| 3995 |
+
"paralysis",
|
| 3996 |
+
"paralytic",
|
| 3997 |
+
"parametrial",
|
| 3998 |
+
"parenchymal",
|
| 3999 |
+
"parent",
|
| 4000 |
+
"parenteral",
|
| 4001 |
+
"paricalcitol",
|
| 4002 |
+
"parkinson",
|
| 4003 |
+
"paroxysmal",
|
| 4004 |
+
"part",
|
| 4005 |
+
"partial",
|
| 4006 |
+
"participant",
|
| 4007 |
+
"participants",
|
| 4008 |
+
"participate",
|
| 4009 |
+
"participated",
|
| 4010 |
+
"participating",
|
| 4011 |
+
"participation",
|
| 4012 |
+
"partner",
|
| 4013 |
+
"parts",
|
| 4014 |
+
"past",
|
| 4015 |
+
"pathologic",
|
| 4016 |
+
"pathological",
|
| 4017 |
+
"pathologically",
|
| 4018 |
+
"pathologist",
|
| 4019 |
+
"pathology",
|
| 4020 |
+
"pathway",
|
| 4021 |
+
"patient",
|
| 4022 |
+
"patients",
|
| 4023 |
+
"pbc",
|
| 4024 |
+
"pcr",
|
| 4025 |
+
"pdac",
|
| 4026 |
+
"pde5",
|
| 4027 |
+
"pe",
|
| 4028 |
+
"pectoris",
|
| 4029 |
+
"pedal",
|
| 4030 |
+
"pediatric",
|
| 4031 |
+
"pelvic",
|
| 4032 |
+
"pelvis",
|
| 4033 |
+
"pen",
|
| 4034 |
+
"penetrating",
|
| 4035 |
+
"pentamidine",
|
| 4036 |
+
"peptic",
|
| 4037 |
+
"per",
|
| 4038 |
+
"percutaneous",
|
| 4039 |
+
"perforation",
|
| 4040 |
+
"perform",
|
| 4041 |
+
"performance",
|
| 4042 |
+
"performed",
|
| 4043 |
+
"performing",
|
| 4044 |
+
"perfusion",
|
| 4045 |
+
"pericardial",
|
| 4046 |
+
"period",
|
| 4047 |
+
"periodontal",
|
| 4048 |
+
"peripancreatic",
|
| 4049 |
+
"peripheral",
|
| 4050 |
+
"peritoneal",
|
| 4051 |
+
"peritoneum",
|
| 4052 |
+
"permissible",
|
| 4053 |
+
"permitted",
|
| 4054 |
+
"perpetrate",
|
| 4055 |
+
"persistent",
|
| 4056 |
+
"persisting",
|
| 4057 |
+
"person",
|
| 4058 |
+
"personal",
|
| 4059 |
+
"persons",
|
| 4060 |
+
"pes",
|
| 4061 |
+
"pet",
|
| 4062 |
+
"petersen",
|
| 4063 |
+
"pethema",
|
| 4064 |
+
"pfts",
|
| 4065 |
+
"ph",
|
| 4066 |
+
"ph.d.",
|
| 4067 |
+
"pha",
|
| 4068 |
+
"pharmacokinetic",
|
| 4069 |
+
"phase",
|
| 4070 |
+
"phenobarbital",
|
| 4071 |
+
"phenylephrine",
|
| 4072 |
+
"phenytoin",
|
| 4073 |
+
"phosphodiesterase-5",
|
| 4074 |
+
"phosphoinositide",
|
| 4075 |
+
"photosensitivity",
|
| 4076 |
+
"phy",
|
| 4077 |
+
"physical",
|
| 4078 |
+
"physician",
|
| 4079 |
+
"physicians",
|
| 4080 |
+
"physiologic",
|
| 4081 |
+
"pi",
|
| 4082 |
+
"pi3k",
|
| 4083 |
+
"pia",
|
| 4084 |
+
"pic",
|
| 4085 |
+
"pigmentosum",
|
| 4086 |
+
"pill",
|
| 4087 |
+
"pimz",
|
| 4088 |
+
"pin",
|
| 4089 |
+
"placement",
|
| 4090 |
+
"placental",
|
| 4091 |
+
"planned",
|
| 4092 |
+
"planning",
|
| 4093 |
+
"platelets",
|
| 4094 |
+
"platinum",
|
| 4095 |
+
"ple",
|
| 4096 |
+
"pleura",
|
| 4097 |
+
"plural",
|
| 4098 |
+
"plus",
|
| 4099 |
+
"ply",
|
| 4100 |
+
"pm",
|
| 4101 |
+
"pn",
|
| 4102 |
+
"pnet",
|
| 4103 |
+
"pneumonia",
|
| 4104 |
+
"pointes",
|
| 4105 |
+
"polyendocrinopathy",
|
| 4106 |
+
"polyester",
|
| 4107 |
+
"polymerase",
|
| 4108 |
+
"polypectomy",
|
| 4109 |
+
"polypeptide",
|
| 4110 |
+
"polypropylene",
|
| 4111 |
+
"polysomnography",
|
| 4112 |
+
"pomalidomide",
|
| 4113 |
+
"pon",
|
| 4114 |
+
"poorly",
|
| 4115 |
+
"popi",
|
| 4116 |
+
"popliteal",
|
| 4117 |
+
"porphyria",
|
| 4118 |
+
"portal",
|
| 4119 |
+
"portion",
|
| 4120 |
+
"portopulmonary",
|
| 4121 |
+
"positive",
|
| 4122 |
+
"positivity",
|
| 4123 |
+
"positron",
|
| 4124 |
+
"possible",
|
| 4125 |
+
"possibly",
|
| 4126 |
+
"post",
|
| 4127 |
+
"postmenopausal",
|
| 4128 |
+
"postoperative",
|
| 4129 |
+
"pot",
|
| 4130 |
+
"potent",
|
| 4131 |
+
"potential",
|
| 4132 |
+
"potentially",
|
| 4133 |
+
"pr",
|
| 4134 |
+
"pr.",
|
| 4135 |
+
"pra",
|
| 4136 |
+
"practice",
|
| 4137 |
+
"pre",
|
| 4138 |
+
"pre-",
|
| 4139 |
+
"preceding",
|
| 4140 |
+
"preclude",
|
| 4141 |
+
"precludes",
|
| 4142 |
+
"precluding",
|
| 4143 |
+
"predicted",
|
| 4144 |
+
"predisposing",
|
| 4145 |
+
"predisposition",
|
| 4146 |
+
"prednisone",
|
| 4147 |
+
"preeclampsia",
|
| 4148 |
+
"pregnancy",
|
| 4149 |
+
"pregnant",
|
| 4150 |
+
"preliminary",
|
| 4151 |
+
"preparations",
|
| 4152 |
+
"presence",
|
| 4153 |
+
"present",
|
| 4154 |
+
"preservation",
|
| 4155 |
+
"preserved",
|
| 4156 |
+
"presumed",
|
| 4157 |
+
"pretreatment",
|
| 4158 |
+
"prevent",
|
| 4159 |
+
"prevents",
|
| 4160 |
+
"previous",
|
| 4161 |
+
"previously",
|
| 4162 |
+
"primary",
|
| 4163 |
+
"primative",
|
| 4164 |
+
"primidone",
|
| 4165 |
+
"principal",
|
| 4166 |
+
"principle",
|
| 4167 |
+
"prior",
|
| 4168 |
+
"proBNP",
|
| 4169 |
+
"probenecid",
|
| 4170 |
+
"problems",
|
| 4171 |
+
"probnp",
|
| 4172 |
+
"procedure",
|
| 4173 |
+
"procedures",
|
| 4174 |
+
"proctectomy",
|
| 4175 |
+
"product",
|
| 4176 |
+
"products",
|
| 4177 |
+
"prof",
|
| 4178 |
+
"prof.",
|
| 4179 |
+
"progesterone",
|
| 4180 |
+
"progression",
|
| 4181 |
+
"progressive",
|
| 4182 |
+
"prohibit",
|
| 4183 |
+
"prohibited",
|
| 4184 |
+
"prolong",
|
| 4185 |
+
"prolongation",
|
| 4186 |
+
"properties",
|
| 4187 |
+
"prophylactic",
|
| 4188 |
+
"prophylaxis",
|
| 4189 |
+
"proposed",
|
| 4190 |
+
"prostacyclin",
|
| 4191 |
+
"prostanoids",
|
| 4192 |
+
"prostate",
|
| 4193 |
+
"prostatectomy",
|
| 4194 |
+
"prostatic",
|
| 4195 |
+
"protein",
|
| 4196 |
+
"prothrombin",
|
| 4197 |
+
"protocol",
|
| 4198 |
+
"proton",
|
| 4199 |
+
"protons",
|
| 4200 |
+
"protoporphyria",
|
| 4201 |
+
"protruding",
|
| 4202 |
+
"proven",
|
| 4203 |
+
"provide",
|
| 4204 |
+
"provided",
|
| 4205 |
+
"provider",
|
| 4206 |
+
"proximal",
|
| 4207 |
+
"psa",
|
| 4208 |
+
"psc",
|
| 4209 |
+
"pse",
|
| 4210 |
+
"pseudoephedrine",
|
| 4211 |
+
"psoriasis",
|
| 4212 |
+
"psy",
|
| 4213 |
+
"psychiatric",
|
| 4214 |
+
"psychological",
|
| 4215 |
+
"psychomotor",
|
| 4216 |
+
"psychosis",
|
| 4217 |
+
"psychotherapist",
|
| 4218 |
+
"psychotherapy",
|
| 4219 |
+
"psychotic",
|
| 4220 |
+
"psychotropic",
|
| 4221 |
+
"pt",
|
| 4222 |
+
"pt)/",
|
| 4223 |
+
"pt)/international",
|
| 4224 |
+
"pt.",
|
| 4225 |
+
"ptcl",
|
| 4226 |
+
"ptld",
|
| 4227 |
+
"ptt",
|
| 4228 |
+
"pulmonary",
|
| 4229 |
+
"punctate",
|
| 4230 |
+
"puncture",
|
| 4231 |
+
"purpose",
|
| 4232 |
+
"purposes",
|
| 4233 |
+
"pus",
|
| 4234 |
+
"pv",
|
| 4235 |
+
"pyloroduodenal",
|
| 4236 |
+
"q",
|
| 4237 |
+
"q.",
|
| 4238 |
+
"qt",
|
| 4239 |
+
"qtc",
|
| 4240 |
+
"qtcb",
|
| 4241 |
+
"qualify",
|
| 4242 |
+
"qualifying",
|
| 4243 |
+
"r",
|
| 4244 |
+
"r(s",
|
| 4245 |
+
"r.",
|
| 4246 |
+
"r2-",
|
| 4247 |
+
"radiation",
|
| 4248 |
+
"radical",
|
| 4249 |
+
"radiofrequency",
|
| 4250 |
+
"radiographic",
|
| 4251 |
+
"radiological",
|
| 4252 |
+
"radiologically",
|
| 4253 |
+
"radiotherapy",
|
| 4254 |
+
"raeb-2",
|
| 4255 |
+
"ral",
|
| 4256 |
+
"ram",
|
| 4257 |
+
"ran",
|
| 4258 |
+
"randomization",
|
| 4259 |
+
"range",
|
| 4260 |
+
"ranges",
|
| 4261 |
+
"rapamycin",
|
| 4262 |
+
"rate",
|
| 4263 |
+
"rating",
|
| 4264 |
+
"ratio",
|
| 4265 |
+
"ray",
|
| 4266 |
+
"rch",
|
| 4267 |
+
"rda",
|
| 4268 |
+
"rds",
|
| 4269 |
+
"re",
|
| 4270 |
+
"re-",
|
| 4271 |
+
"re.",
|
| 4272 |
+
"rea",
|
| 4273 |
+
"reach",
|
| 4274 |
+
"reaction",
|
| 4275 |
+
"reactions",
|
| 4276 |
+
"reason",
|
| 4277 |
+
"reasons",
|
| 4278 |
+
"receive",
|
| 4279 |
+
"received",
|
| 4280 |
+
"receiving",
|
| 4281 |
+
"recent",
|
| 4282 |
+
"receptor",
|
| 4283 |
+
"recipient",
|
| 4284 |
+
"recipients",
|
| 4285 |
+
"recommendation",
|
| 4286 |
+
"recommended",
|
| 4287 |
+
"record",
|
| 4288 |
+
"recorded",
|
| 4289 |
+
"records",
|
| 4290 |
+
"recovered",
|
| 4291 |
+
"recovery",
|
| 4292 |
+
"recruitment",
|
| 4293 |
+
"rectal",
|
| 4294 |
+
"rectum",
|
| 4295 |
+
"recurred",
|
| 4296 |
+
"recurrence",
|
| 4297 |
+
"recurrent",
|
| 4298 |
+
"red",
|
| 4299 |
+
"reductase",
|
| 4300 |
+
"ree",
|
| 4301 |
+
"referred",
|
| 4302 |
+
"referring",
|
| 4303 |
+
"refractory",
|
| 4304 |
+
"refrain",
|
| 4305 |
+
"refused",
|
| 4306 |
+
"refuses",
|
| 4307 |
+
"regardless",
|
| 4308 |
+
"regimen",
|
| 4309 |
+
"regimens",
|
| 4310 |
+
"region",
|
| 4311 |
+
"regional",
|
| 4312 |
+
"registration",
|
| 4313 |
+
"regular",
|
| 4314 |
+
"rejection",
|
| 4315 |
+
"rel",
|
| 4316 |
+
"relapse",
|
| 4317 |
+
"relapsed",
|
| 4318 |
+
"related",
|
| 4319 |
+
"relaxants",
|
| 4320 |
+
"remain",
|
| 4321 |
+
"remained",
|
| 4322 |
+
"remaining",
|
| 4323 |
+
"remission",
|
| 4324 |
+
"remnant",
|
| 4325 |
+
"remodulin",
|
| 4326 |
+
"removal",
|
| 4327 |
+
"ren",
|
| 4328 |
+
"renal",
|
| 4329 |
+
"render",
|
| 4330 |
+
"rep",
|
| 4331 |
+
"rep.",
|
| 4332 |
+
"repair",
|
| 4333 |
+
"repeat",
|
| 4334 |
+
"repeated",
|
| 4335 |
+
"replacement",
|
| 4336 |
+
"report",
|
| 4337 |
+
"reported",
|
| 4338 |
+
"reports",
|
| 4339 |
+
"reproductive",
|
| 4340 |
+
"require",
|
| 4341 |
+
"required",
|
| 4342 |
+
"requirement",
|
| 4343 |
+
"requirements",
|
| 4344 |
+
"requires",
|
| 4345 |
+
"requiring",
|
| 4346 |
+
"rer",
|
| 4347 |
+
"res",
|
| 4348 |
+
"research",
|
| 4349 |
+
"resected",
|
| 4350 |
+
"resection",
|
| 4351 |
+
"reserved",
|
| 4352 |
+
"residual",
|
| 4353 |
+
"resistance",
|
| 4354 |
+
"resistant",
|
| 4355 |
+
"resolved",
|
| 4356 |
+
"resonance",
|
| 4357 |
+
"respiratory",
|
| 4358 |
+
"respond",
|
| 4359 |
+
"responders",
|
| 4360 |
+
"response",
|
| 4361 |
+
"responsiveness",
|
| 4362 |
+
"rest",
|
| 4363 |
+
"result",
|
| 4364 |
+
"resulting",
|
| 4365 |
+
"results",
|
| 4366 |
+
"retain",
|
| 4367 |
+
"retardation",
|
| 4368 |
+
"retention",
|
| 4369 |
+
"retinopathy",
|
| 4370 |
+
"rev",
|
| 4371 |
+
"rev.",
|
| 4372 |
+
"reverse",
|
| 4373 |
+
"reversible",
|
| 4374 |
+
"review",
|
| 4375 |
+
"reviewed",
|
| 4376 |
+
"rfa",
|
| 4377 |
+
"rge",
|
| 4378 |
+
"rgo",
|
| 4379 |
+
"rgy",
|
| 4380 |
+
"rhabdoid",
|
| 4381 |
+
"rhabdomyosarcoma",
|
| 4382 |
+
"rhc",
|
| 4383 |
+
"rheumatoid",
|
| 4384 |
+
"rhinitis",
|
| 4385 |
+
"rhythm",
|
| 4386 |
+
"ria",
|
| 4387 |
+
"rib",
|
| 4388 |
+
"ric",
|
| 4389 |
+
"rifampicin",
|
| 4390 |
+
"right",
|
| 4391 |
+
"ril",
|
| 4392 |
+
"riley",
|
| 4393 |
+
"rim",
|
| 4394 |
+
"rin",
|
| 4395 |
+
"rings",
|
| 4396 |
+
"rio",
|
| 4397 |
+
"rip",
|
| 4398 |
+
"ris",
|
| 4399 |
+
"risk",
|
| 4400 |
+
"risks",
|
| 4401 |
+
"ritonavir",
|
| 4402 |
+
"rituximab",
|
| 4403 |
+
"riz",
|
| 4404 |
+
"rk.",
|
| 4405 |
+
"rly",
|
| 4406 |
+
"rma",
|
| 4407 |
+
"rms",
|
| 4408 |
+
"rmy",
|
| 4409 |
+
"rna",
|
| 4410 |
+
"rns",
|
| 4411 |
+
"robotic",
|
| 4412 |
+
"rof",
|
| 4413 |
+
"rol",
|
| 4414 |
+
"rom",
|
| 4415 |
+
"ron",
|
| 4416 |
+
"room",
|
| 4417 |
+
"ropivacaine",
|
| 4418 |
+
"ros",
|
| 4419 |
+
"routine",
|
| 4420 |
+
"row",
|
| 4421 |
+
"rp",
|
| 4422 |
+
"rp.",
|
| 4423 |
+
"rp2d",
|
| 4424 |
+
"rpr",
|
| 4425 |
+
"rry",
|
| 4426 |
+
"rs.",
|
| 4427 |
+
"rse",
|
| 4428 |
+
"rst",
|
| 4429 |
+
"rth",
|
| 4430 |
+
"rts",
|
| 4431 |
+
"rug",
|
| 4432 |
+
"rule",
|
| 4433 |
+
"ruled",
|
| 4434 |
+
"rum",
|
| 4435 |
+
"rus",
|
| 4436 |
+
"rutherford",
|
| 4437 |
+
"rv",
|
| 4438 |
+
"rve",
|
| 4439 |
+
"ryo",
|
| 4440 |
+
"s",
|
| 4441 |
+
"s's",
|
| 4442 |
+
"s.",
|
| 4443 |
+
"s.c",
|
| 4444 |
+
"s.c.",
|
| 4445 |
+
"sac",
|
| 4446 |
+
"sacral",
|
| 4447 |
+
"sacrum",
|
| 4448 |
+
"safe",
|
| 4449 |
+
"safely",
|
| 4450 |
+
"safety",
|
| 4451 |
+
"sal",
|
| 4452 |
+
"salvage",
|
| 4453 |
+
"sam",
|
| 4454 |
+
"same",
|
| 4455 |
+
"samples",
|
| 4456 |
+
"sampling",
|
| 4457 |
+
"saquinavir",
|
| 4458 |
+
"sarcoidosis",
|
| 4459 |
+
"sarcoma",
|
| 4460 |
+
"sc",
|
| 4461 |
+
"scale",
|
| 4462 |
+
"scan",
|
| 4463 |
+
"schedule",
|
| 4464 |
+
"scheduled",
|
| 4465 |
+
"schizo",
|
| 4466 |
+
"schizoaffective",
|
| 4467 |
+
"schizophrenia",
|
| 4468 |
+
"school",
|
| 4469 |
+
"scid",
|
| 4470 |
+
"sclc",
|
| 4471 |
+
"scoliosis",
|
| 4472 |
+
"score",
|
| 4473 |
+
"screening",
|
| 4474 |
+
"se-",
|
| 4475 |
+
"sea",
|
| 4476 |
+
"second",
|
| 4477 |
+
"secondary",
|
| 4478 |
+
"section",
|
| 4479 |
+
"sectional",
|
| 4480 |
+
"sed",
|
| 4481 |
+
"sedation",
|
| 4482 |
+
"sedative",
|
| 4483 |
+
"sedatives",
|
| 4484 |
+
"see",
|
| 4485 |
+
"seek",
|
| 4486 |
+
"segmental",
|
| 4487 |
+
"segments",
|
| 4488 |
+
"seizure",
|
| 4489 |
+
"seizures",
|
| 4490 |
+
"self",
|
| 4491 |
+
"selinexor",
|
| 4492 |
+
"selumetinib",
|
| 4493 |
+
"sen",
|
| 4494 |
+
"sen.",
|
| 4495 |
+
"sensitive",
|
| 4496 |
+
"sensitivity",
|
| 4497 |
+
"sep",
|
| 4498 |
+
"sep.",
|
| 4499 |
+
"separate",
|
| 4500 |
+
"sepsis",
|
| 4501 |
+
"sept",
|
| 4502 |
+
"sept.",
|
| 4503 |
+
"septic",
|
| 4504 |
+
"serious",
|
| 4505 |
+
"serologically",
|
| 4506 |
+
"seropositive",
|
| 4507 |
+
"seropositivity",
|
| 4508 |
+
"serous",
|
| 4509 |
+
"serum",
|
| 4510 |
+
"ses",
|
| 4511 |
+
"session",
|
| 4512 |
+
"sessions",
|
| 4513 |
+
"set",
|
| 4514 |
+
"setting",
|
| 4515 |
+
"severe",
|
| 4516 |
+
"severity",
|
| 4517 |
+
"sexual",
|
| 4518 |
+
"sexually",
|
| 4519 |
+
"sh.",
|
| 4520 |
+
"sha",
|
| 4521 |
+
"shall",
|
| 4522 |
+
"she",
|
| 4523 |
+
"she's",
|
| 4524 |
+
"sheath",
|
| 4525 |
+
"she\u2019s",
|
| 4526 |
+
"shockwave",
|
| 4527 |
+
"short",
|
| 4528 |
+
"should",
|
| 4529 |
+
"shoulders",
|
| 4530 |
+
"showing",
|
| 4531 |
+
"sia",
|
| 4532 |
+
"sibling",
|
| 4533 |
+
"sickle",
|
| 4534 |
+
"sign",
|
| 4535 |
+
"signaling",
|
| 4536 |
+
"signed",
|
| 4537 |
+
"significant",
|
| 4538 |
+
"significantly",
|
| 4539 |
+
"silver",
|
| 4540 |
+
"simcyp",
|
| 4541 |
+
"similar",
|
| 4542 |
+
"simulations",
|
| 4543 |
+
"sin",
|
| 4544 |
+
"since",
|
| 4545 |
+
"single",
|
| 4546 |
+
"sirolimus",
|
| 4547 |
+
"sirs",
|
| 4548 |
+
"sis",
|
| 4549 |
+
"sit",
|
| 4550 |
+
"site",
|
| 4551 |
+
"site(s",
|
| 4552 |
+
"sites",
|
| 4553 |
+
"situ",
|
| 4554 |
+
"situation",
|
| 4555 |
+
"situations",
|
| 4556 |
+
"six",
|
| 4557 |
+
"size",
|
| 4558 |
+
"skccc",
|
| 4559 |
+
"skin",
|
| 4560 |
+
"sks",
|
| 4561 |
+
"skull",
|
| 4562 |
+
"sleep",
|
| 4563 |
+
"sll",
|
| 4564 |
+
"sly",
|
| 4565 |
+
"small",
|
| 4566 |
+
"smm",
|
| 4567 |
+
"smoking",
|
| 4568 |
+
"sms",
|
| 4569 |
+
"smv",
|
| 4570 |
+
"social",
|
| 4571 |
+
"society",
|
| 4572 |
+
"soft",
|
| 4573 |
+
"sol",
|
| 4574 |
+
"solder",
|
| 4575 |
+
"solid",
|
| 4576 |
+
"some",
|
| 4577 |
+
"someone",
|
| 4578 |
+
"somethin",
|
| 4579 |
+
"somethin'",
|
| 4580 |
+
"something",
|
| 4581 |
+
"somethin\u2019",
|
| 4582 |
+
"son",
|
| 4583 |
+
"sorafenib",
|
| 4584 |
+
"soy",
|
| 4585 |
+
"space",
|
| 4586 |
+
"spanish",
|
| 4587 |
+
"spasm",
|
| 4588 |
+
"spasticity",
|
| 4589 |
+
"specific",
|
| 4590 |
+
"specified",
|
| 4591 |
+
"specimen",
|
| 4592 |
+
"specimens",
|
| 4593 |
+
"speculum",
|
| 4594 |
+
"speechvive",
|
| 4595 |
+
"sperm",
|
| 4596 |
+
"spina",
|
| 4597 |
+
"spinal",
|
| 4598 |
+
"spiral",
|
| 4599 |
+
"spirometry",
|
| 4600 |
+
"spread",
|
| 4601 |
+
"squamous",
|
| 4602 |
+
"sr",
|
| 4603 |
+
"srh",
|
| 4604 |
+
"srl",
|
| 4605 |
+
"srs",
|
| 4606 |
+
"ss",
|
| 4607 |
+
"ss.",
|
| 4608 |
+
"st",
|
| 4609 |
+
"st.",
|
| 4610 |
+
"stability",
|
| 4611 |
+
"stabilized",
|
| 4612 |
+
"stable",
|
| 4613 |
+
"stage",
|
| 4614 |
+
"stainless",
|
| 4615 |
+
"stains",
|
| 4616 |
+
"standard",
|
| 4617 |
+
"standing",
|
| 4618 |
+
"staples",
|
| 4619 |
+
"start",
|
| 4620 |
+
"starting",
|
| 4621 |
+
"status",
|
| 4622 |
+
"stavudine",
|
| 4623 |
+
"steel",
|
| 4624 |
+
"stem",
|
| 4625 |
+
"stenosing",
|
| 4626 |
+
"stenosis",
|
| 4627 |
+
"stent",
|
| 4628 |
+
"step",
|
| 4629 |
+
"sterile",
|
| 4630 |
+
"sterilization",
|
| 4631 |
+
"sternotomy",
|
| 4632 |
+
"sternum",
|
| 4633 |
+
"steroid",
|
| 4634 |
+
"steroidal",
|
| 4635 |
+
"steroids",
|
| 4636 |
+
"stimulant",
|
| 4637 |
+
"stimulators",
|
| 4638 |
+
"stomach",
|
| 4639 |
+
"strand",
|
| 4640 |
+
"strip",
|
| 4641 |
+
"stroke",
|
| 4642 |
+
"stromal",
|
| 4643 |
+
"sts",
|
| 4644 |
+
"studies",
|
| 4645 |
+
"study",
|
| 4646 |
+
"sty",
|
| 4647 |
+
"subarachnoid",
|
| 4648 |
+
"subcutaneous",
|
| 4649 |
+
"subdural",
|
| 4650 |
+
"subfamily",
|
| 4651 |
+
"subgroup",
|
| 4652 |
+
"subject",
|
| 4653 |
+
"subjects",
|
| 4654 |
+
"subsequent",
|
| 4655 |
+
"subspecialist",
|
| 4656 |
+
"substance",
|
| 4657 |
+
"substudy",
|
| 4658 |
+
"subtype",
|
| 4659 |
+
"success",
|
| 4660 |
+
"successful",
|
| 4661 |
+
"successfully",
|
| 4662 |
+
"successive",
|
| 4663 |
+
"such",
|
| 4664 |
+
"sue",
|
| 4665 |
+
"suffer",
|
| 4666 |
+
"sum",
|
| 4667 |
+
"superficial",
|
| 4668 |
+
"superior",
|
| 4669 |
+
"supplemental",
|
| 4670 |
+
"support",
|
| 4671 |
+
"suppressed",
|
| 4672 |
+
"suppression",
|
| 4673 |
+
"suppressive",
|
| 4674 |
+
"supra",
|
| 4675 |
+
"suprapubic",
|
| 4676 |
+
"surface",
|
| 4677 |
+
"surgery",
|
| 4678 |
+
"surgical",
|
| 4679 |
+
"surgically",
|
| 4680 |
+
"survivors",
|
| 4681 |
+
"sus",
|
| 4682 |
+
"suspect",
|
| 4683 |
+
"suspected",
|
| 4684 |
+
"suspicion",
|
| 4685 |
+
"sustained",
|
| 4686 |
+
"sutures",
|
| 4687 |
+
"swallow",
|
| 4688 |
+
"swallowing",
|
| 4689 |
+
"swl",
|
| 4690 |
+
"symptomatic",
|
| 4691 |
+
"symptoms",
|
| 4692 |
+
"syndrome",
|
| 4693 |
+
"syndrome/",
|
| 4694 |
+
"syndromes",
|
| 4695 |
+
"synonymous",
|
| 4696 |
+
"syphilis",
|
| 4697 |
+
"syrinx",
|
| 4698 |
+
"system",
|
| 4699 |
+
"systemic",
|
| 4700 |
+
"s\u2019s",
|
| 4701 |
+
"t",
|
| 4702 |
+
"t's",
|
| 4703 |
+
"t(11;14",
|
| 4704 |
+
"t.",
|
| 4705 |
+
"t.cruzi",
|
| 4706 |
+
"t1",
|
| 4707 |
+
"t2d",
|
| 4708 |
+
"ta",
|
| 4709 |
+
"tacrolimus",
|
| 4710 |
+
"take",
|
| 4711 |
+
"taken",
|
| 4712 |
+
"takes",
|
| 4713 |
+
"taking",
|
| 4714 |
+
"tal",
|
| 4715 |
+
"tan",
|
| 4716 |
+
"tandem",
|
| 4717 |
+
"taper",
|
| 4718 |
+
"tarda",
|
| 4719 |
+
"target",
|
| 4720 |
+
"targeted",
|
| 4721 |
+
"tasks",
|
| 4722 |
+
"tat",
|
| 4723 |
+
"tattoos",
|
| 4724 |
+
"taxol",
|
| 4725 |
+
"tb",
|
| 4726 |
+
"tbi",
|
| 4727 |
+
"td.",
|
| 4728 |
+
"team",
|
| 4729 |
+
"techniques",
|
| 4730 |
+
"ted",
|
| 4731 |
+
"tee",
|
| 4732 |
+
"teeth",
|
| 4733 |
+
"tem",
|
| 4734 |
+
"ten",
|
| 4735 |
+
"tenn",
|
| 4736 |
+
"tenn.",
|
| 4737 |
+
"tenofovir",
|
| 4738 |
+
"tentorial",
|
| 4739 |
+
"tep",
|
| 4740 |
+
"ter",
|
| 4741 |
+
"teratogenic",
|
| 4742 |
+
"term",
|
| 4743 |
+
"terminal",
|
| 4744 |
+
"tes",
|
| 4745 |
+
"test",
|
| 4746 |
+
"tested",
|
| 4747 |
+
"testing",
|
| 4748 |
+
"tests",
|
| 4749 |
+
"tetracycline",
|
| 4750 |
+
"tex",
|
| 4751 |
+
"tfv",
|
| 4752 |
+
"thalassemia",
|
| 4753 |
+
"than",
|
| 4754 |
+
"that",
|
| 4755 |
+
"that's",
|
| 4756 |
+
"that\u2019s",
|
| 4757 |
+
"the",
|
| 4758 |
+
"their",
|
| 4759 |
+
"them",
|
| 4760 |
+
"then",
|
| 4761 |
+
"theophylline",
|
| 4762 |
+
"therapeutic",
|
| 4763 |
+
"therapeutics",
|
| 4764 |
+
"therapies",
|
| 4765 |
+
"therapy",
|
| 4766 |
+
"there",
|
| 4767 |
+
"there's",
|
| 4768 |
+
"there\u2019s",
|
| 4769 |
+
"these",
|
| 4770 |
+
"they",
|
| 4771 |
+
"thickness",
|
| 4772 |
+
"this",
|
| 4773 |
+
"this's",
|
| 4774 |
+
"this\u2019s",
|
| 4775 |
+
"thm",
|
| 4776 |
+
"thoracic",
|
| 4777 |
+
"thoracotomy",
|
| 4778 |
+
"those",
|
| 4779 |
+
"threatening",
|
| 4780 |
+
"three",
|
| 4781 |
+
"thrombocytopenia",
|
| 4782 |
+
"thromboembolic",
|
| 4783 |
+
"thromboplastin",
|
| 4784 |
+
"thrombosis",
|
| 4785 |
+
"thrombotic",
|
| 4786 |
+
"thrombus",
|
| 4787 |
+
"through",
|
| 4788 |
+
"throughout",
|
| 4789 |
+
"ths",
|
| 4790 |
+
"thy",
|
| 4791 |
+
"thyroid",
|
| 4792 |
+
"thyroidectomy",
|
| 4793 |
+
"tia",
|
| 4794 |
+
"tibial",
|
| 4795 |
+
"tic",
|
| 4796 |
+
"tid",
|
| 4797 |
+
"til",
|
| 4798 |
+
"time",
|
| 4799 |
+
"times",
|
| 4800 |
+
"timing",
|
| 4801 |
+
"tin",
|
| 4802 |
+
"tio",
|
| 4803 |
+
"tis",
|
| 4804 |
+
"tissue",
|
| 4805 |
+
"tissues",
|
| 4806 |
+
"tle",
|
| 4807 |
+
"tly",
|
| 4808 |
+
"tnbc",
|
| 4809 |
+
"to",
|
| 4810 |
+
"tol",
|
| 4811 |
+
"tolerance",
|
| 4812 |
+
"tolerate",
|
| 4813 |
+
"tolerated",
|
| 4814 |
+
"tolerating",
|
| 4815 |
+
"tomography",
|
| 4816 |
+
"ton",
|
| 4817 |
+
"tonsillectomy",
|
| 4818 |
+
"topical",
|
| 4819 |
+
"tor",
|
| 4820 |
+
"torsades",
|
| 4821 |
+
"total",
|
| 4822 |
+
"toxic",
|
| 4823 |
+
"toxicities",
|
| 4824 |
+
"toxicity",
|
| 4825 |
+
"tp",
|
| 4826 |
+
"tp53",
|
| 4827 |
+
"tra",
|
| 4828 |
+
"tracheostomy",
|
| 4829 |
+
"tract",
|
| 4830 |
+
"training",
|
| 4831 |
+
"transcriptase",
|
| 4832 |
+
"transdermal",
|
| 4833 |
+
"transfer",
|
| 4834 |
+
"transformed",
|
| 4835 |
+
"transfusions",
|
| 4836 |
+
"transient",
|
| 4837 |
+
"transplant",
|
| 4838 |
+
"transplantation",
|
| 4839 |
+
"trauma",
|
| 4840 |
+
"traumatic",
|
| 4841 |
+
"trc102",
|
| 4842 |
+
"treat",
|
| 4843 |
+
"treated",
|
| 4844 |
+
"treating",
|
| 4845 |
+
"treatment",
|
| 4846 |
+
"treprostinil",
|
| 4847 |
+
"tri",
|
| 4848 |
+
"trial",
|
| 4849 |
+
"trials",
|
| 4850 |
+
"tricyclic",
|
| 4851 |
+
"trimethoprim",
|
| 4852 |
+
"triple",
|
| 4853 |
+
"tro",
|
| 4854 |
+
"trus",
|
| 4855 |
+
"try",
|
| 4856 |
+
"tty",
|
| 4857 |
+
"tube",
|
| 4858 |
+
"tuberculosis",
|
| 4859 |
+
"tubes",
|
| 4860 |
+
"tum",
|
| 4861 |
+
"tumor",
|
| 4862 |
+
"tumor(s",
|
| 4863 |
+
"tumors",
|
| 4864 |
+
"tumour",
|
| 4865 |
+
"tus",
|
| 4866 |
+
"two",
|
| 4867 |
+
"tympanostomy",
|
| 4868 |
+
"type",
|
| 4869 |
+
"types",
|
| 4870 |
+
"typical",
|
| 4871 |
+
"t\u2019s",
|
| 4872 |
+
"u",
|
| 4873 |
+
"u.",
|
| 4874 |
+
"ual",
|
| 4875 |
+
"ube",
|
| 4876 |
+
"uc",
|
| 4877 |
+
"ucbt",
|
| 4878 |
+
"ucc",
|
| 4879 |
+
"uce",
|
| 4880 |
+
"uch",
|
| 4881 |
+
"uct",
|
| 4882 |
+
"uda",
|
| 4883 |
+
"ude",
|
| 4884 |
+
"udy",
|
| 4885 |
+
"ued",
|
| 4886 |
+
"ues",
|
| 4887 |
+
"uff",
|
| 4888 |
+
"ug.",
|
| 4889 |
+
"ugh",
|
| 4890 |
+
"ugi",
|
| 4891 |
+
"ugs",
|
| 4892 |
+
"uid",
|
| 4893 |
+
"uk",
|
| 4894 |
+
"ul.",
|
| 4895 |
+
"ula",
|
| 4896 |
+
"ulcer",
|
| 4897 |
+
"ulcerative",
|
| 4898 |
+
"uld",
|
| 4899 |
+
"ule",
|
| 4900 |
+
"ull",
|
| 4901 |
+
"uln",
|
| 4902 |
+
"ult",
|
| 4903 |
+
"ultrasound",
|
| 4904 |
+
"uma",
|
| 4905 |
+
"ume",
|
| 4906 |
+
"un",
|
| 4907 |
+
"un.",
|
| 4908 |
+
"unable",
|
| 4909 |
+
"unacceptable",
|
| 4910 |
+
"uncompensated",
|
| 4911 |
+
"uncontrollable",
|
| 4912 |
+
"uncontrolled",
|
| 4913 |
+
"und",
|
| 4914 |
+
"under",
|
| 4915 |
+
"undergo",
|
| 4916 |
+
"undergoing",
|
| 4917 |
+
"undergone",
|
| 4918 |
+
"underlying",
|
| 4919 |
+
"understanding",
|
| 4920 |
+
"undiagnosed",
|
| 4921 |
+
"une",
|
| 4922 |
+
"unfit",
|
| 4923 |
+
"unforeseeable",
|
| 4924 |
+
"ung",
|
| 4925 |
+
"unilateral",
|
| 4926 |
+
"unipolar",
|
| 4927 |
+
"unit",
|
| 4928 |
+
"units",
|
| 4929 |
+
"university",
|
| 4930 |
+
"unknown",
|
| 4931 |
+
"unless",
|
| 4932 |
+
"unlikely",
|
| 4933 |
+
"unprotected",
|
| 4934 |
+
"unrelated",
|
| 4935 |
+
"unresectable",
|
| 4936 |
+
"unresected",
|
| 4937 |
+
"unresolved",
|
| 4938 |
+
"unstable",
|
| 4939 |
+
"unsuccessfully",
|
| 4940 |
+
"unt",
|
| 4941 |
+
"until",
|
| 4942 |
+
"untreated",
|
| 4943 |
+
"unwilling",
|
| 4944 |
+
"unwillingness",
|
| 4945 |
+
"up",
|
| 4946 |
+
"upon",
|
| 4947 |
+
"upper",
|
| 4948 |
+
"ura",
|
| 4949 |
+
"urd",
|
| 4950 |
+
"ure",
|
| 4951 |
+
"urine",
|
| 4952 |
+
"uro",
|
| 4953 |
+
"uropathogen",
|
| 4954 |
+
"urr",
|
| 4955 |
+
"urs",
|
| 4956 |
+
"ury",
|
| 4957 |
+
"us",
|
| 4958 |
+
"use",
|
| 4959 |
+
"used",
|
| 4960 |
+
"using",
|
| 4961 |
+
"ust",
|
| 4962 |
+
"ute",
|
| 4963 |
+
"uterine",
|
| 4964 |
+
"uveitis",
|
| 4965 |
+
"uzi",
|
| 4966 |
+
"v",
|
| 4967 |
+
"v.",
|
| 4968 |
+
"v.s",
|
| 4969 |
+
"v.s.",
|
| 4970 |
+
"v.v",
|
| 4971 |
+
"v_v",
|
| 4972 |
+
"va",
|
| 4973 |
+
"va.",
|
| 4974 |
+
"vaccination",
|
| 4975 |
+
"vaccine",
|
| 4976 |
+
"vaginal",
|
| 4977 |
+
"val",
|
| 4978 |
+
"valacyclovir",
|
| 4979 |
+
"valproic",
|
| 4980 |
+
"value",
|
| 4981 |
+
"values",
|
| 4982 |
+
"valvular",
|
| 4983 |
+
"vanderbilt",
|
| 4984 |
+
"variegate",
|
| 4985 |
+
"vascular",
|
| 4986 |
+
"vasculitis",
|
| 4987 |
+
"vasectomy",
|
| 4988 |
+
"vasomotor",
|
| 4989 |
+
"ve",
|
| 4990 |
+
"ved",
|
| 4991 |
+
"vein",
|
| 4992 |
+
"vel",
|
| 4993 |
+
"veltri",
|
| 4994 |
+
"ven",
|
| 4995 |
+
"veno",
|
| 4996 |
+
"venous",
|
| 4997 |
+
"ventavis",
|
| 4998 |
+
"ventricular",
|
| 4999 |
+
"ver",
|
| 5000 |
+
"verapamil",
|
| 5001 |
+
"verelan",
|
| 5002 |
+
"verified",
|
| 5003 |
+
"verify",
|
| 5004 |
+
"very",
|
| 5005 |
+
"ves",
|
| 5006 |
+
"vgef",
|
| 5007 |
+
"via",
|
| 5008 |
+
"vic",
|
| 5009 |
+
"vid",
|
| 5010 |
+
"vin",
|
| 5011 |
+
"violate",
|
| 5012 |
+
"vir",
|
| 5013 |
+
"viral",
|
| 5014 |
+
"virus",
|
| 5015 |
+
"vis",
|
| 5016 |
+
"visit",
|
| 5017 |
+
"vismodegib",
|
| 5018 |
+
"visually",
|
| 5019 |
+
"vitamin",
|
| 5020 |
+
"vitro",
|
| 5021 |
+
"vix",
|
| 5022 |
+
"void",
|
| 5023 |
+
"volume",
|
| 5024 |
+
"vomiting",
|
| 5025 |
+
"vorinostat",
|
| 5026 |
+
"vox",
|
| 5027 |
+
"vs",
|
| 5028 |
+
"vs.",
|
| 5029 |
+
"vulnerable",
|
| 5030 |
+
"vumc",
|
| 5031 |
+
"vx-970",
|
| 5032 |
+
"w",
|
| 5033 |
+
"w's",
|
| 5034 |
+
"w.",
|
| 5035 |
+
"w/o",
|
| 5036 |
+
"wafers",
|
| 5037 |
+
"walk",
|
| 5038 |
+
"warfarin",
|
| 5039 |
+
"warts",
|
| 5040 |
+
"was",
|
| 5041 |
+
"wash",
|
| 5042 |
+
"wash.",
|
| 5043 |
+
"washout",
|
| 5044 |
+
"way",
|
| 5045 |
+
"wbc",
|
| 5046 |
+
"we",
|
| 5047 |
+
"weakness",
|
| 5048 |
+
"wed",
|
| 5049 |
+
"week",
|
| 5050 |
+
"weeks",
|
| 5051 |
+
"weigh",
|
| 5052 |
+
"weight",
|
| 5053 |
+
"wel",
|
| 5054 |
+
"wer",
|
| 5055 |
+
"were",
|
| 5056 |
+
"what",
|
| 5057 |
+
"what's",
|
| 5058 |
+
"what\u2019s",
|
| 5059 |
+
"wheat",
|
| 5060 |
+
"wheelchair",
|
| 5061 |
+
"when",
|
| 5062 |
+
"when's",
|
| 5063 |
+
"when\u2019s",
|
| 5064 |
+
"where",
|
| 5065 |
+
"where's",
|
| 5066 |
+
"where\u2019s",
|
| 5067 |
+
"whether",
|
| 5068 |
+
"which",
|
| 5069 |
+
"whichever",
|
| 5070 |
+
"while",
|
| 5071 |
+
"who",
|
| 5072 |
+
"who's",
|
| 5073 |
+
"whom",
|
| 5074 |
+
"who\u2019s",
|
| 5075 |
+
"why",
|
| 5076 |
+
"why's",
|
| 5077 |
+
"why\u2019s",
|
| 5078 |
+
"will",
|
| 5079 |
+
"willing",
|
| 5080 |
+
"willingness",
|
| 5081 |
+
"wilm",
|
| 5082 |
+
"wilson",
|
| 5083 |
+
"wis",
|
| 5084 |
+
"wis.",
|
| 5085 |
+
"with",
|
| 5086 |
+
"within",
|
| 5087 |
+
"without",
|
| 5088 |
+
"wly",
|
| 5089 |
+
"wnt",
|
| 5090 |
+
"wo",
|
| 5091 |
+
"woman",
|
| 5092 |
+
"women",
|
| 5093 |
+
"workup",
|
| 5094 |
+
"would",
|
| 5095 |
+
"wound",
|
| 5096 |
+
"wth",
|
| 5097 |
+
"w\u2019s",
|
| 5098 |
+
"x",
|
| 5099 |
+
"x'",
|
| 5100 |
+
"x'x",
|
| 5101 |
+
"x'xxxx",
|
| 5102 |
+
"x(dd;dd",
|
| 5103 |
+
"x.",
|
| 5104 |
+
"x.X",
|
| 5105 |
+
"x.d",
|
| 5106 |
+
"x.x",
|
| 5107 |
+
"x.x.",
|
| 5108 |
+
"x/x",
|
| 5109 |
+
"xD",
|
| 5110 |
+
"xDD",
|
| 5111 |
+
"xX",
|
| 5112 |
+
"xXX",
|
| 5113 |
+
"xXXX",
|
| 5114 |
+
"xXXXXd/d",
|
| 5115 |
+
"xXx",
|
| 5116 |
+
"x^d",
|
| 5117 |
+
"x_X",
|
| 5118 |
+
"x_d",
|
| 5119 |
+
"x_x",
|
| 5120 |
+
"xam",
|
| 5121 |
+
"xd",
|
| 5122 |
+
"xdd",
|
| 5123 |
+
"xel",
|
| 5124 |
+
"xeroderma",
|
| 5125 |
+
"xic",
|
| 5126 |
+
"xis",
|
| 5127 |
+
"xol",
|
| 5128 |
+
"xor",
|
| 5129 |
+
"xx",
|
| 5130 |
+
"xx'",
|
| 5131 |
+
"xx'x",
|
| 5132 |
+
"xx'xx",
|
| 5133 |
+
"xx)/xxxx",
|
| 5134 |
+
"xx.",
|
| 5135 |
+
"xxX",
|
| 5136 |
+
"xxXx",
|
| 5137 |
+
"xx^d",
|
| 5138 |
+
"xxd",
|
| 5139 |
+
"xxx",
|
| 5140 |
+
"xxx'x",
|
| 5141 |
+
"xxx-",
|
| 5142 |
+
"xxx/d.dd",
|
| 5143 |
+
"xxx/d.ddxd",
|
| 5144 |
+
"xxx/xx",
|
| 5145 |
+
"xxxXXX",
|
| 5146 |
+
"xxxdd",
|
| 5147 |
+
"xxxx",
|
| 5148 |
+
"xxxx'",
|
| 5149 |
+
"xxxx'x",
|
| 5150 |
+
"xxxx(x",
|
| 5151 |
+
"xxxx-",
|
| 5152 |
+
"xxxx-d",
|
| 5153 |
+
"xxxx-ddd",
|
| 5154 |
+
"xxxx/",
|
| 5155 |
+
"xxxxXXXX",
|
| 5156 |
+
"xxxx\u2019",
|
| 5157 |
+
"xxxx\u2019x",
|
| 5158 |
+
"xxx\u2019x",
|
| 5159 |
+
"xx\u2019",
|
| 5160 |
+
"xx\u2019x",
|
| 5161 |
+
"xx\u2019xx",
|
| 5162 |
+
"x\u2019",
|
| 5163 |
+
"x\u2019x",
|
| 5164 |
+
"x\u2019xxxx",
|
| 5165 |
+
"x\ufe35x",
|
| 5166 |
+
"y",
|
| 5167 |
+
"y'",
|
| 5168 |
+
"y's",
|
| 5169 |
+
"y.",
|
| 5170 |
+
"ybe",
|
| 5171 |
+
"year",
|
| 5172 |
+
"years",
|
| 5173 |
+
"yed",
|
| 5174 |
+
"yme",
|
| 5175 |
+
"york",
|
| 5176 |
+
"you",
|
| 5177 |
+
"ype",
|
| 5178 |
+
"ysm",
|
| 5179 |
+
"y\u2019",
|
| 5180 |
+
"y\u2019s",
|
| 5181 |
+
"z",
|
| 5182 |
+
"z.",
|
| 5183 |
+
"zed",
|
| 5184 |
+
"zidovudine",
|
| 5185 |
+
"zil",
|
| 5186 |
+
"zofenopril",
|
| 5187 |
+
"|",
|
| 5188 |
+
"}",
|
| 5189 |
+
"\u00a0",
|
| 5190 |
+
"\u00ac",
|
| 5191 |
+
"\u00ac_\u00ac",
|
| 5192 |
+
"\u00af",
|
| 5193 |
+
"\u00af\\(x)/\u00af",
|
| 5194 |
+
"\u00af\\(\u30c4)/\u00af",
|
| 5195 |
+
"\u00b0",
|
| 5196 |
+
"\u00b0C.",
|
| 5197 |
+
"\u00b0F.",
|
| 5198 |
+
"\u00b0K.",
|
| 5199 |
+
"\u00b0X.",
|
| 5200 |
+
"\u00b0c.",
|
| 5201 |
+
"\u00b0f.",
|
| 5202 |
+
"\u00b0k.",
|
| 5203 |
+
"\u00b0x.",
|
| 5204 |
+
"\u00b5",
|
| 5205 |
+
"\u00b5g",
|
| 5206 |
+
"\u00e4",
|
| 5207 |
+
"\u00e4.",
|
| 5208 |
+
"\u00efve",
|
| 5209 |
+
"\u00f6",
|
| 5210 |
+
"\u00f6.",
|
| 5211 |
+
"\u00fc",
|
| 5212 |
+
"\u00fc.",
|
| 5213 |
+
"\u03b2",
|
| 5214 |
+
"\u0ca0",
|
| 5215 |
+
"\u0ca0_\u0ca0",
|
| 5216 |
+
"\u0ca0\ufe35\u0ca0",
|
| 5217 |
+
"\u2014",
|
| 5218 |
+
"\u2018",
|
| 5219 |
+
"\u2018S",
|
| 5220 |
+
"\u2018X",
|
| 5221 |
+
"\u2018s",
|
| 5222 |
+
"\u2018x",
|
| 5223 |
+
"\u2019",
|
| 5224 |
+
"\u2019-(",
|
| 5225 |
+
"\u2019-)",
|
| 5226 |
+
"\u2019Cause",
|
| 5227 |
+
"\u2019Cos",
|
| 5228 |
+
"\u2019Coz",
|
| 5229 |
+
"\u2019Cuz",
|
| 5230 |
+
"\u2019S",
|
| 5231 |
+
"\u2019X",
|
| 5232 |
+
"\u2019Xxx",
|
| 5233 |
+
"\u2019Xxxxx",
|
| 5234 |
+
"\u2019am",
|
| 5235 |
+
"\u2019bout",
|
| 5236 |
+
"\u2019cause",
|
| 5237 |
+
"\u2019cos",
|
| 5238 |
+
"\u2019coz",
|
| 5239 |
+
"\u2019cuz",
|
| 5240 |
+
"\u2019d",
|
| 5241 |
+
"\u2019em",
|
| 5242 |
+
"\u2019ll",
|
| 5243 |
+
"\u2019m",
|
| 5244 |
+
"\u2019nuff",
|
| 5245 |
+
"\u2019re",
|
| 5246 |
+
"\u2019s",
|
| 5247 |
+
"\u2019ve",
|
| 5248 |
+
"\u2019x",
|
| 5249 |
+
"\u2019xx",
|
| 5250 |
+
"\u2019xxx",
|
| 5251 |
+
"\u2019xxxx",
|
| 5252 |
+
"\u2019y",
|
| 5253 |
+
"\u2019\u2019",
|
| 5254 |
+
"\u2264",
|
| 5255 |
+
"\u2265",
|
| 5256 |
+
"\u22651",
|
| 5257 |
+
"\u2265126",
|
| 5258 |
+
"\u22652",
|
| 5259 |
+
"\u2265450",
|
| 5260 |
+
"\u22655.0",
|
| 5261 |
+
"\u226560",
|
| 5262 |
+
"\u2265Grade",
|
| 5263 |
+
"\u2265Xxxxx",
|
| 5264 |
+
"\u2265d",
|
| 5265 |
+
"\u2265d.d",
|
| 5266 |
+
"\u2265dd",
|
| 5267 |
+
"\u2265ddd",
|
| 5268 |
+
"\u2265grade",
|
| 5269 |
+
"\u2501",
|
| 5270 |
+
"\u253b",
|
| 5271 |
+
"\u253b\u2501\u253b",
|
| 5272 |
+
"\u256f",
|
| 5273 |
+
"\u25a1",
|
| 5274 |
+
"\ufe35",
|
| 5275 |
+
"\uff09"
|
| 5276 |
+
]
|
medical-ner-task1/vocab/vectors
ADDED
|
Binary file (128 Bytes). View file
|
|
|
medical-ner-task1/vocab/vectors.cfg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"mode":"default"
|
| 3 |
+
}
|