Spaces:
Running
on
Zero
Running
on
Zero
alabamagan
commited on
Commit
·
08232dd
0
Parent(s):
First commit
Browse files- .gitattributes +2 -0
- app.py +117 -0
- examples.json +12 -0
- flagged/log.csv +2 -0
- models/npc-bert-best/config.json +25 -0
- models/npc-bert-best/generation_config.json +5 -0
- models/npc-bert-best/model.safetensors +3 -0
- models/npc-bert-best/special_tokens_map.json +7 -0
- models/npc-bert-best/tokenizer.json +0 -0
- models/npc-bert-best/tokenizer_config.json +57 -0
- models/npc-bert-best/training_args.bin +3 -0
- models/npc-bert-best/vocab.txt +5745 -0
- models/npc-bert-cls/config.json +34 -0
- models/npc-bert-cls/model.safetensors +3 -0
- models/npc-bert-cls/special_tokens_map.json +37 -0
- models/npc-bert-cls/tokenizer.json +0 -0
- models/npc-bert-cls/tokenizer_config.json +57 -0
- models/npc-bert-cls/training_args.bin +3 -0
- npc_bert_models/__init__.py +0 -0
- npc_bert_models/__pycache__/__init__.cpython-310.pyc +0 -0
- npc_bert_models/__pycache__/cls_module.cpython-310.pyc +0 -0
- npc_bert_models/__pycache__/gradio_demo.cpython-310.pyc +0 -0
- npc_bert_models/__pycache__/mlm_module.cpython-310.pyc +0 -0
- npc_bert_models/cls_module.py +75 -0
- npc_bert_models/gradio_demo.py +8 -0
- npc_bert_models/mlm_module.py +74 -0
- report_examples/NPC-report-1.txt +24 -0
- report_examples/NPC-report-2.txt +28 -0
- report_examples/benign-report-1.txt +11 -0
- report_examples/benign-report-2.txt +18 -0
- requirements.txt +4 -0
.gitattributes
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
*safetensors filter=lfs diff=lfs merge=lfs -text
|
2 |
+
*bin filter=lfs diff=lfs merge=lfs -text
|
app.py
ADDED
@@ -0,0 +1,117 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import os
|
3 |
+
from npc_bert_models.gradio_demo import *
|
4 |
+
from npc_bert_models.mlm_module import NpcBertMLM
|
5 |
+
from npc_bert_models.cls_module import NpcBertCLS
|
6 |
+
import json
|
7 |
+
|
8 |
+
|
9 |
+
class main_window():
|
10 |
+
def __init__(self):
|
11 |
+
self.interface = None
|
12 |
+
self.examples = json.load(open("examples.json", 'r'))
|
13 |
+
|
14 |
+
def initialize(self):
|
15 |
+
#! Initialize MLM
|
16 |
+
self.npc_mlm = NpcBertMLM()
|
17 |
+
self.npc_mlm.load()
|
18 |
+
|
19 |
+
with gr.Blocks() as self.mlm_interface:
|
20 |
+
gr.Markdown("# Masked work prediction\n"
|
21 |
+
"Enter any sentence. Use the token `[MASK]` to see what the model predicts.\n"
|
22 |
+
"## Our examples:\n"
|
23 |
+
"|Input masked sequence|Ground-truth masked word|\n"
|
24 |
+
"|---------------------|------------------------|\n"
|
25 |
+
+ "\n".join([f"|{a}|{b}|" for a, b in zip(self.examples['mlm-inp'], self.examples['mlm-inp-GT'])]))
|
26 |
+
|
27 |
+
with gr.Row():
|
28 |
+
with gr.Column():
|
29 |
+
inp = gr.Textbox("The tumor is confined in the [MASK].", label='mlm-inp')
|
30 |
+
btn = gr.Button("Run", variant='primary')
|
31 |
+
|
32 |
+
with gr.Column():
|
33 |
+
out = gr.Label(num_top_classes=5)
|
34 |
+
|
35 |
+
|
36 |
+
gr.Examples(self.examples['mlm-inp'], inputs=inp, label='mlm-inp')
|
37 |
+
btn.click(fn=self.npc_mlm.__call__, inputs=inp, outputs=out)
|
38 |
+
inp.submit(fn=self.npc_mlm.__call__, inputs=inp, outputs=out)
|
39 |
+
|
40 |
+
#! Initialize report classification
|
41 |
+
self.npc_cls = NpcBertCLS()
|
42 |
+
self.npc_cls.load()
|
43 |
+
|
44 |
+
with gr.Blocks() as self.cls_interface:
|
45 |
+
gr.Markdown("""
|
46 |
+
# Report discrimination
|
47 |
+
|
48 |
+
In this example we explored how the fine-tuned BERT aids downstream task. We further trained it
|
49 |
+
to do a simple task of discriminating between reports written for non-NPC patients and NPC patients.
|
50 |
+
|
51 |
+
# Disclaimer
|
52 |
+
|
53 |
+
The examples are mock reports that is created with reference to authentic reports, they do not
|
54 |
+
represent any real patients. However, it was written to be an authentic representation of NPC or
|
55 |
+
patient under investigation for suspected NPC but with negative imaging findings.
|
56 |
+
""")
|
57 |
+
|
58 |
+
with gr.Row():
|
59 |
+
with gr.Column():
|
60 |
+
inp = gr.TextArea(placeholder="Use examples at the bottom to load example text reports.")
|
61 |
+
inf = gr.File(file_types=['.txt'], label="Report file (plaintext)", show_label=True, interactive=True)
|
62 |
+
inf.upload(fn=self._set_report_file_helper, inputs=inf, outputs=inp)
|
63 |
+
inf.change(fn=self._set_report_file_helper, inputs=inf, outputs=inp)
|
64 |
+
btn = gr.Button("Run", variant='primary')
|
65 |
+
|
66 |
+
|
67 |
+
with gr.Column():
|
68 |
+
out = gr.Label(num_top_classes=2)
|
69 |
+
|
70 |
+
# gr.Examples(examples=list(self.examples['reports'].values()), inputs=inp)
|
71 |
+
gr.Examples(examples="./report_examples", inputs=inf)
|
72 |
+
btn.click(fn=self.npc_cls.__call__, inputs=inp, outputs=out)
|
73 |
+
inp.submit(fn=self.npc_cls.__call__, inputs=inp, outputs=out)
|
74 |
+
|
75 |
+
with gr.Blocks() as self.interface:
|
76 |
+
gr.Markdown("""
|
77 |
+
# Introduction
|
78 |
+
|
79 |
+
This is a demo for displaying the potential of language models fine tunned using the carefully curated dataset
|
80 |
+
of structured MRI radiology reports for nasopharyngeal carcinoma (NPC) examination. Our team has an established
|
81 |
+
track record for researching the role of AI in early detectio for NPC. We have already developed an AI system
|
82 |
+
with high sensitivty and specificity > 90%. However. we explanability of the system is currently a major challenge
|
83 |
+
for translation. In fact, this is a general problem for AI's developement in radiology. Therefore, in this pilot
|
84 |
+
study, we investigate language model in understanding the context of the disease to explore the possibility of incorporating
|
85 |
+
language model in our existing system for explanability.
|
86 |
+
|
87 |
+
# Affliations
|
88 |
+
|
89 |
+
* Dr. M.Lun Wong, Dept. Imaging and Interventional Radiology. The Chinese University of Hong Kong
|
90 |
+
|
91 |
+
# Disclaimer
|
92 |
+
|
93 |
+
This software is provided as is and it is not a clinically validated software. The authors disclaim any responsibility
|
94 |
+
arising as a consequence from using this demo.
|
95 |
+
""")
|
96 |
+
tabs = gr.TabbedInterface([self.mlm_interface, self.cls_interface], tab_names=["Masked Language Model", "Report classification"])
|
97 |
+
|
98 |
+
def lauch(self):
|
99 |
+
self.interface.launch()
|
100 |
+
pass
|
101 |
+
|
102 |
+
def _set_report_file_helper(self, file_in):
|
103 |
+
try:
|
104 |
+
text = open(file_in, 'r').read()
|
105 |
+
return text
|
106 |
+
except:
|
107 |
+
print(f"Cannot read file {file_in}")
|
108 |
+
# Do nothing
|
109 |
+
pass
|
110 |
+
|
111 |
+
|
112 |
+
if __name__ == '__main__':
|
113 |
+
mw = main_window()
|
114 |
+
mw.initialize()
|
115 |
+
mw.lauch()
|
116 |
+
|
117 |
+
|
examples.json
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"mlm-inp": [
|
3 |
+
"A 2cm metastatic node is present in the right upper internal jugular chain [MASK] to the vein.",
|
4 |
+
"The skull base and associated foraminal and [MASK] are unremarkable.",
|
5 |
+
"The cavernous sinus and sections of the [MASK] included on the scan are unremarkable"
|
6 |
+
],
|
7 |
+
"mlm-inp-GT": [
|
8 |
+
"posterior",
|
9 |
+
"fissures",
|
10 |
+
"cranium"
|
11 |
+
]
|
12 |
+
}
|
flagged/log.csv
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
component 0,output,flag,username,timestamp
|
2 |
+
There is a [MASK] in the nasopharynx.,"[{'score': 0.9277202486991882, 'token': 168, 'token_str': 'tumour', 'sequence': 'there is a tumour in the nasopharynx.'}, {'score': 0.008515788242220879, 'token': 245, 'token_str': 'carcinoma', 'sequence': 'there is a carcinoma in the nasopharynx.'}, {'score': 0.007673648186028004, 'token': 1531, 'token_str': 'asymmetry', 'sequence': 'there is a asymmetry in the nasopharynx.'}, {'score': 0.007609423715621233, 'token': 626, 'token_str': 'hyperplasia', 'sequence': 'there is a hyperplasia in the nasopharynx.'}, {'score': 0.0075225927866995335, 'token': 871, 'token_str': 'mass', 'sequence': 'there is a mass in the nasopharynx.'}]",,,2024-02-13 19:40:36.404239
|
models/npc-bert-best/config.json
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/BiomedNLP-BiomedBERT-base-uncased-abstract-fulltext",
|
3 |
+
"architectures": [
|
4 |
+
"BertForMaskedLM"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"classifier_dropout": null,
|
8 |
+
"hidden_act": "gelu",
|
9 |
+
"hidden_dropout_prob": 0.1,
|
10 |
+
"hidden_size": 768,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"intermediate_size": 3072,
|
13 |
+
"layer_norm_eps": 1e-12,
|
14 |
+
"max_position_embeddings": 512,
|
15 |
+
"model_type": "bert",
|
16 |
+
"num_attention_heads": 12,
|
17 |
+
"num_hidden_layers": 12,
|
18 |
+
"pad_token_id": 0,
|
19 |
+
"position_embedding_type": "absolute",
|
20 |
+
"torch_dtype": "float32",
|
21 |
+
"transformers_version": "4.37.2",
|
22 |
+
"type_vocab_size": 2,
|
23 |
+
"use_cache": true,
|
24 |
+
"vocab_size": 30522
|
25 |
+
}
|
models/npc-bert-best/generation_config.json
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"pad_token_id": 0,
|
4 |
+
"transformers_version": "4.37.2"
|
5 |
+
}
|
models/npc-bert-best/model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ec20d1b1cec7c7152865f6757a492879c0ba9da788f98ec91d0bec95b2968537
|
3 |
+
size 438080896
|
models/npc-bert-best/special_tokens_map.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cls_token": "[CLS]",
|
3 |
+
"mask_token": "[MASK]",
|
4 |
+
"pad_token": "[PAD]",
|
5 |
+
"sep_token": "[SEP]",
|
6 |
+
"unk_token": "[UNK]"
|
7 |
+
}
|
models/npc-bert-best/tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
models/npc-bert-best/tokenizer_config.json
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"0": {
|
4 |
+
"content": "[PAD]",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false,
|
9 |
+
"special": true
|
10 |
+
},
|
11 |
+
"1": {
|
12 |
+
"content": "[UNK]",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false,
|
17 |
+
"special": true
|
18 |
+
},
|
19 |
+
"2": {
|
20 |
+
"content": "[CLS]",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false,
|
25 |
+
"special": true
|
26 |
+
},
|
27 |
+
"3": {
|
28 |
+
"content": "[SEP]",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
},
|
35 |
+
"4": {
|
36 |
+
"content": "[MASK]",
|
37 |
+
"lstrip": false,
|
38 |
+
"normalized": false,
|
39 |
+
"rstrip": false,
|
40 |
+
"single_word": false,
|
41 |
+
"special": true
|
42 |
+
}
|
43 |
+
},
|
44 |
+
"clean_up_tokenization_spaces": true,
|
45 |
+
"cls_token": "[CLS]",
|
46 |
+
"do_basic_tokenize": true,
|
47 |
+
"do_lower_case": true,
|
48 |
+
"mask_token": "[MASK]",
|
49 |
+
"model_max_length": 1000000000000000019884624838656,
|
50 |
+
"never_split": null,
|
51 |
+
"pad_token": "[PAD]",
|
52 |
+
"sep_token": "[SEP]",
|
53 |
+
"strip_accents": null,
|
54 |
+
"tokenize_chinese_chars": true,
|
55 |
+
"tokenizer_class": "BertTokenizer",
|
56 |
+
"unk_token": "[UNK]"
|
57 |
+
}
|
models/npc-bert-best/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:deee75fd6b57b3902bf871073ec8284612eab39d821bfe989934ece9092bff46
|
3 |
+
size 4207
|
models/npc-bert-best/vocab.txt
ADDED
@@ -0,0 +1,5745 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[PAD]
|
2 |
+
[UNK]
|
3 |
+
[CLS]
|
4 |
+
[SEP]
|
5 |
+
[MASK]
|
6 |
+
"
|
7 |
+
%
|
8 |
+
&
|
9 |
+
'
|
10 |
+
(
|
11 |
+
)
|
12 |
+
*
|
13 |
+
+
|
14 |
+
,
|
15 |
+
-
|
16 |
+
.
|
17 |
+
/
|
18 |
+
0
|
19 |
+
1
|
20 |
+
2
|
21 |
+
3
|
22 |
+
4
|
23 |
+
5
|
24 |
+
6
|
25 |
+
7
|
26 |
+
8
|
27 |
+
9
|
28 |
+
:
|
29 |
+
;
|
30 |
+
<
|
31 |
+
=
|
32 |
+
>
|
33 |
+
?
|
34 |
+
[
|
35 |
+
\
|
36 |
+
a
|
37 |
+
b
|
38 |
+
c
|
39 |
+
d
|
40 |
+
e
|
41 |
+
f
|
42 |
+
g
|
43 |
+
h
|
44 |
+
i
|
45 |
+
j
|
46 |
+
k
|
47 |
+
l
|
48 |
+
m
|
49 |
+
n
|
50 |
+
o
|
51 |
+
p
|
52 |
+
q
|
53 |
+
r
|
54 |
+
s
|
55 |
+
t
|
56 |
+
u
|
57 |
+
v
|
58 |
+
w
|
59 |
+
x
|
60 |
+
y
|
61 |
+
z
|
62 |
+
~
|
63 |
+
×
|
64 |
+
–
|
65 |
+
##e
|
66 |
+
##n
|
67 |
+
##d
|
68 |
+
##r
|
69 |
+
##i
|
70 |
+
##g
|
71 |
+
##c
|
72 |
+
##u
|
73 |
+
##p
|
74 |
+
##o
|
75 |
+
##x
|
76 |
+
##m
|
77 |
+
##t
|
78 |
+
##y
|
79 |
+
##a
|
80 |
+
##s
|
81 |
+
##l
|
82 |
+
##v
|
83 |
+
##f
|
84 |
+
##b
|
85 |
+
##×
|
86 |
+
##3
|
87 |
+
##j
|
88 |
+
##k
|
89 |
+
##0
|
90 |
+
##1
|
91 |
+
##6
|
92 |
+
##h
|
93 |
+
##7
|
94 |
+
##9
|
95 |
+
##4
|
96 |
+
##q
|
97 |
+
##2
|
98 |
+
##w
|
99 |
+
##5
|
100 |
+
##z
|
101 |
+
##8
|
102 |
+
##he
|
103 |
+
the
|
104 |
+
##al
|
105 |
+
##ar
|
106 |
+
##as
|
107 |
+
##re
|
108 |
+
##er
|
109 |
+
##on
|
110 |
+
##in
|
111 |
+
in
|
112 |
+
##nd
|
113 |
+
and
|
114 |
+
##es
|
115 |
+
##or
|
116 |
+
##at
|
117 |
+
no
|
118 |
+
##ary
|
119 |
+
of
|
120 |
+
##ion
|
121 |
+
##us
|
122 |
+
##it
|
123 |
+
##id
|
124 |
+
##ph
|
125 |
+
##en
|
126 |
+
##ic
|
127 |
+
##aryn
|
128 |
+
##pharyn
|
129 |
+
##tas
|
130 |
+
##an
|
131 |
+
##opharyn
|
132 |
+
is
|
133 |
+
##ec
|
134 |
+
##os
|
135 |
+
are
|
136 |
+
##ge
|
137 |
+
there
|
138 |
+
##ter
|
139 |
+
nod
|
140 |
+
me
|
141 |
+
##um
|
142 |
+
le
|
143 |
+
##ed
|
144 |
+
##ou
|
145 |
+
##ig
|
146 |
+
##le
|
147 |
+
nas
|
148 |
+
##ing
|
149 |
+
##ul
|
150 |
+
metas
|
151 |
+
re
|
152 |
+
##igh
|
153 |
+
##ft
|
154 |
+
##ight
|
155 |
+
##geal
|
156 |
+
##ent
|
157 |
+
inv
|
158 |
+
left
|
159 |
+
##ith
|
160 |
+
with
|
161 |
+
right
|
162 |
+
nasopharyn
|
163 |
+
##is
|
164 |
+
tum
|
165 |
+
##om
|
166 |
+
##tr
|
167 |
+
##our
|
168 |
+
##ly
|
169 |
+
tumour
|
170 |
+
to
|
171 |
+
or
|
172 |
+
##il
|
173 |
+
nec
|
174 |
+
##ri
|
175 |
+
nodes
|
176 |
+
neck
|
177 |
+
sid
|
178 |
+
##ve
|
179 |
+
##per
|
180 |
+
##oid
|
181 |
+
metastas
|
182 |
+
##cl
|
183 |
+
metastases
|
184 |
+
ex
|
185 |
+
##ab
|
186 |
+
up
|
187 |
+
pos
|
188 |
+
##all
|
189 |
+
t1
|
190 |
+
##ular
|
191 |
+
un
|
192 |
+
##ial
|
193 |
+
side
|
194 |
+
con
|
195 |
+
##able
|
196 |
+
##ark
|
197 |
+
upper
|
198 |
+
t1w
|
199 |
+
##ol
|
200 |
+
##ior
|
201 |
+
##rem
|
202 |
+
##arkable
|
203 |
+
##eral
|
204 |
+
unrem
|
205 |
+
unremarkable
|
206 |
+
##ow
|
207 |
+
##ad
|
208 |
+
##ous
|
209 |
+
th
|
210 |
+
sp
|
211 |
+
par
|
212 |
+
car
|
213 |
+
##nal
|
214 |
+
ch
|
215 |
+
nasopharynx
|
216 |
+
ext
|
217 |
+
##oss
|
218 |
+
##ug
|
219 |
+
##if
|
220 |
+
##oma
|
221 |
+
##ac
|
222 |
+
##inus
|
223 |
+
sinus
|
224 |
+
invas
|
225 |
+
##ain
|
226 |
+
invasion
|
227 |
+
al
|
228 |
+
##ateral
|
229 |
+
ax
|
230 |
+
invol
|
231 |
+
##av
|
232 |
+
axial
|
233 |
+
##ant
|
234 |
+
nasopharyngeal
|
235 |
+
##tat
|
236 |
+
##ast
|
237 |
+
##tatic
|
238 |
+
metastatic
|
239 |
+
##ut
|
240 |
+
##terior
|
241 |
+
##ist
|
242 |
+
sm
|
243 |
+
small
|
244 |
+
##cin
|
245 |
+
carcin
|
246 |
+
carcinoma
|
247 |
+
t2
|
248 |
+
jug
|
249 |
+
cor
|
250 |
+
##ternal
|
251 |
+
foss
|
252 |
+
fossa
|
253 |
+
##usion
|
254 |
+
##th
|
255 |
+
jugular
|
256 |
+
inf
|
257 |
+
internal
|
258 |
+
on
|
259 |
+
cav
|
260 |
+
for
|
261 |
+
##por
|
262 |
+
##ase
|
263 |
+
##res
|
264 |
+
reg
|
265 |
+
coron
|
266 |
+
coronal
|
267 |
+
int
|
268 |
+
##rim
|
269 |
+
sc
|
270 |
+
nodal
|
271 |
+
prim
|
272 |
+
primary
|
273 |
+
region
|
274 |
+
##ding
|
275 |
+
##tery
|
276 |
+
posterior
|
277 |
+
##am
|
278 |
+
chain
|
279 |
+
wh
|
280 |
+
##ur
|
281 |
+
##cc
|
282 |
+
##ilateral
|
283 |
+
into
|
284 |
+
##ens
|
285 |
+
not
|
286 |
+
he
|
287 |
+
##ical
|
288 |
+
dist
|
289 |
+
##ate
|
290 |
+
##opharynx
|
291 |
+
distant
|
292 |
+
ptery
|
293 |
+
pteryg
|
294 |
+
retr
|
295 |
+
mid
|
296 |
+
##dent
|
297 |
+
##opharyngeal
|
298 |
+
##ied
|
299 |
+
ident
|
300 |
+
identif
|
301 |
+
##ich
|
302 |
+
which
|
303 |
+
identified
|
304 |
+
retropharyngeal
|
305 |
+
bilateral
|
306 |
+
scan
|
307 |
+
cl
|
308 |
+
sec
|
309 |
+
##sp
|
310 |
+
##vel
|
311 |
+
ear
|
312 |
+
##ue
|
313 |
+
head
|
314 |
+
level
|
315 |
+
##her
|
316 |
+
bon
|
317 |
+
de
|
318 |
+
hy
|
319 |
+
but
|
320 |
+
mri
|
321 |
+
##ther
|
322 |
+
base
|
323 |
+
##ot
|
324 |
+
##ges
|
325 |
+
involv
|
326 |
+
extens
|
327 |
+
##ine
|
328 |
+
##ull
|
329 |
+
##erv
|
330 |
+
##tion
|
331 |
+
##ax
|
332 |
+
para
|
333 |
+
##ures
|
334 |
+
st
|
335 |
+
parapharyn
|
336 |
+
##ity
|
337 |
+
##ir
|
338 |
+
parapharyngeal
|
339 |
+
en
|
340 |
+
foram
|
341 |
+
##iv
|
342 |
+
##ag
|
343 |
+
contr
|
344 |
+
ab
|
345 |
+
##ud
|
346 |
+
contrast
|
347 |
+
##end
|
348 |
+
cr
|
349 |
+
##pic
|
350 |
+
##ervical
|
351 |
+
nasal
|
352 |
+
##ym
|
353 |
+
pr
|
354 |
+
cervical
|
355 |
+
##fin
|
356 |
+
extend
|
357 |
+
su
|
358 |
+
##ation
|
359 |
+
post
|
360 |
+
fat
|
361 |
+
##age
|
362 |
+
##op
|
363 |
+
##clusion
|
364 |
+
conclusion
|
365 |
+
pre
|
366 |
+
##port
|
367 |
+
report
|
368 |
+
##ite
|
369 |
+
wall
|
370 |
+
sk
|
371 |
+
##ment
|
372 |
+
skull
|
373 |
+
##so
|
374 |
+
also
|
375 |
+
defin
|
376 |
+
cavity
|
377 |
+
be
|
378 |
+
can
|
379 |
+
##omin
|
380 |
+
an
|
381 |
+
##ition
|
382 |
+
ii
|
383 |
+
##dition
|
384 |
+
lym
|
385 |
+
lymph
|
386 |
+
hyp
|
387 |
+
##ious
|
388 |
+
##clud
|
389 |
+
##and
|
390 |
+
sus
|
391 |
+
involve
|
392 |
+
ap
|
393 |
+
##hn
|
394 |
+
##ening
|
395 |
+
##ern
|
396 |
+
cavern
|
397 |
+
involving
|
398 |
+
cavernous
|
399 |
+
other
|
400 |
+
##que
|
401 |
+
suspic
|
402 |
+
definite
|
403 |
+
##ory
|
404 |
+
tec
|
405 |
+
##hni
|
406 |
+
techni
|
407 |
+
##iss
|
408 |
+
oropharynx
|
409 |
+
technique
|
410 |
+
##out
|
411 |
+
extension
|
412 |
+
foramen
|
413 |
+
##spir
|
414 |
+
t2spir
|
415 |
+
##astoid
|
416 |
+
##bit
|
417 |
+
##orm
|
418 |
+
##itt
|
419 |
+
cliv
|
420 |
+
##ff
|
421 |
+
eff
|
422 |
+
acc
|
423 |
+
without
|
424 |
+
orbit
|
425 |
+
cran
|
426 |
+
bo
|
427 |
+
##arge
|
428 |
+
node
|
429 |
+
fin
|
430 |
+
effusion
|
431 |
+
early
|
432 |
+
suspicious
|
433 |
+
finding
|
434 |
+
canal
|
435 |
+
bones
|
436 |
+
t2w
|
437 |
+
noted
|
438 |
+
extends
|
439 |
+
##cluded
|
440 |
+
stage
|
441 |
+
findings
|
442 |
+
mus
|
443 |
+
##alat
|
444 |
+
##uc
|
445 |
+
low
|
446 |
+
##im
|
447 |
+
sinuses
|
448 |
+
##ib
|
449 |
+
##hen
|
450 |
+
pterygoid
|
451 |
+
##mpor
|
452 |
+
##mporal
|
453 |
+
sphen
|
454 |
+
##ond
|
455 |
+
aj
|
456 |
+
ajcc
|
457 |
+
lower
|
458 |
+
uic
|
459 |
+
uicc
|
460 |
+
##tions
|
461 |
+
edition
|
462 |
+
##otid
|
463 |
+
##ording
|
464 |
+
according
|
465 |
+
meas
|
466 |
+
sphenoid
|
467 |
+
##dle
|
468 |
+
middle
|
469 |
+
##alatine
|
470 |
+
fiss
|
471 |
+
second
|
472 |
+
##ong
|
473 |
+
infr
|
474 |
+
sag
|
475 |
+
##ick
|
476 |
+
##ang
|
477 |
+
thick
|
478 |
+
##ittal
|
479 |
+
sagittal
|
480 |
+
muc
|
481 |
+
thor
|
482 |
+
mastoid
|
483 |
+
regions
|
484 |
+
at
|
485 |
+
##atemporal
|
486 |
+
infratemporal
|
487 |
+
##gest
|
488 |
+
included
|
489 |
+
thorax
|
490 |
+
##ep
|
491 |
+
tumours
|
492 |
+
sat
|
493 |
+
##uration
|
494 |
+
hypopharynx
|
495 |
+
saturation
|
496 |
+
tri
|
497 |
+
thickening
|
498 |
+
triang
|
499 |
+
sections
|
500 |
+
mucos
|
501 |
+
##anc
|
502 |
+
clivus
|
503 |
+
bul
|
504 |
+
##ive
|
505 |
+
##ormal
|
506 |
+
walls
|
507 |
+
mil
|
508 |
+
crani
|
509 |
+
mild
|
510 |
+
mucosal
|
511 |
+
##ill
|
512 |
+
abut
|
513 |
+
##opalatine
|
514 |
+
##etr
|
515 |
+
##asal
|
516 |
+
sig
|
517 |
+
paran
|
518 |
+
ad
|
519 |
+
##ure
|
520 |
+
cranium
|
521 |
+
paranasal
|
522 |
+
##ob
|
523 |
+
chan
|
524 |
+
##ver
|
525 |
+
non
|
526 |
+
##spec
|
527 |
+
triangle
|
528 |
+
pterygopalatine
|
529 |
+
sh
|
530 |
+
##un
|
531 |
+
##large
|
532 |
+
enlarge
|
533 |
+
##m0
|
534 |
+
along
|
535 |
+
##cles
|
536 |
+
muscles
|
537 |
+
##ia
|
538 |
+
np
|
539 |
+
##oo
|
540 |
+
max
|
541 |
+
##low
|
542 |
+
enlarged
|
543 |
+
both
|
544 |
+
as
|
545 |
+
##oc
|
546 |
+
sub
|
547 |
+
ver
|
548 |
+
lateral
|
549 |
+
npc
|
550 |
+
roo
|
551 |
+
roof
|
552 |
+
promin
|
553 |
+
##ific
|
554 |
+
app
|
555 |
+
bulk
|
556 |
+
prominent
|
557 |
+
##te
|
558 |
+
involvement
|
559 |
+
note
|
560 |
+
##illary
|
561 |
+
##spect
|
562 |
+
aspect
|
563 |
+
##pl
|
564 |
+
signal
|
565 |
+
sided
|
566 |
+
##ap
|
567 |
+
##cm
|
568 |
+
lar
|
569 |
+
spac
|
570 |
+
petr
|
571 |
+
levels
|
572 |
+
ind
|
573 |
+
se
|
574 |
+
hyper
|
575 |
+
parotid
|
576 |
+
fe
|
577 |
+
li
|
578 |
+
this
|
579 |
+
##eter
|
580 |
+
##inate
|
581 |
+
##ance
|
582 |
+
##andib
|
583 |
+
pred
|
584 |
+
ar
|
585 |
+
predomin
|
586 |
+
##resent
|
587 |
+
##ess
|
588 |
+
##trac
|
589 |
+
##antly
|
590 |
+
abuts
|
591 |
+
gl
|
592 |
+
infer
|
593 |
+
predominantly
|
594 |
+
##amm
|
595 |
+
##lamm
|
596 |
+
inflamm
|
597 |
+
gland
|
598 |
+
inferior
|
599 |
+
bulky
|
600 |
+
di
|
601 |
+
##atory
|
602 |
+
##gh
|
603 |
+
##ough
|
604 |
+
##read
|
605 |
+
indeter
|
606 |
+
indeterm
|
607 |
+
very
|
608 |
+
##ear
|
609 |
+
spread
|
610 |
+
inflammatory
|
611 |
+
indeterminate
|
612 |
+
##own
|
613 |
+
show
|
614 |
+
##el
|
615 |
+
space
|
616 |
+
all
|
617 |
+
##asia
|
618 |
+
fissures
|
619 |
+
##ust
|
620 |
+
changes
|
621 |
+
##andibular
|
622 |
+
cm
|
623 |
+
##mm
|
624 |
+
##ral
|
625 |
+
appear
|
626 |
+
hyperpl
|
627 |
+
hyperplasia
|
628 |
+
subm
|
629 |
+
feat
|
630 |
+
measures
|
631 |
+
##normal
|
632 |
+
##ian
|
633 |
+
abnormal
|
634 |
+
features
|
635 |
+
hist
|
636 |
+
iii
|
637 |
+
submandibular
|
638 |
+
petrous
|
639 |
+
7th
|
640 |
+
effusions
|
641 |
+
down
|
642 |
+
lac
|
643 |
+
sug
|
644 |
+
##og
|
645 |
+
history
|
646 |
+
suggest
|
647 |
+
extensive
|
648 |
+
8th
|
649 |
+
it
|
650 |
+
prob
|
651 |
+
mo
|
652 |
+
min
|
653 |
+
##wi
|
654 |
+
dwi
|
655 |
+
fur
|
656 |
+
##erum
|
657 |
+
lacerum
|
658 |
+
further
|
659 |
+
canals
|
660 |
+
##aps
|
661 |
+
##osis
|
662 |
+
enh
|
663 |
+
##here
|
664 |
+
##ip
|
665 |
+
##icular
|
666 |
+
##hy
|
667 |
+
any
|
668 |
+
just
|
669 |
+
pat
|
670 |
+
t3
|
671 |
+
com
|
672 |
+
invad
|
673 |
+
lymphoid
|
674 |
+
##der
|
675 |
+
anterior
|
676 |
+
where
|
677 |
+
bony
|
678 |
+
##apsular
|
679 |
+
fl
|
680 |
+
##val
|
681 |
+
extrac
|
682 |
+
vid
|
683 |
+
vidian
|
684 |
+
##ex
|
685 |
+
due
|
686 |
+
apex
|
687 |
+
spec
|
688 |
+
specific
|
689 |
+
##dy
|
690 |
+
##ult
|
691 |
+
##unc
|
692 |
+
comp
|
693 |
+
extracapsular
|
694 |
+
nil
|
695 |
+
##iz
|
696 |
+
fissure
|
697 |
+
##unction
|
698 |
+
##oor
|
699 |
+
sup
|
700 |
+
##ra
|
701 |
+
junction
|
702 |
+
clin
|
703 |
+
chains
|
704 |
+
##ept
|
705 |
+
largest
|
706 |
+
clinical
|
707 |
+
below
|
708 |
+
med
|
709 |
+
##ew
|
710 |
+
##act
|
711 |
+
more
|
712 |
+
##ina
|
713 |
+
floor
|
714 |
+
body
|
715 |
+
##ated
|
716 |
+
fr
|
717 |
+
sl
|
718 |
+
bilaterally
|
719 |
+
##bral
|
720 |
+
foramina
|
721 |
+
by
|
722 |
+
present
|
723 |
+
##ct
|
724 |
+
##avicular
|
725 |
+
supra
|
726 |
+
slight
|
727 |
+
##clavicular
|
728 |
+
dis
|
729 |
+
##ever
|
730 |
+
how
|
731 |
+
oval
|
732 |
+
supraclavicular
|
733 |
+
however
|
734 |
+
medial
|
735 |
+
mar
|
736 |
+
tumor
|
737 |
+
alth
|
738 |
+
although
|
739 |
+
##se
|
740 |
+
slightly
|
741 |
+
##sib
|
742 |
+
possib
|
743 |
+
##ancement
|
744 |
+
##ay
|
745 |
+
enhancement
|
746 |
+
maxillary
|
747 |
+
large
|
748 |
+
##ely
|
749 |
+
normal
|
750 |
+
##tebral
|
751 |
+
ovale
|
752 |
+
maxim
|
753 |
+
cle
|
754 |
+
involves
|
755 |
+
bone
|
756 |
+
clear
|
757 |
+
##ound
|
758 |
+
##st
|
759 |
+
mult
|
760 |
+
musc
|
761 |
+
##iff
|
762 |
+
##rect
|
763 |
+
glands
|
764 |
+
direct
|
765 |
+
##ably
|
766 |
+
muscle
|
767 |
+
these
|
768 |
+
necr
|
769 |
+
##ell
|
770 |
+
cent
|
771 |
+
sides
|
772 |
+
carotid
|
773 |
+
##veral
|
774 |
+
cric
|
775 |
+
several
|
776 |
+
fol
|
777 |
+
may
|
778 |
+
cricoid
|
779 |
+
super
|
780 |
+
minor
|
781 |
+
follow
|
782 |
+
ner
|
783 |
+
##ension
|
784 |
+
lik
|
785 |
+
nerve
|
786 |
+
diff
|
787 |
+
##agn
|
788 |
+
dim
|
789 |
+
##reat
|
790 |
+
dimension
|
791 |
+
cy
|
792 |
+
##otu
|
793 |
+
maximum
|
794 |
+
cyst
|
795 |
+
##athy
|
796 |
+
##acent
|
797 |
+
rotu
|
798 |
+
##line
|
799 |
+
##jacent
|
800 |
+
##ndum
|
801 |
+
adjacent
|
802 |
+
rotundum
|
803 |
+
##til
|
804 |
+
cartil
|
805 |
+
probably
|
806 |
+
likely
|
807 |
+
##tain
|
808 |
+
##opathy
|
809 |
+
##ung
|
810 |
+
cartilage
|
811 |
+
deep
|
812 |
+
##omax
|
813 |
+
##omaxillary
|
814 |
+
##aden
|
815 |
+
pterygomaxillary
|
816 |
+
t3n
|
817 |
+
lung
|
818 |
+
cons
|
819 |
+
from
|
820 |
+
great
|
821 |
+
bor
|
822 |
+
##adenopathy
|
823 |
+
border
|
824 |
+
apic
|
825 |
+
t4
|
826 |
+
lymphadenopathy
|
827 |
+
##iple
|
828 |
+
multiple
|
829 |
+
apices
|
830 |
+
##loss
|
831 |
+
##ost
|
832 |
+
##cliv
|
833 |
+
##ogloss
|
834 |
+
##oglossal
|
835 |
+
mat
|
836 |
+
##aging
|
837 |
+
greater
|
838 |
+
##clival
|
839 |
+
that
|
840 |
+
gen
|
841 |
+
general
|
842 |
+
hypoglossal
|
843 |
+
##uring
|
844 |
+
measuring
|
845 |
+
##ld
|
846 |
+
cranial
|
847 |
+
##reening
|
848 |
+
screening
|
849 |
+
fossae
|
850 |
+
new
|
851 |
+
so
|
852 |
+
change
|
853 |
+
##onent
|
854 |
+
##ormed
|
855 |
+
component
|
856 |
+
staging
|
857 |
+
invades
|
858 |
+
addition
|
859 |
+
superior
|
860 |
+
t1n
|
861 |
+
spine
|
862 |
+
mas
|
863 |
+
sit
|
864 |
+
sept
|
865 |
+
clival
|
866 |
+
##ose
|
867 |
+
orbital
|
868 |
+
following
|
869 |
+
septum
|
870 |
+
##ould
|
871 |
+
prever
|
872 |
+
mass
|
873 |
+
prevertebral
|
874 |
+
lies
|
875 |
+
##row
|
876 |
+
##ient
|
877 |
+
##ual
|
878 |
+
patient
|
879 |
+
##ized
|
880 |
+
soft
|
881 |
+
most
|
882 |
+
possible
|
883 |
+
generalized
|
884 |
+
sites
|
885 |
+
##uding
|
886 |
+
##red
|
887 |
+
matt
|
888 |
+
lob
|
889 |
+
incl
|
890 |
+
including
|
891 |
+
suggested
|
892 |
+
pal
|
893 |
+
##ger
|
894 |
+
iv
|
895 |
+
per
|
896 |
+
va
|
897 |
+
##ons
|
898 |
+
tiss
|
899 |
+
unilateral
|
900 |
+
num
|
901 |
+
##ease
|
902 |
+
##2m0
|
903 |
+
##ially
|
904 |
+
larger
|
905 |
+
dur
|
906 |
+
disease
|
907 |
+
enc
|
908 |
+
##ocal
|
909 |
+
shows
|
910 |
+
##omastoid
|
911 |
+
##use
|
912 |
+
##enm
|
913 |
+
ros
|
914 |
+
rosenm
|
915 |
+
##ule
|
916 |
+
stud
|
917 |
+
study
|
918 |
+
rec
|
919 |
+
rep
|
920 |
+
close
|
921 |
+
ca
|
922 |
+
ple
|
923 |
+
wr
|
924 |
+
diagn
|
925 |
+
marrow
|
926 |
+
nodule
|
927 |
+
informed
|
928 |
+
lobe
|
929 |
+
represent
|
930 |
+
##sy
|
931 |
+
##ome
|
932 |
+
consent
|
933 |
+
extending
|
934 |
+
probable
|
935 |
+
##1m0
|
936 |
+
necrosis
|
937 |
+
##itten
|
938 |
+
inferiorly
|
939 |
+
written
|
940 |
+
##metr
|
941 |
+
##ymmetr
|
942 |
+
mark
|
943 |
+
thr
|
944 |
+
marked
|
945 |
+
##ross
|
946 |
+
rem
|
947 |
+
through
|
948 |
+
##moid
|
949 |
+
##ases
|
950 |
+
##imal
|
951 |
+
borderline
|
952 |
+
confin
|
953 |
+
some
|
954 |
+
##ately
|
955 |
+
aden
|
956 |
+
##yr
|
957 |
+
appears
|
958 |
+
##ogen
|
959 |
+
##iop
|
960 |
+
##ature
|
961 |
+
##thmoid
|
962 |
+
measure
|
963 |
+
artery
|
964 |
+
ethmoid
|
965 |
+
im
|
966 |
+
##eous
|
967 |
+
minimal
|
968 |
+
biop
|
969 |
+
m0
|
970 |
+
##ove
|
971 |
+
preclival
|
972 |
+
confined
|
973 |
+
nature
|
974 |
+
tons
|
975 |
+
part
|
976 |
+
##et
|
977 |
+
palate
|
978 |
+
biopsy
|
979 |
+
ot
|
980 |
+
involved
|
981 |
+
patc
|
982 |
+
t4n
|
983 |
+
##yroid
|
984 |
+
otomastoid
|
985 |
+
well
|
986 |
+
heter
|
987 |
+
clus
|
988 |
+
patchy
|
989 |
+
do
|
990 |
+
res
|
991 |
+
##od
|
992 |
+
##inal
|
993 |
+
heterogen
|
994 |
+
cluster
|
995 |
+
ct
|
996 |
+
vb
|
997 |
+
react
|
998 |
+
anteriorly
|
999 |
+
remain
|
1000 |
+
reactive
|
1001 |
+
case
|
1002 |
+
tonsil
|
1003 |
+
##ch
|
1004 |
+
excluded
|
1005 |
+
##ade
|
1006 |
+
ha
|
1007 |
+
##erous
|
1008 |
+
##iltr
|
1009 |
+
##uller
|
1010 |
+
siz
|
1011 |
+
infiltr
|
1012 |
+
marg
|
1013 |
+
numerous
|
1014 |
+
rosenmuller
|
1015 |
+
##nific
|
1016 |
+
##cer
|
1017 |
+
##cept
|
1018 |
+
thyroid
|
1019 |
+
signific
|
1020 |
+
above
|
1021 |
+
diffuse
|
1022 |
+
size
|
1023 |
+
gross
|
1024 |
+
does
|
1025 |
+
margin
|
1026 |
+
over
|
1027 |
+
tissue
|
1028 |
+
please
|
1029 |
+
##ile
|
1030 |
+
made
|
1031 |
+
metastasis
|
1032 |
+
posteriorly
|
1033 |
+
##eping
|
1034 |
+
adenoid
|
1035 |
+
ke
|
1036 |
+
keeping
|
1037 |
+
main
|
1038 |
+
site
|
1039 |
+
around
|
1040 |
+
dura
|
1041 |
+
##usual
|
1042 |
+
area
|
1043 |
+
unusual
|
1044 |
+
cann
|
1045 |
+
cannot
|
1046 |
+
c1
|
1047 |
+
palatine
|
1048 |
+
##ro
|
1049 |
+
uncer
|
1050 |
+
while
|
1051 |
+
uncertain
|
1052 |
+
except
|
1053 |
+
pet
|
1054 |
+
high
|
1055 |
+
len
|
1056 |
+
##gth
|
1057 |
+
cont
|
1058 |
+
length
|
1059 |
+
within
|
1060 |
+
central
|
1061 |
+
heterogeneous
|
1062 |
+
br
|
1063 |
+
ph
|
1064 |
+
##iew
|
1065 |
+
suggesting
|
1066 |
+
pharyn
|
1067 |
+
bases
|
1068 |
+
##ran
|
1069 |
+
mainly
|
1070 |
+
espec
|
1071 |
+
especially
|
1072 |
+
##ere
|
1073 |
+
##ach
|
1074 |
+
proc
|
1075 |
+
matted
|
1076 |
+
process
|
1077 |
+
##les
|
1078 |
+
spinal
|
1079 |
+
##ache
|
1080 |
+
diagnosis
|
1081 |
+
##otic
|
1082 |
+
mm
|
1083 |
+
##0m0
|
1084 |
+
spir
|
1085 |
+
air
|
1086 |
+
##ting
|
1087 |
+
intrac
|
1088 |
+
view
|
1089 |
+
cong
|
1090 |
+
pres
|
1091 |
+
##vious
|
1092 |
+
##ymmetrical
|
1093 |
+
have
|
1094 |
+
intracran
|
1095 |
+
##lom
|
1096 |
+
than
|
1097 |
+
enhanc
|
1098 |
+
conglom
|
1099 |
+
conglomer
|
1100 |
+
ve
|
1101 |
+
##ies
|
1102 |
+
laterally
|
1103 |
+
intracranial
|
1104 |
+
ret
|
1105 |
+
deg
|
1106 |
+
les
|
1107 |
+
spar
|
1108 |
+
lesion
|
1109 |
+
##oan
|
1110 |
+
vein
|
1111 |
+
could
|
1112 |
+
she
|
1113 |
+
##rel
|
1114 |
+
##ath
|
1115 |
+
choan
|
1116 |
+
remainder
|
1117 |
+
full
|
1118 |
+
focal
|
1119 |
+
##ty
|
1120 |
+
##enc
|
1121 |
+
correl
|
1122 |
+
fill
|
1123 |
+
necrotic
|
1124 |
+
centred
|
1125 |
+
has
|
1126 |
+
loc
|
1127 |
+
##ention
|
1128 |
+
access
|
1129 |
+
abutting
|
1130 |
+
appro
|
1131 |
+
enhancing
|
1132 |
+
##xim
|
1133 |
+
##ages
|
1134 |
+
##asc
|
1135 |
+
##ect
|
1136 |
+
##tric
|
1137 |
+
##ll
|
1138 |
+
retention
|
1139 |
+
approxim
|
1140 |
+
approximately
|
1141 |
+
##ural
|
1142 |
+
none
|
1143 |
+
images
|
1144 |
+
brain
|
1145 |
+
accessory
|
1146 |
+
##oph
|
1147 |
+
##qu
|
1148 |
+
they
|
1149 |
+
##ard
|
1150 |
+
triangles
|
1151 |
+
significance
|
1152 |
+
op
|
1153 |
+
infiltration
|
1154 |
+
cell
|
1155 |
+
ob
|
1156 |
+
##emporal
|
1157 |
+
##fact
|
1158 |
+
secre
|
1159 |
+
##tefact
|
1160 |
+
artefact
|
1161 |
+
long
|
1162 |
+
vol
|
1163 |
+
##ume
|
1164 |
+
##clude
|
1165 |
+
directly
|
1166 |
+
sheath
|
1167 |
+
cells
|
1168 |
+
volume
|
1169 |
+
scl
|
1170 |
+
##ging
|
1171 |
+
##ort
|
1172 |
+
petro
|
1173 |
+
scler
|
1174 |
+
c2
|
1175 |
+
palat
|
1176 |
+
##air
|
1177 |
+
bulges
|
1178 |
+
##em
|
1179 |
+
##gether
|
1180 |
+
extr
|
1181 |
+
magn
|
1182 |
+
together
|
1183 |
+
midline
|
1184 |
+
previous
|
1185 |
+
mildly
|
1186 |
+
seen
|
1187 |
+
cysts
|
1188 |
+
loss
|
1189 |
+
##ini
|
1190 |
+
##itary
|
1191 |
+
matting
|
1192 |
+
tu
|
1193 |
+
##ont
|
1194 |
+
suspicion
|
1195 |
+
bulging
|
1196 |
+
##plac
|
1197 |
+
appearance
|
1198 |
+
secretions
|
1199 |
+
tub
|
1200 |
+
##tic
|
1201 |
+
inc
|
1202 |
+
##ign
|
1203 |
+
vertebral
|
1204 |
+
recess
|
1205 |
+
petroclival
|
1206 |
+
magnum
|
1207 |
+
fasc
|
1208 |
+
pit
|
1209 |
+
##uitary
|
1210 |
+
##sess
|
1211 |
+
##3m0
|
1212 |
+
assess
|
1213 |
+
choana
|
1214 |
+
palatini
|
1215 |
+
pituitary
|
1216 |
+
3cm
|
1217 |
+
symmetrical
|
1218 |
+
intr
|
1219 |
+
fascia
|
1220 |
+
fair
|
1221 |
+
n1
|
1222 |
+
vel
|
1223 |
+
##mental
|
1224 |
+
located
|
1225 |
+
sclerosis
|
1226 |
+
fairly
|
1227 |
+
veli
|
1228 |
+
2cm
|
1229 |
+
##x1
|
1230 |
+
##ances
|
1231 |
+
appearances
|
1232 |
+
encase
|
1233 |
+
##ence
|
1234 |
+
spared
|
1235 |
+
##ophy
|
1236 |
+
fs
|
1237 |
+
##ven
|
1238 |
+
should
|
1239 |
+
superiorly
|
1240 |
+
degr
|
1241 |
+
tr
|
1242 |
+
tur
|
1243 |
+
##icult
|
1244 |
+
##ensity
|
1245 |
+
##erved
|
1246 |
+
difficult
|
1247 |
+
newly
|
1248 |
+
preserved
|
1249 |
+
5cm
|
1250 |
+
v3
|
1251 |
+
##ore
|
1252 |
+
##ilar
|
1253 |
+
axis
|
1254 |
+
##ineural
|
1255 |
+
turb
|
1256 |
+
temporal
|
1257 |
+
##uous
|
1258 |
+
##astric
|
1259 |
+
##ator
|
1260 |
+
caus
|
1261 |
+
correlation
|
1262 |
+
##ered
|
1263 |
+
##iated
|
1264 |
+
poster
|
1265 |
+
##ongue
|
1266 |
+
perineural
|
1267 |
+
degrad
|
1268 |
+
por
|
1269 |
+
##arotid
|
1270 |
+
##tern
|
1271 |
+
##igastric
|
1272 |
+
fatty
|
1273 |
+
##uct
|
1274 |
+
spaces
|
1275 |
+
highly
|
1276 |
+
##nt
|
1277 |
+
##ental
|
1278 |
+
defined
|
1279 |
+
invade
|
1280 |
+
t3n2m0
|
1281 |
+
tongue
|
1282 |
+
und
|
1283 |
+
##ates
|
1284 |
+
intensity
|
1285 |
+
pro
|
1286 |
+
contin
|
1287 |
+
##lying
|
1288 |
+
jugul
|
1289 |
+
displac
|
1290 |
+
degraded
|
1291 |
+
portion
|
1292 |
+
##ues
|
1293 |
+
few
|
1294 |
+
abnormality
|
1295 |
+
invaded
|
1296 |
+
##ontal
|
1297 |
+
6cm
|
1298 |
+
po
|
1299 |
+
vess
|
1300 |
+
##fore
|
1301 |
+
short
|
1302 |
+
submental
|
1303 |
+
see
|
1304 |
+
tonsils
|
1305 |
+
##aches
|
1306 |
+
vessel
|
1307 |
+
pl
|
1308 |
+
exclude
|
1309 |
+
t1n0m0
|
1310 |
+
particular
|
1311 |
+
pharyngeal
|
1312 |
+
jugulod
|
1313 |
+
foc
|
1314 |
+
##int
|
1315 |
+
##osed
|
1316 |
+
rel
|
1317 |
+
intact
|
1318 |
+
##udal
|
1319 |
+
longus
|
1320 |
+
jugulodigastric
|
1321 |
+
retain
|
1322 |
+
oropharyngeal
|
1323 |
+
being
|
1324 |
+
possibly
|
1325 |
+
tin
|
1326 |
+
##ative
|
1327 |
+
therefore
|
1328 |
+
##ility
|
1329 |
+
##ack
|
1330 |
+
regard
|
1331 |
+
recent
|
1332 |
+
regarded
|
1333 |
+
eval
|
1334 |
+
sur
|
1335 |
+
ul
|
1336 |
+
represents
|
1337 |
+
rest
|
1338 |
+
evalu
|
1339 |
+
7cm
|
1340 |
+
cere
|
1341 |
+
n2
|
1342 |
+
##vator
|
1343 |
+
##ities
|
1344 |
+
levator
|
1345 |
+
##ress
|
1346 |
+
iia
|
1347 |
+
t3n1m0
|
1348 |
+
conglomeration
|
1349 |
+
end
|
1350 |
+
occ
|
1351 |
+
round
|
1352 |
+
tip
|
1353 |
+
##ased
|
1354 |
+
contain
|
1355 |
+
orbits
|
1356 |
+
invading
|
1357 |
+
disc
|
1358 |
+
diagnosed
|
1359 |
+
opac
|
1360 |
+
tiny
|
1361 |
+
asymmetr
|
1362 |
+
moder
|
1363 |
+
partially
|
1364 |
+
particularly
|
1365 |
+
if
|
1366 |
+
mer
|
1367 |
+
##ire
|
1368 |
+
##tire
|
1369 |
+
entire
|
1370 |
+
dural
|
1371 |
+
retained
|
1372 |
+
moderate
|
1373 |
+
eust
|
1374 |
+
mal
|
1375 |
+
##pect
|
1376 |
+
##ail
|
1377 |
+
t2n
|
1378 |
+
frontal
|
1379 |
+
additional
|
1380 |
+
tissues
|
1381 |
+
##achian
|
1382 |
+
under
|
1383 |
+
eustachian
|
1384 |
+
malign
|
1385 |
+
10
|
1386 |
+
2m0
|
1387 |
+
##asilar
|
1388 |
+
reaches
|
1389 |
+
filling
|
1390 |
+
extra
|
1391 |
+
encasement
|
1392 |
+
evaluation
|
1393 |
+
ev
|
1394 |
+
str
|
1395 |
+
##ciated
|
1396 |
+
##x2
|
1397 |
+
##asound
|
1398 |
+
##entr
|
1399 |
+
##trasound
|
1400 |
+
##olateral
|
1401 |
+
incid
|
1402 |
+
ultrasound
|
1403 |
+
mandib
|
1404 |
+
v2
|
1405 |
+
##ber
|
1406 |
+
##iter
|
1407 |
+
reach
|
1408 |
+
one
|
1409 |
+
##ense
|
1410 |
+
tube
|
1411 |
+
##intense
|
1412 |
+
incidental
|
1413 |
+
mandible
|
1414 |
+
4cm
|
1415 |
+
prot
|
1416 |
+
caudal
|
1417 |
+
pharyng
|
1418 |
+
processes
|
1419 |
+
conglomerate
|
1420 |
+
##ise
|
1421 |
+
extent
|
1422 |
+
##obasilar
|
1423 |
+
possibility
|
1424 |
+
perf
|
1425 |
+
causing
|
1426 |
+
malignant
|
1427 |
+
evid
|
1428 |
+
pharyngobasilar
|
1429 |
+
12
|
1430 |
+
tens
|
1431 |
+
##uid
|
1432 |
+
##osc
|
1433 |
+
only
|
1434 |
+
form
|
1435 |
+
scf
|
1436 |
+
hem
|
1437 |
+
##sociated
|
1438 |
+
associated
|
1439 |
+
abnormalities
|
1440 |
+
##odular
|
1441 |
+
obs
|
1442 |
+
proven
|
1443 |
+
underlying
|
1444 |
+
performed
|
1445 |
+
tensor
|
1446 |
+
1cm
|
1447 |
+
ic
|
1448 |
+
ne
|
1449 |
+
##ring
|
1450 |
+
##edi
|
1451 |
+
##lete
|
1452 |
+
adv
|
1453 |
+
##ocol
|
1454 |
+
compress
|
1455 |
+
t1n1m0
|
1456 |
+
perip
|
1457 |
+
number
|
1458 |
+
protocol
|
1459 |
+
ln
|
1460 |
+
less
|
1461 |
+
mot
|
1462 |
+
##pos
|
1463 |
+
##01
|
1464 |
+
exophy
|
1465 |
+
apical
|
1466 |
+
complete
|
1467 |
+
endosc
|
1468 |
+
entirely
|
1469 |
+
ica
|
1470 |
+
exophytic
|
1471 |
+
cc
|
1472 |
+
mec
|
1473 |
+
##wise
|
1474 |
+
##arct
|
1475 |
+
##ules
|
1476 |
+
infarct
|
1477 |
+
otherwise
|
1478 |
+
suggestive
|
1479 |
+
maximal
|
1480 |
+
centered
|
1481 |
+
posterolateral
|
1482 |
+
related
|
1483 |
+
contains
|
1484 |
+
8mm
|
1485 |
+
ac
|
1486 |
+
equ
|
1487 |
+
n0
|
1488 |
+
##fic
|
1489 |
+
##kel
|
1490 |
+
##inodular
|
1491 |
+
##ital
|
1492 |
+
nodules
|
1493 |
+
##ised
|
1494 |
+
##ising
|
1495 |
+
exp
|
1496 |
+
smaller
|
1497 |
+
scar
|
1498 |
+
##amus
|
1499 |
+
##ivocal
|
1500 |
+
##anced
|
1501 |
+
##ification
|
1502 |
+
compar
|
1503 |
+
multinodular
|
1504 |
+
superfic
|
1505 |
+
encases
|
1506 |
+
throughout
|
1507 |
+
significant
|
1508 |
+
evidence
|
1509 |
+
advanced
|
1510 |
+
motion
|
1511 |
+
meckel
|
1512 |
+
equivocal
|
1513 |
+
8cm
|
1514 |
+
imm
|
1515 |
+
ins
|
1516 |
+
##astic
|
1517 |
+
sphenopalatine
|
1518 |
+
##epar
|
1519 |
+
mucosa
|
1520 |
+
t1n2m0
|
1521 |
+
rounded
|
1522 |
+
##ediately
|
1523 |
+
scarring
|
1524 |
+
immediately
|
1525 |
+
red
|
1526 |
+
##×2
|
1527 |
+
##reg
|
1528 |
+
##inates
|
1529 |
+
##aparotid
|
1530 |
+
fluid
|
1531 |
+
##ema
|
1532 |
+
asymmetry
|
1533 |
+
obstr
|
1534 |
+
5mm
|
1535 |
+
fav
|
1536 |
+
ir
|
1537 |
+
ib
|
1538 |
+
stern
|
1539 |
+
ts
|
1540 |
+
##round
|
1541 |
+
##tle
|
1542 |
+
##rete
|
1543 |
+
includ
|
1544 |
+
##itis
|
1545 |
+
##lyp
|
1546 |
+
such
|
1547 |
+
subtle
|
1548 |
+
cave
|
1549 |
+
assessment
|
1550 |
+
intraparotid
|
1551 |
+
turbinate
|
1552 |
+
turbinates
|
1553 |
+
continuous
|
1554 |
+
polyp
|
1555 |
+
discrete
|
1556 |
+
##regular
|
1557 |
+
irregular
|
1558 |
+
includes
|
1559 |
+
3n
|
1560 |
+
rat
|
1561 |
+
##nown
|
1562 |
+
##×3
|
1563 |
+
##idual
|
1564 |
+
cord
|
1565 |
+
cranioc
|
1566 |
+
enlargement
|
1567 |
+
cystic
|
1568 |
+
t4n2m0
|
1569 |
+
##acheal
|
1570 |
+
occip
|
1571 |
+
opacification
|
1572 |
+
merges
|
1573 |
+
superficial
|
1574 |
+
rather
|
1575 |
+
7mm
|
1576 |
+
aer
|
1577 |
+
des
|
1578 |
+
ramus
|
1579 |
+
##ide
|
1580 |
+
conf
|
1581 |
+
##ibr
|
1582 |
+
hyperintense
|
1583 |
+
arch
|
1584 |
+
##erent
|
1585 |
+
intra
|
1586 |
+
ag
|
1587 |
+
ben
|
1588 |
+
was
|
1589 |
+
##ted
|
1590 |
+
##ful
|
1591 |
+
##ating
|
1592 |
+
##oup
|
1593 |
+
##omy
|
1594 |
+
external
|
1595 |
+
condy
|
1596 |
+
retros
|
1597 |
+
##opy
|
1598 |
+
##opl
|
1599 |
+
clinically
|
1600 |
+
##odal
|
1601 |
+
surround
|
1602 |
+
6mm
|
1603 |
+
fn
|
1604 |
+
known
|
1605 |
+
##racheal
|
1606 |
+
##atracheal
|
1607 |
+
##idomastoid
|
1608 |
+
areas
|
1609 |
+
##leidomastoid
|
1610 |
+
##isp
|
1611 |
+
paratracheal
|
1612 |
+
##ocleidomastoid
|
1613 |
+
lie
|
1614 |
+
incre
|
1615 |
+
cerebral
|
1616 |
+
##entric
|
1617 |
+
periparotid
|
1618 |
+
endoscopy
|
1619 |
+
sternocleidomastoid
|
1620 |
+
11
|
1621 |
+
back
|
1622 |
+
fast
|
1623 |
+
fibr
|
1624 |
+
nerv
|
1625 |
+
out
|
1626 |
+
ra
|
1627 |
+
rim
|
1628 |
+
would
|
1629 |
+
##ank
|
1630 |
+
##olog
|
1631 |
+
thin
|
1632 |
+
those
|
1633 |
+
det
|
1634 |
+
depos
|
1635 |
+
cross
|
1636 |
+
been
|
1637 |
+
asymmetrical
|
1638 |
+
frank
|
1639 |
+
consid
|
1640 |
+
consist
|
1641 |
+
haem
|
1642 |
+
correlate
|
1643 |
+
extran
|
1644 |
+
foci
|
1645 |
+
focus
|
1646 |
+
##pective
|
1647 |
+
completely
|
1648 |
+
favour
|
1649 |
+
occipital
|
1650 |
+
nerves
|
1651 |
+
deposit
|
1652 |
+
13
|
1653 |
+
c3
|
1654 |
+
local
|
1655 |
+
tor
|
1656 |
+
us
|
1657 |
+
##ning
|
1658 |
+
##ying
|
1659 |
+
##bed
|
1660 |
+
##4mm
|
1661 |
+
white
|
1662 |
+
iib
|
1663 |
+
sequ
|
1664 |
+
supr
|
1665 |
+
matter
|
1666 |
+
t4n1m0
|
1667 |
+
contig
|
1668 |
+
extranodal
|
1669 |
+
line
|
1670 |
+
ma
|
1671 |
+
##mend
|
1672 |
+
##most
|
1673 |
+
indent
|
1674 |
+
##enous
|
1675 |
+
##ommend
|
1676 |
+
almost
|
1677 |
+
##ameter
|
1678 |
+
criter
|
1679 |
+
reporting
|
1680 |
+
diameter
|
1681 |
+
encased
|
1682 |
+
recommend
|
1683 |
+
residual
|
1684 |
+
overall
|
1685 |
+
continu
|
1686 |
+
again
|
1687 |
+
fnac
|
1688 |
+
contiguous
|
1689 |
+
criteria
|
1690 |
+
0cm
|
1691 |
+
ed
|
1692 |
+
stat
|
1693 |
+
venous
|
1694 |
+
##icated
|
1695 |
+
##vement
|
1696 |
+
subc
|
1697 |
+
##tex
|
1698 |
+
movement
|
1699 |
+
t3n1
|
1700 |
+
filled
|
1701 |
+
track
|
1702 |
+
hemisp
|
1703 |
+
across
|
1704 |
+
expand
|
1705 |
+
9cm
|
1706 |
+
c5
|
1707 |
+
capsular
|
1708 |
+
den
|
1709 |
+
ill
|
1710 |
+
n3
|
1711 |
+
##ius
|
1712 |
+
##ioma
|
1713 |
+
##pical
|
1714 |
+
##tical
|
1715 |
+
##ause
|
1716 |
+
##bra
|
1717 |
+
##5mm
|
1718 |
+
include
|
1719 |
+
##est
|
1720 |
+
##icul
|
1721 |
+
##trophy
|
1722 |
+
##olar
|
1723 |
+
verte
|
1724 |
+
arter
|
1725 |
+
foraminae
|
1726 |
+
presum
|
1727 |
+
10mm
|
1728 |
+
torus
|
1729 |
+
denerv
|
1730 |
+
vertebra
|
1731 |
+
bec
|
1732 |
+
dil
|
1733 |
+
gr
|
1734 |
+
nar
|
1735 |
+
##cri
|
1736 |
+
##ste
|
1737 |
+
##ener
|
1738 |
+
##aneous
|
1739 |
+
##ount
|
1740 |
+
identify
|
1741 |
+
##uell
|
1742 |
+
bet
|
1743 |
+
medially
|
1744 |
+
t3n3m0
|
1745 |
+
rosenmuell
|
1746 |
+
degener
|
1747 |
+
obvious
|
1748 |
+
pole
|
1749 |
+
cereb
|
1750 |
+
insepar
|
1751 |
+
retrospective
|
1752 |
+
consistent
|
1753 |
+
linear
|
1754 |
+
continuity
|
1755 |
+
status
|
1756 |
+
arteries
|
1757 |
+
denervation
|
1758 |
+
narrow
|
1759 |
+
##cribed
|
1760 |
+
rosenmueller
|
1761 |
+
inseparable
|
1762 |
+
am
|
1763 |
+
dri
|
1764 |
+
ventric
|
1765 |
+
##up
|
1766 |
+
##mon
|
1767 |
+
##to
|
1768 |
+
##ypical
|
1769 |
+
nodular
|
1770 |
+
##utaneous
|
1771 |
+
arising
|
1772 |
+
generalised
|
1773 |
+
periv
|
1774 |
+
clusters
|
1775 |
+
benign
|
1776 |
+
subcutaneous
|
1777 |
+
because
|
1778 |
+
cerebell
|
1779 |
+
driven
|
1780 |
+
3m0
|
1781 |
+
9mm
|
1782 |
+
duct
|
1783 |
+
man
|
1784 |
+
oed
|
1785 |
+
sim
|
1786 |
+
##iast
|
1787 |
+
##x3
|
1788 |
+
##6mm
|
1789 |
+
##arius
|
1790 |
+
inter
|
1791 |
+
##ace
|
1792 |
+
onto
|
1793 |
+
hypopl
|
1794 |
+
patent
|
1795 |
+
mediast
|
1796 |
+
adenoma
|
1797 |
+
partial
|
1798 |
+
choanal
|
1799 |
+
##ences
|
1800 |
+
##llar
|
1801 |
+
tubarius
|
1802 |
+
displacing
|
1803 |
+
##ails
|
1804 |
+
infarcts
|
1805 |
+
compared
|
1806 |
+
obstruct
|
1807 |
+
polypoid
|
1808 |
+
condyle
|
1809 |
+
##ology
|
1810 |
+
details
|
1811 |
+
considered
|
1812 |
+
sequences
|
1813 |
+
recommended
|
1814 |
+
group
|
1815 |
+
many
|
1816 |
+
oedema
|
1817 |
+
gang
|
1818 |
+
hard
|
1819 |
+
loo
|
1820 |
+
pp
|
1821 |
+
poor
|
1822 |
+
via
|
1823 |
+
were
|
1824 |
+
##een
|
1825 |
+
##ce
|
1826 |
+
##jor
|
1827 |
+
##ween
|
1828 |
+
##ans
|
1829 |
+
##ection
|
1830 |
+
##osely
|
1831 |
+
closely
|
1832 |
+
##illa
|
1833 |
+
shap
|
1834 |
+
palsy
|
1835 |
+
image
|
1836 |
+
t4n3m0
|
1837 |
+
overlying
|
1838 |
+
sparing
|
1839 |
+
displace
|
1840 |
+
aerated
|
1841 |
+
surrounding
|
1842 |
+
major
|
1843 |
+
between
|
1844 |
+
degenerative
|
1845 |
+
similar
|
1846 |
+
gangl
|
1847 |
+
look
|
1848 |
+
aur
|
1849 |
+
dx
|
1850 |
+
lying
|
1851 |
+
sal
|
1852 |
+
##rh
|
1853 |
+
##ium
|
1854 |
+
orific
|
1855 |
+
##ivary
|
1856 |
+
extraction
|
1857 |
+
t3n2
|
1858 |
+
heterogenous
|
1859 |
+
remains
|
1860 |
+
plan
|
1861 |
+
strip
|
1862 |
+
neur
|
1863 |
+
posterolaterally
|
1864 |
+
craniocervical
|
1865 |
+
described
|
1866 |
+
indenting
|
1867 |
+
hypoplastic
|
1868 |
+
polypoidal
|
1869 |
+
poorly
|
1870 |
+
salivary
|
1871 |
+
201
|
1872 |
+
dental
|
1873 |
+
tw
|
1874 |
+
tent
|
1875 |
+
##yl
|
1876 |
+
##ler
|
1877 |
+
##hes
|
1878 |
+
##asm
|
1879 |
+
##orph
|
1880 |
+
##orrh
|
1881 |
+
##orium
|
1882 |
+
naso
|
1883 |
+
##asellar
|
1884 |
+
retropharynx
|
1885 |
+
##velop
|
1886 |
+
##otemporal
|
1887 |
+
still
|
1888 |
+
parapharynx
|
1889 |
+
definitely
|
1890 |
+
##uction
|
1891 |
+
atypical
|
1892 |
+
its
|
1893 |
+
diffusion
|
1894 |
+
t3n0m0
|
1895 |
+
t4n3
|
1896 |
+
t4n1
|
1897 |
+
branc
|
1898 |
+
location
|
1899 |
+
##ectomy
|
1900 |
+
optic
|
1901 |
+
recesses
|
1902 |
+
relative
|
1903 |
+
reaching
|
1904 |
+
##iculotemporal
|
1905 |
+
amount
|
1906 |
+
auriculotemporal
|
1907 |
+
two
|
1908 |
+
tentorium
|
1909 |
+
4mm
|
1910 |
+
av
|
1911 |
+
che
|
1912 |
+
dou
|
1913 |
+
when
|
1914 |
+
##ned
|
1915 |
+
##other
|
1916 |
+
##tful
|
1917 |
+
##yond
|
1918 |
+
##side
|
1919 |
+
##lu
|
1920 |
+
##liter
|
1921 |
+
##btful
|
1922 |
+
##×1
|
1923 |
+
##7mm
|
1924 |
+
##orbit
|
1925 |
+
##ula
|
1926 |
+
too
|
1927 |
+
##ution
|
1928 |
+
distal
|
1929 |
+
beyond
|
1930 |
+
infra
|
1931 |
+
t3n3
|
1932 |
+
t1n0
|
1933 |
+
imaging
|
1934 |
+
minimally
|
1935 |
+
restric
|
1936 |
+
fills
|
1937 |
+
obliter
|
1938 |
+
vessels
|
1939 |
+
##pected
|
1940 |
+
conflu
|
1941 |
+
increased
|
1942 |
+
outside
|
1943 |
+
haemorrh
|
1944 |
+
presumably
|
1945 |
+
orifice
|
1946 |
+
doubtful
|
1947 |
+
##orbital
|
1948 |
+
4n
|
1949 |
+
er
|
1950 |
+
el
|
1951 |
+
go
|
1952 |
+
mening
|
1953 |
+
mastic
|
1954 |
+
old
|
1955 |
+
##gment
|
1956 |
+
##ole
|
1957 |
+
##fs
|
1958 |
+
##way
|
1959 |
+
##erm
|
1960 |
+
##onic
|
1961 |
+
##inum
|
1962 |
+
##ench
|
1963 |
+
##igin
|
1964 |
+
replac
|
1965 |
+
##omal
|
1966 |
+
##trance
|
1967 |
+
parench
|
1968 |
+
corres
|
1969 |
+
scanned
|
1970 |
+
develop
|
1971 |
+
##otty
|
1972 |
+
entrance
|
1973 |
+
hypo
|
1974 |
+
##ible
|
1975 |
+
secondary
|
1976 |
+
thicker
|
1977 |
+
shotty
|
1978 |
+
indicated
|
1979 |
+
segment
|
1980 |
+
hypertrophy
|
1981 |
+
common
|
1982 |
+
t1n1
|
1983 |
+
masses
|
1984 |
+
##onstr
|
1985 |
+
cause
|
1986 |
+
occup
|
1987 |
+
asymmetric
|
1988 |
+
##entricular
|
1989 |
+
usg
|
1990 |
+
suprasellar
|
1991 |
+
narrowing
|
1992 |
+
mediastinum
|
1993 |
+
confluent
|
1994 |
+
parenchym
|
1995 |
+
corresp
|
1996 |
+
18
|
1997 |
+
3mm
|
1998 |
+
cove
|
1999 |
+
derm
|
2000 |
+
laryn
|
2001 |
+
n2m0
|
2002 |
+
tail
|
2003 |
+
war
|
2004 |
+
##eph
|
2005 |
+
##monstr
|
2006 |
+
##tif
|
2007 |
+
##lp
|
2008 |
+
##ind
|
2009 |
+
##itre
|
2010 |
+
##ither
|
2011 |
+
met
|
2012 |
+
##omorph
|
2013 |
+
##oll
|
2014 |
+
##achn
|
2015 |
+
invasive
|
2016 |
+
cortex
|
2017 |
+
whole
|
2018 |
+
help
|
2019 |
+
demonstr
|
2020 |
+
anter
|
2021 |
+
artif
|
2022 |
+
arachn
|
2023 |
+
##reatment
|
2024 |
+
encro
|
2025 |
+
pleural
|
2026 |
+
pleomorph
|
2027 |
+
result
|
2028 |
+
overt
|
2029 |
+
##ascular
|
2030 |
+
causes
|
2031 |
+
forming
|
2032 |
+
fibrosis
|
2033 |
+
raising
|
2034 |
+
cerebellar
|
2035 |
+
ganglia
|
2036 |
+
looking
|
2037 |
+
striped
|
2038 |
+
tooth
|
2039 |
+
goitre
|
2040 |
+
covered
|
2041 |
+
##ephal
|
2042 |
+
artifact
|
2043 |
+
arachnoid
|
2044 |
+
pleomorphic
|
2045 |
+
14mm
|
2046 |
+
21
|
2047 |
+
bil
|
2048 |
+
cis
|
2049 |
+
dated
|
2050 |
+
either
|
2051 |
+
mandibular
|
2052 |
+
pons
|
2053 |
+
rt
|
2054 |
+
##ner
|
2055 |
+
##ronic
|
2056 |
+
##poma
|
2057 |
+
##mic
|
2058 |
+
##tal
|
2059 |
+
##aem
|
2060 |
+
##audal
|
2061 |
+
##atal
|
2062 |
+
##atible
|
2063 |
+
##usely
|
2064 |
+
##ulated
|
2065 |
+
##ises
|
2066 |
+
##vere
|
2067 |
+
unit
|
2068 |
+
chronic
|
2069 |
+
cortical
|
2070 |
+
##rimal
|
2071 |
+
severe
|
2072 |
+
lipoma
|
2073 |
+
showing
|
2074 |
+
pattern
|
2075 |
+
compatible
|
2076 |
+
different
|
2077 |
+
diffusely
|
2078 |
+
components
|
2079 |
+
t1n2
|
2080 |
+
t4n2
|
2081 |
+
opening
|
2082 |
+
merge
|
2083 |
+
t2n1m0
|
2084 |
+
struct
|
2085 |
+
compression
|
2086 |
+
3n2m0
|
2087 |
+
craniocaudal
|
2088 |
+
crosses
|
2089 |
+
13mm
|
2090 |
+
hemisphere
|
2091 |
+
vertebrae
|
2092 |
+
periventricular
|
2093 |
+
obstructed
|
2094 |
+
infraorbital
|
2095 |
+
developmental
|
2096 |
+
correspond
|
2097 |
+
helpful
|
2098 |
+
20
|
2099 |
+
22
|
2100 |
+
band
|
2101 |
+
co
|
2102 |
+
dd
|
2103 |
+
em
|
2104 |
+
hor
|
2105 |
+
ij
|
2106 |
+
ller
|
2107 |
+
n0m0
|
2108 |
+
ov
|
2109 |
+
oste
|
2110 |
+
separ
|
2111 |
+
wing
|
2112 |
+
##opic
|
2113 |
+
##ved
|
2114 |
+
##3mm
|
2115 |
+
##ward
|
2116 |
+
##atation
|
2117 |
+
isch
|
2118 |
+
total
|
2119 |
+
spond
|
2120 |
+
##ified
|
2121 |
+
##thin
|
2122 |
+
scans
|
2123 |
+
##irc
|
2124 |
+
##ymp
|
2125 |
+
suscept
|
2126 |
+
##ibility
|
2127 |
+
mucous
|
2128 |
+
bulge
|
2129 |
+
prominence
|
2130 |
+
aspects
|
2131 |
+
sell
|
2132 |
+
inflammation
|
2133 |
+
##earch
|
2134 |
+
##ifferent
|
2135 |
+
lobulated
|
2136 |
+
##omeatal
|
2137 |
+
research
|
2138 |
+
contact
|
2139 |
+
airway
|
2140 |
+
artefacts
|
2141 |
+
##ontine
|
2142 |
+
undifferent
|
2143 |
+
##ailable
|
2144 |
+
hemith
|
2145 |
+
lns
|
2146 |
+
increase
|
2147 |
+
dilatation
|
2148 |
+
ventricles
|
2149 |
+
##ylosis
|
2150 |
+
relatively
|
2151 |
+
masticator
|
2152 |
+
parenchymal
|
2153 |
+
dermat
|
2154 |
+
warthin
|
2155 |
+
cistern
|
2156 |
+
ddx
|
2157 |
+
ovoid
|
2158 |
+
##wards
|
2159 |
+
ischaem
|
2160 |
+
spondylosis
|
2161 |
+
susceptibility
|
2162 |
+
sella
|
2163 |
+
undifferentiated
|
2164 |
+
bas
|
2165 |
+
ball
|
2166 |
+
c4
|
2167 |
+
circ
|
2168 |
+
giv
|
2169 |
+
n1m0
|
2170 |
+
ost
|
2171 |
+
pri
|
2172 |
+
treatment
|
2173 |
+
vocal
|
2174 |
+
we
|
2175 |
+
##pinal
|
2176 |
+
##heres
|
2177 |
+
##art
|
2178 |
+
##aspinal
|
2179 |
+
##ined
|
2180 |
+
##osion
|
2181 |
+
##ison
|
2182 |
+
origin
|
2183 |
+
necks
|
2184 |
+
##owing
|
2185 |
+
thir
|
2186 |
+
paraspinal
|
2187 |
+
smoo
|
2188 |
+
##irm
|
2189 |
+
prel
|
2190 |
+
skin
|
2191 |
+
antr
|
2192 |
+
##tered
|
2193 |
+
##app
|
2194 |
+
appearing
|
2195 |
+
dimensions
|
2196 |
+
markedly
|
2197 |
+
infiltrated
|
2198 |
+
infiltrates
|
2199 |
+
adenoidal
|
2200 |
+
pharynx
|
2201 |
+
compressing
|
2202 |
+
expans
|
2203 |
+
comparison
|
2204 |
+
confirm
|
2205 |
+
deposits
|
2206 |
+
edema
|
2207 |
+
hemispheres
|
2208 |
+
expanded
|
2209 |
+
shape
|
2210 |
+
available
|
2211 |
+
haemorrhage
|
2212 |
+
erosion
|
2213 |
+
else
|
2214 |
+
structures
|
2215 |
+
corresponds
|
2216 |
+
ijv
|
2217 |
+
circum
|
2218 |
+
third
|
2219 |
+
smooth
|
2220 |
+
2n
|
2221 |
+
basal
|
2222 |
+
c6
|
2223 |
+
coll
|
2224 |
+
lat
|
2225 |
+
ques
|
2226 |
+
ser
|
2227 |
+
sol
|
2228 |
+
symp
|
2229 |
+
##iasm
|
2230 |
+
##iomeatal
|
2231 |
+
##ci
|
2232 |
+
##m1
|
2233 |
+
##bm0
|
2234 |
+
##×4
|
2235 |
+
their
|
2236 |
+
##one
|
2237 |
+
##inary
|
2238 |
+
nasol
|
2239 |
+
##trib
|
2240 |
+
##veolar
|
2241 |
+
contex
|
2242 |
+
chiasm
|
2243 |
+
alveolar
|
2244 |
+
##ame
|
2245 |
+
##urre
|
2246 |
+
notch
|
2247 |
+
##gestion
|
2248 |
+
##uced
|
2249 |
+
##iminary
|
2250 |
+
maxilla
|
2251 |
+
path
|
2252 |
+
comb
|
2253 |
+
##izontal
|
2254 |
+
distrib
|
2255 |
+
t1n3m0
|
2256 |
+
lobes
|
2257 |
+
##gery
|
2258 |
+
##yroidectomy
|
2259 |
+
infiltrating
|
2260 |
+
lengths
|
2261 |
+
centrally
|
2262 |
+
trache
|
2263 |
+
displaces
|
2264 |
+
plates
|
2265 |
+
surgery
|
2266 |
+
opacified
|
2267 |
+
compressed
|
2268 |
+
peripher
|
2269 |
+
irregularity
|
2270 |
+
aeration
|
2271 |
+
raises
|
2272 |
+
crossing
|
2273 |
+
haemang
|
2274 |
+
locally
|
2275 |
+
dilated
|
2276 |
+
meningioma
|
2277 |
+
replaced
|
2278 |
+
hypointense
|
2279 |
+
horizontal
|
2280 |
+
hemithyroidectomy
|
2281 |
+
ballo
|
2282 |
+
given
|
2283 |
+
ostiomeatal
|
2284 |
+
preliminary
|
2285 |
+
antrum
|
2286 |
+
question
|
2287 |
+
context
|
2288 |
+
distribution
|
2289 |
+
af
|
2290 |
+
bl
|
2291 |
+
cour
|
2292 |
+
coup
|
2293 |
+
ded
|
2294 |
+
gd
|
2295 |
+
hil
|
2296 |
+
ia
|
2297 |
+
lim
|
2298 |
+
oph
|
2299 |
+
pur
|
2300 |
+
run
|
2301 |
+
sw
|
2302 |
+
sent
|
2303 |
+
same
|
2304 |
+
vall
|
2305 |
+
wor
|
2306 |
+
##ness
|
2307 |
+
##sent
|
2308 |
+
##li
|
2309 |
+
##vate
|
2310 |
+
##view
|
2311 |
+
##fort
|
2312 |
+
##ald
|
2313 |
+
##alateral
|
2314 |
+
##almic
|
2315 |
+
##asing
|
2316 |
+
##asternal
|
2317 |
+
##ertebral
|
2318 |
+
##ination
|
2319 |
+
inner
|
2320 |
+
##athe
|
2321 |
+
##ecula
|
2322 |
+
##ositis
|
2323 |
+
requ
|
2324 |
+
review
|
2325 |
+
towards
|
2326 |
+
oral
|
2327 |
+
exc
|
2328 |
+
exam
|
2329 |
+
expected
|
2330 |
+
unfort
|
2331 |
+
##olaps
|
2332 |
+
##acic
|
2333 |
+
sinusitis
|
2334 |
+
axilla
|
2335 |
+
##thalmic
|
2336 |
+
dev
|
2337 |
+
enter
|
2338 |
+
contralateral
|
2339 |
+
prolaps
|
2340 |
+
effac
|
2341 |
+
t2wfs
|
2342 |
+
att
|
2343 |
+
##unately
|
2344 |
+
##apy
|
2345 |
+
indic
|
2346 |
+
palp
|
2347 |
+
palant
|
2348 |
+
remo
|
2349 |
+
clustering
|
2350 |
+
margins
|
2351 |
+
enhanced
|
2352 |
+
lesions
|
2353 |
+
sclerotic
|
2354 |
+
caused
|
2355 |
+
displaced
|
2356 |
+
plate
|
2357 |
+
12th
|
2358 |
+
##poses
|
2359 |
+
reduced
|
2360 |
+
obstruction
|
2361 |
+
polyposis
|
2362 |
+
##omyositis
|
2363 |
+
surrounds
|
2364 |
+
asymmetrically
|
2365 |
+
suprasternal
|
2366 |
+
##stem
|
2367 |
+
ventricle
|
2368 |
+
pps
|
2369 |
+
ppf
|
2370 |
+
displacement
|
2371 |
+
planning
|
2372 |
+
neuropathy
|
2373 |
+
branches
|
2374 |
+
chem
|
2375 |
+
##otherapy
|
2376 |
+
encroaches
|
2377 |
+
separate
|
2378 |
+
dermatomyositis
|
2379 |
+
ischaemia
|
2380 |
+
private
|
2381 |
+
latter
|
2382 |
+
combined
|
2383 |
+
couple
|
2384 |
+
dedicated
|
2385 |
+
ophthalmic
|
2386 |
+
purposes
|
2387 |
+
vallecula
|
2388 |
+
work
|
2389 |
+
unfortunately
|
2390 |
+
14
|
2391 |
+
1m0
|
2392 |
+
15mm
|
2393 |
+
2x
|
2394 |
+
3r
|
2395 |
+
9x
|
2396 |
+
atrophy
|
2397 |
+
bowing
|
2398 |
+
dr
|
2399 |
+
hal
|
2400 |
+
ham
|
2401 |
+
ling
|
2402 |
+
mr
|
2403 |
+
mic
|
2404 |
+
mac
|
2405 |
+
molar
|
2406 |
+
os
|
2407 |
+
qual
|
2408 |
+
sul
|
2409 |
+
wid
|
2410 |
+
##ek
|
2411 |
+
##ne
|
2412 |
+
##nw
|
2413 |
+
##dies
|
2414 |
+
##iation
|
2415 |
+
##cing
|
2416 |
+
##uated
|
2417 |
+
##pt
|
2418 |
+
##press
|
2419 |
+
##occ
|
2420 |
+
##oint
|
2421 |
+
##xus
|
2422 |
+
##la
|
2423 |
+
##fer
|
2424 |
+
##face
|
2425 |
+
##0mm
|
2426 |
+
##2mm
|
2427 |
+
##8mm
|
2428 |
+
##inct
|
2429 |
+
##pers
|
2430 |
+
congestion
|
2431 |
+
##acia
|
2432 |
+
##acrimal
|
2433 |
+
##istinct
|
2434 |
+
once
|
2435 |
+
##anding
|
2436 |
+
apart
|
2437 |
+
bodies
|
2438 |
+
mucus
|
2439 |
+
##illar
|
2440 |
+
adc
|
2441 |
+
appre
|
2442 |
+
indistinct
|
2443 |
+
like
|
2444 |
+
t3n0
|
2445 |
+
encephal
|
2446 |
+
encasing
|
2447 |
+
plexus
|
2448 |
+
tonsillar
|
2449 |
+
remaining
|
2450 |
+
infiltrative
|
2451 |
+
adenoids
|
2452 |
+
##ected
|
2453 |
+
temporalis
|
2454 |
+
protr
|
2455 |
+
ulcer
|
2456 |
+
tips
|
2457 |
+
endoscopic
|
2458 |
+
bene
|
2459 |
+
fibrous
|
2460 |
+
interval
|
2461 |
+
shaped
|
2462 |
+
branch
|
2463 |
+
restriction
|
2464 |
+
restricted
|
2465 |
+
##omalacia
|
2466 |
+
demonstrate
|
2467 |
+
resulting
|
2468 |
+
craniocaudally
|
2469 |
+
solid
|
2470 |
+
sympathe
|
2471 |
+
nasolacrimal
|
2472 |
+
##urrent
|
2473 |
+
peripheral
|
2474 |
+
haemangioma
|
2475 |
+
questionable
|
2476 |
+
examination
|
2477 |
+
removed
|
2478 |
+
3rd
|
2479 |
+
half
|
2480 |
+
lingual
|
2481 |
+
quality
|
2482 |
+
##nwald
|
2483 |
+
##occip
|
2484 |
+
sympathetic
|
2485 |
+
17
|
2486 |
+
19
|
2487 |
+
6×2
|
2488 |
+
7x
|
2489 |
+
8x1
|
2490 |
+
based
|
2491 |
+
dy
|
2492 |
+
digastric
|
2493 |
+
ep
|
2494 |
+
ecc
|
2495 |
+
ell
|
2496 |
+
ip
|
2497 |
+
joint
|
2498 |
+
near
|
2499 |
+
pul
|
2500 |
+
pne
|
2501 |
+
ris
|
2502 |
+
sing
|
2503 |
+
tou
|
2504 |
+
void
|
2505 |
+
vascular
|
2506 |
+
way
|
2507 |
+
##roc
|
2508 |
+
##ix
|
2509 |
+
##pty
|
2510 |
+
##tor
|
2511 |
+
##silateral
|
2512 |
+
##vin
|
2513 |
+
##kely
|
2514 |
+
##1mm
|
2515 |
+
##hind
|
2516 |
+
##ord
|
2517 |
+
##term
|
2518 |
+
##umat
|
2519 |
+
##omed
|
2520 |
+
##troph
|
2521 |
+
##allic
|
2522 |
+
unli
|
2523 |
+
convin
|
2524 |
+
parav
|
2525 |
+
##avic
|
2526 |
+
infection
|
2527 |
+
cavities
|
2528 |
+
##amina
|
2529 |
+
clavic
|
2530 |
+
section
|
2531 |
+
dep
|
2532 |
+
eng
|
2533 |
+
behind
|
2534 |
+
another
|
2535 |
+
suspected
|
2536 |
+
##quela
|
2537 |
+
effect
|
2538 |
+
find
|
2539 |
+
##ucos
|
2540 |
+
thickness
|
2541 |
+
thoracic
|
2542 |
+
add
|
2543 |
+
sequela
|
2544 |
+
histology
|
2545 |
+
##iptical
|
2546 |
+
comment
|
2547 |
+
##adenoma
|
2548 |
+
constric
|
2549 |
+
thyroidectomy
|
2550 |
+
##roadenoma
|
2551 |
+
heterogeneously
|
2552 |
+
presence
|
2553 |
+
brainstem
|
2554 |
+
secretion
|
2555 |
+
artefactual
|
2556 |
+
sheaths
|
2557 |
+
tract
|
2558 |
+
trace
|
2559 |
+
surface
|
2560 |
+
t2n1
|
2561 |
+
10x
|
2562 |
+
12mm
|
2563 |
+
need
|
2564 |
+
neopl
|
2565 |
+
inser
|
2566 |
+
3n1m0
|
2567 |
+
destr
|
2568 |
+
retrosternal
|
2569 |
+
detected
|
2570 |
+
consider
|
2571 |
+
usual
|
2572 |
+
interm
|
2573 |
+
obstructive
|
2574 |
+
larynx
|
2575 |
+
metallic
|
2576 |
+
severely
|
2577 |
+
differential
|
2578 |
+
empty
|
2579 |
+
osteophy
|
2580 |
+
expansion
|
2581 |
+
circumf
|
2582 |
+
pathology
|
2583 |
+
trachea
|
2584 |
+
after
|
2585 |
+
course
|
2586 |
+
hilum
|
2587 |
+
limit
|
2588 |
+
effaced
|
2589 |
+
palpable
|
2590 |
+
chemotherapy
|
2591 |
+
macroadenoma
|
2592 |
+
encephalomalacia
|
2593 |
+
beneath
|
2594 |
+
##nwaldt
|
2595 |
+
dysp
|
2596 |
+
elliptical
|
2597 |
+
ipsilateral
|
2598 |
+
pneumat
|
2599 |
+
risk
|
2600 |
+
single
|
2601 |
+
unlikely
|
2602 |
+
convincing
|
2603 |
+
paravertebral
|
2604 |
+
constrictor
|
2605 |
+
neoplasm
|
2606 |
+
17mm
|
2607 |
+
25
|
2608 |
+
2x1
|
2609 |
+
3x3
|
2610 |
+
4x2
|
2611 |
+
7x1
|
2612 |
+
9x1
|
2613 |
+
aud
|
2614 |
+
bu
|
2615 |
+
cer
|
2616 |
+
current
|
2617 |
+
dens
|
2618 |
+
ec
|
2619 |
+
even
|
2620 |
+
fac
|
2621 |
+
fore
|
2622 |
+
guid
|
2623 |
+
hom
|
2624 |
+
rid
|
2625 |
+
rad
|
2626 |
+
ray
|
2627 |
+
sj
|
2628 |
+
vi
|
2629 |
+
##of
|
2630 |
+
##xap
|
2631 |
+
##tes
|
2632 |
+
##ys
|
2633 |
+
##lf
|
2634 |
+
##lot
|
2635 |
+
##lasia
|
2636 |
+
##alk
|
2637 |
+
##arac
|
2638 |
+
##ren
|
2639 |
+
##ingeal
|
2640 |
+
##itory
|
2641 |
+
##eningeal
|
2642 |
+
##terist
|
2643 |
+
meat
|
2644 |
+
##oun
|
2645 |
+
##ision
|
2646 |
+
position
|
2647 |
+
thal
|
2648 |
+
paral
|
2649 |
+
charac
|
2650 |
+
axillary
|
2651 |
+
involution
|
2652 |
+
t2b
|
2653 |
+
fossas
|
2654 |
+
##amed
|
2655 |
+
determ
|
2656 |
+
stalk
|
2657 |
+
##ividual
|
2658 |
+
anomal
|
2659 |
+
##ancy
|
2660 |
+
abutt
|
2661 |
+
##unar
|
2662 |
+
##ock
|
2663 |
+
individual
|
2664 |
+
predominately
|
2665 |
+
showed
|
2666 |
+
submucos
|
2667 |
+
lacunar
|
2668 |
+
##ogren
|
2669 |
+
suggests
|
2670 |
+
tumors
|
2671 |
+
##seous
|
2672 |
+
##elling
|
2673 |
+
##tainty
|
2674 |
+
peri
|
2675 |
+
wraps
|
2676 |
+
##ching
|
2677 |
+
contour
|
2678 |
+
degre
|
2679 |
+
shelf
|
2680 |
+
tubes
|
2681 |
+
trapp
|
2682 |
+
plus
|
2683 |
+
plain
|
2684 |
+
recently
|
2685 |
+
evaluate
|
2686 |
+
t2n2m0
|
2687 |
+
t2n3m0
|
2688 |
+
malignancy
|
2689 |
+
obsc
|
2690 |
+
tsxap
|
2691 |
+
condyles
|
2692 |
+
11mm
|
2693 |
+
##ological
|
2694 |
+
sequence
|
2695 |
+
mak
|
2696 |
+
edge
|
2697 |
+
expanding
|
2698 |
+
n3b
|
2699 |
+
##monary
|
2700 |
+
perivascular
|
2701 |
+
groups
|
2702 |
+
obliterated
|
2703 |
+
occupying
|
2704 |
+
##inds
|
2705 |
+
basi
|
2706 |
+
weight
|
2707 |
+
running
|
2708 |
+
osseous
|
2709 |
+
sulci
|
2710 |
+
##pression
|
2711 |
+
pulmonary
|
2712 |
+
##ixed
|
2713 |
+
##omedial
|
2714 |
+
findinds
|
2715 |
+
dysplasia
|
2716 |
+
auditory
|
2717 |
+
certainty
|
2718 |
+
ecs
|
2719 |
+
guided
|
2720 |
+
homogen
|
2721 |
+
ridge
|
2722 |
+
sjogren
|
2723 |
+
##teristic
|
2724 |
+
characteristic
|
2725 |
+
involutional
|
2726 |
+
anomaly
|
2727 |
+
trapped
|
2728 |
+
0x1
|
2729 |
+
0x2
|
2730 |
+
16
|
2731 |
+
1x1
|
2732 |
+
1×2
|
2733 |
+
16mm
|
2734 |
+
24
|
2735 |
+
6x
|
2736 |
+
7x2
|
2737 |
+
8×2
|
2738 |
+
bx
|
2739 |
+
bre
|
2740 |
+
cap
|
2741 |
+
dec
|
2742 |
+
es
|
2743 |
+
found
|
2744 |
+
fung
|
2745 |
+
hu
|
2746 |
+
jd
|
2747 |
+
king
|
2748 |
+
ls
|
2749 |
+
lin
|
2750 |
+
mou
|
2751 |
+
map
|
2752 |
+
n3m0
|
2753 |
+
od
|
2754 |
+
pen
|
2755 |
+
ped
|
2756 |
+
pontine
|
2757 |
+
ring
|
2758 |
+
rib
|
2759 |
+
tag
|
2760 |
+
tran
|
2761 |
+
whe
|
2762 |
+
wide
|
2763 |
+
##ngeal
|
2764 |
+
##nce
|
2765 |
+
##droc
|
2766 |
+
##ier
|
2767 |
+
##ift
|
2768 |
+
##iet
|
2769 |
+
##ches
|
2770 |
+
##pontine
|
2771 |
+
##ak
|
2772 |
+
##sies
|
2773 |
+
##vant
|
2774 |
+
##×6
|
2775 |
+
##ales
|
2776 |
+
##arent
|
2777 |
+
now
|
2778 |
+
##tasis
|
2779 |
+
##ectasis
|
2780 |
+
##ged
|
2781 |
+
least
|
2782 |
+
##igone
|
2783 |
+
##ulous
|
2784 |
+
refer
|
2785 |
+
##omolar
|
2786 |
+
oro
|
2787 |
+
conver
|
2788 |
+
span
|
2789 |
+
paramed
|
2790 |
+
pariet
|
2791 |
+
##aceous
|
2792 |
+
altered
|
2793 |
+
##ute
|
2794 |
+
retro
|
2795 |
+
retroph
|
2796 |
+
retromolar
|
2797 |
+
scanning
|
2798 |
+
clavicular
|
2799 |
+
def
|
2800 |
+
hydroc
|
2801 |
+
##ullary
|
2802 |
+
##iver
|
2803 |
+
##agic
|
2804 |
+
absent
|
2805 |
+
prepontine
|
2806 |
+
lymphoma
|
2807 |
+
account
|
2808 |
+
staged
|
2809 |
+
##imum
|
2810 |
+
pterygoids
|
2811 |
+
much
|
2812 |
+
thornwaldt
|
2813 |
+
atel
|
2814 |
+
apparent
|
2815 |
+
##plied
|
2816 |
+
indetermin
|
2817 |
+
lacrimal
|
2818 |
+
minimum
|
2819 |
+
flat
|
2820 |
+
flair
|
2821 |
+
##ization
|
2822 |
+
supplied
|
2823 |
+
normally
|
2824 |
+
clearly
|
2825 |
+
t1n3
|
2826 |
+
situated
|
2827 |
+
##rowth
|
2828 |
+
ivim
|
2829 |
+
remarkable
|
2830 |
+
confines
|
2831 |
+
##ets
|
2832 |
+
t4n0
|
2833 |
+
respective
|
2834 |
+
significantly
|
2835 |
+
content
|
2836 |
+
##achment
|
2837 |
+
reticul
|
2838 |
+
spares
|
2839 |
+
veins
|
2840 |
+
##x11mm
|
2841 |
+
trigone
|
2842 |
+
t2n3
|
2843 |
+
evident
|
2844 |
+
acute
|
2845 |
+
reduction
|
2846 |
+
favor
|
2847 |
+
outline
|
2848 |
+
favours
|
2849 |
+
presumed
|
2850 |
+
narrowed
|
2851 |
+
mediastinal
|
2852 |
+
obliteration
|
2853 |
+
haemorrhagic
|
2854 |
+
laryng
|
2855 |
+
anteromedial
|
2856 |
+
##ephalus
|
2857 |
+
artifacts
|
2858 |
+
developmentally
|
2859 |
+
coales
|
2860 |
+
##apping
|
2861 |
+
collaps
|
2862 |
+
series
|
2863 |
+
balloon
|
2864 |
+
balloons
|
2865 |
+
swelling
|
2866 |
+
excised
|
2867 |
+
deviated
|
2868 |
+
prolapse
|
2869 |
+
hampers
|
2870 |
+
widening
|
2871 |
+
##occiput
|
2872 |
+
eccentric
|
2873 |
+
nearly
|
2874 |
+
clavicle
|
2875 |
+
insertion
|
2876 |
+
osteophytes
|
2877 |
+
circumferent
|
2878 |
+
pneumatization
|
2879 |
+
foreign
|
2880 |
+
##ysm
|
2881 |
+
meatus
|
2882 |
+
thalamus
|
2883 |
+
determine
|
2884 |
+
obscure
|
2885 |
+
basiocciput
|
2886 |
+
weighted
|
2887 |
+
characteristics
|
2888 |
+
capitis
|
2889 |
+
huge
|
2890 |
+
mouth
|
2891 |
+
penetr
|
2892 |
+
tags
|
2893 |
+
trans
|
2894 |
+
whether
|
2895 |
+
converted
|
2896 |
+
paramedian
|
2897 |
+
parietal
|
2898 |
+
hydrocephalus
|
2899 |
+
1x
|
2900 |
+
1×3
|
2901 |
+
27
|
2902 |
+
29
|
2903 |
+
2mm
|
2904 |
+
2×3
|
2905 |
+
30
|
2906 |
+
5x
|
2907 |
+
6x2
|
2908 |
+
6x3
|
2909 |
+
7×2
|
2910 |
+
8x
|
2911 |
+
8×3
|
2912 |
+
aort
|
2913 |
+
atroph
|
2914 |
+
bed
|
2915 |
+
bound
|
2916 |
+
basilar
|
2917 |
+
cs
|
2918 |
+
cal
|
2919 |
+
cre
|
2920 |
+
cen
|
2921 |
+
caps
|
2922 |
+
cest
|
2923 |
+
ele
|
2924 |
+
far
|
2925 |
+
ful
|
2926 |
+
fain
|
2927 |
+
flow
|
2928 |
+
function
|
2929 |
+
growth
|
2930 |
+
had
|
2931 |
+
hence
|
2932 |
+
lamina
|
2933 |
+
mixed
|
2934 |
+
oc
|
2935 |
+
sy
|
2936 |
+
sin
|
2937 |
+
te
|
2938 |
+
tn
|
2939 |
+
tim
|
2940 |
+
tra
|
2941 |
+
tort
|
2942 |
+
typical
|
2943 |
+
vs
|
2944 |
+
×2
|
2945 |
+
##eur
|
2946 |
+
##eity
|
2947 |
+
##de
|
2948 |
+
##ded
|
2949 |
+
##rit
|
2950 |
+
##gical
|
2951 |
+
##che
|
2952 |
+
##uper
|
2953 |
+
##pite
|
2954 |
+
##pigin
|
2955 |
+
##oad
|
2956 |
+
##ximal
|
2957 |
+
##mpt
|
2958 |
+
##ye
|
2959 |
+
##sal
|
2960 |
+
##scribed
|
2961 |
+
##×5
|
2962 |
+
##5×3
|
2963 |
+
##hel
|
2964 |
+
##arch
|
2965 |
+
##ass
|
2966 |
+
##asinus
|
2967 |
+
##ested
|
2968 |
+
##orged
|
2969 |
+
##atic
|
2970 |
+
##itate
|
2971 |
+
##itive
|
2972 |
+
##aryngeal
|
2973 |
+
##opharyng
|
2974 |
+
##oses
|
2975 |
+
##osterior
|
2976 |
+
##osuper
|
2977 |
+
##uma
|
2978 |
+
lept
|
2979 |
+
##iglot
|
2980 |
+
reac
|
2981 |
+
##ish
|
2982 |
+
toler
|
2983 |
+
##ilitate
|
2984 |
+
##rive
|
2985 |
+
##vex
|
2986 |
+
exact
|
2987 |
+
convex
|
2988 |
+
##remely
|
2989 |
+
thre
|
2990 |
+
thyr
|
2991 |
+
thrive
|
2992 |
+
extremely
|
2993 |
+
##thrit
|
2994 |
+
fors
|
2995 |
+
scm
|
2996 |
+
deb
|
2997 |
+
about
|
2998 |
+
##udes
|
2999 |
+
##endum
|
3000 |
+
prop
|
3001 |
+
##oposterior
|
3002 |
+
before
|
3003 |
+
ann
|
3004 |
+
aneur
|
3005 |
+
hypopharyngeal
|
3006 |
+
apx
|
3007 |
+
accoun
|
3008 |
+
##ucle
|
3009 |
+
lowest
|
3010 |
+
##ongly
|
3011 |
+
atte
|
3012 |
+
abutment
|
3013 |
+
sigmoid
|
3014 |
+
paranas
|
3015 |
+
##verse
|
3016 |
+
shad
|
3017 |
+
shift
|
3018 |
+
asap
|
3019 |
+
##ape
|
3020 |
+
set
|
3021 |
+
search
|
3022 |
+
hyperint
|
3023 |
+
arthrit
|
3024 |
+
spreads
|
3025 |
+
feature
|
3026 |
+
histological
|
3027 |
+
extensively
|
3028 |
+
frond
|
3029 |
+
cleft
|
3030 |
+
##standing
|
3031 |
+
centre
|
3032 |
+
mask
|
3033 |
+
masseter
|
3034 |
+
vault
|
3035 |
+
diagnoses
|
3036 |
+
imp
|
3037 |
+
impression
|
3038 |
+
heterogeneity
|
3039 |
+
unusually
|
3040 |
+
##ached
|
3041 |
+
conglomerated
|
3042 |
+
##ques
|
3043 |
+
longstanding
|
3044 |
+
assessed
|
3045 |
+
intrasinus
|
3046 |
+
##x10mm
|
3047 |
+
degrade
|
3048 |
+
degrades
|
3049 |
+
##uctive
|
3050 |
+
proximal
|
3051 |
+
containing
|
3052 |
+
t2n0m0
|
3053 |
+
strongly
|
3054 |
+
##ediate
|
3055 |
+
superficially
|
3056 |
+
sternum
|
3057 |
+
3n0m0
|
3058 |
+
occiput
|
3059 |
+
despite
|
3060 |
+
agg
|
3061 |
+
1101
|
3062 |
+
fibrotic
|
3063 |
+
##bedded
|
3064 |
+
expands
|
3065 |
+
amide
|
3066 |
+
cerebellum
|
3067 |
+
##acement
|
3068 |
+
ganglion
|
3069 |
+
neuroma
|
3070 |
+
2018
|
3071 |
+
t4n3m1
|
3072 |
+
t4n3bm0
|
3073 |
+
cheek
|
3074 |
+
t3n3bm0
|
3075 |
+
obliterating
|
3076 |
+
4n3m0
|
3077 |
+
erod
|
3078 |
+
180
|
3079 |
+
##ollen
|
3080 |
+
encroachment
|
3081 |
+
artifactual
|
3082 |
+
embedded
|
3083 |
+
contacting
|
3084 |
+
week
|
3085 |
+
expansile
|
3086 |
+
circumscribed
|
3087 |
+
2n1m0
|
3088 |
+
serpigin
|
3089 |
+
##ciable
|
3090 |
+
blur
|
3091 |
+
swollen
|
3092 |
+
request
|
3093 |
+
requested
|
3094 |
+
reviewed
|
3095 |
+
excision
|
3096 |
+
attn
|
3097 |
+
palanti
|
3098 |
+
workup
|
3099 |
+
appreciated
|
3100 |
+
appreciable
|
3101 |
+
epr
|
3102 |
+
touches
|
3103 |
+
depth
|
3104 |
+
engorged
|
3105 |
+
addendum
|
3106 |
+
destructive
|
3107 |
+
consideration
|
3108 |
+
usually
|
3109 |
+
intermediate
|
3110 |
+
facilitate
|
3111 |
+
radi
|
3112 |
+
submucosal
|
3113 |
+
degrees
|
3114 |
+
homogenous
|
3115 |
+
essent
|
3116 |
+
pedunc
|
3117 |
+
ribs
|
3118 |
+
spanning
|
3119 |
+
defect
|
3120 |
+
respectively
|
3121 |
+
laryngopharynx
|
3122 |
+
ballooning
|
3123 |
+
penetrating
|
3124 |
+
transverse
|
3125 |
+
atrophic
|
3126 |
+
center
|
3127 |
+
capsule
|
3128 |
+
fully
|
3129 |
+
faint
|
3130 |
+
functional
|
3131 |
+
since
|
3132 |
+
trauma
|
3133 |
+
tortuous
|
3134 |
+
##mpts
|
3135 |
+
##osuperior
|
3136 |
+
leptom
|
3137 |
+
reaction
|
3138 |
+
tolerate
|
3139 |
+
thyroglossal
|
3140 |
+
aneurysm
|
3141 |
+
accounting
|
3142 |
+
attempts
|
3143 |
+
hyperintensity
|
3144 |
+
arthritide
|
3145 |
+
serpiginous
|
3146 |
+
0×3
|
3147 |
+
1x2
|
3148 |
+
23mm
|
3149 |
+
34
|
3150 |
+
33mm
|
3151 |
+
3×4
|
3152 |
+
4x1
|
3153 |
+
46mm
|
3154 |
+
50
|
3155 |
+
5x2
|
3156 |
+
5×2
|
3157 |
+
5x3
|
3158 |
+
6×3
|
3159 |
+
7×1
|
3160 |
+
ble
|
3161 |
+
bif
|
3162 |
+
dor
|
3163 |
+
domin
|
3164 |
+
epic
|
3165 |
+
each
|
3166 |
+
eye
|
3167 |
+
fu
|
3168 |
+
ff
|
3169 |
+
fine
|
3170 |
+
hern
|
3171 |
+
lent
|
3172 |
+
lord
|
3173 |
+
liver
|
3174 |
+
m1
|
3175 |
+
mon
|
3176 |
+
morph
|
3177 |
+
mapping
|
3178 |
+
nucle
|
3179 |
+
pe
|
3180 |
+
pter
|
3181 |
+
pot
|
3182 |
+
ri
|
3183 |
+
rath
|
3184 |
+
syl
|
3185 |
+
sock
|
3186 |
+
tm
|
3187 |
+
ta
|
3188 |
+
targe
|
3189 |
+
uv
|
3190 |
+
vp
|
3191 |
+
var
|
3192 |
+
vis
|
3193 |
+
##ein
|
3194 |
+
##eper
|
3195 |
+
##equ
|
3196 |
+
##eved
|
3197 |
+
##roid
|
3198 |
+
##rade
|
3199 |
+
##iology
|
3200 |
+
##ga
|
3201 |
+
##gle
|
3202 |
+
##goid
|
3203 |
+
##ground
|
3204 |
+
##cal
|
3205 |
+
##con
|
3206 |
+
##coma
|
3207 |
+
##uvant
|
3208 |
+
##pou
|
3209 |
+
##posed
|
3210 |
+
##oe
|
3211 |
+
##oin
|
3212 |
+
##oax
|
3213 |
+
##xcc
|
3214 |
+
##mus
|
3215 |
+
##met
|
3216 |
+
##tl
|
3217 |
+
##tening
|
3218 |
+
##tosis
|
3219 |
+
##treatment
|
3220 |
+
##sum
|
3221 |
+
##lar
|
3222 |
+
##lly
|
3223 |
+
##lant
|
3224 |
+
##vian
|
3225 |
+
##form
|
3226 |
+
##3x1
|
3227 |
+
##jec
|
3228 |
+
##juvant
|
3229 |
+
##ke
|
3230 |
+
##ked
|
3231 |
+
##known
|
3232 |
+
##hanc
|
3233 |
+
##201
|
3234 |
+
##zius
|
3235 |
+
##ally
|
3236 |
+
##arcoma
|
3237 |
+
##onodular
|
3238 |
+
##inos
|
3239 |
+
##inodal
|
3240 |
+
inj
|
3241 |
+
insp
|
3242 |
+
##ndib
|
3243 |
+
##itongue
|
3244 |
+
##itier
|
3245 |
+
##enal
|
3246 |
+
##ened
|
3247 |
+
##enhanc
|
3248 |
+
##ice
|
3249 |
+
##ician
|
3250 |
+
isth
|
3251 |
+
ische
|
3252 |
+
##osarcoma
|
3253 |
+
##uminal
|
3254 |
+
##eding
|
3255 |
+
##lel
|
3256 |
+
nasoph
|
3257 |
+
##ulf
|
3258 |
+
##ulature
|
3259 |
+
rele
|
3260 |
+
##ently
|
3261 |
+
##ential
|
3262 |
+
##entered
|
3263 |
+
##trast
|
3264 |
+
##riform
|
3265 |
+
##abal
|
3266 |
+
##abol
|
3267 |
+
unknown
|
3268 |
+
conc
|
3269 |
+
though
|
3270 |
+
spans
|
3271 |
+
spinos
|
3272 |
+
##iform
|
3273 |
+
##omandib
|
3274 |
+
sinusal
|
3275 |
+
##ants
|
3276 |
+
t2fs
|
3277 |
+
corner
|
3278 |
+
##ths
|
3279 |
+
caves
|
3280 |
+
scal
|
3281 |
+
##ccal
|
3282 |
+
##ensen
|
3283 |
+
##ensatory
|
3284 |
+
notes
|
3285 |
+
here
|
3286 |
+
height
|
3287 |
+
retrog
|
3288 |
+
deline
|
3289 |
+
deeper
|
3290 |
+
hyoid
|
3291 |
+
stre
|
3292 |
+
stensen
|
3293 |
+
foraminal
|
3294 |
+
##agment
|
3295 |
+
abs
|
3296 |
+
critier
|
3297 |
+
protu
|
3298 |
+
pretreatment
|
3299 |
+
belly
|
3300 |
+
cancer
|
3301 |
+
angle
|
3302 |
+
lympho
|
3303 |
+
lymphatic
|
3304 |
+
others
|
3305 |
+
techniques
|
3306 |
+
##issated
|
3307 |
+
effacement
|
3308 |
+
##ucting
|
3309 |
+
##henoid
|
3310 |
+
atlant
|
3311 |
+
##eps
|
3312 |
+
craniopharyng
|
3313 |
+
abutted
|
3314 |
+
adequ
|
3315 |
+
##obe
|
3316 |
+
shun
|
3317 |
+
##ood
|
3318 |
+
suboccip
|
3319 |
+
vertical
|
3320 |
+
##ificial
|
3321 |
+
appt
|
3322 |
+
##plant
|
3323 |
+
##plate
|
3324 |
+
signals
|
3325 |
+
sellar
|
3326 |
+
seeding
|
3327 |
+
hypertroph
|
3328 |
+
hypermet
|
3329 |
+
globe
|
3330 |
+
##elf
|
3331 |
+
lack
|
3332 |
+
patulous
|
3333 |
+
compensatory
|
3334 |
+
clinoid
|
3335 |
+
clinician
|
3336 |
+
fragment
|
3337 |
+
slice
|
3338 |
+
presented
|
3339 |
+
largely
|
3340 |
+
superolateral
|
3341 |
+
superificial
|
3342 |
+
follows
|
3343 |
+
dimensional
|
3344 |
+
##athyroid
|
3345 |
+
##tained
|
3346 |
+
deeply
|
3347 |
+
greatest
|
3348 |
+
borders
|
3349 |
+
mature
|
3350 |
+
palsies
|
3351 |
+
perinodal
|
3352 |
+
rect
|
3353 |
+
repe
|
3354 |
+
##ogenic
|
3355 |
+
ethmoids
|
3356 |
+
implant
|
3357 |
+
parts
|
3358 |
+
t4n0m0
|
3359 |
+
resection
|
3360 |
+
marginal
|
3361 |
+
grossly
|
3362 |
+
##erence
|
3363 |
+
sheets
|
3364 |
+
focally
|
3365 |
+
obtained
|
3366 |
+
palatopharyngeal
|
3367 |
+
##airment
|
3368 |
+
magna
|
3369 |
+
previously
|
3370 |
+
symmetrically
|
3371 |
+
##x18mm
|
3372 |
+
tracheal
|
3373 |
+
trape
|
3374 |
+
portions
|
3375 |
+
projec
|
3376 |
+
jugulo
|
3377 |
+
pla
|
3378 |
+
surgical
|
3379 |
+
##ressive
|
3380 |
+
endplate
|
3381 |
+
opacity
|
3382 |
+
opacities
|
3383 |
+
merging
|
3384 |
+
t2n2
|
3385 |
+
protein
|
3386 |
+
12x
|
3387 |
+
hemitongue
|
3388 |
+
neoad
|
3389 |
+
obstructing
|
3390 |
+
3n3m0
|
3391 |
+
##ibrosarcoma
|
3392 |
+
condylar
|
3393 |
+
fna
|
3394 |
+
##isphenoid
|
3395 |
+
background
|
3396 |
+
outpou
|
3397 |
+
consists
|
3398 |
+
localised
|
3399 |
+
indents
|
3400 |
+
better
|
3401 |
+
obviously
|
3402 |
+
majority
|
3403 |
+
2016
|
3404 |
+
2015
|
3405 |
+
itself
|
3406 |
+
t4n3b
|
3407 |
+
avm
|
3408 |
+
4n2m0
|
3409 |
+
hypoenhanc
|
3410 |
+
segments
|
3411 |
+
occupy
|
3412 |
+
occupied
|
3413 |
+
occupies
|
3414 |
+
parenchyma
|
3415 |
+
18mm
|
3416 |
+
demonstrated
|
3417 |
+
demonstrates
|
3418 |
+
anterolateral
|
3419 |
+
bilat
|
3420 |
+
t4n2m1
|
3421 |
+
202
|
3422 |
+
22mm
|
3423 |
+
cover
|
3424 |
+
wings
|
3425 |
+
contacts
|
3426 |
+
dermatof
|
3427 |
+
cisterna
|
3428 |
+
ischaemic
|
3429 |
+
basisphenoid
|
3430 |
+
confirmed
|
3431 |
+
blood
|
3432 |
+
runs
|
3433 |
+
deviation
|
3434 |
+
enters
|
3435 |
+
entering
|
3436 |
+
prolapsing
|
3437 |
+
indicate
|
3438 |
+
indicative
|
3439 |
+
palantini
|
3440 |
+
2x0
|
3441 |
+
2x4
|
3442 |
+
micr
|
3443 |
+
micro
|
3444 |
+
##iations
|
3445 |
+
##ferior
|
3446 |
+
protrusion
|
3447 |
+
protrudes
|
3448 |
+
ulceration
|
3449 |
+
19mm
|
3450 |
+
touching
|
3451 |
+
engulf
|
3452 |
+
limited
|
3453 |
+
buccal
|
3454 |
+
paralaryngeal
|
3455 |
+
parallel
|
3456 |
+
makes
|
3457 |
+
making
|
3458 |
+
breach
|
3459 |
+
decre
|
3460 |
+
fungal
|
3461 |
+
lining
|
3462 |
+
atelectasis
|
3463 |
+
flattening
|
3464 |
+
reticulonodular
|
3465 |
+
coalesc
|
3466 |
+
collapse
|
3467 |
+
circumferential
|
3468 |
+
aortic
|
3469 |
+
bounded
|
3470 |
+
calc
|
3471 |
+
creeps
|
3472 |
+
time
|
3473 |
+
proptosis
|
3474 |
+
paranasopharyngeal
|
3475 |
+
shadowing
|
3476 |
+
impairment
|
3477 |
+
aggressive
|
3478 |
+
blurring
|
3479 |
+
essentially
|
3480 |
+
peduncle
|
3481 |
+
leptomeningeal
|
3482 |
+
blend
|
3483 |
+
dorsum
|
3484 |
+
dominant
|
3485 |
+
epicentered
|
3486 |
+
ffe
|
3487 |
+
lentiform
|
3488 |
+
lordosis
|
3489 |
+
months
|
3490 |
+
peg
|
3491 |
+
potential
|
3492 |
+
rathke
|
3493 |
+
sylvian
|
3494 |
+
tmj
|
3495 |
+
targeted
|
3496 |
+
uvula
|
3497 |
+
vari
|
3498 |
+
##contrast
|
3499 |
+
##oinferior
|
3500 |
+
##oaxial
|
3501 |
+
inspissated
|
3502 |
+
isthmus
|
3503 |
+
ischemic
|
3504 |
+
spinosum
|
3505 |
+
##omandibular
|
3506 |
+
retrograde
|
3507 |
+
delineate
|
3508 |
+
critieria
|
3509 |
+
protuber
|
3510 |
+
atlantoaxial
|
3511 |
+
craniopharyngioma
|
3512 |
+
adequately
|
3513 |
+
shunt
|
3514 |
+
suboccipital
|
3515 |
+
hypertrophied
|
3516 |
+
hypermetabol
|
3517 |
+
trapezius
|
3518 |
+
proteinaceous
|
3519 |
+
neoadjuvant
|
3520 |
+
outpouching
|
3521 |
+
hypoenhancing
|
3522 |
+
dermatofibrosarcoma
|
3523 |
+
0x
|
3524 |
+
07
|
3525 |
+
08
|
3526 |
+
0x3
|
3527 |
+
0×1
|
3528 |
+
1n
|
3529 |
+
15
|
3530 |
+
2b
|
3531 |
+
25mm
|
3532 |
+
26mm
|
3533 |
+
27mm
|
3534 |
+
23x1
|
3535 |
+
3d
|
3536 |
+
31
|
3537 |
+
37
|
3538 |
+
3×3
|
3539 |
+
35mm
|
3540 |
+
37mm
|
3541 |
+
32mm
|
3542 |
+
41
|
3543 |
+
4th
|
3544 |
+
401
|
3545 |
+
4x3
|
3546 |
+
42mm
|
3547 |
+
5×5
|
3548 |
+
6th
|
3549 |
+
6x1
|
3550 |
+
601
|
3551 |
+
6×1
|
3552 |
+
7×3
|
3553 |
+
8x2
|
3554 |
+
801
|
3555 |
+
9x2
|
3556 |
+
age
|
3557 |
+
aug
|
3558 |
+
aet
|
3559 |
+
aqu
|
3560 |
+
bar
|
3561 |
+
bia
|
3562 |
+
blow
|
3563 |
+
breat
|
3564 |
+
best
|
3565 |
+
c7
|
3566 |
+
col
|
3567 |
+
cerv
|
3568 |
+
diss
|
3569 |
+
during
|
3570 |
+
done
|
3571 |
+
diver
|
3572 |
+
eb
|
3573 |
+
edent
|
3574 |
+
ect
|
3575 |
+
fo
|
3576 |
+
fas
|
3577 |
+
fil
|
3578 |
+
fusion
|
3579 |
+
fib
|
3580 |
+
hn
|
3581 |
+
hin
|
3582 |
+
hos
|
3583 |
+
kn
|
3584 |
+
lon
|
3585 |
+
lig
|
3586 |
+
last
|
3587 |
+
litt
|
3588 |
+
luminal
|
3589 |
+
my
|
3590 |
+
nor
|
3591 |
+
nause
|
3592 |
+
ou
|
3593 |
+
om
|
3594 |
+
prem
|
3595 |
+
pain
|
3596 |
+
past
|
3597 |
+
page
|
3598 |
+
pap
|
3599 |
+
phy
|
3600 |
+
pach
|
3601 |
+
pans
|
3602 |
+
pock
|
3603 |
+
pass
|
3604 |
+
qu
|
3605 |
+
ro
|
3606 |
+
renal
|
3607 |
+
sess
|
3608 |
+
symmetr
|
3609 |
+
ty
|
3610 |
+
tb
|
3611 |
+
val
|
3612 |
+
vic
|
3613 |
+
ventricular
|
3614 |
+
wit
|
3615 |
+
xi
|
3616 |
+
zy
|
3617 |
+
##nel
|
3618 |
+
##nection
|
3619 |
+
##dit
|
3620 |
+
##day
|
3621 |
+
##ry
|
3622 |
+
##ris
|
3623 |
+
##ril
|
3624 |
+
##rosis
|
3625 |
+
##rup
|
3626 |
+
##rants
|
3627 |
+
##iph
|
3628 |
+
##iom
|
3629 |
+
##ily
|
3630 |
+
##ioc
|
3631 |
+
##ienc
|
3632 |
+
##iating
|
3633 |
+
##iectasis
|
3634 |
+
##ieved
|
3635 |
+
##cation
|
3636 |
+
##urem
|
3637 |
+
##uity
|
3638 |
+
##pe
|
3639 |
+
##pc
|
3640 |
+
##ple
|
3641 |
+
##pered
|
3642 |
+
##pital
|
3643 |
+
##ok
|
3644 |
+
##ointense
|
3645 |
+
##xon
|
3646 |
+
##ms
|
3647 |
+
##mun
|
3648 |
+
##tis
|
3649 |
+
##tom
|
3650 |
+
##yep
|
3651 |
+
##yst
|
3652 |
+
##ae
|
3653 |
+
##aic
|
3654 |
+
##sew
|
3655 |
+
##lr
|
3656 |
+
##lab
|
3657 |
+
##lies
|
3658 |
+
##ves
|
3659 |
+
##be
|
3660 |
+
##bus
|
3661 |
+
##baceous
|
3662 |
+
##1b
|
3663 |
+
##13
|
3664 |
+
##hing
|
3665 |
+
##hond
|
3666 |
+
##hord
|
3667 |
+
##7×2
|
3668 |
+
##9mm
|
3669 |
+
##2x2
|
3670 |
+
##8x1
|
3671 |
+
then
|
3672 |
+
##arm
|
3673 |
+
##arngeal
|
3674 |
+
##asion
|
3675 |
+
##erian
|
3676 |
+
##erted
|
3677 |
+
##onding
|
3678 |
+
##onch
|
3679 |
+
##inity
|
3680 |
+
##inting
|
3681 |
+
intern
|
3682 |
+
##ora
|
3683 |
+
##oroid
|
3684 |
+
##orax
|
3685 |
+
##oramina
|
3686 |
+
##ata
|
3687 |
+
##atine
|
3688 |
+
##attered
|
3689 |
+
##used
|
3690 |
+
##itect
|
3691 |
+
##ithel
|
3692 |
+
##idus
|
3693 |
+
##idging
|
3694 |
+
##phy
|
3695 |
+
##enital
|
3696 |
+
##ica
|
3697 |
+
##anal
|
3698 |
+
##anic
|
3699 |
+
isointense
|
3700 |
+
##ectr
|
3701 |
+
##ectatic
|
3702 |
+
mega
|
3703 |
+
##umour
|
3704 |
+
##educt
|
3705 |
+
##igation
|
3706 |
+
##iguration
|
3707 |
+
##leed
|
3708 |
+
nasopalatine
|
3709 |
+
##ulked
|
3710 |
+
rever
|
3711 |
+
reached
|
3712 |
+
invest
|
3713 |
+
inverted
|
3714 |
+
leftwards
|
3715 |
+
##isition
|
3716 |
+
##om0
|
3717 |
+
##ombus
|
3718 |
+
tumoural
|
3719 |
+
today
|
3720 |
+
##ried
|
3721 |
+
##veill
|
3722 |
+
##perineural
|
3723 |
+
##abial
|
3724 |
+
##abet
|
3725 |
+
positive
|
3726 |
+
unable
|
3727 |
+
condition
|
3728 |
+
congest
|
3729 |
+
conse
|
3730 |
+
connection
|
3731 |
+
##olist
|
3732 |
+
##adural
|
3733 |
+
##oustic
|
3734 |
+
thus
|
3735 |
+
parasellar
|
3736 |
+
parathyroid
|
3737 |
+
chord
|
3738 |
+
choroid
|
3739 |
+
##ifying
|
3740 |
+
##acuated
|
3741 |
+
##inusitis
|
3742 |
+
##ainage
|
3743 |
+
alread
|
3744 |
+
alone
|
3745 |
+
##tate
|
3746 |
+
##uted
|
3747 |
+
##portion
|
3748 |
+
scop
|
3749 |
+
scap
|
3750 |
+
scattered
|
3751 |
+
regional
|
3752 |
+
##am0
|
3753 |
+
##ament
|
3754 |
+
##urated
|
3755 |
+
##urately
|
3756 |
+
##urcation
|
3757 |
+
notoc
|
3758 |
+
##ically
|
3759 |
+
distort
|
3760 |
+
pteryoid
|
3761 |
+
pterygo
|
3762 |
+
retrot
|
3763 |
+
retromaxillary
|
3764 |
+
retrieved
|
3765 |
+
midportion
|
3766 |
+
class
|
3767 |
+
headache
|
3768 |
+
level1b
|
3769 |
+
##otopic
|
3770 |
+
sten
|
3771 |
+
stem
|
3772 |
+
standing
|
3773 |
+
##aglot
|
3774 |
+
##ending
|
3775 |
+
##endym
|
3776 |
+
##ymeningeal
|
3777 |
+
postcontrast
|
3778 |
+
##opontine
|
3779 |
+
prev
|
3780 |
+
wallerian
|
3781 |
+
definitive
|
3782 |
+
april
|
3783 |
+
foramena
|
3784 |
+
accurately
|
3785 |
+
##imposed
|
3786 |
+
##mporomandibular
|
3787 |
+
measurem
|
3788 |
+
##angiop
|
3789 |
+
thickened
|
3790 |
+
mucoc
|
3791 |
+
##epithel
|
3792 |
+
##ependym
|
3793 |
+
saturated
|
3794 |
+
mucositis
|
3795 |
+
##ively
|
3796 |
+
mils
|
3797 |
+
##illoma
|
3798 |
+
##obleed
|
3799 |
+
channel
|
3800 |
+
subtrac
|
3801 |
+
bulkier
|
3802 |
+
sebaceous
|
3803 |
+
arran
|
3804 |
+
aryep
|
3805 |
+
predominant
|
3806 |
+
dixon
|
3807 |
+
diabet
|
3808 |
+
suggestion
|
3809 |
+
8thdit
|
3810 |
+
probabal
|
3811 |
+
##ipidus
|
3812 |
+
##hyoid
|
3813 |
+
commun
|
3814 |
+
##ders
|
3815 |
+
whereas
|
3816 |
+
compr
|
3817 |
+
medullary
|
3818 |
+
##actic
|
3819 |
+
supracl
|
3820 |
+
##sem
|
3821 |
+
##ayr
|
3822 |
+
musculature
|
3823 |
+
fold
|
3824 |
+
maybe
|
3825 |
+
superimposed
|
3826 |
+
lungs
|
3827 |
+
greatly
|
3828 |
+
t1nom0
|
3829 |
+
##ualised
|
3830 |
+
encoun
|
3831 |
+
recurre
|
3832 |
+
recurrent
|
3833 |
+
wrapping
|
3834 |
+
thrombus
|
3835 |
+
adenopathy
|
3836 |
+
measured
|
3837 |
+
ethmoidal
|
3838 |
+
biopsies
|
3839 |
+
heterotopic
|
3840 |
+
clustered
|
3841 |
+
respect
|
3842 |
+
infiltrate
|
3843 |
+
overlies
|
3844 |
+
brach
|
3845 |
+
bronch
|
3846 |
+
bridging
|
3847 |
+
intracanal
|
3848 |
+
congenital
|
3849 |
+
intracranially
|
3850 |
+
reticular
|
3851 |
+
retension
|
3852 |
+
spare
|
3853 |
+
sheet
|
3854 |
+
##athic
|
3855 |
+
approaches
|
3856 |
+
##ectively
|
3857 |
+
brainlab
|
3858 |
+
##quently
|
3859 |
+
##quisition
|
3860 |
+
##ortical
|
3861 |
+
##ontoid
|
3862 |
+
tubular
|
3863 |
+
##ticula
|
3864 |
+
v3perineural
|
3865 |
+
posterosuperior
|
3866 |
+
posteroinferior
|
3867 |
+
##ucted
|
3868 |
+
proper
|
3869 |
+
pointing
|
3870 |
+
##atively
|
3871 |
+
surveill
|
3872 |
+
occasion
|
3873 |
+
roundish
|
3874 |
+
opacifying
|
3875 |
+
additionally
|
3876 |
+
underg
|
3877 |
+
underde
|
3878 |
+
evacuated
|
3879 |
+
strap
|
3880 |
+
striated
|
3881 |
+
stranding
|
3882 |
+
##x26mm
|
3883 |
+
forms
|
3884 |
+
advise
|
3885 |
+
lesser
|
3886 |
+
mottl
|
3887 |
+
acoustic
|
3888 |
+
acquisition
|
3889 |
+
insipidus
|
3890 |
+
polyps
|
3891 |
+
3n1
|
3892 |
+
configuration
|
3893 |
+
architect
|
3894 |
+
intraorbital
|
3895 |
+
##oplatine
|
3896 |
+
110
|
3897 |
+
raise
|
3898 |
+
rims
|
3899 |
+
thinning
|
3900 |
+
frankly
|
3901 |
+
consisting
|
3902 |
+
13x1
|
3903 |
+
tornwaldt
|
3904 |
+
used
|
3905 |
+
supraglot
|
3906 |
+
continuation
|
3907 |
+
edn
|
3908 |
+
station
|
3909 |
+
subcortical
|
3910 |
+
tracking
|
3911 |
+
degeneration
|
3912 |
+
perivertebral
|
3913 |
+
cerebellopontine
|
3914 |
+
ductal
|
3915 |
+
hypoplasia
|
3916 |
+
orifices
|
3917 |
+
planes
|
3918 |
+
stripes
|
3919 |
+
neurof
|
3920 |
+
neurogenic
|
3921 |
+
2013
|
3922 |
+
2017
|
3923 |
+
##hesis
|
3924 |
+
##veloped
|
3925 |
+
avid
|
3926 |
+
chest
|
3927 |
+
##ulae
|
3928 |
+
infraclavicular
|
3929 |
+
t3n3am0
|
3930 |
+
4n1
|
3931 |
+
4n2
|
3932 |
+
4n0m0
|
3933 |
+
elsew
|
3934 |
+
electr
|
3935 |
+
meningoma
|
3936 |
+
meningitis
|
3937 |
+
masticatory
|
3938 |
+
replace
|
3939 |
+
replacing
|
3940 |
+
corresponding
|
3941 |
+
3mmx
|
3942 |
+
dermis
|
3943 |
+
laryngeal
|
3944 |
+
warrants
|
3945 |
+
anteroposterior
|
3946 |
+
resultant
|
3947 |
+
210
|
3948 |
+
21mm
|
3949 |
+
units
|
3950 |
+
openings
|
3951 |
+
coil
|
3952 |
+
horn
|
3953 |
+
osteomeatal
|
3954 |
+
separated
|
3955 |
+
##ympanic
|
3956 |
+
hemithorax
|
3957 |
+
cisterns
|
3958 |
+
prior
|
3959 |
+
2n2m0
|
3960 |
+
2n0m0
|
3961 |
+
collection
|
3962 |
+
collectively
|
3963 |
+
solitary
|
3964 |
+
symptom
|
3965 |
+
nasolabial
|
3966 |
+
periphery
|
3967 |
+
haemangiom
|
3968 |
+
cours
|
3969 |
+
hila
|
3970 |
+
limb
|
3971 |
+
atten
|
3972 |
+
indicating
|
3973 |
+
palpation
|
3974 |
+
palantine
|
3975 |
+
9x5
|
3976 |
+
9x4mm
|
3977 |
+
drainage
|
3978 |
+
hampered
|
3979 |
+
microc
|
3980 |
+
sulcal
|
3981 |
+
protruding
|
3982 |
+
ulcerating
|
3983 |
+
branching
|
3984 |
+
peripherally
|
3985 |
+
7x4mm
|
3986 |
+
8x13mm
|
3987 |
+
epiglot
|
3988 |
+
ecchond
|
3989 |
+
voids
|
3990 |
+
clavicles
|
3991 |
+
effects
|
3992 |
+
adducted
|
3993 |
+
sequelae
|
3994 |
+
10x4mm
|
3995 |
+
10x5mm
|
3996 |
+
needs
|
3997 |
+
destruction
|
3998 |
+
intermus
|
3999 |
+
osteophyte
|
4000 |
+
circumference
|
4001 |
+
limits
|
4002 |
+
7x12mm
|
4003 |
+
7x18mm
|
4004 |
+
buried
|
4005 |
+
facial
|
4006 |
+
abutts
|
4007 |
+
individually
|
4008 |
+
submucosa
|
4009 |
+
degree
|
4010 |
+
homogeneous
|
4011 |
+
decom
|
4012 |
+
fungating
|
4013 |
+
liner
|
4014 |
+
odema
|
4015 |
+
odontoid
|
4016 |
+
##akable
|
4017 |
+
accounts
|
4018 |
+
atelectatic
|
4019 |
+
indeterminant
|
4020 |
+
indeterminated
|
4021 |
+
t1n3a
|
4022 |
+
reticulation
|
4023 |
+
t2n3m
|
4024 |
+
t2n3bm0
|
4025 |
+
collapsed
|
4026 |
+
circumferentially
|
4027 |
+
8x6mm
|
4028 |
+
csf
|
4029 |
+
elev
|
4030 |
+
element
|
4031 |
+
system
|
4032 |
+
temporomandibular
|
4033 |
+
tnm
|
4034 |
+
tnm0
|
4035 |
+
##saliph
|
4036 |
+
##heless
|
4037 |
+
##iglottic
|
4038 |
+
convexity
|
4039 |
+
debris
|
4040 |
+
debulked
|
4041 |
+
apxlr
|
4042 |
+
erodes
|
4043 |
+
radiotherapy
|
4044 |
+
bifurcation
|
4045 |
+
herniations
|
4046 |
+
morphology
|
4047 |
+
nucleus
|
4048 |
+
ptergoid
|
4049 |
+
socket
|
4050 |
+
tapers
|
4051 |
+
visualised
|
4052 |
+
##oele
|
4053 |
+
##2013
|
4054 |
+
injection
|
4055 |
+
relevant
|
4056 |
+
concentric
|
4057 |
+
corners
|
4058 |
+
scalen
|
4059 |
+
stret
|
4060 |
+
absence
|
4061 |
+
lymphoepithel
|
4062 |
+
rectus
|
4063 |
+
repeat
|
4064 |
+
marginally
|
4065 |
+
projecting
|
4066 |
+
plaque
|
4067 |
+
12x7mm
|
4068 |
+
2022
|
4069 |
+
coverage
|
4070 |
+
microbleed
|
4071 |
+
microangiop
|
4072 |
+
engulfed
|
4073 |
+
coalesces
|
4074 |
+
calcified
|
4075 |
+
blends
|
4076 |
+
variant
|
4077 |
+
protuberance
|
4078 |
+
hypermetabolic
|
4079 |
+
aetiology
|
4080 |
+
aqueduct
|
4081 |
+
biapical
|
4082 |
+
blowout
|
4083 |
+
breathing
|
4084 |
+
cervic
|
4085 |
+
dissection
|
4086 |
+
diverticula
|
4087 |
+
ebv
|
4088 |
+
edentulous
|
4089 |
+
ectactic
|
4090 |
+
fibres
|
4091 |
+
hinders
|
4092 |
+
hospital
|
4093 |
+
longest
|
4094 |
+
ligament
|
4095 |
+
little
|
4096 |
+
myel
|
4097 |
+
nausea
|
4098 |
+
outer
|
4099 |
+
paget
|
4100 |
+
papilloma
|
4101 |
+
physaliph
|
4102 |
+
pachymeningeal
|
4103 |
+
pansinusitis
|
4104 |
+
root
|
4105 |
+
sessile
|
4106 |
+
symmetric
|
4107 |
+
type
|
4108 |
+
value
|
4109 |
+
vicinity
|
4110 |
+
xii
|
4111 |
+
zyg
|
4112 |
+
##ysts
|
4113 |
+
##hordal
|
4114 |
+
reversal
|
4115 |
+
investigation
|
4116 |
+
conditions
|
4117 |
+
consequently
|
4118 |
+
##olisthesis
|
4119 |
+
chordoma
|
4120 |
+
already
|
4121 |
+
scope
|
4122 |
+
scapulae
|
4123 |
+
notochordal
|
4124 |
+
distorted
|
4125 |
+
retrotympanic
|
4126 |
+
classification
|
4127 |
+
measurement
|
4128 |
+
mucocoele
|
4129 |
+
##ependymal
|
4130 |
+
subtraction
|
4131 |
+
aryepiglottic
|
4132 |
+
diabetes
|
4133 |
+
8thditon
|
4134 |
+
communic
|
4135 |
+
encountered
|
4136 |
+
recurrence
|
4137 |
+
bronchiectasis
|
4138 |
+
surveillance
|
4139 |
+
occasionally
|
4140 |
+
underdeveloped
|
4141 |
+
architecture
|
4142 |
+
supraglottic
|
4143 |
+
neuroforamina
|
4144 |
+
elsewhere
|
4145 |
+
electronic
|
4146 |
+
symptoms
|
4147 |
+
haemangiomas
|
4148 |
+
microcysts
|
4149 |
+
epiglottis
|
4150 |
+
ecchondrosis
|
4151 |
+
lymphoepithelioma
|
4152 |
+
microangiopathic
|
4153 |
+
physaliphora
|
4154 |
+
03
|
4155 |
+
09
|
4156 |
+
0m0
|
4157 |
+
0mm
|
4158 |
+
0×2
|
4159 |
+
0×4
|
4160 |
+
1a
|
4161 |
+
1b
|
4162 |
+
1×4
|
4163 |
+
2m
|
4164 |
+
2a
|
4165 |
+
26
|
4166 |
+
2×2
|
4167 |
+
24mm
|
4168 |
+
2x3
|
4169 |
+
2×1
|
4170 |
+
2m1
|
4171 |
+
28mm
|
4172 |
+
2×6
|
4173 |
+
28x1
|
4174 |
+
3x
|
4175 |
+
39
|
4176 |
+
32
|
4177 |
+
35
|
4178 |
+
38
|
4179 |
+
3x1
|
4180 |
+
3x2
|
4181 |
+
3×2
|
4182 |
+
34mm
|
4183 |
+
3×1
|
4184 |
+
30mm
|
4185 |
+
3×6
|
4186 |
+
4x
|
4187 |
+
40
|
4188 |
+
42
|
4189 |
+
48
|
4190 |
+
4×2
|
4191 |
+
4×3
|
4192 |
+
44mm
|
4193 |
+
45mm
|
4194 |
+
4×1
|
4195 |
+
47mm
|
4196 |
+
43mm
|
4197 |
+
40mm
|
4198 |
+
41mm
|
4199 |
+
5t
|
4200 |
+
5a
|
4201 |
+
51
|
4202 |
+
56
|
4203 |
+
58
|
4204 |
+
5×3
|
4205 |
+
5×1
|
4206 |
+
5×4
|
4207 |
+
5tes
|
4208 |
+
5×6
|
4209 |
+
55×3
|
4210 |
+
6×
|
4211 |
+
60
|
4212 |
+
64
|
4213 |
+
65
|
4214 |
+
68
|
4215 |
+
61mm
|
4216 |
+
6×6
|
4217 |
+
6x11mm
|
4218 |
+
6×5
|
4219 |
+
6x10mm
|
4220 |
+
7m
|
4221 |
+
701
|
4222 |
+
7×4
|
4223 |
+
8×1
|
4224 |
+
8×4
|
4225 |
+
8×6
|
4226 |
+
9×
|
4227 |
+
90
|
4228 |
+
99
|
4229 |
+
901
|
4230 |
+
9×2
|
4231 |
+
9×3
|
4232 |
+
9x3
|
4233 |
+
9×5
|
4234 |
+
ae
|
4235 |
+
aid
|
4236 |
+
ahn
|
4237 |
+
aspir
|
4238 |
+
aver
|
4239 |
+
away
|
4240 |
+
bes
|
4241 |
+
bith
|
4242 |
+
bial
|
4243 |
+
bow
|
4244 |
+
bur
|
4245 |
+
buc
|
4246 |
+
bm0
|
4247 |
+
bap
|
4248 |
+
cn
|
4249 |
+
cat
|
4250 |
+
cri
|
4251 |
+
cant
|
4252 |
+
cut
|
4253 |
+
cres
|
4254 |
+
cur
|
4255 |
+
creat
|
4256 |
+
cathe
|
4257 |
+
ds
|
4258 |
+
did
|
4259 |
+
div
|
4260 |
+
doc
|
4261 |
+
day
|
4262 |
+
density
|
4263 |
+
dce
|
4264 |
+
data
|
4265 |
+
eg
|
4266 |
+
eas
|
4267 |
+
eral
|
4268 |
+
era
|
4269 |
+
est
|
4270 |
+
eber
|
4271 |
+
fd
|
4272 |
+
fal
|
4273 |
+
fer
|
4274 |
+
four
|
4275 |
+
fir
|
4276 |
+
fess
|
4277 |
+
fra
|
4278 |
+
filtr
|
4279 |
+
face
|
4280 |
+
fixed
|
4281 |
+
fift
|
4282 |
+
gamm
|
4283 |
+
gran
|
4284 |
+
ho
|
4285 |
+
hx
|
4286 |
+
hk
|
4287 |
+
hig
|
4288 |
+
hiv
|
4289 |
+
hand
|
4290 |
+
hong
|
4291 |
+
hilar
|
4292 |
+
hans
|
4293 |
+
hole
|
4294 |
+
i2
|
4295 |
+
iam
|
4296 |
+
ide
|
4297 |
+
iga
|
4298 |
+
jap
|
4299 |
+
ky
|
4300 |
+
kid
|
4301 |
+
kong
|
4302 |
+
lt
|
4303 |
+
ll
|
4304 |
+
lit
|
4305 |
+
light
|
4306 |
+
lab
|
4307 |
+
lay
|
4308 |
+
lod
|
4309 |
+
load
|
4310 |
+
md
|
4311 |
+
mx
|
4312 |
+
mul
|
4313 |
+
might
|
4314 |
+
mad
|
4315 |
+
mud
|
4316 |
+
miss
|
4317 |
+
mob
|
4318 |
+
mte
|
4319 |
+
mra
|
4320 |
+
mental
|
4321 |
+
myl
|
4322 |
+
meningeal
|
4323 |
+
mpc
|
4324 |
+
ns
|
4325 |
+
nk
|
4326 |
+
never
|
4327 |
+
nape
|
4328 |
+
oper
|
4329 |
+
pd
|
4330 |
+
pi
|
4331 |
+
py
|
4332 |
+
ps
|
4333 |
+
pf
|
4334 |
+
pad
|
4335 |
+
pte
|
4336 |
+
punc
|
4337 |
+
pell
|
4338 |
+
pyr
|
4339 |
+
pack
|
4340 |
+
ppos
|
4341 |
+
pending
|
4342 |
+
rp
|
4343 |
+
rar
|
4344 |
+
rig
|
4345 |
+
righ
|
4346 |
+
rent
|
4347 |
+
ross
|
4348 |
+
rud
|
4349 |
+
rap
|
4350 |
+
rind
|
4351 |
+
rises
|
4352 |
+
rumour
|
4353 |
+
sum
|
4354 |
+
sac
|
4355 |
+
sternal
|
4356 |
+
sate
|
4357 |
+
sep
|
4358 |
+
swi
|
4359 |
+
sized
|
4360 |
+
tx
|
4361 |
+
t0
|
4362 |
+
tre
|
4363 |
+
test
|
4364 |
+
term
|
4365 |
+
tak
|
4366 |
+
vc
|
4367 |
+
v1
|
4368 |
+
vas
|
4369 |
+
vom
|
4370 |
+
vir
|
4371 |
+
vasc
|
4372 |
+
vest
|
4373 |
+
vision
|
4374 |
+
will
|
4375 |
+
wald
|
4376 |
+
x3
|
4377 |
+
x1
|
4378 |
+
x6
|
4379 |
+
x4
|
4380 |
+
xap
|
4381 |
+
y1
|
4382 |
+
you
|
4383 |
+
##ey
|
4384 |
+
##eal
|
4385 |
+
##eth
|
4386 |
+
##eases
|
4387 |
+
##nx
|
4388 |
+
##n3
|
4389 |
+
##n0
|
4390 |
+
##nh
|
4391 |
+
##nit
|
4392 |
+
##num
|
4393 |
+
##nial
|
4394 |
+
##nch
|
4395 |
+
##nants
|
4396 |
+
##dis
|
4397 |
+
##dated
|
4398 |
+
##dered
|
4399 |
+
##diology
|
4400 |
+
##rf
|
4401 |
+
##ron
|
4402 |
+
##rax
|
4403 |
+
##rontal
|
4404 |
+
##rosc
|
4405 |
+
##rinates
|
4406 |
+
##iag
|
4407 |
+
##iment
|
4408 |
+
##ired
|
4409 |
+
##iosuperior
|
4410 |
+
##gion
|
4411 |
+
##gopalatine
|
4412 |
+
##gative
|
4413 |
+
##gital
|
4414 |
+
##gitis
|
4415 |
+
##growth
|
4416 |
+
##gye
|
4417 |
+
##c2
|
4418 |
+
##cent
|
4419 |
+
##cular
|
4420 |
+
##cav
|
4421 |
+
##cend
|
4422 |
+
##cess
|
4423 |
+
##cence
|
4424 |
+
##colog
|
4425 |
+
##cked
|
4426 |
+
##cica
|
4427 |
+
##cuted
|
4428 |
+
##uing
|
4429 |
+
##uate
|
4430 |
+
##uation
|
4431 |
+
##uff
|
4432 |
+
##uish
|
4433 |
+
##pon
|
4434 |
+
##ped
|
4435 |
+
##pious
|
4436 |
+
##plete
|
4437 |
+
##pness
|
4438 |
+
##oy
|
4439 |
+
##oz
|
4440 |
+
##oon
|
4441 |
+
##oes
|
4442 |
+
##oary
|
4443 |
+
##oic
|
4444 |
+
##oom
|
4445 |
+
##otr
|
4446 |
+
##oour
|
4447 |
+
##orem
|
4448 |
+
##oth
|
4449 |
+
##ohyoid
|
4450 |
+
##x5mm
|
4451 |
+
##x8x1
|
4452 |
+
##mi
|
4453 |
+
##mx
|
4454 |
+
##mary
|
4455 |
+
##more
|
4456 |
+
##misp
|
4457 |
+
##mixed
|
4458 |
+
##ts
|
4459 |
+
##t3
|
4460 |
+
##t1
|
4461 |
+
##ten
|
4462 |
+
##tist
|
4463 |
+
##tment
|
4464 |
+
##timal
|
4465 |
+
##tology
|
4466 |
+
##tak
|
4467 |
+
##taic
|
4468 |
+
##tumour
|
4469 |
+
##theless
|
4470 |
+
##yngeal
|
4471 |
+
##ygoid
|
4472 |
+
##aph
|
4473 |
+
##ageal
|
4474 |
+
##aug
|
4475 |
+
##sh
|
4476 |
+
##sion
|
4477 |
+
##sid
|
4478 |
+
##sist
|
4479 |
+
##sur
|
4480 |
+
##sory
|
4481 |
+
##sure
|
4482 |
+
##sification
|
4483 |
+
##sfs
|
4484 |
+
##spers
|
4485 |
+
##suing
|
4486 |
+
##lph
|
4487 |
+
##led
|
4488 |
+
##lis
|
4489 |
+
##land
|
4490 |
+
##var
|
4491 |
+
##vil
|
4492 |
+
##vance
|
4493 |
+
##vascular
|
4494 |
+
##fal
|
4495 |
+
##fit
|
4496 |
+
##fused
|
4497 |
+
##bar
|
4498 |
+
##bre
|
4499 |
+
##ball
|
4500 |
+
##bness
|
4501 |
+
##briform
|
4502 |
+
##3m
|
4503 |
+
##3x26mm
|
4504 |
+
##jug
|
4505 |
+
##ks
|
4506 |
+
##06
|
4507 |
+
##04
|
4508 |
+
##05
|
4509 |
+
##08
|
4510 |
+
##0x1
|
4511 |
+
##001
|
4512 |
+
##0×1
|
4513 |
+
##14
|
4514 |
+
##1x2
|
4515 |
+
##1tumour
|
4516 |
+
##1001
|
4517 |
+
##6x1
|
4518 |
+
##6x18mm
|
4519 |
+
##hc
|
4520 |
+
##hion
|
4521 |
+
##hus
|
4522 |
+
##han
|
4523 |
+
##his
|
4524 |
+
##haem
|
4525 |
+
##7×3
|
4526 |
+
##98
|
4527 |
+
##9x2
|
4528 |
+
##9x10mm
|
4529 |
+
##5cm
|
4530 |
+
##zy
|
4531 |
+
##8x3
|
4532 |
+
##hed
|
4533 |
+
##heal
|
4534 |
+
##held
|
4535 |
+
##hemisp
|
4536 |
+
them
|
4537 |
+
thecal
|
4538 |
+
thems
|
4539 |
+
##ale
|
4540 |
+
##aluminal
|
4541 |
+
##aring
|
4542 |
+
##arding
|
4543 |
+
##aract
|
4544 |
+
##arted
|
4545 |
+
##ar201
|
4546 |
+
##arakable
|
4547 |
+
##argye
|
4548 |
+
##arpness
|
4549 |
+
##astas
|
4550 |
+
##renal
|
4551 |
+
##ery
|
4552 |
+
##ers
|
4553 |
+
##erin
|
4554 |
+
##erus
|
4555 |
+
##ering
|
4556 |
+
##erable
|
4557 |
+
##erterm
|
4558 |
+
##onpc
|
4559 |
+
##inge
|
4560 |
+
##inoid
|
4561 |
+
##inine
|
4562 |
+
##inated
|
4563 |
+
##inuity
|
4564 |
+
##inuate
|
4565 |
+
init
|
4566 |
+
inspec
|
4567 |
+
inspect
|
4568 |
+
inwards
|
4569 |
+
innum
|
4570 |
+
ingrowth
|
4571 |
+
##ndering
|
4572 |
+
##esor
|
4573 |
+
##ester
|
4574 |
+
##ortion
|
4575 |
+
##oration
|
4576 |
+
##oracic
|
4577 |
+
##orudes
|
4578 |
+
##ativ
|
4579 |
+
##atomy
|
4580 |
+
##atysm
|
4581 |
+
nov
|
4582 |
+
##aryx
|
4583 |
+
##ussion
|
4584 |
+
##iting
|
4585 |
+
##itud
|
4586 |
+
##itple
|
4587 |
+
##idal
|
4588 |
+
##ides
|
4589 |
+
##idum
|
4590 |
+
##iderin
|
4591 |
+
##phopharyngeal
|
4592 |
+
##phosis
|
4593 |
+
##enge
|
4594 |
+
##enia
|
4595 |
+
##enral
|
4596 |
+
##icle
|
4597 |
+
##icuous
|
4598 |
+
##icienc
|
4599 |
+
##anasal
|
4600 |
+
island
|
4601 |
+
##osal
|
4602 |
+
##osiderin
|
4603 |
+
##teral
|
4604 |
+
means
|
4605 |
+
##umul
|
4606 |
+
##ument
|
4607 |
+
let
|
4608 |
+
leve
|
4609 |
+
leav
|
4610 |
+
leung
|
4611 |
+
##edullary
|
4612 |
+
##igest
|
4613 |
+
##leted
|
4614 |
+
nasog
|
4615 |
+
nasphopharyngeal
|
4616 |
+
##inguous
|
4617 |
+
##inguish
|
4618 |
+
##ingled
|
4619 |
+
##uloma
|
4620 |
+
##ulbar
|
4621 |
+
metastat
|
4622 |
+
metastaic
|
4623 |
+
refused
|
4624 |
+
rendering
|
4625 |
+
##entim
|
4626 |
+
withheld
|
4627 |
+
rightt
|
4628 |
+
nasopharyneal
|
4629 |
+
nasopharyngitis
|
4630 |
+
##ism
|
4631 |
+
##isation
|
4632 |
+
##isrup
|
4633 |
+
tumoour
|
4634 |
+
##omost
|
4635 |
+
##omises
|
4636 |
+
##omatic
|
4637 |
+
##omplete
|
4638 |
+
tof
|
4639 |
+
toc2
|
4640 |
+
oram
|
4641 |
+
##ilities
|
4642 |
+
##ilection
|
4643 |
+
necess
|
4644 |
+
##pering
|
4645 |
+
##perienc
|
4646 |
+
metastastic
|
4647 |
+
##clar
|
4648 |
+
exit
|
4649 |
+
exotr
|
4650 |
+
experienc
|
4651 |
+
##ablis
|
4652 |
+
updated
|
4653 |
+
uptak
|
4654 |
+
##allenge
|
4655 |
+
t1rh
|
4656 |
+
union
|
4657 |
+
unav
|
4658 |
+
unrel
|
4659 |
+
unsh
|
4660 |
+
unbre
|
4661 |
+
consp
|
4662 |
+
conch
|
4663 |
+
t1wfs
|
4664 |
+
##olester
|
4665 |
+
##reman
|
4666 |
+
unremarakable
|
4667 |
+
##owding
|
4668 |
+
spill
|
4669 |
+
spont
|
4670 |
+
spicul
|
4671 |
+
paracent
|
4672 |
+
carnial
|
4673 |
+
cardiology
|
4674 |
+
chun
|
4675 |
+
china
|
4676 |
+
challenge
|
4677 |
+
cholester
|
4678 |
+
nasopharynxl
|
4679 |
+
##ossible
|
4680 |
+
##ife
|
4681 |
+
##ifically
|
4682 |
+
##aced
|
4683 |
+
##acial
|
4684 |
+
invasin
|
4685 |
+
altern
|
4686 |
+
alto
|
4687 |
+
involuted
|
4688 |
+
##avity
|
4689 |
+
##aviv
|
4690 |
+
##avenous
|
4691 |
+
##avily
|
4692 |
+
##teriorly
|
4693 |
+
##isting
|
4694 |
+
##istax
|
4695 |
+
smok
|
4696 |
+
smalll
|
4697 |
+
smallish
|
4698 |
+
##cine
|
4699 |
+
##cinator
|
4700 |
+
t2a
|
4701 |
+
t2sfs
|
4702 |
+
cortic
|
4703 |
+
fossal
|
4704 |
+
jugulare
|
4705 |
+
inform
|
4706 |
+
infact
|
4707 |
+
ones
|
4708 |
+
onse
|
4709 |
+
oncolog
|
4710 |
+
cavum
|
4711 |
+
cavitary
|
4712 |
+
regarding
|
4713 |
+
corona
|
4714 |
+
intenral
|
4715 |
+
scaph
|
4716 |
+
##ami
|
4717 |
+
##amucos
|
4718 |
+
##amidal
|
4719 |
+
who
|
4720 |
+
whose
|
4721 |
+
##ury
|
4722 |
+
##urs
|
4723 |
+
notably
|
4724 |
+
heart
|
4725 |
+
hearing
|
4726 |
+
heavily
|
4727 |
+
distance
|
4728 |
+
distortion
|
4729 |
+
distinguish
|
4730 |
+
pterygomax
|
4731 |
+
pterygoplatine
|
4732 |
+
retrob
|
4733 |
+
retropharyng
|
4734 |
+
retromandibular
|
4735 |
+
retrolisthesis
|
4736 |
+
midly
|
4737 |
+
midway
|
4738 |
+
midjug
|
4739 |
+
scanner
|
4740 |
+
ears
|
4741 |
+
earli
|
4742 |
+
heads
|
4743 |
+
##heric
|
4744 |
+
depression
|
4745 |
+
delph
|
4746 |
+
dehis
|
4747 |
+
base0
|
4748 |
+
##otomy
|
4749 |
+
##inear
|
4750 |
+
##ullar
|
4751 |
+
##axillary
|
4752 |
+
paraest
|
4753 |
+
paraphy
|
4754 |
+
parafal
|
4755 |
+
styl
|
4756 |
+
start
|
4757 |
+
started
|
4758 |
+
##ircles
|
4759 |
+
enucle
|
4760 |
+
ensuing
|
4761 |
+
forament
|
4762 |
+
foramens
|
4763 |
+
abd
|
4764 |
+
able
|
4765 |
+
contrasting
|
4766 |
+
##endent
|
4767 |
+
##endage
|
4768 |
+
##endosc
|
4769 |
+
crcl
|
4770 |
+
crowding
|
4771 |
+
prog
|
4772 |
+
prorudes
|
4773 |
+
prossible
|
4774 |
+
extended
|
4775 |
+
postsur
|
4776 |
+
##opap
|
4777 |
+
##opically
|
4778 |
+
##optimal
|
4779 |
+
##openia
|
4780 |
+
pretrac
|
4781 |
+
precontrast
|
4782 |
+
precav
|
4783 |
+
##portance
|
4784 |
+
walled
|
4785 |
+
beli
|
4786 |
+
cana
|
4787 |
+
ant
|
4788 |
+
anatomy
|
4789 |
+
hypere
|
4790 |
+
##cluder
|
4791 |
+
##ands
|
4792 |
+
suspect
|
4793 |
+
suspious
|
4794 |
+
apt
|
4795 |
+
##eninges
|
4796 |
+
techniquee
|
4797 |
+
clivis
|
4798 |
+
accesor
|
4799 |
+
accumul
|
4800 |
+
book
|
4801 |
+
final
|
4802 |
+
earlyt3
|
4803 |
+
staget1
|
4804 |
+
##ucidum
|
4805 |
+
##imet
|
4806 |
+
##imural
|
4807 |
+
##ibules
|
4808 |
+
sphenoe
|
4809 |
+
sphenoplatine
|
4810 |
+
ajc
|
4811 |
+
sphenoidale
|
4812 |
+
fissural
|
4813 |
+
saggital
|
4814 |
+
mucle
|
4815 |
+
mastoiditis
|
4816 |
+
mucosing
|
4817 |
+
miller
|
4818 |
+
craniof
|
4819 |
+
craniotomy
|
4820 |
+
mucosally
|
4821 |
+
##illay
|
4822 |
+
admixed
|
4823 |
+
adrenal
|
4824 |
+
##obed
|
4825 |
+
nonet
|
4826 |
+
##oove
|
4827 |
+
asl
|
4828 |
+
asf
|
4829 |
+
subependymal
|
4830 |
+
subsid
|
4831 |
+
suboptimal
|
4832 |
+
lateraly
|
4833 |
+
laterality
|
4834 |
+
appoint
|
4835 |
+
appendage
|
4836 |
+
prominently
|
4837 |
+
##play
|
4838 |
+
##ploic
|
4839 |
+
larges
|
4840 |
+
index
|
4841 |
+
induced
|
4842 |
+
inderterm
|
4843 |
+
seem
|
4844 |
+
se1001
|
4845 |
+
hyperost
|
4846 |
+
parotiditis
|
4847 |
+
predilection
|
4848 |
+
arises
|
4849 |
+
arae
|
4850 |
+
##essory
|
4851 |
+
gls
|
4852 |
+
inferoan
|
4853 |
+
inferolateral
|
4854 |
+
inferoposterior
|
4855 |
+
inferomost
|
4856 |
+
inflammary
|
4857 |
+
die
|
4858 |
+
diploic
|
4859 |
+
indetermined
|
4860 |
+
##elung
|
4861 |
+
##elves
|
4862 |
+
appeared
|
4863 |
+
hyperplastic
|
4864 |
+
mok
|
4865 |
+
mode
|
4866 |
+
furtherr
|
4867 |
+
furthermore
|
4868 |
+
enhacement
|
4869 |
+
extracran
|
4870 |
+
vidial
|
4871 |
+
##existing
|
4872 |
+
specifically
|
4873 |
+
composed
|
4874 |
+
completed
|
4875 |
+
suppress
|
4876 |
+
medal
|
4877 |
+
floors
|
4878 |
+
froz
|
4879 |
+
slit
|
4880 |
+
slip
|
4881 |
+
supraorbital
|
4882 |
+
suprahyoid
|
4883 |
+
disrup
|
4884 |
+
diseases
|
4885 |
+
display
|
4886 |
+
mar2013
|
4887 |
+
tumoral
|
4888 |
+
possibilities
|
4889 |
+
##ayngeal
|
4890 |
+
multi
|
4891 |
+
muscosal
|
4892 |
+
centimet
|
4893 |
+
cricoary
|
4894 |
+
superoposterior
|
4895 |
+
difference
|
4896 |
+
cytology
|
4897 |
+
cartilages
|
4898 |
+
bordered
|
4899 |
+
bordering
|
4900 |
+
##ostomy
|
4901 |
+
##clivical
|
4902 |
+
match
|
4903 |
+
cranially
|
4904 |
+
changed
|
4905 |
+
t1no
|
4906 |
+
situ
|
4907 |
+
sited
|
4908 |
+
septal
|
4909 |
+
lobular
|
4910 |
+
persist
|
4911 |
+
perimural
|
4912 |
+
numbness
|
4913 |
+
numerus
|
4914 |
+
encirc
|
4915 |
+
encircles
|
4916 |
+
##enmuller
|
4917 |
+
rosenmullar
|
4918 |
+
reconstr
|
4919 |
+
representing
|
4920 |
+
##ometal
|
4921 |
+
remod
|
4922 |
+
remnants
|
4923 |
+
##yrygoid
|
4924 |
+
##thmoidal
|
4925 |
+
im14
|
4926 |
+
importance
|
4927 |
+
patch
|
4928 |
+
t4nm0
|
4929 |
+
otomastoids
|
4930 |
+
resected
|
4931 |
+
respon
|
4932 |
+
##odigest
|
4933 |
+
ctb
|
4934 |
+
hazy
|
4935 |
+
sizes
|
4936 |
+
sizable
|
4937 |
+
sizeable
|
4938 |
+
marginated
|
4939 |
+
mainy
|
4940 |
+
cannon
|
4941 |
+
##rovascular
|
4942 |
+
petct
|
4943 |
+
continguous
|
4944 |
+
##ereved
|
4945 |
+
##aching
|
4946 |
+
views
|
4947 |
+
viewed
|
4948 |
+
pressure
|
4949 |
+
presereved
|
4950 |
+
thank
|
4951 |
+
conglomerating
|
4952 |
+
locore
|
4953 |
+
##entioned
|
4954 |
+
accesssory
|
4955 |
+
##ximity
|
4956 |
+
##llite
|
4957 |
+
accessoryy
|
4958 |
+
##ophageal
|
4959 |
+
open
|
4960 |
+
opposed
|
4961 |
+
longer
|
4962 |
+
longitud
|
4963 |
+
petroclivical
|
4964 |
+
palati
|
4965 |
+
palatal
|
4966 |
+
palates
|
4967 |
+
extraparotid
|
4968 |
+
extramed
|
4969 |
+
extrathyroid
|
4970 |
+
extradural
|
4971 |
+
extramucos
|
4972 |
+
##ontinuity
|
4973 |
+
tubinate
|
4974 |
+
tuberous
|
4975 |
+
tubrinates
|
4976 |
+
incomplete
|
4977 |
+
fascial
|
4978 |
+
intradural
|
4979 |
+
intraluminal
|
4980 |
+
intranasal
|
4981 |
+
intravenous
|
4982 |
+
##x14mm
|
4983 |
+
##x12mm
|
4984 |
+
##x13x1
|
4985 |
+
##x12x2
|
4986 |
+
##x16x18mm
|
4987 |
+
turcica
|
4988 |
+
difficulty
|
4989 |
+
postero
|
4990 |
+
posteromedial
|
4991 |
+
##ternoon
|
4992 |
+
undisrup
|
4993 |
+
prof
|
4994 |
+
proves
|
4995 |
+
proximity
|
4996 |
+
continue
|
4997 |
+
continues
|
4998 |
+
shortly
|
4999 |
+
pls
|
5000 |
+
platysm
|
5001 |
+
placed
|
5002 |
+
jugulodiag
|
5003 |
+
relativ
|
5004 |
+
retains
|
5005 |
+
tin0m0
|
5006 |
+
tinnit
|
5007 |
+
tin1tumour
|
5008 |
+
evaluated
|
5009 |
+
conglomerations
|
5010 |
+
occurs
|
5011 |
+
contained
|
5012 |
+
discussion
|
5013 |
+
discontinuity
|
5014 |
+
moderately
|
5015 |
+
10cm
|
5016 |
+
10x2
|
5017 |
+
1001
|
5018 |
+
10x11mm
|
5019 |
+
event
|
5020 |
+
striations
|
5021 |
+
strands
|
5022 |
+
##x24mm
|
5023 |
+
##x22x2
|
5024 |
+
##x23x26mm
|
5025 |
+
##x26x1
|
5026 |
+
##x28x3
|
5027 |
+
incidenal
|
5028 |
+
incidentally
|
5029 |
+
pharyngo
|
5030 |
+
perforation
|
5031 |
+
1201
|
5032 |
+
12x11mm
|
5033 |
+
12aug
|
5034 |
+
12x13x1
|
5035 |
+
formation
|
5036 |
+
formamina
|
5037 |
+
scfs
|
5038 |
+
icas
|
5039 |
+
neural
|
5040 |
+
neither
|
5041 |
+
negative
|
5042 |
+
advised
|
5043 |
+
compressive
|
5044 |
+
endoscopically
|
5045 |
+
mechan
|
5046 |
+
ace
|
5047 |
+
acessory
|
5048 |
+
compare
|
5049 |
+
comparing
|
5050 |
+
comparatively
|
5051 |
+
compartment
|
5052 |
+
equivocally
|
5053 |
+
inside
|
5054 |
+
insuff
|
5055 |
+
insinuate
|
5056 |
+
##×25×3
|
5057 |
+
##×20×1
|
5058 |
+
##regate
|
5059 |
+
obstrcuted
|
5060 |
+
3n2
|
5061 |
+
##×37×2
|
5062 |
+
cords
|
5063 |
+
aerodigest
|
5064 |
+
descend
|
5065 |
+
confused
|
5066 |
+
surrounded
|
5067 |
+
11a
|
5068 |
+
11cm
|
5069 |
+
11x10mm
|
5070 |
+
fibroma
|
5071 |
+
raised
|
5072 |
+
thinned
|
5073 |
+
crossed
|
5074 |
+
haemosiderin
|
5075 |
+
extranodular
|
5076 |
+
134
|
5077 |
+
13cm
|
5078 |
+
13x5mm
|
5079 |
+
13x23x26mm
|
5080 |
+
localized
|
5081 |
+
tornwald
|
5082 |
+
contiguity
|
5083 |
+
indentation
|
5084 |
+
diameters
|
5085 |
+
continuing
|
5086 |
+
subcentim
|
5087 |
+
arterty
|
5088 |
+
presuming
|
5089 |
+
presumabal
|
5090 |
+
denervated
|
5091 |
+
became
|
5092 |
+
grade
|
5093 |
+
groove
|
5094 |
+
##stemic
|
5095 |
+
##aneously
|
5096 |
+
degenerated
|
5097 |
+
cerebrovascular
|
5098 |
+
cerebelli
|
5099 |
+
ducts
|
5100 |
+
simple
|
5101 |
+
interal
|
5102 |
+
interim
|
5103 |
+
interface
|
5104 |
+
interspers
|
5105 |
+
interhemisp
|
5106 |
+
grouping
|
5107 |
+
ppfs
|
5108 |
+
ganglioc
|
5109 |
+
auricular
|
5110 |
+
t3n2mx
|
5111 |
+
planum
|
5112 |
+
striping
|
5113 |
+
stripped
|
5114 |
+
neuro
|
5115 |
+
2010
|
5116 |
+
2014
|
5117 |
+
##hesia
|
5118 |
+
##orrhages
|
5119 |
+
nasoendosc
|
5120 |
+
t4n3a
|
5121 |
+
t4n3dis
|
5122 |
+
t4n3mi
|
5123 |
+
checked
|
5124 |
+
##×15
|
5125 |
+
##×17×2
|
5126 |
+
##×17×3
|
5127 |
+
t3n3m
|
5128 |
+
obliterate
|
5129 |
+
confluence
|
5130 |
+
4n1m0
|
5131 |
+
4n3m
|
5132 |
+
goiter
|
5133 |
+
meninges
|
5134 |
+
mastication
|
5135 |
+
replaces
|
5136 |
+
##omalacic
|
5137 |
+
developed
|
5138 |
+
development
|
5139 |
+
1801
|
5140 |
+
18x24mm
|
5141 |
+
mets
|
5142 |
+
anterosuperior
|
5143 |
+
anteroinferior
|
5144 |
+
anterolisthesis
|
5145 |
+
anteriosuperior
|
5146 |
+
encroaching
|
5147 |
+
results
|
5148 |
+
##ephalic
|
5149 |
+
212
|
5150 |
+
2101
|
5151 |
+
21x12mm
|
5152 |
+
bilobed
|
5153 |
+
cisternal
|
5154 |
+
chronicity
|
5155 |
+
differentiating
|
5156 |
+
t1n2c
|
5157 |
+
t4n2m
|
5158 |
+
structure
|
5159 |
+
structural
|
5160 |
+
20x26mm
|
5161 |
+
20x8x1
|
5162 |
+
2005
|
5163 |
+
20x14mm
|
5164 |
+
22x12x2
|
5165 |
+
22×37×2
|
5166 |
+
coexisting
|
5167 |
+
emphy
|
5168 |
+
ijc
|
5169 |
+
osteoma
|
5170 |
+
osteopenia
|
5171 |
+
osteometal
|
5172 |
+
separating
|
5173 |
+
lns1
|
5174 |
+
sellae
|
5175 |
+
basion
|
5176 |
+
basis
|
5177 |
+
gives
|
5178 |
+
ostium
|
5179 |
+
##artment
|
5180 |
+
prelaryngeal
|
5181 |
+
antra
|
5182 |
+
confirmation
|
5183 |
+
2n1
|
5184 |
+
2n3m0
|
5185 |
+
colli
|
5186 |
+
later
|
5187 |
+
ser13
|
5188 |
+
##×45×3
|
5189 |
+
pathway
|
5190 |
+
pathological
|
5191 |
+
combination
|
5192 |
+
tracheoes
|
5193 |
+
tracheostomy
|
5194 |
+
questioned
|
5195 |
+
aforem
|
5196 |
+
afternoon
|
5197 |
+
block
|
5198 |
+
bloom
|
5199 |
+
required
|
5200 |
+
deviating
|
5201 |
+
prolapses
|
5202 |
+
effaces
|
5203 |
+
effacing
|
5204 |
+
attachment
|
5205 |
+
attached
|
5206 |
+
indicates
|
5207 |
+
removal
|
5208 |
+
chemo
|
5209 |
+
chemort
|
5210 |
+
valleculae
|
5211 |
+
14cm
|
5212 |
+
14x10mm
|
5213 |
+
2x6
|
5214 |
+
2x5
|
5215 |
+
9x4
|
5216 |
+
9x7mm
|
5217 |
+
hamper
|
5218 |
+
macrosc
|
5219 |
+
molars
|
5220 |
+
osterior
|
5221 |
+
ossification
|
5222 |
+
wider
|
5223 |
+
widely
|
5224 |
+
widened
|
5225 |
+
##neys
|
5226 |
+
##pressive
|
5227 |
+
encephalomalacic
|
5228 |
+
ulcerative
|
5229 |
+
benefit
|
5230 |
+
17cm
|
5231 |
+
1704
|
5232 |
+
1998
|
5233 |
+
7x4
|
5234 |
+
7x5
|
5235 |
+
7x5mm
|
5236 |
+
7x8mm
|
5237 |
+
8x15mm
|
5238 |
+
epistax
|
5239 |
+
joints
|
5240 |
+
pulse
|
5241 |
+
##ixon
|
5242 |
+
##omedullary
|
5243 |
+
depending
|
5244 |
+
dependent
|
5245 |
+
department
|
5246 |
+
adds
|
5247 |
+
comments
|
5248 |
+
t2n12m0
|
5249 |
+
10x6mm
|
5250 |
+
10x7mm
|
5251 |
+
10x9x10mm
|
5252 |
+
needle
|
5253 |
+
insertions
|
5254 |
+
inserted
|
5255 |
+
destroy
|
5256 |
+
intermingled
|
5257 |
+
tracheaa
|
5258 |
+
dysprax
|
5259 |
+
pneumatised
|
5260 |
+
pneumatisation
|
5261 |
+
convincingly
|
5262 |
+
25x18mm
|
5263 |
+
25x26x1
|
5264 |
+
2x1x1
|
5265 |
+
9x1cm
|
5266 |
+
9x15mm
|
5267 |
+
buy
|
5268 |
+
forearm
|
5269 |
+
radical
|
5270 |
+
radiation
|
5271 |
+
rays
|
5272 |
+
meati
|
5273 |
+
##isions
|
5274 |
+
thalami
|
5275 |
+
t2bn3
|
5276 |
+
determined
|
5277 |
+
contours
|
5278 |
+
contouring
|
5279 |
+
obscures
|
5280 |
+
tsxapxcc
|
5281 |
+
##ologically
|
5282 |
+
16x11mm
|
5283 |
+
16x18mm
|
5284 |
+
1606
|
5285 |
+
16x16x18mm
|
5286 |
+
6x4
|
5287 |
+
6x4mm
|
5288 |
+
6x7mm
|
5289 |
+
6x9mm
|
5290 |
+
6x5cm
|
5291 |
+
breaches
|
5292 |
+
breached
|
5293 |
+
esrf
|
5294 |
+
odes
|
5295 |
+
pedicle
|
5296 |
+
##aky
|
5297 |
+
referring
|
5298 |
+
retrophx
|
5299 |
+
retropharngeal
|
5300 |
+
retrophayr
|
5301 |
+
retrophargye
|
5302 |
+
retrophayngeal
|
5303 |
+
define
|
5304 |
+
accountable
|
5305 |
+
indeterminent
|
5306 |
+
t1n3m1
|
5307 |
+
contents
|
5308 |
+
favors
|
5309 |
+
laryngo
|
5310 |
+
coalesce
|
5311 |
+
coalescing
|
5312 |
+
ballooned
|
5313 |
+
obscured
|
5314 |
+
penetration
|
5315 |
+
transependymal
|
5316 |
+
1x0
|
5317 |
+
1x6
|
5318 |
+
1x4
|
5319 |
+
270
|
5320 |
+
27x22x2
|
5321 |
+
27×17×3
|
5322 |
+
5x6
|
5323 |
+
5x5mm
|
5324 |
+
5x6mm
|
5325 |
+
6x2mm
|
5326 |
+
6x3mm
|
5327 |
+
8x5mm
|
5328 |
+
aorta
|
5329 |
+
boundary
|
5330 |
+
csi
|
5331 |
+
csae
|
5332 |
+
calvar
|
5333 |
+
creeping
|
5334 |
+
ocular
|
5335 |
+
occluded
|
5336 |
+
occlude
|
5337 |
+
occluder
|
5338 |
+
synch
|
5339 |
+
systemic
|
5340 |
+
team
|
5341 |
+
teeth
|
5342 |
+
times
|
5343 |
+
×21
|
5344 |
+
##ched
|
5345 |
+
##5×35
|
5346 |
+
propensity
|
5347 |
+
apxts
|
5348 |
+
paranasopharynx
|
5349 |
+
shadow
|
5350 |
+
sets
|
5351 |
+
setting
|
5352 |
+
settl
|
5353 |
+
histologically
|
5354 |
+
fronds
|
5355 |
+
impinge
|
5356 |
+
aggregate
|
5357 |
+
erode
|
5358 |
+
eroded
|
5359 |
+
weeks
|
5360 |
+
blurred
|
5361 |
+
radiating
|
5362 |
+
radiata
|
5363 |
+
homogenously
|
5364 |
+
essential
|
5365 |
+
pedunculated
|
5366 |
+
centering
|
5367 |
+
leptomeninges
|
5368 |
+
34×17×2
|
5369 |
+
bifrontal
|
5370 |
+
eyeball
|
5371 |
+
herniation
|
5372 |
+
morphologically
|
5373 |
+
nuclei
|
5374 |
+
ptergopalatine
|
5375 |
+
sockets
|
5376 |
+
tapering
|
5377 |
+
visible
|
5378 |
+
injury
|
5379 |
+
nasopharngeal
|
5380 |
+
nasophayr
|
5381 |
+
nasopharyx
|
5382 |
+
relevance
|
5383 |
+
concavity
|
5384 |
+
scalp
|
5385 |
+
streaky
|
5386 |
+
abscess
|
5387 |
+
lymphoadenopathy
|
5388 |
+
fragments
|
5389 |
+
fragmented
|
5390 |
+
superolaterally
|
5391 |
+
rectum
|
5392 |
+
repeated
|
5393 |
+
projections
|
5394 |
+
plaques
|
5395 |
+
12x8mm
|
5396 |
+
t4n3bm
|
5397 |
+
t4n3bm1
|
5398 |
+
2021
|
5399 |
+
covering
|
5400 |
+
micropap
|
5401 |
+
microhaem
|
5402 |
+
protrusions
|
5403 |
+
engulfing
|
5404 |
+
decrease
|
5405 |
+
decreased
|
5406 |
+
decreasing
|
5407 |
+
coalescent
|
5408 |
+
calcification
|
5409 |
+
variable
|
5410 |
+
protuberans
|
5411 |
+
hypermetabolism
|
5412 |
+
outpouchings
|
5413 |
+
0x0
|
5414 |
+
0x4
|
5415 |
+
1n1m0
|
5416 |
+
1n3m0
|
5417 |
+
15x11mm
|
5418 |
+
23x13mm
|
5419 |
+
23x11x2
|
5420 |
+
41x28x3
|
5421 |
+
5×5×4
|
5422 |
+
aug13
|
5423 |
+
coli
|
5424 |
+
colon
|
5425 |
+
foarm
|
5426 |
+
foreman
|
5427 |
+
fasica
|
5428 |
+
fashion
|
5429 |
+
filed
|
5430 |
+
films
|
5431 |
+
know
|
5432 |
+
knife
|
5433 |
+
ome
|
5434 |
+
premedullary
|
5435 |
+
premaxillary
|
5436 |
+
pocket
|
5437 |
+
pockets
|
5438 |
+
passes
|
5439 |
+
passing
|
5440 |
+
quite
|
5441 |
+
query
|
5442 |
+
##iocephalic
|
5443 |
+
interna
|
5444 |
+
internatal
|
5445 |
+
congested
|
5446 |
+
congestive
|
5447 |
+
choroidal
|
5448 |
+
stenosis
|
5449 |
+
stenosed
|
5450 |
+
prevent
|
5451 |
+
channels
|
5452 |
+
arrange
|
5453 |
+
arranged
|
5454 |
+
probabale
|
5455 |
+
probabaly
|
5456 |
+
comprised
|
5457 |
+
compromises
|
5458 |
+
supraclinoid
|
5459 |
+
supraclaviv
|
5460 |
+
##sema
|
5461 |
+
##seminated
|
5462 |
+
brachial
|
5463 |
+
brachiocephalic
|
5464 |
+
intracanalicular
|
5465 |
+
undergo
|
5466 |
+
undergone
|
5467 |
+
mottled
|
5468 |
+
mottling
|
5469 |
+
13x10x1
|
5470 |
+
13x19x2
|
5471 |
+
avidly
|
5472 |
+
replacement
|
5473 |
+
3mmx4mm
|
5474 |
+
3mmx6mm
|
5475 |
+
coiling
|
5476 |
+
courses
|
5477 |
+
coursing
|
5478 |
+
limbs
|
5479 |
+
attenuated
|
5480 |
+
attenuation
|
5481 |
+
intermuscular
|
5482 |
+
intermusclar
|
5483 |
+
homogeneously
|
5484 |
+
decompression
|
5485 |
+
decompressive
|
5486 |
+
elevated
|
5487 |
+
elevates
|
5488 |
+
elements
|
5489 |
+
apxlrxcc
|
5490 |
+
scalene
|
5491 |
+
scalenus
|
5492 |
+
stretches
|
5493 |
+
stretched
|
5494 |
+
cervicoth
|
5495 |
+
cervicomedullary
|
5496 |
+
myelopathy
|
5497 |
+
myelomalacia
|
5498 |
+
zygoma
|
5499 |
+
zygomatic
|
5500 |
+
investigations
|
5501 |
+
communicate
|
5502 |
+
communication
|
5503 |
+
26×15
|
5504 |
+
28x15mm
|
5505 |
+
3x0
|
5506 |
+
4x5
|
5507 |
+
40×20×1
|
5508 |
+
42×25×3
|
5509 |
+
5tesla
|
5510 |
+
55×35×35
|
5511 |
+
6×8
|
5512 |
+
60×45×3
|
5513 |
+
7mar201
|
5514 |
+
ahnh
|
5515 |
+
aspiration
|
5516 |
+
averaging
|
5517 |
+
besides
|
5518 |
+
bialteral
|
5519 |
+
bows
|
5520 |
+
burr
|
5521 |
+
buccinator
|
5522 |
+
baptist
|
5523 |
+
cataract
|
5524 |
+
cribriform
|
5525 |
+
canthus
|
5526 |
+
cuts
|
5527 |
+
crescent
|
5528 |
+
curvil
|
5529 |
+
creatinine
|
5530 |
+
catheter
|
5531 |
+
dsseminated
|
5532 |
+
divisions
|
5533 |
+
document
|
5534 |
+
easily
|
5535 |
+
eraly
|
5536 |
+
establis
|
5537 |
+
fdg
|
5538 |
+
falx
|
5539 |
+
ferry
|
5540 |
+
fourth
|
5541 |
+
first
|
5542 |
+
frail
|
5543 |
+
filtrated
|
5544 |
+
fifth
|
5545 |
+
gamma
|
5546 |
+
granuloma
|
5547 |
+
hkhc
|
5548 |
+
higher
|
5549 |
+
hanson
|
5550 |
+
ideally
|
5551 |
+
japan
|
5552 |
+
kyphosis
|
5553 |
+
kidneys
|
5554 |
+
layer
|
5555 |
+
lodes
|
5556 |
+
mdixon
|
5557 |
+
mulitple
|
5558 |
+
madelung
|
5559 |
+
missed
|
5560 |
+
mobile
|
5561 |
+
mteastas
|
5562 |
+
mylohyoid
|
5563 |
+
nsf
|
5564 |
+
nevertheless
|
5565 |
+
operative
|
5566 |
+
piriform
|
5567 |
+
pyriform
|
5568 |
+
psinal
|
5569 |
+
pfo
|
5570 |
+
pteyrygoid
|
5571 |
+
punctate
|
5572 |
+
pellucidum
|
5573 |
+
pyramidal
|
5574 |
+
packing
|
5575 |
+
pposterior
|
5576 |
+
rare
|
5577 |
+
rigth
|
5578 |
+
rentention
|
5579 |
+
rossenmuller
|
5580 |
+
rudiment
|
5581 |
+
rapid
|
5582 |
+
summary
|
5583 |
+
satellite
|
5584 |
+
septate
|
5585 |
+
treated
|
5586 |
+
tests
|
5587 |
+
terms
|
5588 |
+
taken
|
5589 |
+
vca
|
5590 |
+
vasogenic
|
5591 |
+
vomiting
|
5592 |
+
viral
|
5593 |
+
vasculature
|
5594 |
+
vestibules
|
5595 |
+
waldey
|
5596 |
+
##nhancement
|
5597 |
+
##ronous
|
5598 |
+
##gional
|
5599 |
+
##tenoid
|
5600 |
+
##082
|
5601 |
+
themselves
|
5602 |
+
##onpc082
|
5603 |
+
initial
|
5604 |
+
inspection
|
5605 |
+
inspected
|
5606 |
+
innumerable
|
5607 |
+
##iciency
|
5608 |
+
levei
|
5609 |
+
leaving
|
5610 |
+
nasogastric
|
5611 |
+
metastataic
|
5612 |
+
oramen
|
5613 |
+
necessary
|
5614 |
+
exotropic
|
5615 |
+
experienced
|
5616 |
+
uptake
|
5617 |
+
t1rhonpc082
|
5618 |
+
unavailable
|
5619 |
+
unrelated
|
5620 |
+
unsharpness
|
5621 |
+
unbreakable
|
5622 |
+
conspicuous
|
5623 |
+
concha
|
5624 |
+
spills
|
5625 |
+
spontaneously
|
5626 |
+
spiculated
|
5627 |
+
paracentral
|
5628 |
+
chunks
|
5629 |
+
cholesterol
|
5630 |
+
alternatively
|
5631 |
+
altogether
|
5632 |
+
smoking
|
5633 |
+
cortices
|
5634 |
+
information
|
5635 |
+
onset
|
5636 |
+
oncologist
|
5637 |
+
scaphoid
|
5638 |
+
pterygomaxillay
|
5639 |
+
retrobulbar
|
5640 |
+
retropharyngx
|
5641 |
+
midjugular
|
5642 |
+
earlier
|
5643 |
+
delphian
|
5644 |
+
dehiscence
|
5645 |
+
paraesthesia
|
5646 |
+
paraphyyngeal
|
5647 |
+
parafalcine
|
5648 |
+
styloid
|
5649 |
+
enucleation
|
5650 |
+
progress
|
5651 |
+
postsurgical
|
5652 |
+
pretracheal
|
5653 |
+
precaval
|
5654 |
+
believed
|
5655 |
+
hyperenhancement
|
5656 |
+
accesorry
|
5657 |
+
accumulation
|
5658 |
+
staget1n0
|
5659 |
+
sphenoethmoidal
|
5660 |
+
craniofacial
|
5661 |
+
nonetheless
|
5662 |
+
subsiding
|
5663 |
+
appointment
|
5664 |
+
inderterminate
|
5665 |
+
seems
|
5666 |
+
hyperostosis
|
5667 |
+
inferoanteriorly
|
5668 |
+
inferolaterally
|
5669 |
+
extracranial
|
5670 |
+
suppressed
|
5671 |
+
frozen
|
5672 |
+
disruption
|
5673 |
+
centimetre
|
5674 |
+
cricoarytenoid
|
5675 |
+
persistently
|
5676 |
+
encircle
|
5677 |
+
reconstruction
|
5678 |
+
remodelling
|
5679 |
+
response
|
5680 |
+
locoregional
|
5681 |
+
longitudinal
|
5682 |
+
extramedullary
|
5683 |
+
extramucosal
|
5684 |
+
undisrupted
|
5685 |
+
platysma
|
5686 |
+
jugulodiagastric
|
5687 |
+
relatives
|
5688 |
+
tinnitus
|
5689 |
+
10x20mm
|
5690 |
+
12aug2013
|
5691 |
+
12x13x16mm
|
5692 |
+
mechanical
|
5693 |
+
insufficiency
|
5694 |
+
aerodigestive
|
5695 |
+
descends
|
5696 |
+
subcentimeter
|
5697 |
+
presumabaly
|
5698 |
+
interspersed
|
5699 |
+
interhemispheric
|
5700 |
+
gangliocapsular
|
5701 |
+
nasoendoscopy
|
5702 |
+
t4n3disease
|
5703 |
+
anteroinferiorly
|
5704 |
+
20x8x16mm
|
5705 |
+
22x12x20mm
|
5706 |
+
22×37×26
|
5707 |
+
emphysema
|
5708 |
+
tracheoesophageal
|
5709 |
+
aforementioned
|
5710 |
+
blooming
|
5711 |
+
macroscopic
|
5712 |
+
epistaxis
|
5713 |
+
destroyed
|
5714 |
+
dyspraxia
|
5715 |
+
25x26x19mm
|
5716 |
+
retrophayrngeal
|
5717 |
+
retrophargyeal
|
5718 |
+
27x22x23mm
|
5719 |
+
27×17×31
|
5720 |
+
calvarial
|
5721 |
+
synchronous
|
5722 |
+
apxtsxcc
|
5723 |
+
settled
|
5724 |
+
impingement
|
5725 |
+
34×17×25
|
5726 |
+
nasophayrnx
|
5727 |
+
micropapillary
|
5728 |
+
microhaemorrhages
|
5729 |
+
23x11x23mm
|
5730 |
+
41x28x36mm
|
5731 |
+
foarmen
|
5732 |
+
supraclavivular
|
5733 |
+
13x10x15mm
|
5734 |
+
13x19x22mm
|
5735 |
+
cervicothoracic
|
5736 |
+
40×20×14
|
5737 |
+
42×25×30
|
5738 |
+
60×45×33
|
5739 |
+
7mar2012
|
5740 |
+
curvilinear
|
5741 |
+
documented
|
5742 |
+
established
|
5743 |
+
mteastases
|
5744 |
+
rudimentary
|
5745 |
+
waldeyers
|
models/npc-bert-cls/config.json
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "npc_bert-best",
|
3 |
+
"architectures": [
|
4 |
+
"BertForSequenceClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"classifier_dropout": null,
|
8 |
+
"hidden_act": "gelu",
|
9 |
+
"hidden_dropout_prob": 0.1,
|
10 |
+
"hidden_size": 768,
|
11 |
+
"id2label": {
|
12 |
+
"0": "Benign/Healthy",
|
13 |
+
"1": "NPC"
|
14 |
+
},
|
15 |
+
"initializer_range": 0.02,
|
16 |
+
"intermediate_size": 3072,
|
17 |
+
"label2id": {
|
18 |
+
"Benign/Healthy": 0,
|
19 |
+
"NPC": 1
|
20 |
+
},
|
21 |
+
"layer_norm_eps": 1e-12,
|
22 |
+
"max_position_embeddings": 512,
|
23 |
+
"model_type": "bert",
|
24 |
+
"num_attention_heads": 12,
|
25 |
+
"num_hidden_layers": 12,
|
26 |
+
"pad_token_id": 0,
|
27 |
+
"position_embedding_type": "absolute",
|
28 |
+
"problem_type": "single_label_classification",
|
29 |
+
"torch_dtype": "float32",
|
30 |
+
"transformers_version": "4.37.2",
|
31 |
+
"type_vocab_size": 2,
|
32 |
+
"use_cache": true,
|
33 |
+
"vocab_size": 30522
|
34 |
+
}
|
models/npc-bert-cls/model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e0b76162187e0bc827c6178cb1351c15bb95a588d371028bab5c532de1d26e0f
|
3 |
+
size 437958648
|
models/npc-bert-cls/special_tokens_map.json
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cls_token": {
|
3 |
+
"content": "[CLS]",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"mask_token": {
|
10 |
+
"content": "[MASK]",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"pad_token": {
|
17 |
+
"content": "[PAD]",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": false,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
},
|
23 |
+
"sep_token": {
|
24 |
+
"content": "[SEP]",
|
25 |
+
"lstrip": false,
|
26 |
+
"normalized": false,
|
27 |
+
"rstrip": false,
|
28 |
+
"single_word": false
|
29 |
+
},
|
30 |
+
"unk_token": {
|
31 |
+
"content": "[UNK]",
|
32 |
+
"lstrip": false,
|
33 |
+
"normalized": false,
|
34 |
+
"rstrip": false,
|
35 |
+
"single_word": false
|
36 |
+
}
|
37 |
+
}
|
models/npc-bert-cls/tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
models/npc-bert-cls/tokenizer_config.json
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"0": {
|
4 |
+
"content": "[PAD]",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false,
|
9 |
+
"special": true
|
10 |
+
},
|
11 |
+
"1": {
|
12 |
+
"content": "[UNK]",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false,
|
17 |
+
"special": true
|
18 |
+
},
|
19 |
+
"2": {
|
20 |
+
"content": "[CLS]",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false,
|
25 |
+
"special": true
|
26 |
+
},
|
27 |
+
"3": {
|
28 |
+
"content": "[SEP]",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
},
|
35 |
+
"4": {
|
36 |
+
"content": "[MASK]",
|
37 |
+
"lstrip": false,
|
38 |
+
"normalized": false,
|
39 |
+
"rstrip": false,
|
40 |
+
"single_word": false,
|
41 |
+
"special": true
|
42 |
+
}
|
43 |
+
},
|
44 |
+
"clean_up_tokenization_spaces": true,
|
45 |
+
"cls_token": "[CLS]",
|
46 |
+
"do_basic_tokenize": true,
|
47 |
+
"do_lower_case": true,
|
48 |
+
"mask_token": "[MASK]",
|
49 |
+
"model_max_length": 1000000000000000019884624838656,
|
50 |
+
"never_split": null,
|
51 |
+
"pad_token": "[PAD]",
|
52 |
+
"sep_token": "[SEP]",
|
53 |
+
"strip_accents": null,
|
54 |
+
"tokenize_chinese_chars": true,
|
55 |
+
"tokenizer_class": "BertTokenizer",
|
56 |
+
"unk_token": "[UNK]"
|
57 |
+
}
|
models/npc-bert-cls/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d21e77960bd0b33c5de1bf3b3173e81dd975fb8dc083a8f1359bedf017d94d9b
|
3 |
+
size 4207
|
npc_bert_models/__init__.py
ADDED
File without changes
|
npc_bert_models/__pycache__/__init__.cpython-310.pyc
ADDED
Binary file (178 Bytes). View file
|
|
npc_bert_models/__pycache__/cls_module.cpython-310.pyc
ADDED
Binary file (3.44 kB). View file
|
|
npc_bert_models/__pycache__/gradio_demo.cpython-310.pyc
ADDED
Binary file (291 Bytes). View file
|
|
npc_bert_models/__pycache__/mlm_module.cpython-310.pyc
ADDED
Binary file (3.29 kB). View file
|
|
npc_bert_models/cls_module.py
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
2 |
+
from transformers import pipeline as hf_pipeline
|
3 |
+
from pathlib import Path
|
4 |
+
from typing import Any, Dict
|
5 |
+
|
6 |
+
class NpcBertCLS():
|
7 |
+
r"""A class for performing report classification with BERT.
|
8 |
+
|
9 |
+
This class facilitates report classification tasks using a BERT model
|
10 |
+
fine-tuned on NPC staging reports. The base model is an uncased model
|
11 |
+
released by Microsoft, which can be found on the Hugging Face model hub
|
12 |
+
under the name 'microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext'.
|
13 |
+
|
14 |
+
Attributes:
|
15 |
+
model (transformers.PreTrainedModel):
|
16 |
+
The fine-tuned BERT model for sequence classification.
|
17 |
+
tokenizer (transformers.PreTrainedTokenizer):
|
18 |
+
The tokenizer for the BERT model.
|
19 |
+
pipeline (transformers.text-classification):
|
20 |
+
The Hugging Face text-classification pipeline.
|
21 |
+
pretrained_model (str):
|
22 |
+
The path to the directory containing the fine-tuned model.
|
23 |
+
"""
|
24 |
+
def __init__(self):
|
25 |
+
self.model = None
|
26 |
+
self.tokenizer = None
|
27 |
+
self.pipeline = None
|
28 |
+
# relative to app.py
|
29 |
+
self.pretrained_model = "./models/npc-bert-cls"
|
30 |
+
|
31 |
+
def load(self) -> None:
|
32 |
+
"""Loads the fine-tuned BERT model and related components.
|
33 |
+
|
34 |
+
This method initializes the model, tokenizer, and pipeline for the
|
35 |
+
text classification tasks using the pre-trained weights from the
|
36 |
+
specified directory.
|
37 |
+
|
38 |
+
Raises:
|
39 |
+
FileNotFoundError: If the pretrained model directory is not found.
|
40 |
+
"""
|
41 |
+
if not Path(self.pretrained_model).is_dir():
|
42 |
+
raise FileNotFoundError(f"Cannot found pretrained model at: {self.pretrained_model}")
|
43 |
+
|
44 |
+
self.model = AutoModelForSequenceClassification.from_pretrained(self.pretrained_model)
|
45 |
+
self.tokenizer = AutoTokenizer.from_pretrained(self.pretrained_model)
|
46 |
+
self.pipeline = hf_pipeline("text-classification", model=self.model, tokenizer=self.tokenizer, device='cpu')
|
47 |
+
|
48 |
+
def __call__(self, *args: Any) -> Any:
|
49 |
+
"""Performs classification on the given reports.
|
50 |
+
|
51 |
+
This method should be called only after the `load` method has been executed
|
52 |
+
to ensure that the model and pipeline are properly initialized. It accepts
|
53 |
+
arguments to pass to the Hugging Face text-classification pipeline.
|
54 |
+
|
55 |
+
Args:
|
56 |
+
*args: Variable length argument list to pass to the pipeline.
|
57 |
+
|
58 |
+
Returns:
|
59 |
+
The output of the text-classification pipeline.
|
60 |
+
|
61 |
+
Raises:
|
62 |
+
BrokenPipeError: If the model has not been loaded before calling this method.
|
63 |
+
"""
|
64 |
+
if self.pipeline is None:
|
65 |
+
msg = "Model was not initialized, have you run load()?"
|
66 |
+
raise BrokenPipeError(msg)
|
67 |
+
|
68 |
+
# check length of text
|
69 |
+
if len(args[0]) < 10:
|
70 |
+
return "Not enough text for classification!"
|
71 |
+
|
72 |
+
pipe_out = self.pipeline(*args)
|
73 |
+
pipe_out = {o['label']: o['score'] for o in pipe_out}
|
74 |
+
return pipe_out
|
75 |
+
|
npc_bert_models/gradio_demo.py
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# import gradio as gr
|
2 |
+
# from .cls_module import NpcBertCLS
|
3 |
+
# from .mlm_module import NpcBertMLM
|
4 |
+
|
5 |
+
|
6 |
+
def greet(name):
|
7 |
+
return "Hello " + name
|
8 |
+
|
npc_bert_models/mlm_module.py
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import AutoTokenizer, AutoModelForMaskedLM
|
2 |
+
from transformers import pipeline as hf_pipeline
|
3 |
+
from pathlib import Path
|
4 |
+
|
5 |
+
class NpcBertMLM():
|
6 |
+
r"""A class for performing masked language modeling with BERT.
|
7 |
+
|
8 |
+
This class provides functionality to perform masked language modeling
|
9 |
+
predictions using a BERT model fine-tuned on NPC staging reports. The
|
10 |
+
base model used is an uncased model released by Microsoft, and it can be
|
11 |
+
found on the Hugging Face model hub under the name
|
12 |
+
'microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext'.
|
13 |
+
|
14 |
+
Attributes:
|
15 |
+
model (transformers.PreTrainedModel):
|
16 |
+
The fine-tuned BERT model.
|
17 |
+
tokenizer (transformers.PreTrainedTokenizer):
|
18 |
+
The tokenizer for the BERT model.
|
19 |
+
pipeline (transformers.fill-mask):
|
20 |
+
The Hugging Face fill-mask pipeline.
|
21 |
+
pretrained_model (str): The path to
|
22 |
+
the directory containing the fine-tuned model.
|
23 |
+
"""
|
24 |
+
def __init__(self):
|
25 |
+
self.model = None
|
26 |
+
self.tokenizer = None
|
27 |
+
self.pipeline = None
|
28 |
+
# relative to app.py
|
29 |
+
self.pretrained_model = "./models/npc-bert-best"
|
30 |
+
|
31 |
+
def load(self):
|
32 |
+
"""Loads the fine-tuned BERT model and related components.
|
33 |
+
|
34 |
+
This method initializes the model, tokenizer, and pipeline for the
|
35 |
+
masked language modeling tasks using the pre-trained weights from the
|
36 |
+
specified directory.
|
37 |
+
|
38 |
+
Raises:
|
39 |
+
FileNotFoundError: If the pretrained model directory is not found.
|
40 |
+
"""
|
41 |
+
if not Path(self.pretrained_model).is_dir():
|
42 |
+
raise FileNotFoundError(f"Cannot found pretrained model at: {self.pretrained_model}")
|
43 |
+
|
44 |
+
self.model = AutoModelForMaskedLM.from_pretrained(self.pretrained_model)
|
45 |
+
self.tokenizer = AutoTokenizer.from_pretrained(self.pretrained_model)
|
46 |
+
self.pipeline = hf_pipeline("fill-mask", model=self.model, tokenizer=self.tokenizer, device='cpu')
|
47 |
+
|
48 |
+
def __call__(self, *args):
|
49 |
+
"""Performs masked language modeling prediction.
|
50 |
+
|
51 |
+
This method should be called only after the `load` method has been executed
|
52 |
+
to ensure that the model and pipeline are properly initialized. It accepts
|
53 |
+
arguments to pass to the Hugging Face fill-mask pipeline.
|
54 |
+
|
55 |
+
Args:
|
56 |
+
*args: Variable length argument list to pass to the pipeline.
|
57 |
+
|
58 |
+
Returns:
|
59 |
+
The output of the fill-mask pipeline.
|
60 |
+
|
61 |
+
Raises:
|
62 |
+
BrokenPipeError: If the model has not been loaded before calling this method.
|
63 |
+
"""
|
64 |
+
if self.pipeline is None:
|
65 |
+
msg = "Model was not initialized, have you run load()?"
|
66 |
+
raise BrokenPipeError(msg)
|
67 |
+
pipe_out = self.pipeline(*args)
|
68 |
+
# Just use the first output
|
69 |
+
if not isinstance(pipe_out[0], dict):
|
70 |
+
pipe_out = pipe_out[0]
|
71 |
+
|
72 |
+
pipe_out = {oo['token_str']: oo['score'] for oo in pipe_out}
|
73 |
+
return pipe_out
|
74 |
+
|
report_examples/NPC-report-1.txt
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
History
|
2 |
+
NPC for screening MRI
|
3 |
+
|
4 |
+
MRI Nasopharynx and Neck.
|
5 |
+
A full staging scan was performed in view of preliminary findings
|
6 |
+
Axial T1W
|
7 |
+
Coronal T2W
|
8 |
+
Axial T2 SPIR
|
9 |
+
Axial and coronal T1W post contrast
|
10 |
+
Axial T1W FS post contrast
|
11 |
+
|
12 |
+
REPORT:
|
13 |
+
|
14 |
+
Primary Tumour
|
15 |
+
There is a small primary nasopharyngeal carcinoma involving all walls, but predominantly the right side, of the nasopharynx.
|
16 |
+
The nasal cavity, oropharynx and parapharyngeal regions are unremarkable. There are small bilateral otomastoid effusions.
|
17 |
+
The skull base is unremarkable, except for a very small area of abnormal signal in the superior aspect of the clivus which is of uncertain significance. The paranasal sinuses are unremarkable.
|
18 |
+
The cavernous sinus and sections of the cranium included on the scan are unremarkable.
|
19 |
+
|
20 |
+
Nodal Metastases
|
21 |
+
There are a few metastatic right retropharyngeal nodes measuring up to 8mm in diameter as well as a couple of smaller left retropharyngeal nodes that are non specific. Shotty small nodes are seen in the remainder of the neck, which are not suspicious by MRI criteria.
|
22 |
+
|
23 |
+
Conclusion
|
24 |
+
Nasopharyngeal carcinoma predominantly in the right walls of the nasopharynx. There is possibly very early extension into the right cavernous sinus. Small volume metastatic right retropharyngeal nodes. T1/2 N1.
|
report_examples/NPC-report-2.txt
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
MRI Nasopharynx and Neck.
|
2 |
+
|
3 |
+
Axial T1W
|
4 |
+
Coronal T2W
|
5 |
+
Axial T2 SPIR
|
6 |
+
Axial and coronal T1W post contrast
|
7 |
+
|
8 |
+
REPORT:
|
9 |
+
|
10 |
+
Primary Tumour
|
11 |
+
There is a nasopharyngeal carcinoma involving predominantly the right side of the nasopharynx.
|
12 |
+
There is tumour extension into the right sided preclival muscles and early extension into the right parapharyngeal region. No tumour extension into the nasal cavity or oropharynx.
|
13 |
+
Early skull base invasion into the right pterygoid process is present and tumour involves the right pterygopalatine fossa and abuts the right foramen lacerum. There are minor mucosal inflammatory changes in the paranasal sinuses.
|
14 |
+
The cavernous sinus and sections of the cranium included on the scan are unremarkable.
|
15 |
+
There is a right middle ear and mastoid effusion.
|
16 |
+
|
17 |
+
Findings:
|
18 |
+
The nasal cavity and oropharynx are not involved.
|
19 |
+
The parapharyngeal regions are unremarkable and there are no middle ear or mastoid effusions.
|
20 |
+
The skull base is unremarkable.
|
21 |
+
The cavernous sinus and sections of the cranium included on the scan are unremarkable.
|
22 |
+
|
23 |
+
Distant metastases
|
24 |
+
No distant metastases or second primary tumours are identified in the head and neck, upper thorax or bones.
|
25 |
+
|
26 |
+
CONCLUSION
|
27 |
+
1. Nasopharyngeal carcinoma with predominant mucosa and submucosa involvement.
|
28 |
+
2.Enlarged nodes in retropharyngeal, jugulodigastric/upper jugular chain and right middle jugular regions. These are suspicious of nodal metastases.
|
report_examples/benign-report-1.txt
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
MRI Nasopharynx
|
2 |
+
Technique
|
3 |
+
Axial T1W and T2SPIR
|
4 |
+
Axial and coronal T1W post contrast
|
5 |
+
|
6 |
+
Report
|
7 |
+
A small focal area of mucosal thickening (depth approximately 8 mm) is present in the central portion of the superior roof of the nasopharynx which is only present on one slice and lies immediately below the skull base. In addition at this site there appears to be a defect just the right of the midline and it is uncertain whether this could be the site of a biopsy, please correlate clinically. The parapharyngeal regions are normal.
|
8 |
+
Several small unremarkable upper cervical lymph nodes are noted.
|
9 |
+
|
10 |
+
Conclusion
|
11 |
+
Mild mucosal thickening is probably due to lymphoid hyperplasia.
|
report_examples/benign-report-2.txt
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
MRI Nasopharynx
|
2 |
+
|
3 |
+
Technique
|
4 |
+
Screening protocol
|
5 |
+
Axial T1W and T2SPIR
|
6 |
+
Axial and coronal T1W post contrast
|
7 |
+
|
8 |
+
Report
|
9 |
+
There is very mild generalized thickening of the walls of the nasopharynx suggesting lymphoid hyperplasia.No nasopharyngeal carcinoma is identified.
|
10 |
+
The parapharyngeal regions are normal.
|
11 |
+
No cervical lymphadenopathy.
|
12 |
+
In addition there is greater thickening in the central roof in the region of the adenoid, which is mildly asymmetrical, but no definite nasopharyngeal carcinoma is identified.
|
13 |
+
Inflammatory mucosal thickening in the right maxillary sinus.
|
14 |
+
There is a borderline enlarged left retropharyngeal node and very small right retropharyngeal and upper cervical nodes but no nodes with any definite metastatic features are identified.
|
15 |
+
The remainder of the scan is unremarkable
|
16 |
+
|
17 |
+
Conclusion
|
18 |
+
Mild mucosal thickening is probably due to lymphoid hyperplasia.
|
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
pytorch >= 1.12.1
|
2 |
+
transformers >= 4.37.2
|
3 |
+
numpy >= 1.26
|
4 |
+
gradio >= 4.18
|