Spaces:
Sleeping
Sleeping
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <script src="lib/bindings/utils.js"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/dist/vis-network.min.css" integrity="sha512-WgxfT5LWjfszlPHXRmBWHkV2eceiWTOBvrKCNbdgDYTHrT2AeLCGbF4sZlZw3UMN3WtL0tGUoIAKsu8mllg/XA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/vis-network.min.js" integrity="sha512-LnvoEWDFrqGHlHmDD2101OrLcbsfkrzoSpvtSQtxK3RMnRV0eOkhhBN2dXHKRrUU8p2DGRTk35n4O8nWSVe1mQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | |
| <center> | |
| <h1></h1> | |
| </center> | |
| <!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" /> | |
| <script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>--> | |
| <link | |
| href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" | |
| rel="stylesheet" | |
| integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" | |
| crossorigin="anonymous" | |
| /> | |
| <script | |
| src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js" | |
| integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" | |
| crossorigin="anonymous" | |
| ></script> | |
| <center> | |
| <h1></h1> | |
| </center> | |
| <style type="text/css"> | |
| #mynetwork { | |
| width: 100%; | |
| height: 600px; | |
| background-color: #ffffff; | |
| border: 1px solid lightgray; | |
| position: relative; | |
| float: left; | |
| } | |
| #loadingBar { | |
| position:absolute; | |
| top:0px; | |
| left:0px; | |
| width: 100%; | |
| height: 600px; | |
| background-color:rgba(200,200,200,0.8); | |
| -webkit-transition: all 0.5s ease; | |
| -moz-transition: all 0.5s ease; | |
| -ms-transition: all 0.5s ease; | |
| -o-transition: all 0.5s ease; | |
| transition: all 0.5s ease; | |
| opacity:1; | |
| } | |
| #bar { | |
| position:absolute; | |
| top:0px; | |
| left:0px; | |
| width:20px; | |
| height:20px; | |
| margin:auto auto auto auto; | |
| border-radius:11px; | |
| border:2px solid rgba(30,30,30,0.05); | |
| background: rgb(0, 173, 246); /* Old browsers */ | |
| box-shadow: 2px 0px 4px rgba(0,0,0,0.4); | |
| } | |
| #border { | |
| position:absolute; | |
| top:10px; | |
| left:10px; | |
| width:500px; | |
| height:23px; | |
| margin:auto auto auto auto; | |
| box-shadow: 0px 0px 4px rgba(0,0,0,0.2); | |
| border-radius:10px; | |
| } | |
| #text { | |
| position:absolute; | |
| top:8px; | |
| left:530px; | |
| width:30px; | |
| height:50px; | |
| margin:auto auto auto auto; | |
| font-size:22px; | |
| color: #000000; | |
| } | |
| div.outerBorder { | |
| position:relative; | |
| top:400px; | |
| width:600px; | |
| height:44px; | |
| margin:auto auto auto auto; | |
| border:8px solid rgba(0,0,0,0.1); | |
| background: rgb(252,252,252); /* Old browsers */ | |
| background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */ | |
| background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */ | |
| background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */ | |
| background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */ | |
| background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */ | |
| background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */ | |
| filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */ | |
| border-radius:72px; | |
| box-shadow: 0px 0px 10px rgba(0,0,0,0.2); | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="card" style="width: 100%"> | |
| <div id="mynetwork" class="card-body"></div> | |
| </div> | |
| <div id="loadingBar"> | |
| <div class="outerBorder"> | |
| <div id="text">0%</div> | |
| <div id="border"> | |
| <div id="bar"></div> | |
| </div> | |
| </div> | |
| </div> | |
| <script type="text/javascript"> | |
| // initialize global variables. | |
| var edges; | |
| var nodes; | |
| var allNodes; | |
| var allEdges; | |
| var nodeColors; | |
| var originalNodes; | |
| var network; | |
| var container; | |
| var options, data; | |
| var filter = { | |
| item : '', | |
| property : '', | |
| value : [] | |
| }; | |
| // This method is responsible for drawing the graph, returns the drawn network | |
| function drawGraph() { | |
| var container = document.getElementById('mynetwork'); | |
| // parsing and collecting nodes and edges from the python | |
| nodes = new vis.DataSet([{"color": "#97c2fc", "id": "Paracetamol poisoning", "label": "Paracetamol poisoning", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "nausea", "label": "nausea", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "feeling tired", "label": "feeling tired", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "excessive use of paracetamol", "label": "excessive use of paracetamol", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "liver failure", "label": "liver failure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acetylcysteine", "label": "acetylcysteine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "blood level of paracetamol", "label": "blood level of paracetamol", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "blood paracetamol level", "label": "blood paracetamol level", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "abdominal pain", "label": "abdominal pain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "yellowish skin", "label": "yellowish skin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "glutathione", "label": "glutathione", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Paracetamol", "label": "Paracetamol", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "high toxicity", "label": "high toxicity", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "4 grams per day", "label": "4 grams per day", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "over-the-counter medications", "label": "over-the-counter medications", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "N-acetyl-p-benzoquinone imine (NAPQI)", "label": "N-acetyl-p-benzoquinone imine (NAPQI)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "prescription-only medications", "label": "prescription-only medications", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acute liver failure", "label": "acute liver failure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "drug overdoses", "label": "drug overdoses", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "highly variable", "label": "highly variable", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "liver cells", "label": "liver cells", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Paracetamol overdose", "label": "Paracetamol overdose", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "41% of acute liver failure cases in adults", "label": "41% of acute liver failure cases in adults", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hepatocellular glutathione", "label": "hepatocellular glutathione", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "poison control centers", "label": "poison control centers", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "25% of acute liver failure cases in children", "label": "25% of acute liver failure cases in children", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "elevated AST and ALT", "label": "elevated AST and ALT", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arterial blood pH less than 7.3", "label": "arterial blood pH less than 7.3", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "glutathione depletion", "label": "glutathione depletion", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "intentional self-poisoning", "label": "intentional self-poisoning", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Chronic excessive alcohol consumption", "label": "Chronic excessive alcohol consumption", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "paracetamol toxicity", "label": "paracetamol toxicity", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Fasting", "label": "Fasting", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Depleted glutathione", "label": "Depleted glutathione", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acute liver necrosis", "label": "acute liver necrosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Glutathione depletion", "label": "Glutathione depletion", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "NAPQI accumulation", "label": "NAPQI accumulation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hepatocyte damage", "label": "hepatocyte damage", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Hepatocyte damage", "label": "Hepatocyte damage", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Rumack-Matthew nomogram", "label": "Rumack-Matthew nomogram", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "risk of hepatotoxicity", "label": "risk of hepatotoxicity", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "United Kingdom", "label": "United Kingdom", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "paracetamol tablets", "label": "paracetamol tablets", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Paradote", "label": "Paradote", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "methionine", "label": "methionine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "paracetamol and methionine", "label": "paracetamol and methionine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "paracetamol", "label": "paracetamol", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Acetylcysteine", "label": "Acetylcysteine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anaphylactoid reaction", "label": "anaphylactoid reaction", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "paracetamol overdose", "label": "paracetamol overdose", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "cysteamine", "label": "cysteamine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "intravenous", "label": "intravenous", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Calcitriol", "label": "Calcitriol", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "glutathione production", "label": "glutathione production", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "aspirin", "label": "aspirin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "non-steroidal anti-inflammatory drugs", "label": "non-steroidal anti-inflammatory drugs", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "calcitriol", "label": "calcitriol", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "L-5-oxo-pyrrolidine-2-paracetamol carboxylate", "label": "L-5-oxo-pyrrolidine-2-paracetamol carboxylate", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "activated charcoal", "label": "activated charcoal", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "oral acetylcysteine", "label": "oral acetylcysteine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Glutathione", "label": "Glutathione", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "NAPQI metabolite", "label": "NAPQI metabolite", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Activated charcoal", "label": "Activated charcoal", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "intravenous acetylcysteine", "label": "intravenous acetylcysteine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Syrup of ipecac", "label": "Syrup of ipecac", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "activated charcoal administration", "label": "activated charcoal administration", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Children under 6 years", "label": "Children under 6 years", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "liver injury", "label": "liver injury", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Intravenous acetylcysteine", "label": "Intravenous acetylcysteine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hospital stay", "label": "hospital stay", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anaphylactoid reaction", "label": "Anaphylactoid reaction", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "rash, wheeze, mild hypotension", "label": "rash, wheeze, mild hypotension", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Acute liver failure", "label": "Acute liver failure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "liver transplantation", "label": "liver transplantation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Kings College Hospital in London", "label": "Kings College Hospital in London", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "liver transplant criteria", "label": "liver transplant criteria", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Paracetamol toxicity", "label": "Paracetamol toxicity", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "poisoning worldwide", "label": "poisoning worldwide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "common cause of poisoning worldwide", "label": "common cause of poisoning worldwide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "England and Wales", "label": "England and Wales", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "41,200 cases of paracetamol poisoning", "label": "41,200 cases of paracetamol poisoning", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Centers for Disease Control and Prevention", "label": "Centers for Disease Control and Prevention", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acute liver failure cases", "label": "acute liver failure cases", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Acromegaly", "label": "Acromegaly", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "sleep apnea", "label": "sleep apnea", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hypogonadism", "label": "hypogonadism", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Greek words for extremity and large", "label": "Greek words for extremity and large", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "excess growth hormone", "label": "excess growth hormone", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "surgery to remove tumor", "label": "surgery to remove tumor", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "3 per 50,000 people", "label": "3 per 50,000 people", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "type 2 diabetes", "label": "type 2 diabetes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "drug therapy", "label": "drug therapy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "surgical removal of tumor", "label": "surgical removal of tumor", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "radiation therapy", "label": "radiation therapy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hypertension", "label": "hypertension", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "enlargement of hands and feet", "label": "enlargement of hands and feet", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Nicolas Saucerotte", "label": "Nicolas Saucerotte", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "elevated cancer risk", "label": "elevated cancer risk", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "diabetes", "label": "diabetes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "early detection", "label": "early detection", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "measuring insulin-like growth factor I", "label": "measuring insulin-like growth factor I", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pituitary adenoma", "label": "pituitary adenoma", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "benign tumor", "label": "benign tumor", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pituitary adenomas", "label": "pituitary adenomas", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "headaches", "label": "headaches", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "reduced testosterone production", "label": "reduced testosterone production", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "optic nerve compression", "label": "optic nerve compression", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "visual disturbances", "label": "visual disturbances", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "GNAS gene mutation", "label": "GNAS gene mutation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pancreatic tumors", "label": "pancreatic tumors", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acromegaly", "label": "acromegaly", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "non-pituitary tumors", "label": "non-pituitary tumors", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "growth hormone-releasing hormone", "label": "growth hormone-releasing hormone", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "IGF1 test", "label": "IGF1 test", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "GH suppression test", "label": "GH suppression test", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pituitary tumor surgery", "label": "pituitary tumor surgery", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Pseudoacromegaly", "label": "Pseudoacromegaly", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acromegaloid features", "label": "acromegaloid features", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "insulin resistance", "label": "insulin resistance", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "High dose minoxidil", "label": "High dose minoxidil", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Somatostatin analogues", "label": "Somatostatin analogues", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "lanreotide", "label": "lanreotide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "octreotide", "label": "octreotide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Octreotide", "label": "Octreotide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "digestive problems", "label": "digestive problems", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "post-surgical acromegaly treatment", "label": "post-surgical acromegaly treatment", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Pegvisomant", "label": "Pegvisomant", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "daily subcutaneous injections", "label": "daily subcutaneous injections", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "growth hormone receptor antagonist", "label": "growth hormone receptor antagonist", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Surgery", "label": "Surgery", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pituitary tumor", "label": "pituitary tumor", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Endonasal transsphenoidal surgery", "label": "Endonasal transsphenoidal surgery", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "transsphenoidal surgery", "label": "transsphenoidal surgery", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Radiation therapy", "label": "Radiation therapy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "residual tumor after surgery", "label": "residual tumor after surgery", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Acromegaly prognosis", "label": "Acromegaly prognosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "early disease detection", "label": "early disease detection", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Successful acromegaly treatment", "label": "Successful acromegaly treatment", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "headaches and visual symptoms", "label": "headaches and visual symptoms", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Sleep apnea", "label": "Sleep apnea", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "70% of acromegaly cases", "label": "70% of acromegaly cases", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Daniel Cajanus", "label": "Daniel Cajanus", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Andr\u00e9 the Giant", "label": "Andr\u00e9 the Giant", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Big Show", "label": "Big Show", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pituitary tumor removal", "label": "pituitary tumor removal", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Sultan K\u00f6sen", "label": "Sultan K\u00f6sen", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "world\u0027s tallest man", "label": "world\u0027s tallest man", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Earl Nightingale", "label": "Earl Nightingale", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "The Strangest Secret", "label": "The Strangest Secret", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "author", "label": "author", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "radio speaker", "label": "radio speaker", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Peter Mayhew", "label": "Peter Mayhew", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Chewbacca", "label": "Chewbacca", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "gigantism", "label": "gigantism", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Carel Struycken", "label": "Carel Struycken", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "The Giant", "label": "The Giant", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Lurch", "label": "Lurch", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Lorenzo de Medici", "label": "Lorenzo de Medici", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Sergei Rachmaninoff", "label": "Sergei Rachmaninoff", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Actinic keratosis", "label": "Actinic keratosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "topical creams", "label": "topical creams", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "physical examination", "label": "physical examination", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Classic actinic keratosis", "label": "Classic actinic keratosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "sandpaper-like texture", "label": "sandpaper-like texture", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "squamous cell carcinoma", "label": "squamous cell carcinoma", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "solar radiation", "label": "solar radiation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "15-53% after 1 year", "label": "15-53% after 1 year", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "frequent sun exposure", "label": "frequent sun exposure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "clinical examination", "label": "clinical examination", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "fair-skinned individuals", "label": "fair-skinned individuals", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "atypical keratinocytes", "label": "atypical keratinocytes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "men", "label": "men", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ultraviolet light exposure", "label": "ultraviolet light exposure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Actinic cheilitis", "label": "Actinic cheilitis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "age", "label": "age", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ultraviolet radiation exposure", "label": "ultraviolet radiation exposure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "photodynamic therapy", "label": "photodynamic therapy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "fair-skinned people", "label": "fair-skinned people", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "cryotherapy", "label": "cryotherapy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "14% of dermatology visits", "label": "14% of dermatology visits", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Hypertrophic actinic keratosis", "label": "Hypertrophic actinic keratosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "skin cancer", "label": "skin cancer", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "white scaly macules papules plaques", "label": "white scaly macules papules plaques", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "lip", "label": "lip", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Ultraviolet radiation", "label": "Ultraviolet radiation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "mutations in keratinocytes", "label": "mutations in keratinocytes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "actinic keratoses", "label": "actinic keratoses", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "p53 tumor suppressor gene", "label": "p53 tumor suppressor gene", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "chromosome 17p132", "label": "chromosome 17p132", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "UV-A radiation", "label": "UV-A radiation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "reactive oxygen species", "label": "reactive oxygen species", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "UV-B radiation", "label": "UV-B radiation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "thymidine dimer formation", "label": "thymidine dimer formation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "UV radiation", "label": "UV radiation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "p53 gene mutations", "label": "p53 gene mutations", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Cumulative sun exposure", "label": "Cumulative sun exposure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "actinic keratosis", "label": "actinic keratosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Sunscreen use", "label": "Sunscreen use", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "development of AK lesions", "label": "development of AK lesions", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Melanin", "label": "Melanin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "UV radiation damage", "label": "UV radiation damage", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Immunosuppression", "label": "Immunosuppression", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Betapapillomavirus HPV", "label": "Betapapillomavirus HPV", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "increased likelihood of AK", "label": "increased likelihood of AK", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Biopsy", "label": "Biopsy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "diagnosis is uncertain", "label": "diagnosis is uncertain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Shave biopsy", "label": "Shave biopsy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "level of the dermis", "label": "level of the dermis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Punch biopsy", "label": "Punch biopsy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "subcutaneous fat", "label": "subcutaneous fat", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Histopathologic exam", "label": "Histopathologic exam", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "tissue diagnosis", "label": "tissue diagnosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "diagnosis of actinic keratosis", "label": "diagnosis of actinic keratosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Dermoscopy", "label": "Dermoscopy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "noninvasive technique", "label": "noninvasive technique", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "cutaneous lesions", "label": "cutaneous lesions", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "evaluation of cutaneous lesions", "label": "evaluation of cutaneous lesions", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Hypertrophic variant", "label": "Hypertrophic variant", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "marked hyperkeratosis", "label": "marked hyperkeratosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Atrophic variant", "label": "Atrophic variant", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "overall atrophic changes", "label": "overall atrophic changes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Human papillomavirus (HPV)", "label": "Human papillomavirus (HPV)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "HPV vaccination", "label": "HPV vaccination", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Topical fluorouracil (5-FU)", "label": "Topical fluorouracil (5-FU)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "blocks thymidylate synthetase methylation", "label": "blocks thymidylate synthetase methylation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Low-fat diet", "label": "Low-fat diet", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "future actinic keratoses", "label": "future actinic keratoses", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Sunscreen with SPF 30+", "label": "Sunscreen with SPF 30+", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "UVA and UVB light", "label": "UVA and UVB light", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Fluorouracil cream", "label": "Fluorouracil cream", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "50% for complete clearance", "label": "50% for complete clearance", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Imiquimod cream", "label": "Imiquimod cream", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "stimulates immune system cytokines", "label": "stimulates immune system cytokines", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Imiquimod 5% cream", "label": "Imiquimod 5% cream", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "50% complete resolution", "label": "50% complete resolution", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Ingenol mebutate gel", "label": "Ingenol mebutate gel", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Euphorbia peplus plant", "label": "Euphorbia peplus plant", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Diclofenac sodium gel", "label": "Diclofenac sodium gel", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "nonsteroidal anti-inflammatory drug", "label": "nonsteroidal anti-inflammatory drug", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "inhibits arachidonic acid pathway", "label": "inhibits arachidonic acid pathway", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "American Academy of Dermatology", "label": "American Academy of Dermatology", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "topical retinoids for AK", "label": "topical retinoids for AK", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "petty spurge", "label": "petty spurge", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "keratosis", "label": "keratosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Euphorbia peplus", "label": "Euphorbia peplus", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Tirbanibulin", "label": "Tirbanibulin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Klisyri", "label": "Klisyri", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "actinic keratosis on face or scalp", "label": "actinic keratosis on face or scalp", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Cryotherapy", "label": "Cryotherapy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Liquid nitrogen", "label": "Liquid nitrogen", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Photodynamic therapy", "label": "Photodynamic therapy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "methyl aminolevulinate", "label": "methyl aminolevulinate", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "multiple AK lesions", "label": "multiple AK lesions", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Surgical excision", "label": "Surgical excision", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "thick horny AK papule", "label": "thick horny AK papule", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "aphthous ulcers", "label": "aphthous ulcers", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Shave excision and curettage", "label": "Shave excision and curettage", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "AKs resembling squamous cell carcinoma", "label": "AKs resembling squamous cell carcinoma", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Dermabrasion", "label": "Dermabrasion", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "large areas with multiple AK lesions", "label": "large areas with multiple AK lesions", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Laser therapy", "label": "Laser therapy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "multiple AKs refractive to medical therapy", "label": "multiple AKs refractive to medical therapy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Chemical peel", "label": "Chemical peel", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "trichloroacetic acid", "label": "trichloroacetic acid", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Untreated AKs", "label": "Untreated AKs", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "invasive skin cancer", "label": "invasive skin cancer", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "AK lesions", "label": "AK lesions", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Squamous cell carcinomas", "label": "Squamous cell carcinomas", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "lesions formerly diagnosed as AKs", "label": "lesions formerly diagnosed as AKs", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Australia", "label": "Australia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "40-50% in adults over 40", "label": "40-50% in adults over 40", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Resiquimod", "label": "Resiquimod", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Afamelanotide", "label": "Afamelanotide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Congenital adrenal hyperplasia", "label": "Congenital adrenal hyperplasia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "autosomal recessive disorder", "label": "autosomal recessive disorder", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Inborn errors of steroid metabolism", "label": "Inborn errors of steroid metabolism", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Intersex", "label": "Intersex", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "adrenogenital syndrome", "label": "adrenogenital syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "enzyme deficiency", "label": "enzyme deficiency", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Disorders of sex development", "label": "Disorders of sex development", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "impaired cortisol synthesis", "label": "impaired cortisol synthesis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Androgen insensitivity syndrome", "label": "Androgen insensitivity syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "21-hydroxylase deficiency", "label": "21-hydroxylase deficiency", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Curlie", "label": "Curlie", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "5\u03b1-Reductase 2 deficiency", "label": "5\u03b1-Reductase 2 deficiency", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Classic CAH", "label": "Classic CAH", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Salt-wasting CAH", "label": "Salt-wasting CAH", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Simple-virilizing CAH", "label": "Simple-virilizing CAH", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "insufficient aldosterone production", "label": "insufficient aldosterone production", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "abnormal genital development", "label": "abnormal genital development", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Nonclassic CAH", "label": "Nonclassic CAH", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hypoglycemia", "label": "hypoglycemia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Congenital Adrenal Hyperplasia", "label": "Congenital Adrenal Hyperplasia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "CYP21A2 gene", "label": "CYP21A2 gene", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hyponatremia", "label": "hyponatremia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6p21.3 locus", "label": "6p21.3 locus", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "HLA complex", "label": "HLA complex", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "replenish insufficient adrenal hormones", "label": "replenish insufficient adrenal hormones", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "11\u03b2-hydroxylase deficiency", "label": "11\u03b2-hydroxylase deficiency", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "CYP11B1 gene", "label": "CYP11B1 gene", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Female infants with classic CAH", "label": "Female infants with classic CAH", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ambiguous genitalia", "label": "ambiguous genitalia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Hypoglycemia in CAH", "label": "Hypoglycemia in CAH", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hypocortisolism", "label": "hypocortisolism", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Aldosterone", "label": "Aldosterone", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "sodium retention", "label": "sodium retention", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "renin-angiotensin-aldosterone system", "label": "renin-angiotensin-aldosterone system", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "blood pressure", "label": "blood pressure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Lack of aldosterone", "label": "Lack of aldosterone", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hyperkalemia", "label": "hyperkalemia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "11-hydroxylase deficiency", "label": "11-hydroxylase deficiency", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "11-deoxycorticosterone", "label": "11-deoxycorticosterone", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "weak mineralocorticoid activity", "label": "weak mineralocorticoid activity", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Classic 21-hydroxylase deficiency", "label": "Classic 21-hydroxylase deficiency", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "17\u03b1-hydroxyprogesterone", "label": "17\u03b1-hydroxyprogesterone", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Cortisol", "label": "Cortisol", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ACTH", "label": "ACTH", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "salt-wasting CAH", "label": "salt-wasting CAH", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "simple virilizing CAH", "label": "simple virilizing CAH", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "United States", "label": "United States", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "21-hydroxylase CAH", "label": "21-hydroxylase CAH", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "3.2 \u03bcg/day of arsenic", "label": "3.2 \u03bcg/day of arsenic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Newborn screening test", "label": "Newborn screening test", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "elevated 17\u03b1-hydroxyprogesterone", "label": "elevated 17\u03b1-hydroxyprogesterone", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Wael AbdAlmageed", "label": "Wael AbdAlmageed", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "USC Information Sciences Institute", "label": "USC Information Sciences Institute", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Mimi Kim", "label": "Mimi Kim", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "USC Keck School Of Medicine", "label": "USC Keck School Of Medicine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Deep learning analysis", "label": "Deep learning analysis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "facial morphology", "label": "facial morphology", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "21-hydroxylase deficiency CAH", "label": "21-hydroxylase deficiency CAH", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "normalize 17\u03b1-hydroxyprogesterone levels", "label": "normalize 17\u03b1-hydroxyprogesterone levels", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Luigi De Crecchio", "label": "Luigi De Crecchio", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "De Crecchio", "label": "De Crecchio", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Joseph Marzo\u0027s anatomy", "label": "Joseph Marzo\u0027s anatomy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Joseph Marzo", "label": "Joseph Marzo", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "as a male", "label": "as a male", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "vomiting and diarrhea", "label": "vomiting and diarrhea", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Alfred Bongiovanni", "label": "Alfred Bongiovanni", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "De Crecchio\u0027s account", "label": "De Crecchio\u0027s account", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Adrenogenital syndrome", "label": "Adrenogenital syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "sex-steroid producing tumors", "label": "sex-steroid producing tumors", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Lawson Wilkins", "label": "Lawson Wilkins", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "adrenal cortical extracts for CAH", "label": "adrenal cortical extracts for CAH", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Johns Hopkins Medical School", "label": "Johns Hopkins Medical School", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "John Money", "label": "John Money", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "gender identity is largely learned", "label": "gender identity is largely learned", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Jeff Cagandahan", "label": "Jeff Cagandahan", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Lisa Lee Dark", "label": "Lisa Lee Dark", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Betsy Driver", "label": "Betsy Driver", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Casimir Pulaski", "label": "Casimir Pulaski", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "examination of remains", "label": "examination of remains", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Han, Thang S.; Walker, Brian R.; Arlt, Wiebke; Ross, Richard J.", "label": "Han, Thang S.; Walker, Brian R.; Arlt, Wiebke; Ross, Richard J.", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Treatment and health outcomes in adults with congenital adrenal hyperplasia", "label": "Treatment and health outcomes in adults with congenital adrenal hyperplasia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Nature Reviews Endocrinology", "label": "Nature Reviews Endocrinology", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Adrenocortical carcinoma", "label": "Adrenocortical carcinoma", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "lung", "label": "lung", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "liver", "label": "liver", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "tumor stage", "label": "tumor stage", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Conn syndrome", "label": "Conn syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Weiss system", "label": "Weiss system", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Cushing\u0027s syndrome", "label": "Cushing\u0027s syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "mitotane", "label": "mitotane", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "one to two per million annually", "label": "one to two per million annually", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "cortex of adrenal gland", "label": "cortex of adrenal gland", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "50% 5-year survival", "label": "50% 5-year survival", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "surgical excision", "label": "surgical excision", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "moon-like face", "label": "moon-like face", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "high blood pressure", "label": "high blood pressure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Li-Fraumeni syndrome", "label": "Li-Fraumeni syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "c-myc gene expression", "label": "c-myc gene expression", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "poor prognosis", "label": "poor prognosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "CT scan", "label": "CT scan", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "identifying tumor site", "label": "identifying tumor site", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "50-60% 5-year survival", "label": "50-60% 5-year survival", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "streptozotocin", "label": "streptozotocin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "surgery", "label": "surgery", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "inhibits steroid synthesis", "label": "inhibits steroid synthesis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "cisplatin, doxorubicin, etoposide (EDP)", "label": "cisplatin, doxorubicin, etoposide (EDP)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "FIRM-ACT trial", "label": "FIRM-ACT trial", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "EDP + mitotane", "label": "EDP + mitotane", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "streptozotocin + mitotane", "label": "streptozotocin + mitotane", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "response rates", "label": "response rates", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "progression-free survival", "label": "progression-free survival", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Adrenocortical carcinoma (ACC)", "label": "Adrenocortical carcinoma (ACC)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "about 50%", "label": "about 50%", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "adrenal cortex adenomas", "label": "adrenal cortex adenomas", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "poor", "label": "poor", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Alcohol withdrawal syndrome", "label": "Alcohol withdrawal syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anxiety", "label": "anxiety", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "alcohol dependent individuals", "label": "alcohol dependent individuals", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "decreased responsiveness of GABA receptors", "label": "decreased responsiveness of GABA receptors", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "benzodiazepines", "label": "benzodiazepines", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "seizures", "label": "seizures", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Clinical Institute Withdrawal Assessment for Alcohol scale", "label": "Clinical Institute Withdrawal Assessment for Alcohol scale", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "delirium tremens", "label": "delirium tremens", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "reduction in alcohol use", "label": "reduction in alcohol use", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "alcohol", "label": "alcohol", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "alcohol withdrawal", "label": "alcohol withdrawal", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Delirium tremens", "label": "Delirium tremens", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "severe confusion", "label": "severe confusion", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hallucinations", "label": "hallucinations", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Alcohol", "label": "Alcohol", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "central nervous system", "label": "central nervous system", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Alcohol withdrawal", "label": "Alcohol withdrawal", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "homocysteine levels", "label": "homocysteine levels", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Protracted alcohol withdrawal syndrome", "label": "Protracted alcohol withdrawal syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "insomnia", "label": "insomnia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anhedonia", "label": "anhedonia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Trazodone", "label": "Trazodone", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "insomnia in recovering alcoholics", "label": "insomnia in recovering alcoholics", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Chronic alcohol use", "label": "Chronic alcohol use", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "GABAergic system", "label": "GABAergic system", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Kindling phenomenon", "label": "Kindling phenomenon", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "alcohol withdrawal syndrome", "label": "alcohol withdrawal syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Repeated alcohol withdrawals", "label": "Repeated alcohol withdrawals", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "permanent GABAA receptor alterations", "label": "permanent GABAA receptor alterations", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Chronic alcohol misuse", "label": "Chronic alcohol misuse", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "permanent alterations in GABAA receptors", "label": "permanent alterations in GABAA receptors", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Multiple alcohol withdrawals", "label": "Multiple alcohol withdrawals", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "kindling effect", "label": "kindling effect", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Kindling effect", "label": "Kindling effect", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "neuronal system desensitization", "label": "neuronal system desensitization", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "neuronal system sensitization", "label": "neuronal system sensitization", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Binge drinking", "label": "Binge drinking", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "increased impulsivity", "label": "increased impulsivity", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "impaired spatial working memory", "label": "impaired spatial working memory", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Amygdala", "label": "Amygdala", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "harm from binge drinking", "label": "harm from binge drinking", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Prefrontal cortex", "label": "Prefrontal cortex", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Benzodiazepines", "label": "Benzodiazepines", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "withdrawal seizures", "label": "withdrawal seizures", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "lorazepam", "label": "lorazepam", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "symptom-triggered regimens", "label": "symptom-triggered regimens", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "decreased treatment duration", "label": "decreased treatment duration", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "alcoholics", "label": "alcoholics", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "various nutrients", "label": "various nutrients", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "thiamine", "label": "thiamine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Wernicke syndrome", "label": "Wernicke syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "topiramate", "label": "topiramate", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "naltrexone", "label": "naltrexone", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "return to drinking", "label": "return to drinking", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "clonidine", "label": "clonidine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Failure to manage alcohol withdrawal", "label": "Failure to manage alcohol withdrawal", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "permanent brain damage", "label": "permanent brain damage", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Alopecia areata", "label": "Alopecia areata", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "0.1%\u20130.2% of the population", "label": "0.1%\u20130.2% of the population", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "biblical nethek condition", "label": "biblical nethek condition", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "spot baldness", "label": "spot baldness", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "rheumatoid arthritis", "label": "rheumatoid arthritis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hair follicles", "label": "hair follicles", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "corticosteroid injections", "label": "corticosteroid injections", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "females", "label": "females", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "psychological stress", "label": "psychological stress", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "contagious", "label": "contagious", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "celiac disease", "label": "celiac disease", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "type 1 diabetes", "label": "type 1 diabetes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "affected family members", "label": "affected family members", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "autoimmune disease", "label": "autoimmune disease", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "0.15% of people", "label": "0.15% of people", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "alopecia universalis", "label": "alopecia universalis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "alopecia totalis", "label": "alopecia totalis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "small bald patches", "label": "small bald patches", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "trichoscopy", "label": "trichoscopy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "family history", "label": "family history", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "clinical features", "label": "clinical features", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Alopecia areata totalis", "label": "Alopecia areata totalis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Alopecia areata universalis", "label": "Alopecia areata universalis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Steroid injections", "label": "Steroid injections", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "small areas of hair loss", "label": "small areas of hair loss", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Oral corticosteroids", "label": "Oral corticosteroids", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "serious side effects", "label": "serious side effects", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Gluten-free diet", "label": "Gluten-free diet", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "alopecia areata with celiac disease", "label": "alopecia areata with celiac disease", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "U.S. Food and Drug Administration", "label": "U.S. Food and Drug Administration", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "baricitinib", "label": "baricitinib", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Oral ruxolitinib", "label": "Oral ruxolitinib", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hair growth", "label": "hair growth", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anthony Carrigan", "label": "Anthony Carrigan", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "alopecia areata", "label": "alopecia areata", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Altitude sickness", "label": "Altitude sickness", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "rapid exposure to low oxygen", "label": "rapid exposure to low oxygen", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "very high altitude (3500-5500 meters)", "label": "very high altitude (3500-5500 meters)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "low oxygen pressure", "label": "low oxygen pressure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "extreme altitude (above 5500 meters)", "label": "extreme altitude (above 5500 meters)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Acute Mountain Sickness (AMS)", "label": "Acute Mountain Sickness (AMS)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "descending to lower altitude", "label": "descending to lower altitude", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2,500 metres", "label": "2,500 metres", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "rapid ascent", "label": "rapid ascent", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "gradually increasing elevation", "label": "gradually increasing elevation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ascending slowly", "label": "ascending slowly", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "high altitude (1500-3500 meters)", "label": "high altitude (1500-3500 meters)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "High-altitude cerebral edema (HACE)", "label": "High-altitude cerebral edema (HACE)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "about 20% of people at 2,500 metres", "label": "about 20% of people at 2,500 metres", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "High-altitude pulmonary edema (HAPE)", "label": "High-altitude pulmonary edema (HAPE)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "shortness of breath", "label": "shortness of breath", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "confusion", "label": "confusion", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "High-altitude pulmonary edema", "label": "High-altitude pulmonary edema", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "descent to lower altitudes", "label": "descent to lower altitudes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "general vasoconstriction in pulmonary circulation", "label": "general vasoconstriction in pulmonary circulation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "High-altitude cerebral edema", "label": "High-altitude cerebral edema", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "dexamethasone", "label": "dexamethasone", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "local vasodilation of cerebral blood vessels", "label": "local vasodilation of cerebral blood vessels", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Severe altitude illness", "label": "Severe altitude illness", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Extreme altitude", "label": "Extreme altitude", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "permanent human habitation", "label": "permanent human habitation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "alkalosis", "label": "alkalosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Above 5,500 metres", "label": "Above 5,500 metres", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "marked hypoxemia", "label": "marked hypoxemia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hypocapnia", "label": "hypocapnia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Body\u0027s response to high altitude", "label": "Body\u0027s response to high altitude", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "increased erythropoietin", "label": "increased erythropoietin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Altitude acclimatization", "label": "Altitude acclimatization", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ascend 300 metres per day", "label": "ascend 300 metres per day", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "High-altitude climbers", "label": "High-altitude climbers", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acclimatization regimen", "label": "acclimatization regimen", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Acclimatization regimen", "label": "Acclimatization regimen", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "stay at base camp", "label": "stay at base camp", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "climb to higher camp", "label": "climb to higher camp", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Acclimatization process", "label": "Acclimatization process", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "production of red blood cells", "label": "production of red blood cells", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Rule of thumb for ascent", "label": "Rule of thumb for ascent", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ascend no more than 300 m per day", "label": "ascend no more than 300 m per day", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Acetazolamide", "label": "Acetazolamide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acidifies the blood", "label": "acidifies the blood", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "quickening altitude acclimatization", "label": "quickening altitude acclimatization", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Diamox", "label": "Diamox", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acute mountain sickness", "label": "acute mountain sickness", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Everest Base Camp Medical Centre", "label": "Everest Base Camp Medical Centre", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "routine use of acetazolamide", "label": "routine use of acetazolamide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Ibuprofen", "label": "Ibuprofen", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "headache and nausea from AMS", "label": "headache and nausea from AMS", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "myo-inositol trispyrophosphate", "label": "myo-inositol trispyrophosphate", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "altitude sickness", "label": "altitude sickness", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "oxygen released by hemoglobin", "label": "oxygen released by hemoglobin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ibuprofen", "label": "ibuprofen", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "nausea from AMS", "label": "nausea from AMS", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "headache from AMS", "label": "headache from AMS", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Aymaras people", "label": "Aymaras people", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "coca leaves", "label": "coca leaves", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "alleviate mild altitude sickness", "label": "alleviate mild altitude sickness", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "oxygen enrichment", "label": "oxygen enrichment", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hypoxia from altitude sickness", "label": "hypoxia from altitude sickness", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "oxygen concentrator", "label": "oxygen concentrator", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "oxygen", "label": "oxygen", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "increased water intake", "label": "increased water intake", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acclimatization to altitude", "label": "acclimatization to altitude", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "descending", "label": "descending", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Gamow bag", "label": "Gamow bag", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "evacuate severe AMS patients", "label": "evacuate severe AMS patients", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Acetazolamide 250 mg twice daily", "label": "Acetazolamide 250 mg twice daily", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "AMS", "label": "AMS", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Denali Medical Research Project", "label": "Denali Medical Research Project", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acetazolamide for AMS", "label": "acetazolamide for AMS", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Coca plant tea", "label": "Coca plant tea", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Ecuador, Peru and Bolivia", "label": "Ecuador, Peru and Bolivia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Steroids", "label": "Steroids", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pulmonary or cerebral edema", "label": "pulmonary or cerebral edema", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Ibuprofen 600 mg three times daily", "label": "Ibuprofen 600 mg three times daily", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "severity and incidence of AMS", "label": "severity and incidence of AMS", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Paracetamol (acetaminophen)", "label": "Paracetamol (acetaminophen)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "climbers ascending Everest", "label": "climbers ascending Everest", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ibuprofen for altitude sickness", "label": "ibuprofen for altitude sickness", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Amblyopia", "label": "Amblyopia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "people between three and five years old", "label": "people between three and five years old", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "brain fails to process input from one eye", "label": "brain fails to process input from one eye", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2 to 5% of Western population", "label": "2 to 5% of Western population", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Strabismus", "label": "Strabismus", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "disorder of sight", "label": "disorder of sight", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "developmental problem in the brain", "label": "developmental problem in the brain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "developmental problem in brain", "label": "developmental problem in brain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "decreased vision in a single eye", "label": "decreased vision in a single eye", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anisometropia", "label": "Anisometropia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "identifying low visual acuity", "label": "identifying low visual acuity", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2-5% of Western countries", "label": "2-5% of Western countries", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "vision-obstructing disorders", "label": "vision-obstructing disorders", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "children and younger adults", "label": "children and younger adults", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "lazy eye", "label": "lazy eye", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "normal vision in fellow eye", "label": "normal vision in fellow eye", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "normal vision in preferred eye", "label": "normal vision in preferred eye", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "abnormal vision in deviating eye", "label": "abnormal vision in deviating eye", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "unequal refractive error between eyes", "label": "unequal refractive error between eyes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Adult-onset strabismus", "label": "Adult-onset strabismus", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "double vision", "label": "double vision", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Children\u0027s brains", "label": "Children\u0027s brains", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "suppressing images from one eye", "label": "suppressing images from one eye", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Brain\u0027s plastic response", "label": "Brain\u0027s plastic response", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "amblyopia", "label": "amblyopia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Strabismic amblyopia", "label": "Strabismic amblyopia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "correcting optical deficit and patching good eye", "label": "correcting optical deficit and patching good eye", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "eyeglasses or eyepatch", "label": "eyeglasses or eyepatch", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Refractive amblyopia", "label": "Refractive amblyopia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anisometropia", "label": "anisometropia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Deprivation amblyopia", "label": "Deprivation amblyopia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "opaque ocular media", "label": "opaque ocular media", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "less than 3% of amblyopia cases", "label": "less than 3% of amblyopia cases", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "David H. Hubel", "label": "David H. Hubel", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Nobel Prize in Physiology or Medicine", "label": "Nobel Prize in Physiology or Medicine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "David H. Hubel and Torsten Wiesel", "label": "David H. Hubel and Torsten Wiesel", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "damage to ocular dominance columns", "label": "damage to ocular dominance columns", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Atropine", "label": "Atropine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "similar outcomes to patching", "label": "similar outcomes to patching", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Repetitive transcranial magnetic stimulation", "label": "Repetitive transcranial magnetic stimulation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "contrast sensitivity in adult amblyopia", "label": "contrast sensitivity in adult amblyopia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "UK", "label": "UK", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "90% of child visual health appointments concern amblyopia", "label": "90% of child visual health appointments concern amblyopia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Children", "label": "Children", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1-4% have amblyopia", "label": "1-4% have amblyopia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2009 study", "label": "2009 study", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "repetitive transcranial magnetic stimulation", "label": "repetitive transcranial magnetic stimulation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "contrast sensitivity and spatial resolution", "label": "contrast sensitivity and spatial resolution", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2013 study", "label": "2013 study", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "modified Tetris game", "label": "modified Tetris game", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "decorrelated binocular experience", "label": "decorrelated binocular experience", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "amblyopia in adults", "label": "amblyopia in adults", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anodal tDCS", "label": "anodal tDCS", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "modified Tetris therapy", "label": "modified Tetris therapy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2014 Cochrane review", "label": "2014 Cochrane review", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "occlusion treatment for sensory deprivation amblyopia", "label": "occlusion treatment for sensory deprivation amblyopia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Amoebiasis", "label": "Amoebiasis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "fecal-oral route", "label": "fecal-oral route", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "flask-shaped intestinal ulcers", "label": "flask-shaped intestinal ulcers", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "amoebic liver abscesses", "label": "amoebic liver abscesses", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "stool examination", "label": "stool examination", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "bloody diarrhea", "label": "bloody diarrhea", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "improved sanitation", "label": "improved sanitation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "intestines", "label": "intestines", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "metronidazole", "label": "metronidazole", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Entamoeba histolytica", "label": "Entamoeba histolytica", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "40 million new cases per year", "label": "40 million new cases per year", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "regions with poor sanitation", "label": "regions with poor sanitation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "digestive enzymes", "label": "digestive enzymes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "parasitic amoeba", "label": "parasitic amoeba", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "erythrophagocytosis", "label": "erythrophagocytosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "cysts", "label": "cysts", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "amoebiasis", "label": "amoebiasis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "human cell membranes", "label": "human cell membranes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Diagnosis of Amoebiasis", "label": "Diagnosis of Amoebiasis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "microscopic stool examination", "label": "microscopic stool examination", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Entamoeba histolytica cyst", "label": "Entamoeba histolytica cyst", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "four nuclei", "label": "four nuclei", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Steroid therapy", "label": "Steroid therapy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "severe amoebic colitis", "label": "severe amoebic colitis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "E. histolytica cyst", "label": "E. histolytica cyst", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "rounded chromatoidal bodies", "label": "rounded chromatoidal bodies", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "chlorination", "label": "chlorination", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Entamoeba coli cyst", "label": "Entamoeba coli cyst", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "jagged chromatoidal bodies", "label": "jagged chromatoidal bodies", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "8 nuclei", "label": "8 nuclei", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "E. histolytica", "label": "E. histolytica", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "centrally located endosome", "label": "centrally located endosome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Entamoeba coli", "label": "Entamoeba coli", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "off-center endosome", "label": "off-center endosome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "World Health Organization", "label": "World Health Organization", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "no treatment for asymptomatic microscopy diagnosis", "label": "no treatment for asymptomatic microscopy diagnosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arsenic in drinking water", "label": "arsenic in drinking water", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Polymerase chain reaction (PCR)", "label": "Polymerase chain reaction (PCR)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "E. histolytica diagnosis", "label": "E. histolytica diagnosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Symptomatic E. histolytica infection", "label": "Symptomatic E. histolytica infection", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "amoebicidal tissue-active agent and luminal cysticidal agent", "label": "amoebicidal tissue-active agent and luminal cysticidal agent", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "gastrointestinal tract", "label": "gastrointestinal tract", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "luminal cysticidal agent", "label": "luminal cysticidal agent", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "amoebic brain abscess", "label": "amoebic brain abscess", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "55000 deaths in 2010", "label": "55000 deaths in 2010", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "malnutrition in children", "label": "malnutrition in children", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "amoebicidal tissue-active agent", "label": "amoebicidal tissue-active agent", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Fedor A. L\u00f6sch", "label": "Fedor A. L\u00f6sch", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Chicago World\u0027s Fair outbreak", "label": "Chicago World\u0027s Fair outbreak", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "contaminated drinking water", "label": "contaminated drinking water", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anaplasmosis", "label": "Anaplasmosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "decreased white blood cells", "label": "decreased white blood cells", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "dogs", "label": "dogs", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anaplasma bacteria", "label": "Anaplasma bacteria", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "fever", "label": "fever", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ticks", "label": "ticks", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Southern United States", "label": "Southern United States", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ruminants", "label": "ruminants", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "elevated liver enzymes", "label": "elevated liver enzymes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "horses", "label": "horses", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anaplasma marginale", "label": "Anaplasma marginale", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Gram-negative bacteria", "label": "Gram-negative bacteria", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "msp1a gene", "label": "msp1a gene", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "red blood cells", "label": "red blood cells", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anaplasmosis in ruminants", "label": "anaplasmosis in ruminants", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Ixodes scapularis", "label": "Ixodes scapularis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "black-legged tick", "label": "black-legged tick", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Tetracycline drugs", "label": "Tetracycline drugs", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anaplasma phagocytophilum", "label": "Anaplasma phagocytophilum", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Rhipicephalus ticks", "label": "Rhipicephalus ticks", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Ixodes ticks", "label": "Ixodes ticks", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anaplasma ovis", "label": "Anaplasma ovis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anaplasmosis in sheep and goats", "label": "anaplasmosis in sheep and goats", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Tetracycline", "label": "Tetracycline", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anaplasmosis infection", "label": "anaplasmosis infection", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anaplasma infection", "label": "Anaplasma infection", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Tick control", "label": "Tick control", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Africa", "label": "Africa", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Fly control", "label": "Fly control", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Sanitation methods", "label": "Sanitation methods", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Chemical agents", "label": "Chemical agents", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Biological control", "label": "Biological control", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Imidocarb", "label": "Imidocarb", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "South Africa", "label": "South Africa", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Live Anaplasma centrale vaccine", "label": "Live Anaplasma centrale vaccine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anaplastic astrocytoma", "label": "Anaplastic astrocytoma", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "cancer of the brain", "label": "cancer of the brain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "headache", "label": "headache", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "neurofibromatosis type I", "label": "neurofibromatosis type I", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "grade III", "label": "grade III", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2\u20133 years", "label": "2\u20133 years", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "exposure to vinyl chloride", "label": "exposure to vinyl chloride", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "surgical removal", "label": "surgical removal", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "0.44 per 100,000 people", "label": "0.44 per 100,000 people", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "astrocytoma", "label": "astrocytoma", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anorexia nervosa", "label": "Anorexia nervosa", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "mitral valve prolapse", "label": "mitral valve prolapse", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Altered interoception", "label": "Altered interoception", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "death from other causes", "label": "death from other causes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Altered body schema", "label": "Altered body schema", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "cardiac muscle atrophy", "label": "cardiac muscle atrophy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "amenorrhea", "label": "amenorrhea", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "women", "label": "women", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "sudden cardiac death", "label": "sudden cardiac death", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "interoceptive deficits", "label": "interoceptive deficits", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Obsessive-compulsive disorder", "label": "Obsessive-compulsive disorder", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "depression", "label": "depression", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Autism spectrum disorders", "label": "Autism spectrum disorders", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hypokalemia", "label": "hypokalemia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pubertal delay or arrest", "label": "pubertal delay or arrest", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hypokalaemia", "label": "hypokalaemia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "low body mass index", "label": "low body mass index", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "low IGF-1 levels", "label": "low IGF-1 levels", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "low weight", "label": "low weight", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Intense fear of gaining weight", "label": "Intense fear of gaining weight", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "PTSD", "label": "PTSD", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "delayed stomach emptying", "label": "delayed stomach emptying", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "9-52% after treatment", "label": "9-52% after treatment", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "28-58% heritability rate", "label": "28-58% heritability rate", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Restriction of energy intake", "label": "Restriction of energy intake", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "body image disturbance", "label": "body image disturbance", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anorexia", "label": "Anorexia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "loss of bone density", "label": "loss of bone density", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "infertility", "label": "infertility", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "heart damage", "label": "heart damage", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "mortality rate", "label": "mortality rate", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "variety of medical conditions", "label": "variety of medical conditions", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Feeding and Eating Disorders", "label": "Feeding and Eating Disorders", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "0.9% to 4.3% of women", "label": "0.9% to 4.3% of women", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "suppression of gonadotropins", "label": "suppression of gonadotropins", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "genetic factors", "label": "genetic factors", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "osteoporosis", "label": "osteoporosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "complications in every major organ system", "label": "complications in every major organ system", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "suicide", "label": "suicide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "0.2% to 0.3% of men", "label": "0.2% to 0.3% of men", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pubertal years", "label": "pubertal years", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "significantly low weight", "label": "significantly low weight", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "cessation of menstruation", "label": "cessation of menstruation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "elderly population", "label": "elderly population", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Restricting type", "label": "Restricting type", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Binge-eating/purging type", "label": "Binge-eating/purging type", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "low self-esteem", "label": "low self-esteem", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "food restriction", "label": "food restriction", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Disturbance in body image", "label": "Disturbance in body image", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "William Gull", "label": "William Gull", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Hypokalaemia", "label": "Hypokalaemia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "abnormal heart rhythms", "label": "abnormal heart rhythms", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Evolutionary psychiatry", "label": "Evolutionary psychiatry", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "mental disorders from evolutionary perspective", "label": "mental disorders from evolutionary perspective", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Interoception", "label": "Interoception", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "homeostasis", "label": "homeostasis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "sense of internal body state", "label": "sense of internal body state", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "regulation of emotions", "label": "regulation of emotions", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Estrogen related receptor alpha", "label": "Estrogen related receptor alpha", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anorexia-linked gene", "label": "anorexia-linked gene", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Epigenetic modifications", "label": "Epigenetic modifications", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anorexia nervosa", "label": "anorexia nervosa", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "DNA methylation", "label": "DNA methylation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Estrogen", "label": "Estrogen", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "appetite and feeding", "label": "appetite and feeding", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Prenatal complications", "label": "Prenatal complications", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anorexia nervosa development", "label": "anorexia nervosa development", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Gastrointestinal diseases", "label": "Gastrointestinal diseases", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "restrictive eating disturbances", "label": "restrictive eating disturbances", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Celiac disease", "label": "Celiac disease", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "aphthous-like stomatitis", "label": "aphthous-like stomatitis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Starvation", "label": "Starvation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "disordered eating patterns", "label": "disordered eating patterns", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Traumatic events", "label": "Traumatic events", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "People with anorexia", "label": "People with anorexia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "high perfectionism", "label": "high perfectionism", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Traumatic event", "label": "Traumatic event", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Childhood sexual abuse", "label": "Childhood sexual abuse", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "first predicting traumatic event", "label": "first predicting traumatic event", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Interpersonal trauma", "label": "Interpersonal trauma", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "traumatic event for anorexia", "label": "traumatic event for anorexia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Media exposure to body ideals", "label": "Media exposure to body ideals", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "body dissatisfaction", "label": "body dissatisfaction", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Cultural body ideal", "label": "Cultural body ideal", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "slender women", "label": "slender women", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Professions with social pressure to be thin", "label": "Professions with social pressure to be thin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "jockeys", "label": "jockeys", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "wrestlers", "label": "wrestlers", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "overprotective families", "label": "overprotective families", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "media body ideals", "label": "media body ideals", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pro-anorexia websites", "label": "pro-anorexia websites", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "internalization of body ideals", "label": "internalization of body ideals", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "serotonin (5-HT)", "label": "serotonin (5-HT)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "altered 5-HT2A receptor activity", "label": "altered 5-HT2A receptor activity", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "obsessiveness and anxiety", "label": "obsessiveness and anxiety", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acute malnutrition", "label": "acute malnutrition", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "reduced gray and white matter", "label": "reduced gray and white matter", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "recovered anorexia patients", "label": "recovered anorexia patients", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "brain reward system", "label": "brain reward system", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "DSM-5", "label": "DSM-5", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Body Mass Index (BMI)", "label": "Body Mass Index (BMI)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Acute malnutrition", "label": "Acute malnutrition", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Reduced gray matter volume", "label": "Reduced gray matter volume", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Complete blood count (CBC)", "label": "Complete blood count (CBC)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Disorders from malnutrition", "label": "Disorders from malnutrition", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Urinalysis", "label": "Urinalysis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "test for substance abuse", "label": "test for substance abuse", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "diagnosis of medical disorders", "label": "diagnosis of medical disorders", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Glucose tolerance test", "label": "Glucose tolerance test", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "detect diabetes", "label": "detect diabetes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "BUN test", "label": "BUN test", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "test kidney function", "label": "test kidney function", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "effects of malnutrition", "label": "effects of malnutrition", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Electrocardiogram", "label": "Electrocardiogram", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "electrical activity of the heart", "label": "electrical activity of the heart", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Electroencephalogram", "label": "Electroencephalogram", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "electrical activity of the brain", "label": "electrical activity of the brain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Bulimia nervosa patients", "label": "Bulimia nervosa patients", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "healthy or slightly overweight", "label": "healthy or slightly overweight", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Treatment for anorexia nervosa", "label": "Treatment for anorexia nervosa", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "restoring healthy weight", "label": "restoring healthy weight", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anorexia nervosa treatment", "label": "Anorexia nervosa treatment", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "treating psychological disorders", "label": "treating psychological disorders", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "reducing disordered eating behaviors", "label": "reducing disordered eating behaviors", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Family-based treatment", "label": "Family-based treatment", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "adolescents with anorexia", "label": "adolescents with anorexia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Cognitive behavioral therapy", "label": "Cognitive behavioral therapy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "adolescents and adults with anorexia", "label": "adolescents and adults with anorexia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Olanzapine", "label": "Olanzapine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "body weight", "label": "body weight", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Refeeding syndrome", "label": "Refeeding syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "falling potassium levels", "label": "falling potassium levels", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "falling phosphate levels", "label": "falling phosphate levels", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Royal College of Psychiatrists", "label": "Royal College of Psychiatrists", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "managing severe anorexia", "label": "managing severe anorexia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Refeeding Syndrome", "label": "Refeeding Syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "medical comorbidities", "label": "medical comorbidities", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "low BMI", "label": "low BMI", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anorexia Nervosa", "label": "Anorexia Nervosa", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "kidney failure", "label": "kidney failure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "highest of psychological disorders", "label": "highest of psychological disorders", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "heart conditions", "label": "heart conditions", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "growth retardation", "label": "growth retardation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Alexithymia", "label": "Alexithymia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anorexia treatment outcome", "label": "anorexia treatment outcome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Hypokalemia", "label": "Hypokalemia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "life-threatening arrhythmias", "label": "life-threatening arrhythmias", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "purging behaviors", "label": "purging behaviors", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Delayed stomach emptying", "label": "Delayed stomach emptying", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "metoclopramide", "label": "metoclopramide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Wernicke encephalopathy", "label": "Wernicke encephalopathy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "vitamin B1 deficiency", "label": "vitamin B1 deficiency", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Hypomagnesemia", "label": "Hypomagnesemia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Cardiac muscle atrophy", "label": "Cardiac muscle atrophy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "decreased ability to pump blood", "label": "decreased ability to pump blood", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Medical students", "label": "Medical students", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "10.4% for eating disorders", "label": "10.4% for eating disorders", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Eating disorders", "label": "Eating disorders", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Western countries", "label": "Western countries", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "preindustrial non-westernized countries", "label": "preindustrial non-westernized countries", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anorexia of Aging", "label": "Anorexia of Aging", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "early onset", "label": "early onset", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "late onset", "label": "late onset", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "unexplained hair loss", "label": "unexplained hair loss", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "loss of control", "label": "loss of control", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "desire to eat alone", "label": "desire to eat alone", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "sudden weight loss", "label": "sudden weight loss", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Male and female athletes", "label": "Male and female athletes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anorexic individuals", "label": "anorexic individuals", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "malnutrition", "label": "malnutrition", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "nursing homes", "label": "nursing homes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "assisted living facilities", "label": "assisted living facilities", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "bland monotonous food", "label": "bland monotonous food", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "treatment for anorexia of aging", "label": "treatment for anorexia of aging", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "treatment for other age groups", "label": "treatment for other age groups", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "male athletes", "label": "male athletes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anorexic", "label": "anorexic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "female athletes", "label": "female athletes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Richard Morton", "label": "Richard Morton", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "earliest medical descriptions of anorexia", "label": "earliest medical descriptions of anorexia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Sir William Gull", "label": "Sir William Gull", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Hilde Bruch", "label": "Hilde Bruch", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "The Golden Cage: the Enigma of Anorexia Nervosa", "label": "The Golden Cage: the Enigma of Anorexia Nervosa", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Karen Carpenter", "label": "Karen Carpenter", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "media coverage of eating disorders", "label": "media coverage of eating disorders", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anorexia mirabilis", "label": "anorexia mirabilis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "medieval practice of self-starvation", "label": "medieval practice of self-starvation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anthrax", "label": "Anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "contact with bacterial spores", "label": "contact with bacterial spores", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "inhalation anthrax", "label": "inhalation anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Bacillus anthracis", "label": "Bacillus anthracis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "human skin", "label": "human skin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "intestines, lungs, or skin", "label": "intestines, lungs, or skin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "human lungs", "label": "human lungs", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "biological warfare agent", "label": "biological warfare agent", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anthrax disease", "label": "anthrax disease", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "human intestines", "label": "human intestines", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "intestinal anthrax", "label": "intestinal anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "cutaneous anthrax", "label": "cutaneous anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anthrax vaccination", "label": "anthrax vaccination", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "injection anthrax", "label": "injection anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anthrax toxin", "label": "anthrax toxin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "medusa head appearance", "label": "medusa head appearance", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "spores in soil", "label": "spores in soil", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "polymerase chain reaction-based assays", "label": "polymerase chain reaction-based assays", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "immunofluorescence microscopy", "label": "immunofluorescence microscopy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "lethal toxin", "label": "lethal toxin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "poly-D-glutamic acid capsule", "label": "poly-D-glutamic acid capsule", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "20% without treatment", "label": "20% without treatment", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Robert Koch", "label": "Robert Koch", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anthrax bacterium", "label": "anthrax bacterium", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1905 Nobel Prize", "label": "1905 Nobel Prize", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Cutaneous anthrax", "label": "Cutaneous anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "B. anthracis spores", "label": "B. anthracis spores", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anthrax", "label": "anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "painless necrotic ulcer", "label": "painless necrotic ulcer", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "black eschar skin lesion", "label": "black eschar skin lesion", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Inhalation anthrax", "label": "Inhalation anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hemorrhagic mediastinitis", "label": "hemorrhagic mediastinitis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "90% before 2001", "label": "90% before 2001", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "fever and chest pain", "label": "fever and chest pain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "45% since 2001", "label": "45% since 2001", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Ascoli test", "label": "Ascoli test", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "preventive antibiotics", "label": "preventive antibiotics", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2000 cases a year", "label": "2000 cases a year", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Injection anthrax", "label": "Injection anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "heroin use", "label": "heroin use", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Gastrointestinal anthrax", "label": "Gastrointestinal anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "consuming infected meat", "label": "consuming infected meat", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Herbivores", "label": "Herbivores", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "grazing", "label": "grazing", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anthrax spores", "label": "anthrax spores", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arctic permafrost", "label": "arctic permafrost", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anthrax spores", "label": "Anthrax spores", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "harsh conditions for decades", "label": "harsh conditions for decades", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "grazing on vegetation", "label": "grazing on vegetation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "biological warfare weapon", "label": "biological warfare weapon", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1916 Finland conflict", "label": "1916 Finland conflict", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anthrax bacteria", "label": "Anthrax bacteria", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "edema toxin", "label": "edema toxin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Lethal toxin", "label": "Lethal toxin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "host death", "label": "host death", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Inhalational anthrax", "label": "Inhalational anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "woolsorters disease", "label": "woolsorters disease", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Occupational exposure", "label": "Occupational exposure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "human anthrax infection", "label": "human anthrax infection", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "edema factor (EF)", "label": "edema factor (EF)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "protective antigen (PA)", "label": "protective antigen (PA)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "lethal factor (LF)", "label": "lethal factor (LF)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "neutrophils", "label": "neutrophils", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Bacillus spp.", "label": "Bacillus spp.", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "3 to 4 \u03bcm long", "label": "3 to 4 \u03bcm long", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "5% sheep blood agar", "label": "5% sheep blood agar", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Louis Pasteur", "label": "Louis Pasteur", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "first effective anthrax vaccine", "label": "first effective anthrax vaccine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anthrax vaccine", "label": "anthrax vaccine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Pasteur Institutes", "label": "Pasteur Institutes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "BioThrax", "label": "BioThrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "FDA", "label": "FDA", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "omitting week-2 dose", "label": "omitting week-2 dose", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "raxibacumab injection", "label": "raxibacumab injection", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "United States Postal Service", "label": "United States Postal Service", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "biodetection systems", "label": "biodetection systems", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anthrax infection sources", "label": "anthrax infection sources", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "raxibacumab", "label": "raxibacumab", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "monoclonal antibody", "label": "monoclonal antibody", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "inhalational anthrax", "label": "inhalational anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "B. anthracis toxins", "label": "B. anthracis toxins", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Cutaneous skin infection", "label": "Cutaneous skin infection", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "toxemia and death", "label": "toxemia and death", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Fulminant phase of inhalational anthrax", "label": "Fulminant phase of inhalational anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "97%", "label": "97%", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anthrax meningoencephalitis", "label": "Anthrax meningoencephalitis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "fatal", "label": "fatal", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "GI anthrax infections", "label": "GI anthrax infections", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "25% to 60%", "label": "25% to 60%", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "John Henry Bell", "label": "John Henry Bell", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "doctor", "label": "doctor", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "woolsorters disease to anthrax", "label": "woolsorters disease to anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Friederich Wilhelm Eurich", "label": "Friederich Wilhelm Eurich", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "bacteriologist", "label": "bacteriologist", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anthrax Investigation Board", "label": "Anthrax Investigation Board", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anthrax Prevention Act (1919)", "label": "Anthrax Prevention Act (1919)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Britain", "label": "Britain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anthrax Prevention Act", "label": "Anthrax Prevention Act", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1919", "label": "1919", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Sterne strain", "label": "Sterne strain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "vaccine", "label": "vaccine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Ames strain", "label": "Ames strain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2001 anthrax attacks", "label": "2001 anthrax attacks", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Vollum 1B strain", "label": "Vollum 1B strain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "William A. Boyles", "label": "William A. Boyles", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Vollum strain", "label": "Vollum strain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "US bioweapon program", "label": "US bioweapon program", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "UK bioweapon program", "label": "UK bioweapon program", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "US Army Biological Warfare Laboratories", "label": "US Army Biological Warfare Laboratories", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "US Air Force researchers", "label": "US Air Force researchers", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Alls/Gifford (Curlicue) strain", "label": "Alls/Gifford (Curlicue) strain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anthrax vaccine strain", "label": "anthrax vaccine strain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Chlorine dioxide", "label": "Chlorine dioxide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anthrax decontamination", "label": "anthrax decontamination", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Environmental Protection Agency", "label": "Environmental Protection Agency", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Senate Office Building decontamination", "label": "Senate Office Building decontamination", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Wildlife workers", "label": "Wildlife workers", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "covering anthrax carcasses", "label": "covering anthrax carcasses", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Covering anthrax carcasses", "label": "Covering anthrax carcasses", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "scavengers opening carcasses", "label": "scavengers opening carcasses", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Preventing scavenger access", "label": "Preventing scavenger access", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "putrefactive bacteria kill B. anthracis", "label": "putrefactive bacteria kill B. anthracis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Ministry of Defence", "label": "Ministry of Defence", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Gruinard Island", "label": "Gruinard Island", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Unit 731", "label": "Unit 731", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anthrax as biological agent", "label": "anthrax as biological agent", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "British bioweapons trials", "label": "British bioweapons trials", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Operation Vegetarian", "label": "Operation Vegetarian", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anthrax-impregnated cattle cakes", "label": "anthrax-impregnated cattle cakes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Soviet Union", "label": "Soviet Union", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1972 Bioweapons Treaty", "label": "1972 Bioweapons Treaty", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "100-200 tons of anthrax spores", "label": "100-200 tons of anthrax spores", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Sverdlovsk biological weapons complex", "label": "Sverdlovsk biological weapons complex", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "accidental anthrax release in 1979", "label": "accidental anthrax release in 1979", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "KGB", "label": "KGB", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "medical records", "label": "medical records", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Boris Yeltsin", "label": "Boris Yeltsin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anthrax accident", "label": "anthrax accident", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Bruce Ivins", "label": "Bruce Ivins", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "US Postal Service", "label": "US Postal Service", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "mail", "label": "mail", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "biohazard detection systems", "label": "biohazard detection systems", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Sipco Industries", "label": "Sipco Industries", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "proprietary enzyme formula", "label": "proprietary enzyme formula", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "electric iron", "label": "electric iron", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "The Loves of Joanna Godden", "label": "The Loves of Joanna Godden", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1947", "label": "1947", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Ralph Vaughan Williams", "label": "Ralph Vaughan Williams", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Alfred Hitchcock Presents", "label": "Alfred Hitchcock Presents", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Diagnosis: Danger", "label": "Diagnosis: Danger", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1963", "label": "1963", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anthrax outbreak", "label": "anthrax outbreak", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Silent Witness", "label": "Silent Witness", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "genetically modified anthrax", "label": "genetically modified anthrax", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "The Power of the Dog", "label": "The Power of the Dog", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Jane Campion", "label": "Jane Campion", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anticholinergics", "label": "Anticholinergics", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Delirium", "label": "Delirium", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Constipation", "label": "Constipation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "sedation", "label": "sedation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Organophosphate poisoning", "label": "Organophosphate poisoning", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Antimuscarinic agents", "label": "Antimuscarinic agents", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Respiratory disorders", "label": "Respiratory disorders", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Gastrointestinal disorders", "label": "Gastrointestinal disorders", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Antinicotinic agents", "label": "Antinicotinic agents", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "antisialagogue effects", "label": "antisialagogue effects", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "affected receptors", "label": "affected receptors", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acetylcholine", "label": "acetylcholine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "parasympathetic nervous system", "label": "parasympathetic nervous system", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "muscarinic acetylcholine receptors", "label": "muscarinic acetylcholine receptors", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "nicotinic acetylcholine receptors", "label": "nicotinic acetylcholine receptors", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Physostigmine", "label": "Physostigmine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "asystole", "label": "asystole", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Anticholinergic toxicity", "label": "Anticholinergic toxicity", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anticholinergic poisoning", "label": "anticholinergic poisoning", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Tricyclic antidepressant overdose", "label": "Tricyclic antidepressant overdose", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Physostigmine administration", "label": "Physostigmine administration", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Solanaceae plants", "label": "Solanaceae plants", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anticholinergic tropane alkaloids", "label": "anticholinergic tropane alkaloids", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Acute anticholinergic syndrome", "label": "Acute anticholinergic syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "significant anticholinergic intake", "label": "significant anticholinergic intake", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Atropa belladonna", "label": "Atropa belladonna", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "atropine", "label": "atropine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Antisialagogues", "label": "Antisialagogues", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "synthetic substances", "label": "synthetic substances", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "natural substances", "label": "natural substances", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "sialagogues", "label": "sialagogues", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "saliva", "label": "saliva", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "surgical procedures", "label": "surgical procedures", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "belladonna", "label": "belladonna", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Aphthous stomatitis", "label": "Aphthous stomatitis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "vitamin B12", "label": "vitamin B12", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "recurrent mouth ulcers", "label": "recurrent mouth ulcers", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "T cell-mediated immune response", "label": "T cell-mediated immune response", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Mikulicz\u0027s aphthae", "label": "Mikulicz\u0027s aphthae", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "clinical appearance and medical history", "label": "clinical appearance and medical history", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Oral cancer", "label": "Oral cancer", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "corticosteroids", "label": "corticosteroids", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "canker sore", "label": "canker sore", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "isolated oral ulceration", "label": "isolated oral ulceration", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "childhood or adolescence", "label": "childhood or adolescence", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "5% to 66% of people", "label": "5% to 66% of people", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "systemic lupus erythematosus", "label": "systemic lupus erythematosus", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "non-infectious stomatitis", "label": "non-infectious stomatitis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Topical corticosteroids", "label": "Topical corticosteroids", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "oral cancer", "label": "oral cancer", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Contagious", "label": "Contagious", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "20% of general population", "label": "20% of general population", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "recurrent aphthous stomatitis (RAS)", "label": "recurrent aphthous stomatitis (RAS)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Beh\u00e7et\u0027s disease", "label": "Beh\u00e7et\u0027s disease", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "No serious underlying condition", "label": "No serious underlying condition", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "stress", "label": "stress", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "inflammatory bowel diseases", "label": "inflammatory bowel diseases", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "folate", "label": "folate", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "positive family history", "label": "positive family history", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "10 and 19 years", "label": "10 and 19 years", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "nutritional deficiencies", "label": "nutritional deficiencies", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "local trauma", "label": "local trauma", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Mast cells", "label": "Mast cells", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "TNF-\u03b1", "label": "TNF-\u03b1", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Macrophages", "label": "Macrophages", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "T cells", "label": "T cells", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "aphthous-like ulceration", "label": "aphthous-like ulceration", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Silk Road populations", "label": "Silk Road populations", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Trauma", "label": "Trauma", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "dental injections", "label": "dental injections", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "dental treatments", "label": "dental treatments", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Frictional trauma", "label": "Frictional trauma", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "sharp surface in mouth", "label": "sharp surface in mouth", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Hormonal factors", "label": "Hormonal factors", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "mucosal barrier", "label": "mucosal barrier", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Smoking", "label": "Smoking", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "aphthous stomatitis", "label": "aphthous stomatitis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Smoking cessation", "label": "Smoking cessation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Sodium lauryl sulphate", "label": "Sodium lauryl sulphate", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "oral ulceration", "label": "oral ulceration", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "PFAPA syndrome", "label": "PFAPA syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "children", "label": "children", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Beh\u00e7ets disease", "label": "Beh\u00e7ets disease", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "individuals from Silk Road regions", "label": "individuals from Silk Road regions", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "MAGIC syndrome", "label": "MAGIC syndrome", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Cyclic neutropenia", "label": "Cyclic neutropenia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Hematinic deficiencies", "label": "Hematinic deficiencies", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "anemia", "label": "anemia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Oral ulceration", "label": "Oral ulceration", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "blood tests for nutritional deficiencies", "label": "blood tests for nutritional deficiencies", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Systemic diseases", "label": "Systemic diseases", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Patch testing", "label": "Patch testing", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "suspected allergies", "label": "suspected allergies", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Nicorandil", "label": "Nicorandil", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Tissue biopsy", "label": "Tissue biopsy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "oral squamous cell carcinoma", "label": "oral squamous cell carcinoma", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Minor aphthous ulceration", "label": "Minor aphthous ulceration", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "80-85% of aphthous stomatitis cases", "label": "80-85% of aphthous stomatitis cases", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "non-keratinized mucosal surfaces", "label": "non-keratinized mucosal surfaces", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Major aphthous ulceration", "label": "Major aphthous ulceration", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "10% of aphthous stomatitis cases", "label": "10% of aphthous stomatitis cases", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Herpetiform ulceration", "label": "Herpetiform ulceration", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "primary herpes simplex virus infection", "label": "primary herpes simplex virus infection", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Primary herpetic gingivostomatitis", "label": "Primary herpetic gingivostomatitis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Not herpes viruses", "label": "Not herpes viruses", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Major aphthae", "label": "Major aphthae", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "irregular outline", "label": "irregular outline", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "RAS-type ulceration", "label": "RAS-type ulceration", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Systemic conditions", "label": "Systemic conditions", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Silver nitrate", "label": "Silver nitrate", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "chemical cauterant", "label": "chemical cauterant", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Aloe vera", "label": "Aloe vera", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "minor RAS", "label": "minor RAS", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Jan Mikulicz-Radecki", "label": "Jan Mikulicz-Radecki", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Major RAS", "label": "Major RAS", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Sutton\u0027s ulcers", "label": "Sutton\u0027s ulcers", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "major RAS", "label": "major RAS", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Richard Lightburn Sutton", "label": "Richard Lightburn Sutton", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Aphtha", "label": "Aphtha", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Greek word aphtha", "label": "Greek word aphtha", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Recurrent aphthous stomatitis", "label": "Recurrent aphthous stomatitis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "developed countries", "label": "developed countries", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Stomatitis", "label": "Stomatitis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "angular stomatitis", "label": "angular stomatitis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "inflammatory process in the mouth", "label": "inflammatory process in the mouth", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Traditional Chinese medicine", "label": "Traditional Chinese medicine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "aphthae", "label": "aphthae", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Rembrandt Gentle White toothpaste", "label": "Rembrandt Gentle White toothpaste", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "canker sore sufferers", "label": "canker sore sufferers", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Johnson \u0026 Johnson", "label": "Johnson \u0026 Johnson", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "APL", "label": "APL", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "APL programming language", "label": "APL programming language", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Nampula Airport", "label": "Nampula Airport", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Afghanistan Premier League", "label": "Afghanistan Premier League", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "American President Lines", "label": "American President Lines", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Applied Physics Laboratory", "label": "Applied Physics Laboratory", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Applied Physics Letters", "label": "Applied Physics Letters", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Johns Hopkins University", "label": "Johns Hopkins University", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Singapore", "label": "Singapore", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Twenty20 cricket", "label": "Twenty20 cricket", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "apl.de.ap", "label": "apl.de.ap", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Allan Pineda Lindo", "label": "Allan Pineda Lindo", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Apnea of prematurity", "label": "Apnea of prematurity", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "85 percent of infants born at less than 34 weeks", "label": "85 percent of infants born at less than 34 weeks", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "cessation of breathing by premature infant", "label": "cessation of breathing by premature infant", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "mixed apnea", "label": "mixed apnea", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "obstructive apnea", "label": "obstructive apnea", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "CPAP", "label": "CPAP", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "central apnea", "label": "central apnea", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "home apnea monitor", "label": "home apnea monitor", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Methylxanthines", "label": "Methylxanthines", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "theophylline", "label": "theophylline", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "caffeine", "label": "caffeine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Arsenic poisoning", "label": "Arsenic poisoning", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "urine, blood, or hair testing", "label": "urine, blood, or hair testing", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "elevated arsenic levels", "label": "elevated arsenic levels", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "vomiting and abdominal pain", "label": "vomiting and abdominal pain", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Long-term arsenic exposure", "label": "Long-term arsenic exposure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "skin thickening and cancer", "label": "skin thickening and cancer", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Contaminated drinking water", "label": "Contaminated drinking water", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "long-term arsenic exposure", "label": "long-term arsenic exposure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Arsenic", "label": "Arsenic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "oxidative stress", "label": "oxidative stress", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pyruvate dehydrogenase complex", "label": "pyruvate dehydrogenase complex", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "lung cancer", "label": "lung cancer", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "air", "label": "air", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "groundwater", "label": "groundwater", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "soil", "label": "soil", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "skin, lung, liver, and kidney cancer", "label": "skin, lung, liver, and kidney cancer", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pesticide in Asia", "label": "pesticide in Asia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "approximately 200 enzymes", "label": "approximately 200 enzymes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "copper smelting", "label": "copper smelting", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "copper", "label": "copper", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "blood or urine", "label": "blood or urine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "smelting of zinc and copper ores", "label": "smelting of zinc and copper ores", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "hydrogen peroxide", "label": "hydrogen peroxide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "cardiac hypertrophy", "label": "cardiac hypertrophy", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Acute arsenic poisoning", "label": "Acute arsenic poisoning", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Dimercaptosuccinic acid", "label": "Dimercaptosuccinic acid", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "acute arsenic poisoning", "label": "acute arsenic poisoning", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Dimethylarsinic acid", "label": "Dimethylarsinic acid", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "DNA single strand breaks", "label": "DNA single strand breaks", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "primary urinary metabolite", "label": "primary urinary metabolite", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Arsenic exposure", "label": "Arsenic exposure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "chromosomal aberrations", "label": "chromosomal aberrations", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "elevated serum lipid peroxides", "label": "elevated serum lipid peroxides", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "DMA(III)", "label": "DMA(III)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "iron from ferritin", "label": "iron from ferritin", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "molecular oxygen", "label": "molecular oxygen", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Reactive oxygen species", "label": "Reactive oxygen species", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "DNA damage", "label": "DNA damage", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "DMA(V)", "label": "DMA(V)", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "8-hydroxy-2-deoxyguanosine", "label": "8-hydroxy-2-deoxyguanosine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Arsenic methylation", "label": "Arsenic methylation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "detoxification pathway", "label": "detoxification pathway", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Inorganic arsenic", "label": "Inorganic arsenic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "organic arsenic", "label": "organic arsenic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Chronic arsenic poisoning", "label": "Chronic arsenic poisoning", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "drinking contaminated well water", "label": "drinking contaminated well water", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Organic arsenic", "label": "Organic arsenic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "inorganic arsenic", "label": "inorganic arsenic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Seafood", "label": "Seafood", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Bangladesh", "label": "Bangladesh", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arsenic", "label": "arsenic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "largest mass arsenic poisoning", "label": "largest mass arsenic poisoning", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Hydraulic fracturing", "label": "Hydraulic fracturing", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arsenic in groundwater", "label": "arsenic in groundwater", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Yellowstone National Park", "label": "Yellowstone National Park", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "geothermal fluids with arsenic", "label": "geothermal fluids with arsenic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "California", "label": "California", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arsenic concentrations up to 48,000 \u03bcg/L", "label": "arsenic concentrations up to 48,000 \u03bcg/L", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "As-bearing sulfide minerals", "label": "As-bearing sulfide minerals", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Geothermal waters on Dominica", "label": "Geothermal waters on Dominica", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arsenic \u003e50 \u03bcg/L", "label": "arsenic \u003e50 \u03bcg/L", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Arsenobetaine", "label": "Arsenobetaine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "marine animals", "label": "marine animals", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Rice", "label": "Rice", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arsenic from soil", "label": "arsenic from soil", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "U.S. commercially raised chickens", "label": "U.S. commercially raised chickens", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arsenic from feed additives", "label": "arsenic from feed additives", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Roxarsone and nitarsone", "label": "Roxarsone and nitarsone", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "coccidiosis infection", "label": "coccidiosis infection", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Air in industrial sites", "label": "Air in industrial sites", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "50 ng/m\u00b3 of arsenic", "label": "50 ng/m\u00b3 of arsenic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Lead arsenate pesticides", "label": "Lead arsenate pesticides", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "over 50 years", "label": "over 50 years", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Lead arsenate", "label": "Lead arsenate", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "land", "label": "land", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Chromated copper arsenate", "label": "Chromated copper arsenate", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "wood", "label": "wood", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Arsenic trioxide", "label": "Arsenic trioxide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "voltage-gated potassium channels", "label": "voltage-gated potassium channels", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "heart rhythm problems", "label": "heart rhythm problems", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Chronic arsenic exposure", "label": "Chronic arsenic exposure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "high oxidative stress", "label": "high oxidative stress", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "chronic arsenic exposure", "label": "chronic arsenic exposure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arsenic exposure", "label": "arsenic exposure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arrhythmia", "label": "arrhythmia", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "atherosclerosis", "label": "atherosclerosis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "chronic exposure to arsenic", "label": "chronic exposure to arsenic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "tumor necrosis factor-\u03b1", "label": "tumor necrosis factor-\u03b1", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arsenic compounds", "label": "arsenic compounds", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "IKr and Iks channels", "label": "IKr and Iks channels", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pyruvate dehydrogenase", "label": "pyruvate dehydrogenase", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "0.05 mg/L", "label": "0.05 mg/L", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Arsenate", "label": "Arsenate", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "phosphate", "label": "phosphate", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Dimethylarsenic acid", "label": "Dimethylarsenic acid", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Agent Blue", "label": "Agent Blue", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Agent Blue herbicide", "label": "Agent Blue herbicide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "herbicide", "label": "herbicide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "American war in Vietnam", "label": "American war in Vietnam", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Arsenic pentoxide", "label": "Arsenic pentoxide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Reduction of arsenic pentoxide", "label": "Reduction of arsenic pentoxide", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "toxicity of arsenic", "label": "toxicity of arsenic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Methyltransferase enzymes", "label": "Methyltransferase enzymes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "methylation of arsenic", "label": "methylation of arsenic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "S-adenosylmethionine", "label": "S-adenosylmethionine", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "methyl donor", "label": "methyl donor", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Arsenite", "label": "Arsenite", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "glutathione reductase", "label": "glutathione reductase", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Oxidative stress from arsenic", "label": "Oxidative stress from arsenic", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "NF-\u03baB signaling", "label": "NF-\u03baB signaling", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Oxidative stress", "label": "Oxidative stress", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "signal transduction pathways", "label": "signal transduction pathways", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Chronic arsenic consumption", "label": "Chronic arsenic consumption", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "type 2 diabetes incidence", "label": "type 2 diabetes incidence", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Urine test", "label": "Urine test", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "recent arsenic exposure", "label": "recent arsenic exposure", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Hair analysis", "label": "Hair analysis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Dimercaprol", "label": "Dimercaprol", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Supplemental potassium", "label": "Supplemental potassium", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "life-threatening heart rhythm problem", "label": "life-threatening heart rhythm problem", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Arsenic compounds", "label": "Arsenic compounds", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "syphilis", "label": "syphilis", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Emerald Green pigment", "label": "Emerald Green pigment", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "U.S. Environmental Protection Agency", "label": "U.S. Environmental Protection Agency", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "National Interim Primary Drinking Water Regulation", "label": "National Interim Primary Drinking Water Regulation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arsenic MCL", "label": "arsenic MCL", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Safe Drinking Water Act", "label": "Safe Drinking Water Act", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arsenic level regulation", "label": "arsenic level regulation", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "Guangxu Emperor", "label": "Guangxu Emperor", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "0.01 mg/L", "label": "0.01 mg/L", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "India", "label": "India", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "arsenic removal technologies", "label": "arsenic removal technologies", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "precipitative processes", "label": "precipitative processes", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "pregnant women", "label": "pregnant women", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "89f17c0f-54f5-4f06-9c57-05ad41d773f3", "label": "89f17c0f-54f5-4f06-9c57-05ad41d773f3", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "51f5543a-ecf2-4a0a-90d7-a931bfd20362", "label": "51f5543a-ecf2-4a0a-90d7-a931bfd20362", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "aba470d3-26a7-48fb-a889-ae71fbc81d45", "label": "aba470d3-26a7-48fb-a889-ae71fbc81d45", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "11ea5a66-3bab-49a6-b062-d8c61be9bed1", "label": "11ea5a66-3bab-49a6-b062-d8c61be9bed1", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "4bd05fe7-54d7-40d8-90ce-97d473ac69fa", "label": "4bd05fe7-54d7-40d8-90ce-97d473ac69fa", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "b2acc4e7-6abe-4a85-9d4c-3e5ead2c9697", "label": "b2acc4e7-6abe-4a85-9d4c-3e5ead2c9697", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "b69d3a38-9401-4cc5-9422-52c64bfc5400", "label": "b69d3a38-9401-4cc5-9422-52c64bfc5400", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "37150c0e-cd68-4084-ab00-3db54d478e69", "label": "37150c0e-cd68-4084-ab00-3db54d478e69", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2f39e39d-230f-46f3-a919-55d14a678946", "label": "2f39e39d-230f-46f3-a919-55d14a678946", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "38961bc2-32ec-4a2f-a95c-c32aaa99f630", "label": "38961bc2-32ec-4a2f-a95c-c32aaa99f630", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "d023fa22-465f-4d45-8624-3603757b43b8", "label": "d023fa22-465f-4d45-8624-3603757b43b8", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6ed9912b-aeab-45a1-98cb-2f9d41728d38", "label": "6ed9912b-aeab-45a1-98cb-2f9d41728d38", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1567f0f4-2ee2-40c2-a5b7-a9ea188d2139", "label": "1567f0f4-2ee2-40c2-a5b7-a9ea188d2139", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6263a5bc-f610-4495-8439-0d25b724845d", "label": "6263a5bc-f610-4495-8439-0d25b724845d", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "f65a049a-b56e-4dce-8e0f-239669946855", "label": "f65a049a-b56e-4dce-8e0f-239669946855", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2533d649-82ae-412c-88ab-112a28261035", "label": "2533d649-82ae-412c-88ab-112a28261035", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "875f753e-b390-4ba6-9207-e5a4cbc391e0", "label": "875f753e-b390-4ba6-9207-e5a4cbc391e0", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ca5fc979-9787-465a-b4e9-ee1bd29e69dc", "label": "ca5fc979-9787-465a-b4e9-ee1bd29e69dc", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "3f23f2b9-941a-40d7-8225-805fb5035cca", "label": "3f23f2b9-941a-40d7-8225-805fb5035cca", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "e3cdf2f3-8949-4a5c-91f7-1f56c249b91c", "label": "e3cdf2f3-8949-4a5c-91f7-1f56c249b91c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "d3275606-f4be-491d-a533-93342d885b2b", "label": "d3275606-f4be-491d-a533-93342d885b2b", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "f44505b6-8a53-4f16-a8ff-0190f0ce96ff", "label": "f44505b6-8a53-4f16-a8ff-0190f0ce96ff", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "4ecc8d19-18ff-4665-b300-557fb88f146e", "label": "4ecc8d19-18ff-4665-b300-557fb88f146e", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "c10ac771-e986-4e00-b3ab-0c54376d9bfd", "label": "c10ac771-e986-4e00-b3ab-0c54376d9bfd", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "2f6ae82b-3444-4363-8c4d-aad09e32fc76", "label": "2f6ae82b-3444-4363-8c4d-aad09e32fc76", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6c7323c3-e6e2-4038-8a17-b5dd54c6ba7d", "label": "6c7323c3-e6e2-4038-8a17-b5dd54c6ba7d", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "75b71a65-5586-46b3-8411-940bf42713dd", "label": "75b71a65-5586-46b3-8411-940bf42713dd", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "59a15b30-29d0-448e-8856-69df827b49ca", "label": "59a15b30-29d0-448e-8856-69df827b49ca", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "5236b98f-cbae-4c78-8d03-f08708114f55", "label": "5236b98f-cbae-4c78-8d03-f08708114f55", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "dd239d84-7a0c-445e-a57f-9d1db2cfa88a", "label": "dd239d84-7a0c-445e-a57f-9d1db2cfa88a", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "a9608b7b-bfb9-4c32-92ee-6655021532b2", "label": "a9608b7b-bfb9-4c32-92ee-6655021532b2", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "767a5981-89ee-4e41-b1ce-3dafea7e9b30", "label": "767a5981-89ee-4e41-b1ce-3dafea7e9b30", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "52643b45-c6d3-4bbb-9ebd-7e02db42cb1e", "label": "52643b45-c6d3-4bbb-9ebd-7e02db42cb1e", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "d26c0330-265f-4ce3-94a6-8538b36d634d", "label": "d26c0330-265f-4ce3-94a6-8538b36d634d", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "502ed5db-1b4e-467e-b4ac-1939c3a55552", "label": "502ed5db-1b4e-467e-b4ac-1939c3a55552", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "e32888bf-3fe7-4d65-b507-27c6220b6d03", "label": "e32888bf-3fe7-4d65-b507-27c6220b6d03", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "65ae5718-5d9e-49bd-b783-cb0322bf596c", "label": "65ae5718-5d9e-49bd-b783-cb0322bf596c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "98847cc3-0946-4a48-8d5a-f46abf858a63", "label": "98847cc3-0946-4a48-8d5a-f46abf858a63", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "598ed0ff-6a25-4b63-b0ac-4840c3df762e", "label": "598ed0ff-6a25-4b63-b0ac-4840c3df762e", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "64a0a398-2fbc-434e-8207-7517201ddee0", "label": "64a0a398-2fbc-434e-8207-7517201ddee0", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "d64958cf-c2d7-45c5-8ce5-c69b36577970", "label": "d64958cf-c2d7-45c5-8ce5-c69b36577970", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "67d134a9-94a2-41a4-be0d-814332b2bc85", "label": "67d134a9-94a2-41a4-be0d-814332b2bc85", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "46bccfca-0212-4e3a-a173-61dbc1d594a2", "label": "46bccfca-0212-4e3a-a173-61dbc1d594a2", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "beac0b5f-caf0-40a7-9ae1-1309e5aed9de", "label": "beac0b5f-caf0-40a7-9ae1-1309e5aed9de", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "4a883132-6aa2-4a0f-8939-e7933ed6f37c", "label": "4a883132-6aa2-4a0f-8939-e7933ed6f37c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "9d864b8c-98d4-4af6-b30f-dd1981e7cda4", "label": "9d864b8c-98d4-4af6-b30f-dd1981e7cda4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1b731075-64ec-441a-993a-111356d82669", "label": "1b731075-64ec-441a-993a-111356d82669", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "269ef8bd-c86c-4361-b86e-b17aa7475584", "label": "269ef8bd-c86c-4361-b86e-b17aa7475584", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "53b19468-0c1e-4da6-90cb-999243ea0205", "label": "53b19468-0c1e-4da6-90cb-999243ea0205", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "552a7967-78cd-4d4b-854a-ace0062aeaee", "label": "552a7967-78cd-4d4b-854a-ace0062aeaee", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "64854466-700b-4487-bd16-986f4ff6cbec", "label": "64854466-700b-4487-bd16-986f4ff6cbec", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "eb669471-8ec3-4b52-8392-9f2b98020606", "label": "eb669471-8ec3-4b52-8392-9f2b98020606", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ef2d9b5b-38e4-44d7-8b18-a8f276c07ad9", "label": "ef2d9b5b-38e4-44d7-8b18-a8f276c07ad9", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "30f9c95b-9bce-4a12-a883-d0e1c49260f8", "label": "30f9c95b-9bce-4a12-a883-d0e1c49260f8", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "ae145433-d50d-4ab5-9969-152e9e115c29", "label": "ae145433-d50d-4ab5-9969-152e9e115c29", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "b76ea83a-1909-405c-b52c-ce93cd58802d", "label": "b76ea83a-1909-405c-b52c-ce93cd58802d", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "42832f3a-bcf2-463b-b7e2-c4e314e653f8", "label": "42832f3a-bcf2-463b-b7e2-c4e314e653f8", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "bd1b0174-e1e4-4deb-b5b9-ba335fc8f2d7", "label": "bd1b0174-e1e4-4deb-b5b9-ba335fc8f2d7", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "f54cedf9-6e76-4770-bf05-14c0fab367a1", "label": "f54cedf9-6e76-4770-bf05-14c0fab367a1", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "a5312b5c-a693-4868-9904-98386da19900", "label": "a5312b5c-a693-4868-9904-98386da19900", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "f1cb747c-18b3-4433-bb56-106e24022034", "label": "f1cb747c-18b3-4433-bb56-106e24022034", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "d749253f-adce-4a02-a65e-e2d484ba2782", "label": "d749253f-adce-4a02-a65e-e2d484ba2782", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "3953e2bf-30d8-4609-88b9-77bcca347103", "label": "3953e2bf-30d8-4609-88b9-77bcca347103", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "639bb525-c088-46a8-9d1d-d63d35bab650", "label": "639bb525-c088-46a8-9d1d-d63d35bab650", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "350be3b6-aa08-43a1-83cd-687e6d406b2f", "label": "350be3b6-aa08-43a1-83cd-687e6d406b2f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "32ed77f2-cc24-4d85-9edf-68c936e82eb8", "label": "32ed77f2-cc24-4d85-9edf-68c936e82eb8", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "7b36437e-c1d8-4ca3-982a-fb6b711d167f", "label": "7b36437e-c1d8-4ca3-982a-fb6b711d167f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "09431ee4-acd2-4759-9e4b-a94c1561e629", "label": "09431ee4-acd2-4759-9e4b-a94c1561e629", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "698240a4-e4d1-456a-87f5-fea3a91900d4", "label": "698240a4-e4d1-456a-87f5-fea3a91900d4", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "643dbc0e-4bc5-419d-ba27-2073d39cf282", "label": "643dbc0e-4bc5-419d-ba27-2073d39cf282", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "eeb1e83a-4c62-4295-95ec-daeffc3e0c3a", "label": "eeb1e83a-4c62-4295-95ec-daeffc3e0c3a", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "8bba4f62-7620-4912-82e9-5bec04185d86", "label": "8bba4f62-7620-4912-82e9-5bec04185d86", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "e195fae4-6ad3-409c-bc14-4e6e25603e18", "label": "e195fae4-6ad3-409c-bc14-4e6e25603e18", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "451acaa5-f217-412e-ab55-87d11a1ef540", "label": "451acaa5-f217-412e-ab55-87d11a1ef540", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "f57463fc-7bee-4682-a188-e3fa8b46367d", "label": "f57463fc-7bee-4682-a188-e3fa8b46367d", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "738c3cfb-4323-4cfc-860b-99c13fbd9a63", "label": "738c3cfb-4323-4cfc-860b-99c13fbd9a63", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6e85c432-4dd4-403f-a8db-d1216a7a879e", "label": "6e85c432-4dd4-403f-a8db-d1216a7a879e", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "51e2f365-5a2d-413c-bb6f-7d2129ab4516", "label": "51e2f365-5a2d-413c-bb6f-7d2129ab4516", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "487ba4ee-324f-48fd-a69f-4bb0291b057a", "label": "487ba4ee-324f-48fd-a69f-4bb0291b057a", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "fb9cc096-1053-4c4c-bb04-853b2e2d749f", "label": "fb9cc096-1053-4c4c-bb04-853b2e2d749f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "92b24e53-3b10-496f-9a4a-5c293e1957a2", "label": "92b24e53-3b10-496f-9a4a-5c293e1957a2", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "d3bf8047-a77c-456a-84c7-daa5ad0d42bc", "label": "d3bf8047-a77c-456a-84c7-daa5ad0d42bc", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "4a46dcb8-78d4-4fca-8f9d-62b18938fe0d", "label": "4a46dcb8-78d4-4fca-8f9d-62b18938fe0d", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "9439b6b5-080b-42fa-9b2e-efd8560f0c81", "label": "9439b6b5-080b-42fa-9b2e-efd8560f0c81", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "dadd77e4-7337-47c4-9e91-902aacb58c36", "label": "dadd77e4-7337-47c4-9e91-902aacb58c36", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "f9719d90-593f-4468-a353-6d94016c6182", "label": "f9719d90-593f-4468-a353-6d94016c6182", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "f472222c-d886-4502-b597-c3252b72768f", "label": "f472222c-d886-4502-b597-c3252b72768f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "811d4bb8-fdd3-4280-bc05-3fa0e240f93b", "label": "811d4bb8-fdd3-4280-bc05-3fa0e240f93b", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "6a788f66-9521-418e-bbd1-19e92c071056", "label": "6a788f66-9521-418e-bbd1-19e92c071056", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "5c693028-7110-4d08-ab1d-e45dcfef4462", "label": "5c693028-7110-4d08-ab1d-e45dcfef4462", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1e649d1c-6116-4747-8835-ea06403e7f6c", "label": "1e649d1c-6116-4747-8835-ea06403e7f6c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "701ea21f-6e89-4635-a9fa-499cdd2dbf1f", "label": "701ea21f-6e89-4635-a9fa-499cdd2dbf1f", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "671ca46d-49c0-42de-be81-62e93e17ee2c", "label": "671ca46d-49c0-42de-be81-62e93e17ee2c", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "8503bd39-6566-4260-aa18-fb235b8d859e", "label": "8503bd39-6566-4260-aa18-fb235b8d859e", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "447fcf88-2df0-49da-970e-3017c4ca0cd8", "label": "447fcf88-2df0-49da-970e-3017c4ca0cd8", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "f6fc3673-3912-4eb8-8cf1-40587fabb468", "label": "f6fc3673-3912-4eb8-8cf1-40587fabb468", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "bc34dee9-4e1c-4fd7-9792-9ed9af79b933", "label": "bc34dee9-4e1c-4fd7-9792-9ed9af79b933", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "06a8f103-2e59-479f-acb3-79541282edd9", "label": "06a8f103-2e59-479f-acb3-79541282edd9", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "762f0bfd-9de2-41df-a41a-26d2ee5f8bdc", "label": "762f0bfd-9de2-41df-a41a-26d2ee5f8bdc", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "cd198d18-7a65-46b4-9af9-e74e69d6946e", "label": "cd198d18-7a65-46b4-9af9-e74e69d6946e", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "75ec0279-382d-418a-911d-6d17056956a6", "label": "75ec0279-382d-418a-911d-6d17056956a6", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "f1cdb742-d318-4145-82a1-6c0b58087a24", "label": "f1cdb742-d318-4145-82a1-6c0b58087a24", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "1baff272-1346-4f71-81e8-ba5293acead3", "label": "1baff272-1346-4f71-81e8-ba5293acead3", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "95fb3347-c3a2-46e2-b9fc-77ff0f78d4b2", "label": "95fb3347-c3a2-46e2-b9fc-77ff0f78d4b2", "shape": "dot", "size": 10}, {"color": "#97c2fc", "id": "358354a7-15a9-477b-af37-e32189f5eaea", "label": "358354a7-15a9-477b-af37-e32189f5eaea", "shape": "dot", "size": 10}]); | |
| edges = new vis.DataSet([{"arrows": "to", "from": "Paracetamol poisoning", "label": "HAS_SYMPTOM", "to": "nausea", "width": 1}, {"arrows": "to", "from": "Paracetamol poisoning", "label": "HAS_SYMPTOM", "to": "feeling tired", "width": 1}, {"arrows": "to", "from": "Paracetamol poisoning", "label": "CAUSED_BY", "to": "excessive use of paracetamol", "width": 1}, {"arrows": "to", "from": "Paracetamol poisoning", "label": "CAN_RESULT_IN", "to": "liver failure", "width": 1}, {"arrows": "to", "from": "Paracetamol poisoning", "label": "TREATED_WITH", "to": "acetylcysteine", "width": 1}, {"arrows": "to", "from": "Paracetamol poisoning", "label": "DIAGNOSED_BY", "to": "blood level of paracetamol", "width": 1}, {"arrows": "to", "from": "Paracetamol poisoning", "label": "DIAGNOSED_BY", "to": "blood paracetamol level", "width": 1}, {"arrows": "to", "from": "Paracetamol poisoning", "label": "HAS_SYMPTOM", "to": "abdominal pain", "width": 1}, {"arrows": "to", "from": "liver failure", "label": "HAS_SYMPTOM", "to": "yellowish skin", "width": 1}, {"arrows": "to", "from": "acetylcysteine", "label": "REPLENISHES", "to": "glutathione", "width": 1}, {"arrows": "to", "from": "Paracetamol", "label": "HAS_PROPERTY", "to": "high toxicity", "width": 1}, {"arrows": "to", "from": "Paracetamol", "label": "HAS_RECOMMENDED_MAX_DOSE", "to": "4 grams per day", "width": 1}, {"arrows": "to", "from": "Paracetamol", "label": "CONTAINED_IN", "to": "over-the-counter medications", "width": 1}, {"arrows": "to", "from": "Paracetamol", "label": "METABOLIZES_TO", "to": "N-acetyl-p-benzoquinone imine (NAPQI)", "width": 1}, {"arrows": "to", "from": "Paracetamol", "label": "CONTAINED_IN", "to": "prescription-only medications", "width": 1}, {"arrows": "to", "from": "Paracetamol", "label": "CAUSES", "to": "acute liver failure", "width": 1}, {"arrows": "to", "from": "Paracetamol", "label": "CAUSES", "to": "drug overdoses", "width": 1}, {"arrows": "to", "from": "Paracetamol", "label": "HAS_TOXIC_DOSE", "to": "highly variable", "width": 1}, {"arrows": "to", "from": "N-acetyl-p-benzoquinone imine (NAPQI)", "label": "DAMAGES", "to": "liver cells", "width": 1}, {"arrows": "to", "from": "N-acetyl-p-benzoquinone imine (NAPQI)", "label": "DETOXIFIED_BY", "to": "glutathione", "width": 1}, {"arrows": "to", "from": "Paracetamol overdose", "label": "ACCOUNTS_FOR", "to": "41% of acute liver failure cases in adults", "width": 1}, {"arrows": "to", "from": "Paracetamol overdose", "label": "DEPLETES", "to": "hepatocellular glutathione", "width": 1}, {"arrows": "to", "from": "Paracetamol overdose", "label": "LEADS_TO_CALLS_TO", "to": "poison control centers", "width": 1}, {"arrows": "to", "from": "Paracetamol overdose", "label": "ACCOUNTS_FOR", "to": "25% of acute liver failure cases in children", "width": 1}, {"arrows": "to", "from": "Paracetamol overdose", "label": "DIAGNOSED_BY", "to": "elevated AST and ALT", "width": 1}, {"arrows": "to", "from": "Paracetamol overdose", "label": "HAS_INDICATOR", "to": "arterial blood pH less than 7.3", "width": 1}, {"arrows": "to", "from": "Paracetamol overdose", "label": "CAUSES", "to": "glutathione depletion", "width": 1}, {"arrows": "to", "from": "Paracetamol overdose", "label": "CAUSED_BY", "to": "intentional self-poisoning", "width": 1}, {"arrows": "to", "from": "Chronic excessive alcohol consumption", "label": "INCREASES_RISK_OF", "to": "paracetamol toxicity", "width": 1}, {"arrows": "to", "from": "Fasting", "label": "INCREASES_RISK_OF", "to": "paracetamol toxicity", "width": 1}, {"arrows": "to", "from": "Depleted glutathione", "label": "LEADS_TO", "to": "acute liver necrosis", "width": 1}, {"arrows": "to", "from": "Glutathione depletion", "label": "LEADS_TO", "to": "NAPQI accumulation", "width": 1}, {"arrows": "to", "from": "NAPQI accumulation", "label": "CAUSES", "to": "hepatocyte damage", "width": 1}, {"arrows": "to", "from": "Hepatocyte damage", "label": "LEADS_TO", "to": "acute liver necrosis", "width": 1}, {"arrows": "to", "from": "Rumack-Matthew nomogram", "label": "PREDICTS", "to": "risk of hepatotoxicity", "width": 1}, {"arrows": "to", "from": "United Kingdom", "label": "RESTRICTS_SALES_OF", "to": "paracetamol tablets", "width": 1}, {"arrows": "to", "from": "Paradote", "label": "CONTAINS", "to": "methionine", "width": 1}, {"arrows": "to", "from": "Paradote", "label": "COMBINES", "to": "paracetamol and methionine", "width": 1}, {"arrows": "to", "from": "Paradote", "label": "CONTAINS", "to": "paracetamol", "width": 1}, {"arrows": "to", "from": "Acetylcysteine", "label": "CAUSES", "to": "anaphylactoid reaction", "width": 1}, {"arrows": "to", "from": "Acetylcysteine", "label": "IS_ANTIDOTE_FOR", "to": "paracetamol overdose", "width": 1}, {"arrows": "to", "from": "Acetylcysteine", "label": "MORE_EFFECTIVE_THAN", "to": "cysteamine", "width": 1}, {"arrows": "to", "from": "Acetylcysteine", "label": "TREATS", "to": "paracetamol toxicity", "width": 1}, {"arrows": "to", "from": "Acetylcysteine", "label": "REPLENISHES", "to": "glutathione", "width": 1}, {"arrows": "to", "from": "Acetylcysteine", "label": "ADMINISTRATION_ROUTE", "to": "intravenous", "width": 1}, {"arrows": "to", "from": "Calcitriol", "label": "CATALYZES", "to": "glutathione production", "width": 1}, {"arrows": "to", "from": "aspirin", "label": "IS_MORE_TOXIC_THAN", "to": "paracetamol", "width": 1}, {"arrows": "to", "from": "non-steroidal anti-inflammatory drugs", "label": "HAS_MORE_ADVERSE_EFFECTS_THAN", "to": "paracetamol", "width": 1}, {"arrows": "to", "from": "methionine", "label": "WAS_USED_TO_TREAT", "to": "paracetamol overdose", "width": 1}, {"arrows": "to", "from": "calcitriol", "label": "INCREASES_PRODUCTION_OF", "to": "glutathione", "width": 1}, {"arrows": "to", "from": "L-5-oxo-pyrrolidine-2-paracetamol carboxylate", "label": "REDUCES_TOXICITY_OF", "to": "paracetamol", "width": 1}, {"arrows": "to", "from": "activated charcoal", "label": "REDUCES_ABSORPTION_OF", "to": "oral acetylcysteine", "width": 1}, {"arrows": "to", "from": "activated charcoal", "label": "REDUCES_ABSORPTION_OF", "to": "paracetamol", "width": 1}, {"arrows": "to", "from": "Glutathione", "label": "NEUTRALIZES", "to": "NAPQI metabolite", "width": 1}, {"arrows": "to", "from": "Activated charcoal", "label": "NO_INTERACTION_WITH", "to": "intravenous acetylcysteine", "width": 1}, {"arrows": "to", "from": "Activated charcoal", "label": "INTERFERES_WITH", "to": "oral acetylcysteine", "width": 1}, {"arrows": "to", "from": "Syrup of ipecac", "label": "DELAYS", "to": "activated charcoal administration", "width": 1}, {"arrows": "to", "from": "Children under 6 years", "label": "LOW_RISK_OF", "to": "liver injury", "width": 1}, {"arrows": "to", "from": "Intravenous acetylcysteine", "label": "SHORTENS", "to": "hospital stay", "width": 1}, {"arrows": "to", "from": "Intravenous acetylcysteine", "label": "ALLOWS_ADMINISTRATION_OF", "to": "activated charcoal", "width": 1}, {"arrows": "to", "from": "Intravenous acetylcysteine", "label": "CAUSES_ADVERSE_EFFECT", "to": "anaphylactoid reaction", "width": 1}, {"arrows": "to", "from": "Anaphylactoid reaction", "label": "MANIFESTED_BY", "to": "rash, wheeze, mild hypotension", "width": 1}, {"arrows": "to", "from": "Acute liver failure", "label": "TREATED_WITH", "to": "liver transplantation", "width": 1}, {"arrows": "to", "from": "Kings College Hospital in London", "label": "DEVELOPED", "to": "liver transplant criteria", "width": 1}, {"arrows": "to", "from": "Paracetamol toxicity", "label": "IS_COMMON_CAUSE", "to": "poisoning worldwide", "width": 1}, {"arrows": "to", "from": "Paracetamol toxicity", "label": "IS", "to": "common cause of poisoning worldwide", "width": 1}, {"arrows": "to", "from": "England and Wales", "label": "HAS_ESTIMATED", "to": "41,200 cases of paracetamol poisoning", "width": 1}, {"arrows": "to", "from": "Centers for Disease Control and Prevention", "label": "CONDUCTED_STUDY_ON", "to": "acute liver failure cases", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "ASSOCIATED_WITH", "to": "sleep apnea", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "ASSOCIATED_WITH", "to": "hypogonadism", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "HAS_ETYMOLOGY", "to": "Greek words for extremity and large", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "CAUSED_BY", "to": "excess growth hormone", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "TREATED_BY", "to": "surgery to remove tumor", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "AFFECTS", "to": "3 per 50,000 people", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "HAS_COMPLICATION", "to": "type 2 diabetes", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "TREATED_BY", "to": "drug therapy", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "TREATED_BY", "to": "surgical removal of tumor", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "TREATED_BY", "to": "radiation therapy", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "ASSOCIATED_WITH", "to": "hypertension", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "HAS_SYMPTOM", "to": "enlargement of hands and feet", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "FIRST_DESCRIBED_BY", "to": "Nicolas Saucerotte", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "ASSOCIATED_WITH", "to": "elevated cancer risk", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "ASSOCIATED_WITH", "to": "diabetes", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "AFFECTS_LIFE_EXPECTANCY", "to": "early detection", "width": 1}, {"arrows": "to", "from": "Acromegaly", "label": "DIAGNOSED_BY", "to": "measuring insulin-like growth factor I", "width": 1}, {"arrows": "to", "from": "excess growth hormone", "label": "CAUSED_BY", "to": "pituitary adenoma", "width": 1}, {"arrows": "to", "from": "pituitary adenoma", "label": "IS_TYPE_OF", "to": "benign tumor", "width": 1}, {"arrows": "to", "from": "pituitary adenomas", "label": "CAUSES", "to": "headaches", "width": 1}, {"arrows": "to", "from": "pituitary adenomas", "label": "CAUSES", "to": "reduced testosterone production", "width": 1}, {"arrows": "to", "from": "pituitary adenomas", "label": "CAUSES", "to": "optic nerve compression", "width": 1}, {"arrows": "to", "from": "pituitary adenomas", "label": "CAUSES", "to": "visual disturbances", "width": 1}, {"arrows": "to", "from": "GNAS gene mutation", "label": "CAUSES", "to": "pituitary adenomas", "width": 1}, {"arrows": "to", "from": "pancreatic tumors", "label": "CAN_CAUSE", "to": "acromegaly", "width": 1}, {"arrows": "to", "from": "non-pituitary tumors", "label": "PRODUCES", "to": "growth hormone-releasing hormone", "width": 1}, {"arrows": "to", "from": "IGF1 test", "label": "DIAGNOSES", "to": "acromegaly", "width": 1}, {"arrows": "to", "from": "GH suppression test", "label": "CONFIRMS", "to": "acromegaly", "width": 1}, {"arrows": "to", "from": "pituitary tumor surgery", "label": "TREATS", "to": "acromegaly", "width": 1}, {"arrows": "to", "from": "Pseudoacromegaly", "label": "HAS_FEATURE", "to": "acromegaloid features", "width": 1}, {"arrows": "to", "from": "Pseudoacromegaly", "label": "ASSOCIATED_WITH", "to": "insulin resistance", "width": 1}, {"arrows": "to", "from": "High dose minoxidil", "label": "CAUSES", "to": "Pseudoacromegaly", "width": 1}, {"arrows": "to", "from": "Somatostatin analogues", "label": "INCLUDES", "to": "lanreotide", "width": 1}, {"arrows": "to", "from": "Somatostatin analogues", "label": "INCLUDES", "to": "octreotide", "width": 1}, {"arrows": "to", "from": "Octreotide", "label": "CAUSES_SIDE_EFFECT", "to": "digestive problems", "width": 1}, {"arrows": "to", "from": "Octreotide", "label": "IS_FIRST_CHOICE_FOR", "to": "post-surgical acromegaly treatment", "width": 1}, {"arrows": "to", "from": "Pegvisomant", "label": "ADMINISTERED_VIA", "to": "daily subcutaneous injections", "width": 1}, {"arrows": "to", "from": "Pegvisomant", "label": "IS_A", "to": "growth hormone receptor antagonist", "width": 1}, {"arrows": "to", "from": "Pegvisomant", "label": "TREATS", "to": "acromegaly", "width": 1}, {"arrows": "to", "from": "Surgery", "label": "REMOVES", "to": "pituitary tumor", "width": 1}, {"arrows": "to", "from": "Endonasal transsphenoidal surgery", "label": "IS_TYPE_OF", "to": "pituitary tumor surgery", "width": 1}, {"arrows": "to", "from": "Endonasal transsphenoidal surgery", "label": "HAS_ADVANTAGE_OVER", "to": "transsphenoidal surgery", "width": 1}, {"arrows": "to", "from": "Radiation therapy", "label": "USED_FOR", "to": "residual tumor after surgery", "width": 1}, {"arrows": "to", "from": "Acromegaly prognosis", "label": "DEPENDS_ON", "to": "early disease detection", "width": 1}, {"arrows": "to", "from": "Successful acromegaly treatment", "label": "RESOLVES", "to": "headaches and visual symptoms", "width": 1}, {"arrows": "to", "from": "Sleep apnea", "label": "OCCURS_IN", "to": "70% of acromegaly cases", "width": 1}, {"arrows": "to", "from": "Daniel Cajanus", "label": "HAD_CONDITION", "to": "Acromegaly", "width": 1}, {"arrows": "to", "from": "Andr\u00e9 the Giant", "label": "HAD_CONDITION", "to": "Acromegaly", "width": 1}, {"arrows": "to", "from": "Big Show", "label": "HAD_TREATMENT", "to": "pituitary tumor removal", "width": 1}, {"arrows": "to", "from": "Sultan K\u00f6sen", "label": "HAS_TITLE", "to": "world\u0027s tallest man", "width": 1}, {"arrows": "to", "from": "Earl Nightingale", "label": "CREATED", "to": "The Strangest Secret", "width": 1}, {"arrows": "to", "from": "Earl Nightingale", "label": "OCCUPATION", "to": "author", "width": 1}, {"arrows": "to", "from": "Earl Nightingale", "label": "OCCUPATION", "to": "radio speaker", "width": 1}, {"arrows": "to", "from": "Earl Nightingale", "label": "HAD_CONDITION", "to": "acromegaly", "width": 1}, {"arrows": "to", "from": "Peter Mayhew", "label": "KNOWN_FOR_ROLE", "to": "Chewbacca", "width": 1}, {"arrows": "to", "from": "Peter Mayhew", "label": "HAD_CONDITION", "to": "gigantism", "width": 1}, {"arrows": "to", "from": "Carel Struycken", "label": "KNOWN_FOR_ROLE", "to": "The Giant", "width": 1}, {"arrows": "to", "from": "Carel Struycken", "label": "KNOWN_FOR_ROLE", "to": "Lurch", "width": 1}, {"arrows": "to", "from": "Lorenzo de Medici", "label": "MAY_HAVE_HAD_CONDITION", "to": "acromegaly", "width": 1}, {"arrows": "to", "from": "Sergei Rachmaninoff", "label": "MAY_HAVE_HAD_CONDITION", "to": "acromegaly", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "IS_TREATED_BY", "to": "topical creams", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "DIAGNOSED_BY", "to": "physical examination", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "HAS_VARIANT", "to": "Classic actinic keratosis", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "HAS_SYMPTOM", "to": "sandpaper-like texture", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "CAN_PROGRESS_TO", "to": "squamous cell carcinoma", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "CAUSED_BY", "to": "solar radiation", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "HAS_RECURRENCE_RATE", "to": "15-53% after 1 year", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "HAS_RISK_FACTOR", "to": "frequent sun exposure", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "IS_DIAGNOSED_BY", "to": "clinical examination", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "MORE_COMMON_IN", "to": "fair-skinned individuals", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "SHOWS_ON_HISTOLOGY", "to": "atypical keratinocytes", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "MORE_COMMON_IN", "to": "men", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "IS_CAUSED_BY", "to": "ultraviolet light exposure", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "HAS_VARIANT", "to": "Actinic cheilitis", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "RISK_INCREASES_WITH", "to": "age", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "CAUSED_BY", "to": "ultraviolet radiation exposure", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "IS_TREATED_BY", "to": "photodynamic therapy", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "HAS_RISK_FACTOR", "to": "fair-skinned people", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "IS_TREATED_BY", "to": "cryotherapy", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "RELATES_TO", "to": "14% of dermatology visits", "width": 1}, {"arrows": "to", "from": "Actinic keratosis", "label": "HAS_VARIANT", "to": "Hypertrophic actinic keratosis", "width": 1}, {"arrows": "to", "from": "squamous cell carcinoma", "label": "IS_TYPE_OF", "to": "skin cancer", "width": 1}, {"arrows": "to", "from": "squamous cell carcinoma", "label": "ORIGINATES_FROM", "to": "Actinic keratosis", "width": 1}, {"arrows": "to", "from": "Classic actinic keratosis", "label": "CAN_PROGRESS_TO", "to": "Hypertrophic actinic keratosis", "width": 1}, {"arrows": "to", "from": "Classic actinic keratosis", "label": "PRESENTS_AS", "to": "white scaly macules papules plaques", "width": 1}, {"arrows": "to", "from": "Actinic cheilitis", "label": "LOCATED_IN", "to": "lip", "width": 1}, {"arrows": "to", "from": "solar radiation", "label": "INCLUDES", "to": "Ultraviolet radiation", "width": 1}, {"arrows": "to", "from": "Ultraviolet radiation", "label": "CAUSES", "to": "mutations in keratinocytes", "width": 1}, {"arrows": "to", "from": "Ultraviolet radiation", "label": "CONTRIBUTES_TO_DEVELOPMENT_OF", "to": "actinic keratoses", "width": 1}, {"arrows": "to", "from": "Ultraviolet radiation", "label": "INDUCES_MUTATION_IN", "to": "p53 tumor suppressor gene", "width": 1}, {"arrows": "to", "from": "p53 tumor suppressor gene", "label": "LOCATED_ON", "to": "chromosome 17p132", "width": 1}, {"arrows": "to", "from": "UV-A radiation", "label": "GENERATES", "to": "reactive oxygen species", "width": 1}, {"arrows": "to", "from": "UV-B radiation", "label": "CAUSES", "to": "thymidine dimer formation", "width": 1}, {"arrows": "to", "from": "UV radiation", "label": "ASSOCIATED_WITH", "to": "p53 gene mutations", "width": 1}, {"arrows": "to", "from": "Cumulative sun exposure", "label": "INCREASES_RISK_OF", "to": "actinic keratosis", "width": 1}, {"arrows": "to", "from": "Sunscreen use", "label": "REDUCES", "to": "development of AK lesions", "width": 1}, {"arrows": "to", "from": "Melanin", "label": "PROTECTS_FROM", "to": "UV radiation damage", "width": 1}, {"arrows": "to", "from": "Immunosuppression", "label": "INCREASES_RISK_OF", "to": "actinic keratosis", "width": 1}, {"arrows": "to", "from": "Betapapillomavirus HPV", "label": "ASSOCIATED_WITH", "to": "increased likelihood of AK", "width": 1}, {"arrows": "to", "from": "Biopsy", "label": "PERFORMED_WHEN", "to": "diagnosis is uncertain", "width": 1}, {"arrows": "to", "from": "Shave biopsy", "label": "EXTENDS_TO", "to": "level of the dermis", "width": 1}, {"arrows": "to", "from": "Punch biopsy", "label": "EXTENDS_TO", "to": "subcutaneous fat", "width": 1}, {"arrows": "to", "from": "Histopathologic exam", "label": "IS_GOLD_STANDARD_FOR", "to": "tissue diagnosis", "width": 1}, {"arrows": "to", "from": "Histopathologic exam", "label": "IS_GOLD_STANDARD_FOR", "to": "diagnosis of actinic keratosis", "width": 1}, {"arrows": "to", "from": "Dermoscopy", "label": "IS_A", "to": "noninvasive technique", "width": 1}, {"arrows": "to", "from": "Dermoscopy", "label": "USED_IN_EVALUATION_OF", "to": "cutaneous lesions", "width": 1}, {"arrows": "to", "from": "Dermoscopy", "label": "IS_NONINVASIVE_TECHNIQUE", "to": "evaluation of cutaneous lesions", "width": 1}, {"arrows": "to", "from": "Hypertrophic variant", "label": "CHARACTERIZED_BY", "to": "marked hyperkeratosis", "width": 1}, {"arrows": "to", "from": "Atrophic variant", "label": "CHARACTERIZED_BY", "to": "overall atrophic changes", "width": 1}, {"arrows": "to", "from": "Human papillomavirus (HPV)", "label": "IMPLICATED_IN_DEVELOPMENT_OF", "to": "actinic keratoses", "width": 1}, {"arrows": "to", "from": "HPV vaccination", "label": "RECOMMENDED_BY", "to": "Centers for Disease Control and Prevention", "width": 1}, {"arrows": "to", "from": "Topical fluorouracil (5-FU)", "label": "TREATS", "to": "actinic keratoses", "width": 1}, {"arrows": "to", "from": "Topical fluorouracil (5-FU)", "label": "MECHANISM_OF_ACTION", "to": "blocks thymidylate synthetase methylation", "width": 1}, {"arrows": "to", "from": "Low-fat diet", "label": "PREVENTS", "to": "future actinic keratoses", "width": 1}, {"arrows": "to", "from": "Sunscreen with SPF 30+", "label": "PROTECTS_AGAINST", "to": "UVA and UVB light", "width": 1}, {"arrows": "to", "from": "Fluorouracil cream", "label": "TREATS", "to": "actinic keratoses", "width": 1}, {"arrows": "to", "from": "Fluorouracil cream", "label": "MECHANISM_OF_ACTION", "to": "blocks thymidylate synthetase methylation", "width": 1}, {"arrows": "to", "from": "Fluorouracil cream", "label": "HAS_EFFICACY_RATE", "to": "50% for complete clearance", "width": 1}, {"arrows": "to", "from": "Imiquimod cream", "label": "MECHANISM_OF_ACTION", "to": "stimulates immune system cytokines", "width": 1}, {"arrows": "to", "from": "Imiquimod cream", "label": "TREATS", "to": "actinic keratoses", "width": 1}, {"arrows": "to", "from": "Imiquimod 5% cream", "label": "HAS_EFFICACY_RATE", "to": "50% complete resolution", "width": 1}, {"arrows": "to", "from": "Ingenol mebutate gel", "label": "DERIVED_FROM", "to": "Euphorbia peplus plant", "width": 1}, {"arrows": "to", "from": "Ingenol mebutate gel", "label": "TREATS", "to": "actinic keratoses", "width": 1}, {"arrows": "to", "from": "Diclofenac sodium gel", "label": "CLASS", "to": "nonsteroidal anti-inflammatory drug", "width": 1}, {"arrows": "to", "from": "Diclofenac sodium gel", "label": "MECHANISM_OF_ACTION", "to": "inhibits arachidonic acid pathway", "width": 1}, {"arrows": "to", "from": "Diclofenac sodium gel", "label": "TREATS", "to": "actinic keratosis", "width": 1}, {"arrows": "to", "from": "Diclofenac sodium gel", "label": "TREATS", "to": "actinic keratoses", "width": 1}, {"arrows": "to", "from": "American Academy of Dermatology", "label": "DOES_NOT_RECOMMEND", "to": "topical retinoids for AK", "width": 1}, {"arrows": "to", "from": "petty spurge", "label": "TRADITIONAL_TREATMENT_FOR", "to": "keratosis", "width": 1}, {"arrows": "to", "from": "petty spurge", "label": "SCIENTIFIC_NAME", "to": "Euphorbia peplus", "width": 1}, {"arrows": "to", "from": "Tirbanibulin", "label": "BRAND_NAME", "to": "Klisyri", "width": 1}, {"arrows": "to", "from": "Tirbanibulin", "label": "APPROVED_FOR", "to": "actinic keratosis on face or scalp", "width": 1}, {"arrows": "to", "from": "Cryotherapy", "label": "USES_AGENT", "to": "Liquid nitrogen", "width": 1}, {"arrows": "to", "from": "Cryotherapy", "label": "PRIMARY_TREATMENT_FOR", "to": "actinic keratosis", "width": 1}, {"arrows": "to", "from": "Photodynamic therapy", "label": "USES_AGENT", "to": "methyl aminolevulinate", "width": 1}, {"arrows": "to", "from": "Photodynamic therapy", "label": "EFFECTIVE_FOR", "to": "multiple AK lesions", "width": 1}, {"arrows": "to", "from": "Surgical excision", "label": "RESERVED_FOR", "to": "thick horny AK papule", "width": 1}, {"arrows": "to", "from": "Surgical excision", "label": "IS_INEFFECTIVE_FOR", "to": "aphthous ulcers", "width": 1}, {"arrows": "to", "from": "Shave excision and curettage", "label": "USED_FOR", "to": "AKs resembling squamous cell carcinoma", "width": 1}, {"arrows": "to", "from": "Dermabrasion", "label": "USEFUL_FOR", "to": "large areas with multiple AK lesions", "width": 1}, {"arrows": "to", "from": "Laser therapy", "label": "EFFECTIVE_FOR", "to": "multiple AKs refractive to medical therapy", "width": 1}, {"arrows": "to", "from": "Chemical peel", "label": "ACHIEVED_WITH", "to": "trichloroacetic acid", "width": 1}, {"arrows": "to", "from": "Untreated AKs", "label": "CAN_PROGRESS_TO", "to": "invasive skin cancer", "width": 1}, {"arrows": "to", "from": "AK lesions", "label": "CONSIDERED_ON_CONTINUUM_WITH", "to": "squamous cell carcinoma", "width": 1}, {"arrows": "to", "from": "Squamous cell carcinomas", "label": "ORIGINATE_FROM", "to": "lesions formerly diagnosed as AKs", "width": 1}, {"arrows": "to", "from": "Australia", "label": "HAS_PREVALENCE_OF", "to": "40-50% in adults over 40", "width": 1}, {"arrows": "to", "from": "Resiquimod", "label": "TREATS", "to": "Actinic keratosis", "width": 1}, {"arrows": "to", "from": "Afamelanotide", "label": "STUDIED_FOR_PREVENTING", "to": "Actinic keratosis", "width": 1}, {"arrows": "to", "from": "Congenital adrenal hyperplasia", "label": "IS_A", "to": "autosomal recessive disorder", "width": 1}, {"arrows": "to", "from": "Congenital adrenal hyperplasia", "label": "SEE_ALSO", "to": "Inborn errors of steroid metabolism", "width": 1}, {"arrows": "to", "from": "Congenital adrenal hyperplasia", "label": "SEE_ALSO", "to": "Intersex", "width": 1}, {"arrows": "to", "from": "Congenital adrenal hyperplasia", "label": "PREFERRED_TERM_FOR", "to": "adrenogenital syndrome", "width": 1}, {"arrows": "to", "from": "Congenital adrenal hyperplasia", "label": "CAUSED_BY", "to": "enzyme deficiency", "width": 1}, {"arrows": "to", "from": "Congenital adrenal hyperplasia", "label": "SEE_ALSO", "to": "Disorders of sex development", "width": 1}, {"arrows": "to", "from": "Congenital adrenal hyperplasia", "label": "CHARACTERIZED_BY", "to": "impaired cortisol synthesis", "width": 1}, {"arrows": "to", "from": "Congenital adrenal hyperplasia", "label": "SEE_ALSO", "to": "Androgen insensitivity syndrome", "width": 1}, {"arrows": "to", "from": "Congenital adrenal hyperplasia", "label": "IS_MAINLY_CAUSED_BY", "to": "21-hydroxylase deficiency", "width": 1}, {"arrows": "to", "from": "Congenital adrenal hyperplasia", "label": "HAS_EXTERNAL_LINK", "to": "Curlie", "width": 1}, {"arrows": "to", "from": "Congenital adrenal hyperplasia", "label": "SEE_ALSO", "to": "5\u03b1-Reductase 2 deficiency", "width": 1}, {"arrows": "to", "from": "Classic CAH", "label": "HAS_SUBTYPE", "to": "Salt-wasting CAH", "width": 1}, {"arrows": "to", "from": "Classic CAH", "label": "SUBTYPE_OF", "to": "Congenital adrenal hyperplasia", "width": 1}, {"arrows": "to", "from": "Classic CAH", "label": "HAS_SUBTYPE", "to": "Simple-virilizing CAH", "width": 1}, {"arrows": "to", "from": "Salt-wasting CAH", "label": "CAUSES", "to": "insufficient aldosterone production", "width": 1}, {"arrows": "to", "from": "Simple-virilizing CAH", "label": "PRESENTS_WITH", "to": "abnormal genital development", "width": 1}, {"arrows": "to", "from": "Nonclassic CAH", "label": "SUBTYPE_OF", "to": "Congenital adrenal hyperplasia", "width": 1}, {"arrows": "to", "from": "21-hydroxylase deficiency", "label": "ASSOCIATED_WITH", "to": "hypoglycemia", "width": 1}, {"arrows": "to", "from": "21-hydroxylase deficiency", "label": "IS_TYPE_OF", "to": "Congenital Adrenal Hyperplasia", "width": 1}, {"arrows": "to", "from": "21-hydroxylase deficiency", "label": "CAUSED_BY_MUTATION_IN", "to": "CYP21A2 gene", "width": 1}, {"arrows": "to", "from": "21-hydroxylase deficiency", "label": "ASSOCIATED_WITH", "to": "hyponatremia", "width": 1}, {"arrows": "to", "from": "CYP21A2 gene", "label": "LOCATED_ON", "to": "6p21.3 locus", "width": 1}, {"arrows": "to", "from": "6p21.3 locus", "label": "CONTAINS", "to": "HLA complex", "width": 1}, {"arrows": "to", "from": "Congenital Adrenal Hyperplasia", "label": "HAS_TREATMENT_GOAL", "to": "replenish insufficient adrenal hormones", "width": 1}, {"arrows": "to", "from": "11\u03b2-hydroxylase deficiency", "label": "CAUSED_BY_MUTATION_IN", "to": "CYP11B1 gene", "width": 1}, {"arrows": "to", "from": "11\u03b2-hydroxylase deficiency", "label": "IS_TYPE_OF", "to": "Congenital Adrenal Hyperplasia", "width": 1}, {"arrows": "to", "from": "Female infants with classic CAH", "label": "PRESENTS_WITH", "to": "ambiguous genitalia", "width": 1}, {"arrows": "to", "from": "Hypoglycemia in CAH", "label": "CAUSED_BY", "to": "hypocortisolism", "width": 1}, {"arrows": "to", "from": "Aldosterone", "label": "INCREASES", "to": "sodium retention", "width": 1}, {"arrows": "to", "from": "Aldosterone", "label": "IS_END_PRODUCT_OF", "to": "renin-angiotensin-aldosterone system", "width": 1}, {"arrows": "to", "from": "renin-angiotensin-aldosterone system", "label": "REGULATES", "to": "blood pressure", "width": 1}, {"arrows": "to", "from": "Lack of aldosterone", "label": "CAUSES", "to": "hyponatremia", "width": 1}, {"arrows": "to", "from": "Lack of aldosterone", "label": "CAUSES", "to": "hyperkalemia", "width": 1}, {"arrows": "to", "from": "11-hydroxylase deficiency", "label": "INCREASES_PRODUCTION_OF", "to": "11-deoxycorticosterone", "width": 1}, {"arrows": "to", "from": "11-deoxycorticosterone", "label": "HAS_ACTIVITY", "to": "weak mineralocorticoid activity", "width": 1}, {"arrows": "to", "from": "Classic 21-hydroxylase deficiency", "label": "CAUSES_ELEVATION_OF", "to": "17\u03b1-hydroxyprogesterone", "width": 1}, {"arrows": "to", "from": "Cortisol", "label": "INHIBITS_PRODUCTION_OF", "to": "ACTH", "width": 1}, {"arrows": "to", "from": "salt-wasting CAH", "label": "SUBTYPE_OF", "to": "Congenital Adrenal Hyperplasia", "width": 1}, {"arrows": "to", "from": "simple virilizing CAH", "label": "SUBTYPE_OF", "to": "Congenital Adrenal Hyperplasia", "width": 1}, {"arrows": "to", "from": "United States", "label": "SCREENS_FOR", "to": "21-hydroxylase CAH", "width": 1}, {"arrows": "to", "from": "United States", "label": "HAS_AVERAGE_ADULT_INTAKE_OF", "to": "3.2 \u03bcg/day of arsenic", "width": 1}, {"arrows": "to", "from": "Newborn screening test", "label": "DETECTS", "to": "elevated 17\u03b1-hydroxyprogesterone", "width": 1}, {"arrows": "to", "from": "Wael AbdAlmageed", "label": "AFFILIATED_WITH", "to": "USC Information Sciences Institute", "width": 1}, {"arrows": "to", "from": "Mimi Kim", "label": "AFFILIATED_WITH", "to": "USC Keck School Of Medicine", "width": 1}, {"arrows": "to", "from": "Deep learning analysis", "label": "IDENTIFIES_BIOMARKER", "to": "facial morphology", "width": 1}, {"arrows": "to", "from": "21-hydroxylase deficiency CAH", "label": "TREATED_BY", "to": "normalize 17\u03b1-hydroxyprogesterone levels", "width": 1}, {"arrows": "to", "from": "Luigi De Crecchio", "label": "PROVIDED_EARLIEST_DESCRIPTION_OF", "to": "Congenital Adrenal Hyperplasia", "width": 1}, {"arrows": "to", "from": "De Crecchio", "label": "DESCRIBED", "to": "Joseph Marzo\u0027s anatomy", "width": 1}, {"arrows": "to", "from": "Joseph Marzo", "label": "HAD_SEXUAL_CONDUCT", "to": "as a male", "width": 1}, {"arrows": "to", "from": "Joseph Marzo", "label": "DIED_FROM", "to": "vomiting and diarrhea", "width": 1}, {"arrows": "to", "from": "Alfred Bongiovanni", "label": "TRANSLATED", "to": "De Crecchio\u0027s account", "width": 1}, {"arrows": "to", "from": "Adrenogenital syndrome", "label": "WAS_TERM_FOR", "to": "sex-steroid producing tumors", "width": 1}, {"arrows": "to", "from": "Lawson Wilkins", "label": "REPORTED_TREATMENT", "to": "adrenal cortical extracts for CAH", "width": 1}, {"arrows": "to", "from": "Lawson Wilkins", "label": "WORKED_AT", "to": "Johns Hopkins Medical School", "width": 1}, {"arrows": "to", "from": "John Money", "label": "ARGUED_THAT", "to": "gender identity is largely learned", "width": 1}, {"arrows": "to", "from": "Jeff Cagandahan", "label": "HAS_CONDITION", "to": "Congenital adrenal hyperplasia", "width": 1}, {"arrows": "to", "from": "Lisa Lee Dark", "label": "MENTIONED_WITH", "to": "Betsy Driver", "width": 1}, {"arrows": "to", "from": "Casimir Pulaski", "label": "HAS_HYPOTHESIS_ABOUT", "to": "examination of remains", "width": 1}, {"arrows": "to", "from": "Han, Thang S.; Walker, Brian R.; Arlt, Wiebke; Ross, Richard J.", "label": "AUTHORED", "to": "Treatment and health outcomes in adults with congenital adrenal hyperplasia", "width": 1}, {"arrows": "to", "from": "Treatment and health outcomes in adults with congenital adrenal hyperplasia", "label": "PUBLISHED_IN", "to": "Nature Reviews Endocrinology", "width": 1}, {"arrows": "to", "from": "Adrenocortical carcinoma", "label": "COMMON_METASTASIS_SITE", "to": "lung", "width": 1}, {"arrows": "to", "from": "Adrenocortical carcinoma", "label": "COMMONLY_METASTASIZES_TO", "to": "liver", "width": 1}, {"arrows": "to", "from": "Adrenocortical carcinoma", "label": "HAS_PROGNOSTIC_FACTOR", "to": "tumor stage", "width": 1}, {"arrows": "to", "from": "Adrenocortical carcinoma", "label": "CAUSES", "to": "Conn syndrome", "width": 1}, {"arrows": "to", "from": "Adrenocortical carcinoma", "label": "HAS_DIAGNOSTIC_METHOD", "to": "Weiss system", "width": 1}, {"arrows": "to", "from": "Adrenocortical carcinoma", "label": "CAUSES", "to": "Cushing\u0027s syndrome", "width": 1}, {"arrows": "to", "from": "Adrenocortical carcinoma", "label": "TREATED_WITH", "to": "mitotane", "width": 1}, {"arrows": "to", "from": "Adrenocortical carcinoma", "label": "HAS_INCIDENCE", "to": "one to two per million annually", "width": 1}, {"arrows": "to", "from": "Adrenocortical carcinoma", "label": "ORIGINATES_IN", "to": "cortex of adrenal gland", "width": 1}, {"arrows": "to", "from": "Adrenocortical carcinoma", "label": "HAS_SURVIVAL_RATE", "to": "50% 5-year survival", "width": 1}, {"arrows": "to", "from": "Adrenocortical carcinoma", "label": "TREATED_WITH", "to": "surgical excision", "width": 1}, {"arrows": "to", "from": "Cushing\u0027s syndrome", "label": "INCLUDES_SYMPTOM", "to": "moon-like face", "width": 1}, {"arrows": "to", "from": "Conn syndrome", "label": "IS_MARKED_BY", "to": "high blood pressure", "width": 1}, {"arrows": "to", "from": "Li-Fraumeni syndrome", "label": "INCREASES_RISK_OF", "to": "Adrenocortical carcinoma", "width": 1}, {"arrows": "to", "from": "c-myc gene expression", "label": "ASSOCIATED_WITH", "to": "poor prognosis", "width": 1}, {"arrows": "to", "from": "CT scan", "label": "USED_FOR", "to": "identifying tumor site", "width": 1}, {"arrows": "to", "from": "surgical excision", "label": "HAS_SUCCESS_RATE", "to": "50-60% 5-year survival", "width": 1}, {"arrows": "to", "from": "mitotane", "label": "COMBINED_WITH", "to": "streptozotocin", "width": 1}, {"arrows": "to", "from": "mitotane", "label": "COMBINED_WITH", "to": "surgery", "width": 1}, {"arrows": "to", "from": "mitotane", "label": "MECHANISM_OF_ACTION", "to": "inhibits steroid synthesis", "width": 1}, {"arrows": "to", "from": "mitotane", "label": "COMBINED_WITH", "to": "cisplatin, doxorubicin, etoposide (EDP)", "width": 1}, {"arrows": "to", "from": "FIRM-ACT trial", "label": "COMPARED", "to": "EDP + mitotane", "width": 1}, {"arrows": "to", "from": "FIRM-ACT trial", "label": "COMPARED", "to": "streptozotocin + mitotane", "width": 1}, {"arrows": "to", "from": "EDP + mitotane", "label": "HAS_HIGHER", "to": "response rates", "width": 1}, {"arrows": "to", "from": "EDP + mitotane", "label": "HAS_LONGER", "to": "progression-free survival", "width": 1}, {"arrows": "to", "from": "Adrenocortical carcinoma (ACC)", "label": "HAS_5_YEAR_SURVIVAL_RATE", "to": "about 50%", "width": 1}, {"arrows": "to", "from": "Adrenocortical carcinoma (ACC)", "label": "DIFFERS_FROM", "to": "adrenal cortex adenomas", "width": 1}, {"arrows": "to", "from": "Adrenocortical carcinoma (ACC)", "label": "HAS_PROGNOSIS", "to": "poor", "width": 1}, {"arrows": "to", "from": "Alcohol withdrawal syndrome", "label": "HAS_SYMPTOM", "to": "anxiety", "width": 1}, {"arrows": "to", "from": "Alcohol withdrawal syndrome", "label": "OCCURS_IN", "to": "alcohol dependent individuals", "width": 1}, {"arrows": "to", "from": "Alcohol withdrawal syndrome", "label": "HAS_UNDERLYING_MECHANISM", "to": "decreased responsiveness of GABA receptors", "width": 1}, {"arrows": "to", "from": "Alcohol withdrawal syndrome", "label": "TREATED_WITH", "to": "benzodiazepines", "width": 1}, {"arrows": "to", "from": "Alcohol withdrawal syndrome", "label": "HAS_SYMPTOM", "to": "seizures", "width": 1}, {"arrows": "to", "from": "Alcohol withdrawal syndrome", "label": "ASSESSED_USING", "to": "Clinical Institute Withdrawal Assessment for Alcohol scale", "width": 1}, {"arrows": "to", "from": "Alcohol withdrawal syndrome", "label": "HAS_SYMPTOM", "to": "delirium tremens", "width": 1}, {"arrows": "to", "from": "Alcohol withdrawal syndrome", "label": "CAUSED_BY", "to": "reduction in alcohol use", "width": 1}, {"arrows": "to", "from": "benzodiazepines", "label": "SHARES_CROSS_TOLERANCE_WITH", "to": "alcohol", "width": 1}, {"arrows": "to", "from": "benzodiazepines", "label": "TREATS", "to": "alcohol withdrawal", "width": 1}, {"arrows": "to", "from": "Delirium tremens", "label": "CHARACTERIZED_BY", "to": "severe confusion", "width": 1}, {"arrows": "to", "from": "Delirium tremens", "label": "CHARACTERIZED_BY", "to": "hallucinations", "width": 1}, {"arrows": "to", "from": "Alcohol", "label": "DEPRESSES", "to": "central nervous system", "width": 1}, {"arrows": "to", "from": "Alcohol withdrawal", "label": "ELEVATES", "to": "homocysteine levels", "width": 1}, {"arrows": "to", "from": "Alcohol withdrawal", "label": "HAS_COMPLICATION", "to": "delirium tremens", "width": 1}, {"arrows": "to", "from": "Protracted alcohol withdrawal syndrome", "label": "HAS_SYMPTOM", "to": "insomnia", "width": 1}, {"arrows": "to", "from": "Protracted alcohol withdrawal syndrome", "label": "HAS_SYMPTOM", "to": "anhedonia", "width": 1}, {"arrows": "to", "from": "Trazodone", "label": "TREATS", "to": "insomnia in recovering alcoholics", "width": 1}, {"arrows": "to", "from": "Chronic alcohol use", "label": "ALTERS", "to": "GABAergic system", "width": 1}, {"arrows": "to", "from": "Kindling phenomenon", "label": "INCREASES_SEVERITY_OF", "to": "alcohol withdrawal syndrome", "width": 1}, {"arrows": "to", "from": "Repeated alcohol withdrawals", "label": "CAUSES", "to": "permanent GABAA receptor alterations", "width": 1}, {"arrows": "to", "from": "Chronic alcohol misuse", "label": "CAUSES", "to": "permanent alterations in GABAA receptors", "width": 1}, {"arrows": "to", "from": "Multiple alcohol withdrawals", "label": "TRIGGERS", "to": "kindling effect", "width": 1}, {"arrows": "to", "from": "Kindling effect", "label": "INVOLVES", "to": "neuronal system desensitization", "width": 1}, {"arrows": "to", "from": "Kindling effect", "label": "INVOLVES", "to": "neuronal system sensitization", "width": 1}, {"arrows": "to", "from": "Binge drinking", "label": "ASSOCIATED_WITH", "to": "increased impulsivity", "width": 1}, {"arrows": "to", "from": "Binge drinking", "label": "ASSOCIATED_WITH", "to": "impaired spatial working memory", "width": 1}, {"arrows": "to", "from": "Amygdala", "label": "SENSITIVE_TO", "to": "harm from binge drinking", "width": 1}, {"arrows": "to", "from": "Prefrontal cortex", "label": "SENSITIVE_TO", "to": "harm from binge drinking", "width": 1}, {"arrows": "to", "from": "Benzodiazepines", "label": "PREVENTS", "to": "withdrawal seizures", "width": 1}, {"arrows": "to", "from": "Benzodiazepines", "label": "TREATS", "to": "alcohol withdrawal syndrome", "width": 1}, {"arrows": "to", "from": "lorazepam", "label": "IS_EXAMPLE_OF", "to": "symptom-triggered regimens", "width": 1}, {"arrows": "to", "from": "symptom-triggered regimens", "label": "HAS_EFFECT", "to": "decreased treatment duration", "width": 1}, {"arrows": "to", "from": "alcoholics", "label": "ARE_OFTEN_DEFICIENT_IN", "to": "various nutrients", "width": 1}, {"arrows": "to", "from": "thiamine", "label": "PREVENTS", "to": "Wernicke syndrome", "width": 1}, {"arrows": "to", "from": "topiramate", "label": "MAY_TREAT", "to": "alcohol withdrawal syndrome", "width": 1}, {"arrows": "to", "from": "naltrexone", "label": "HELPS_PREVENT", "to": "return to drinking", "width": 1}, {"arrows": "to", "from": "clonidine", "label": "USED_IN_COMBINATION_WITH", "to": "benzodiazepines", "width": 1}, {"arrows": "to", "from": "Failure to manage alcohol withdrawal", "label": "CAN_LEAD_TO", "to": "permanent brain damage", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "AFFECTS", "to": "0.1%\u20130.2% of the population", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "IDENTIFIED_AS", "to": "biblical nethek condition", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "KNOWN_AS", "to": "spot baldness", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "SHARES_RISK_WITH", "to": "rheumatoid arthritis", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "AFFECTS", "to": "hair follicles", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "TREATED_WITH", "to": "corticosteroid injections", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "MORE_COMMON_IN", "to": "females", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "ASSOCIATED_WITH", "to": "psychological stress", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "IS_NOT", "to": "contagious", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "SHARES_GENETIC_RISK_WITH", "to": "celiac disease", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "SHARES_GENETIC_RISK_WITH", "to": "type 1 diabetes", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "HAS_RISK_FACTOR", "to": "affected family members", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "CAUSED_BY", "to": "autoimmune disease", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "PREVALENCE", "to": "0.15% of people", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "HAS_SUBTYPE", "to": "alopecia universalis", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "HAS_SUBTYPE", "to": "alopecia totalis", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "HAS_SYMPTOM", "to": "small bald patches", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "IS_DIAGNOSED_BY", "to": "trichoscopy", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "HAS_RISK_FACTOR", "to": "family history", "width": 1}, {"arrows": "to", "from": "Alopecia areata", "label": "IS_DIAGNOSED_BY", "to": "clinical features", "width": 1}, {"arrows": "to", "from": "Alopecia areata totalis", "label": "IS_SUBTYPE_OF", "to": "Alopecia areata", "width": 1}, {"arrows": "to", "from": "Alopecia areata universalis", "label": "IS_SUBTYPE_OF", "to": "Alopecia areata", "width": 1}, {"arrows": "to", "from": "Steroid injections", "label": "USED_FOR", "to": "small areas of hair loss", "width": 1}, {"arrows": "to", "from": "Oral corticosteroids", "label": "CAUSES", "to": "serious side effects", "width": 1}, {"arrows": "to", "from": "Gluten-free diet", "label": "TREATS", "to": "alopecia areata with celiac disease", "width": 1}, {"arrows": "to", "from": "U.S. Food and Drug Administration", "label": "AUTHORIZED", "to": "baricitinib", "width": 1}, {"arrows": "to", "from": "Oral ruxolitinib", "label": "RESTORED", "to": "hair growth", "width": 1}, {"arrows": "to", "from": "Anthony Carrigan", "label": "HAS", "to": "alopecia areata", "width": 1}, {"arrows": "to", "from": "Altitude sickness", "label": "CAUSED_BY", "to": "rapid exposure to low oxygen", "width": 1}, {"arrows": "to", "from": "Altitude sickness", "label": "OCCURS_AT", "to": "very high altitude (3500-5500 meters)", "width": 1}, {"arrows": "to", "from": "Altitude sickness", "label": "CAUSED_BY", "to": "low oxygen pressure", "width": 1}, {"arrows": "to", "from": "Altitude sickness", "label": "OCCURS_AT", "to": "extreme altitude (above 5500 meters)", "width": 1}, {"arrows": "to", "from": "Altitude sickness", "label": "HAS_MILDEST_FORM", "to": "Acute Mountain Sickness (AMS)", "width": 1}, {"arrows": "to", "from": "Altitude sickness", "label": "TREATED_BY", "to": "descending to lower altitude", "width": 1}, {"arrows": "to", "from": "Altitude sickness", "label": "TYPICALLY_OCCURS_ABOVE", "to": "2,500 metres", "width": 1}, {"arrows": "to", "from": "Altitude sickness", "label": "CAUSED_BY", "to": "rapid ascent", "width": 1}, {"arrows": "to", "from": "Altitude sickness", "label": "PREVENTED_BY", "to": "gradually increasing elevation", "width": 1}, {"arrows": "to", "from": "Altitude sickness", "label": "PREVENTED_BY", "to": "ascending slowly", "width": 1}, {"arrows": "to", "from": "Altitude sickness", "label": "OCCURS_AT", "to": "high altitude (1500-3500 meters)", "width": 1}, {"arrows": "to", "from": "Acute Mountain Sickness (AMS)", "label": "CAN_PROGRESS_TO", "to": "High-altitude cerebral edema (HACE)", "width": 1}, {"arrows": "to", "from": "Acute Mountain Sickness (AMS)", "label": "OCCURS_IN", "to": "about 20% of people at 2,500 metres", "width": 1}, {"arrows": "to", "from": "Acute Mountain Sickness (AMS)", "label": "CAN_PROGRESS_TO", "to": "High-altitude pulmonary edema (HAPE)", "width": 1}, {"arrows": "to", "from": "High-altitude pulmonary edema (HAPE)", "label": "HAS_SYMPTOM", "to": "shortness of breath", "width": 1}, {"arrows": "to", "from": "High-altitude cerebral edema (HACE)", "label": "HAS_SYMPTOM", "to": "confusion", "width": 1}, {"arrows": "to", "from": "High-altitude pulmonary edema", "label": "TREATED_BY", "to": "descent to lower altitudes", "width": 1}, {"arrows": "to", "from": "High-altitude pulmonary edema", "label": "CAUSED_BY", "to": "general vasoconstriction in pulmonary circulation", "width": 1}, {"arrows": "to", "from": "High-altitude cerebral edema", "label": "TREATED_BY", "to": "descent to lower altitudes", "width": 1}, {"arrows": "to", "from": "High-altitude cerebral edema", "label": "TREATED_BY", "to": "dexamethasone", "width": 1}, {"arrows": "to", "from": "High-altitude cerebral edema", "label": "CAUSED_BY", "to": "local vasodilation of cerebral blood vessels", "width": 1}, {"arrows": "to", "from": "Severe altitude illness", "label": "OCCURS_AT", "to": "Extreme altitude", "width": 1}, {"arrows": "to", "from": "Extreme altitude", "label": "PREVENTS", "to": "permanent human habitation", "width": 1}, {"arrows": "to", "from": "Extreme altitude", "label": "CHARACTERIZED_BY", "to": "alkalosis", "width": 1}, {"arrows": "to", "from": "Extreme altitude", "label": "DEFINED_AS", "to": "Above 5,500 metres", "width": 1}, {"arrows": "to", "from": "Extreme altitude", "label": "CHARACTERIZED_BY", "to": "marked hypoxemia", "width": 1}, {"arrows": "to", "from": "Extreme altitude", "label": "CHARACTERIZED_BY", "to": "hypocapnia", "width": 1}, {"arrows": "to", "from": "Body\u0027s response to high altitude", "label": "INCLUDES", "to": "increased erythropoietin", "width": 1}, {"arrows": "to", "from": "Altitude acclimatization", "label": "PREVENTS", "to": "Altitude sickness", "width": 1}, {"arrows": "to", "from": "Altitude acclimatization", "label": "FOLLOWS_RULE", "to": "ascend 300 metres per day", "width": 1}, {"arrows": "to", "from": "High-altitude climbers", "label": "FOLLOW", "to": "acclimatization regimen", "width": 1}, {"arrows": "to", "from": "Acclimatization regimen", "label": "INVOLVES", "to": "stay at base camp", "width": 1}, {"arrows": "to", "from": "Acclimatization regimen", "label": "INVOLVES", "to": "climb to higher camp", "width": 1}, {"arrows": "to", "from": "Acclimatization process", "label": "STIMULATES", "to": "production of red blood cells", "width": 1}, {"arrows": "to", "from": "Rule of thumb for ascent", "label": "RECOMMENDS", "to": "ascend no more than 300 m per day", "width": 1}, {"arrows": "to", "from": "Acetazolamide", "label": "MECHANISM_OF_ACTION", "to": "acidifies the blood", "width": 1}, {"arrows": "to", "from": "Acetazolamide", "label": "ACTS_BY", "to": "quickening altitude acclimatization", "width": 1}, {"arrows": "to", "from": "Acetazolamide", "label": "TRADE_NAME", "to": "Diamox", "width": 1}, {"arrows": "to", "from": "Acetazolamide", "label": "PREVENTS", "to": "acute mountain sickness", "width": 1}, {"arrows": "to", "from": "Everest Base Camp Medical Centre", "label": "CAUTIONS_AGAINST", "to": "routine use of acetazolamide", "width": 1}, {"arrows": "to", "from": "Ibuprofen", "label": "ALLEVIATES", "to": "headache and nausea from AMS", "width": 1}, {"arrows": "to", "from": "myo-inositol trispyrophosphate", "label": "IS_PREVENTIVE_FOR", "to": "altitude sickness", "width": 1}, {"arrows": "to", "from": "myo-inositol trispyrophosphate", "label": "INCREASES", "to": "oxygen released by hemoglobin", "width": 1}, {"arrows": "to", "from": "ibuprofen", "label": "ALLEVIATES", "to": "nausea from AMS", "width": 1}, {"arrows": "to", "from": "ibuprofen", "label": "ALLEVIATES", "to": "headache from AMS", "width": 1}, {"arrows": "to", "from": "Aymaras people", "label": "USES", "to": "coca leaves", "width": 1}, {"arrows": "to", "from": "coca leaves", "label": "USED_FOR", "to": "alleviate mild altitude sickness", "width": 1}, {"arrows": "to", "from": "oxygen enrichment", "label": "COUNTERACTS", "to": "hypoxia from altitude sickness", "width": 1}, {"arrows": "to", "from": "oxygen concentrator", "label": "GENERATES", "to": "oxygen", "width": 1}, {"arrows": "to", "from": "increased water intake", "label": "HELPS", "to": "acclimatization to altitude", "width": 1}, {"arrows": "to", "from": "descending", "label": "IS_TREATMENT_FOR", "to": "altitude sickness", "width": 1}, {"arrows": "to", "from": "Gamow bag", "label": "USED_FOR", "to": "evacuate severe AMS patients", "width": 1}, {"arrows": "to", "from": "Acetazolamide 250 mg twice daily", "label": "TREATS", "to": "AMS", "width": 1}, {"arrows": "to", "from": "Denali Medical Research Project", "label": "CONDUCTED_STUDY_ON", "to": "acetazolamide for AMS", "width": 1}, {"arrows": "to", "from": "Coca plant tea", "label": "TREATS", "to": "altitude sickness", "width": 1}, {"arrows": "to", "from": "Coca plant tea", "label": "USED_IN", "to": "Ecuador, Peru and Bolivia", "width": 1}, {"arrows": "to", "from": "Steroids", "label": "TREATS_SYMPTOMS_OF", "to": "pulmonary or cerebral edema", "width": 1}, {"arrows": "to", "from": "Ibuprofen 600 mg three times daily", "label": "DECREASES", "to": "severity and incidence of AMS", "width": 1}, {"arrows": "to", "from": "Paracetamol (acetaminophen)", "label": "TESTED_ON", "to": "climbers ascending Everest", "width": 1}, {"arrows": "to", "from": "Paracetamol (acetaminophen)", "label": "AS_EFFECTIVE_AS", "to": "ibuprofen for altitude sickness", "width": 1}, {"arrows": "to", "from": "Amblyopia", "label": "SCREENING_RECOMMENDED_FOR", "to": "people between three and five years old", "width": 1}, {"arrows": "to", "from": "Amblyopia", "label": "CAUSED_BY", "to": "brain fails to process input from one eye", "width": 1}, {"arrows": "to", "from": "Amblyopia", "label": "OCCURS_IN", "to": "2 to 5% of Western population", "width": 1}, {"arrows": "to", "from": "Amblyopia", "label": "HAS_MAIN_CAUSE", "to": "Strabismus", "width": 1}, {"arrows": "to", "from": "Amblyopia", "label": "IS_A", "to": "disorder of sight", "width": 1}, {"arrows": "to", "from": "Amblyopia", "label": "IS_A", "to": "developmental problem in the brain", "width": 1}, {"arrows": "to", "from": "Amblyopia", "label": "IS_CAUSED_BY", "to": "developmental problem in brain", "width": 1}, {"arrows": "to", "from": "Amblyopia", "label": "MOST_COMMON_CAUSE_OF", "to": "decreased vision in a single eye", "width": 1}, {"arrows": "to", "from": "Amblyopia", "label": "HAS_MAIN_CAUSE", "to": "Anisometropia", "width": 1}, {"arrows": "to", "from": "Amblyopia", "label": "DIAGNOSED_BY", "to": "identifying low visual acuity", "width": 1}, {"arrows": "to", "from": "Amblyopia", "label": "OCCURS_IN_POPULATION", "to": "2-5% of Western countries", "width": 1}, {"arrows": "to", "from": "Amblyopia", "label": "HAS_MAIN_CAUSE", "to": "vision-obstructing disorders", "width": 1}, {"arrows": "to", "from": "Amblyopia", "label": "AFFECTS", "to": "children and younger adults", "width": 1}, {"arrows": "to", "from": "Amblyopia", "label": "ALSO_KNOWN_AS", "to": "lazy eye", "width": 1}, {"arrows": "to", "from": "Strabismus", "label": "INCORRECTLY_CALLED", "to": "lazy eye", "width": 1}, {"arrows": "to", "from": "Strabismus", "label": "CAUSES", "to": "normal vision in fellow eye", "width": 1}, {"arrows": "to", "from": "Strabismus", "label": "RESULTS_IN", "to": "normal vision in preferred eye", "width": 1}, {"arrows": "to", "from": "Strabismus", "label": "MAY_CAUSE", "to": "abnormal vision in deviating eye", "width": 1}, {"arrows": "to", "from": "Anisometropia", "label": "IS_DEFINED_AS", "to": "unequal refractive error between eyes", "width": 1}, {"arrows": "to", "from": "Adult-onset strabismus", "label": "CAUSES", "to": "double vision", "width": 1}, {"arrows": "to", "from": "Children\u0027s brains", "label": "CAN_ADAPT_BY", "to": "suppressing images from one eye", "width": 1}, {"arrows": "to", "from": "Brain\u0027s plastic response", "label": "RESULTS_IN", "to": "amblyopia", "width": 1}, {"arrows": "to", "from": "Strabismic amblyopia", "label": "TREATED_WITH", "to": "correcting optical deficit and patching good eye", "width": 1}, {"arrows": "to", "from": "Strabismic amblyopia", "label": "IS_TREATED_BY", "to": "eyeglasses or eyepatch", "width": 1}, {"arrows": "to", "from": "Refractive amblyopia", "label": "MAY_RESULT_FROM", "to": "anisometropia", "width": 1}, {"arrows": "to", "from": "Deprivation amblyopia", "label": "RESULTS_FROM", "to": "opaque ocular media", "width": 1}, {"arrows": "to", "from": "Deprivation amblyopia", "label": "ACCOUNTS_FOR", "to": "less than 3% of amblyopia cases", "width": 1}, {"arrows": "to", "from": "David H. Hubel", "label": "AWARDED", "to": "Nobel Prize in Physiology or Medicine", "width": 1}, {"arrows": "to", "from": "David H. Hubel and Torsten Wiesel", "label": "DEMONSTRATED", "to": "damage to ocular dominance columns", "width": 1}, {"arrows": "to", "from": "Atropine", "label": "RESULTS_IN", "to": "similar outcomes to patching", "width": 1}, {"arrows": "to", "from": "Repetitive transcranial magnetic stimulation", "label": "MAY_IMPROVE", "to": "contrast sensitivity in adult amblyopia", "width": 1}, {"arrows": "to", "from": "UK", "label": "HAS_APPOINTMENT_STATISTIC", "to": "90% of child visual health appointments concern amblyopia", "width": 1}, {"arrows": "to", "from": "Children", "label": "HAVE_CONDITION_RATE", "to": "1-4% have amblyopia", "width": 1}, {"arrows": "to", "from": "2009 study", "label": "SUGGESTS_TREATMENT", "to": "repetitive transcranial magnetic stimulation", "width": 1}, {"arrows": "to", "from": "repetitive transcranial magnetic stimulation", "label": "IMPROVES", "to": "contrast sensitivity and spatial resolution", "width": 1}, {"arrows": "to", "from": "2013 study", "label": "SUGGESTS_TREATMENT", "to": "modified Tetris game", "width": 1}, {"arrows": "to", "from": "2013 study", "label": "IDENTIFIES_CAUSE", "to": "decorrelated binocular experience", "width": 1}, {"arrows": "to", "from": "modified Tetris game", "label": "TREATS_CONDITION", "to": "amblyopia in adults", "width": 1}, {"arrows": "to", "from": "anodal tDCS", "label": "ENHANCES_EFFECTS_OF", "to": "modified Tetris therapy", "width": 1}, {"arrows": "to", "from": "2014 Cochrane review", "label": "FOUND_NO_TRIALS_ON", "to": "occlusion treatment for sensory deprivation amblyopia", "width": 1}, {"arrows": "to", "from": "Amoebiasis", "label": "TRANSMITTED_VIA", "to": "fecal-oral route", "width": 1}, {"arrows": "to", "from": "Amoebiasis", "label": "LEADS_TO", "to": "flask-shaped intestinal ulcers", "width": 1}, {"arrows": "to", "from": "Amoebiasis", "label": "CAN_LEAD_TO", "to": "amoebic liver abscesses", "width": 1}, {"arrows": "to", "from": "Amoebiasis", "label": "DIAGNOSED_BY", "to": "stool examination", "width": 1}, {"arrows": "to", "from": "Amoebiasis", "label": "HAS_SYMPTOM", "to": "bloody diarrhea", "width": 1}, {"arrows": "to", "from": "Amoebiasis", "label": "PREVENTED_BY", "to": "improved sanitation", "width": 1}, {"arrows": "to", "from": "Amoebiasis", "label": "AFFECTS", "to": "intestines", "width": 1}, {"arrows": "to", "from": "Amoebiasis", "label": "TREATED_WITH", "to": "metronidazole", "width": 1}, {"arrows": "to", "from": "Amoebiasis", "label": "CAUSED_BY", "to": "Entamoeba histolytica", "width": 1}, {"arrows": "to", "from": "Amoebiasis", "label": "HAS_INCIDENCE", "to": "40 million new cases per year", "width": 1}, {"arrows": "to", "from": "Amoebiasis", "label": "ENDEMIC_IN", "to": "regions with poor sanitation", "width": 1}, {"arrows": "to", "from": "Entamoeba histolytica", "label": "SECRETES", "to": "digestive enzymes", "width": 1}, {"arrows": "to", "from": "Entamoeba histolytica", "label": "CAUSES", "to": "Amoebiasis", "width": 1}, {"arrows": "to", "from": "Entamoeba histolytica", "label": "FORM_OF", "to": "parasitic amoeba", "width": 1}, {"arrows": "to", "from": "Entamoeba histolytica", "label": "PERFORMS", "to": "erythrophagocytosis", "width": 1}, {"arrows": "to", "from": "Entamoeba histolytica", "label": "PRODUCES", "to": "cysts", "width": 1}, {"arrows": "to", "from": "Entamoeba histolytica", "label": "CAUSES", "to": "amoebiasis", "width": 1}, {"arrows": "to", "from": "digestive enzymes", "label": "DESTROYS", "to": "human cell membranes", "width": 1}, {"arrows": "to", "from": "Diagnosis of Amoebiasis", "label": "INVOLVES", "to": "microscopic stool examination", "width": 1}, {"arrows": "to", "from": "Entamoeba histolytica cyst", "label": "HAS_MAXIMUM_OF", "to": "four nuclei", "width": 1}, {"arrows": "to", "from": "Steroid therapy", "label": "CAN_PROVOKE", "to": "severe amoebic colitis", "width": 1}, {"arrows": "to", "from": "E. histolytica cyst", "label": "HAS_DIAGNOSTIC_FEATURE", "to": "rounded chromatoidal bodies", "width": 1}, {"arrows": "to", "from": "E. histolytica cyst", "label": "HAS_MAX_NUMBER_OF", "to": "four nuclei", "width": 1}, {"arrows": "to", "from": "E. histolytica cyst", "label": "IS_RESISTANT_TO", "to": "chlorination", "width": 1}, {"arrows": "to", "from": "Entamoeba coli cyst", "label": "HAS_DIAGNOSTIC_FEATURE", "to": "jagged chromatoidal bodies", "width": 1}, {"arrows": "to", "from": "Entamoeba coli cyst", "label": "HAS_MAX_NUMBER_OF", "to": "8 nuclei", "width": 1}, {"arrows": "to", "from": "E. histolytica", "label": "HAS_DIAGNOSTIC_FEATURE", "to": "centrally located endosome", "width": 1}, {"arrows": "to", "from": "Entamoeba coli", "label": "HAS_DIAGNOSTIC_FEATURE", "to": "off-center endosome", "width": 1}, {"arrows": "to", "from": "World Health Organization", "label": "RECOMMENDS", "to": "no treatment for asymptomatic microscopy diagnosis", "width": 1}, {"arrows": "to", "from": "World Health Organization", "label": "ESTABLISHED_GUIDELINE_FOR", "to": "arsenic in drinking water", "width": 1}, {"arrows": "to", "from": "Polymerase chain reaction (PCR)", "label": "IS_GOLD_STANDARD_FOR", "to": "E. histolytica diagnosis", "width": 1}, {"arrows": "to", "from": "Symptomatic E. histolytica infection", "label": "REQUIRES_TREATMENT_WITH", "to": "amoebicidal tissue-active agent and luminal cysticidal agent", "width": 1}, {"arrows": "to", "from": "amoebiasis", "label": "CAN_AFFECT", "to": "gastrointestinal tract", "width": 1}, {"arrows": "to", "from": "amoebiasis", "label": "TREATED_WITH", "to": "luminal cysticidal agent", "width": 1}, {"arrows": "to", "from": "amoebiasis", "label": "CAN_LEAD_TO", "to": "amoebic brain abscess", "width": 1}, {"arrows": "to", "from": "amoebiasis", "label": "CAN_AFFECT", "to": "liver", "width": 1}, {"arrows": "to", "from": "amoebiasis", "label": "CAUSED_DEATHS", "to": "55000 deaths in 2010", "width": 1}, {"arrows": "to", "from": "amoebiasis", "label": "ASSOCIATED_WITH", "to": "malnutrition in children", "width": 1}, {"arrows": "to", "from": "amoebiasis", "label": "TREATED_WITH", "to": "amoebicidal tissue-active agent", "width": 1}, {"arrows": "to", "from": "Fedor A. L\u00f6sch", "label": "FIRST_DESCRIBED", "to": "amoebiasis", "width": 1}, {"arrows": "to", "from": "Chicago World\u0027s Fair outbreak", "label": "CAUSED_BY", "to": "contaminated drinking water", "width": 1}, {"arrows": "to", "from": "Anaplasmosis", "label": "HAS_SYMPTOM", "to": "decreased white blood cells", "width": 1}, {"arrows": "to", "from": "Anaplasmosis", "label": "AFFECTS", "to": "dogs", "width": 1}, {"arrows": "to", "from": "Anaplasmosis", "label": "CAUSED_BY", "to": "Anaplasma bacteria", "width": 1}, {"arrows": "to", "from": "Anaplasmosis", "label": "HAS_SYMPTOM", "to": "fever", "width": 1}, {"arrows": "to", "from": "Anaplasmosis", "label": "TRANSMITTED_BY", "to": "ticks", "width": 1}, {"arrows": "to", "from": "Anaplasmosis", "label": "PRESENT_IN", "to": "Southern United States", "width": 1}, {"arrows": "to", "from": "Anaplasmosis", "label": "AFFECTS", "to": "ruminants", "width": 1}, {"arrows": "to", "from": "Anaplasmosis", "label": "HAS_SYMPTOM", "to": "elevated liver enzymes", "width": 1}, {"arrows": "to", "from": "Anaplasmosis", "label": "AFFECTS", "to": "horses", "width": 1}, {"arrows": "to", "from": "Anaplasma marginale", "label": "PATHOGEN_TYPE", "to": "Gram-negative bacteria", "width": 1}, {"arrows": "to", "from": "Anaplasma marginale", "label": "HAS_MARKER", "to": "msp1a gene", "width": 1}, {"arrows": "to", "from": "Anaplasma marginale", "label": "INFECTS", "to": "red blood cells", "width": 1}, {"arrows": "to", "from": "Anaplasma marginale", "label": "CAUSES", "to": "anaplasmosis in ruminants", "width": 1}, {"arrows": "to", "from": "Ixodes scapularis", "label": "COMMON_NAME", "to": "black-legged tick", "width": 1}, {"arrows": "to", "from": "Tetracycline drugs", "label": "TREATS", "to": "Anaplasmosis", "width": 1}, {"arrows": "to", "from": "Anaplasma phagocytophilum", "label": "CAUSES", "to": "anaplasmosis in ruminants", "width": 1}, {"arrows": "to", "from": "Rhipicephalus ticks", "label": "TRANSMITS", "to": "Anaplasma marginale", "width": 1}, {"arrows": "to", "from": "Ixodes ticks", "label": "TRANSMITS", "to": "Anaplasma phagocytophilum", "width": 1}, {"arrows": "to", "from": "Anaplasma ovis", "label": "CAUSES", "to": "anaplasmosis in sheep and goats", "width": 1}, {"arrows": "to", "from": "Tetracycline", "label": "TREATS", "to": "anaplasmosis infection", "width": 1}, {"arrows": "to", "from": "Tetracycline", "label": "TREATS", "to": "Anaplasma infection", "width": 1}, {"arrows": "to", "from": "Tick control", "label": "RARELY_USED_IN", "to": "United States", "width": 1}, {"arrows": "to", "from": "Tick control", "label": "USED_IN", "to": "Africa", "width": 1}, {"arrows": "to", "from": "Fly control", "label": "ACHIEVED_BY", "to": "Sanitation methods", "width": 1}, {"arrows": "to", "from": "Fly control", "label": "ACHIEVED_BY", "to": "Chemical agents", "width": 1}, {"arrows": "to", "from": "Fly control", "label": "ACHIEVED_BY", "to": "Biological control", "width": 1}, {"arrows": "to", "from": "Imidocarb", "label": "NOT_APPROVED_IN", "to": "United States", "width": 1}, {"arrows": "to", "from": "Imidocarb", "label": "EFFECTIVE_AGAINST", "to": "Anaplasma marginale", "width": 1}, {"arrows": "to", "from": "South Africa", "label": "USES", "to": "Live Anaplasma centrale vaccine", "width": 1}, {"arrows": "to", "from": "Anaplastic astrocytoma", "label": "HAS_SYMPTOM", "to": "seizures", "width": 1}, {"arrows": "to", "from": "Anaplastic astrocytoma", "label": "IS_TYPE_OF", "to": "cancer of the brain", "width": 1}, {"arrows": "to", "from": "Anaplastic astrocytoma", "label": "HAS_SYMPTOM", "to": "headache", "width": 1}, {"arrows": "to", "from": "Anaplastic astrocytoma", "label": "ASSOCIATED_WITH", "to": "neurofibromatosis type I", "width": 1}, {"arrows": "to", "from": "Anaplastic astrocytoma", "label": "HAS_WHO_GRADE", "to": "grade III", "width": 1}, {"arrows": "to", "from": "Anaplastic astrocytoma", "label": "HAS_MEDIAN_SURVIVAL", "to": "2\u20133 years", "width": 1}, {"arrows": "to", "from": "Anaplastic astrocytoma", "label": "ASSOCIATED_WITH", "to": "exposure to vinyl chloride", "width": 1}, {"arrows": "to", "from": "Anaplastic astrocytoma", "label": "HAS_STANDARD_TREATMENT", "to": "surgical removal", "width": 1}, {"arrows": "to", "from": "Anaplastic astrocytoma", "label": "HAS_INCIDENCE_RATE", "to": "0.44 per 100,000 people", "width": 1}, {"arrows": "to", "from": "Anaplastic astrocytoma", "label": "IS_TYPE_OF", "to": "astrocytoma", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "ASSOCIATED_WITH", "to": "mitral valve prolapse", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_CHARACTERISTIC", "to": "Altered interoception", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "INCREASES_RISK_OF", "to": "death from other causes", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_CHARACTERISTIC", "to": "Altered body schema", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "CAUSES", "to": "cardiac muscle atrophy", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_SYMPTOM", "to": "amenorrhea", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "IS_MORE_COMMON_IN", "to": "women", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "INCREASES_RISK_OF", "to": "sudden cardiac death", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "ASSOCIATED_WITH", "to": "interoceptive deficits", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "IS_COMORBID_WITH", "to": "Obsessive-compulsive disorder", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_PSYCHOLOGICAL_CAUSE", "to": "depression", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "IS_COMORBID_WITH", "to": "Autism spectrum disorders", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "CAUSES", "to": "hypokalemia", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "CAUSES", "to": "pubertal delay or arrest", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_SYMPTOM", "to": "hypokalaemia", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_SYMPTOM", "to": "low body mass index", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "ASSOCIATED_WITH", "to": "low IGF-1 levels", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_CHARACTERISTIC", "to": "low weight", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_DIAGNOSTIC_CRITERION", "to": "Intense fear of gaining weight", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_COMORBIDITY_WITH", "to": "PTSD", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "CAUSES", "to": "delayed stomach emptying", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_RELAPSE_RATE", "to": "9-52% after treatment", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "IS_HERITABLE", "to": "28-58% heritability rate", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_DIAGNOSTIC_CRITERION", "to": "Restriction of energy intake", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_CHARACTERISTIC", "to": "body image disturbance", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "IS_ALSO_KNOWN_AS", "to": "Anorexia", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "CAUSES", "to": "loss of bone density", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "CAN_CAUSE", "to": "infertility", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "CAN_CAUSE", "to": "heart damage", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_HIGH", "to": "mortality rate", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "IS_OFTEN_MISDIAGNOSED", "to": "variety of medical conditions", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "CLASSIFIED_UNDER", "to": "Feeding and Eating Disorders", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "AFFECTS", "to": "0.9% to 4.3% of women", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "RESULTS_IN", "to": "suppression of gonadotropins", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_RISK_FACTOR", "to": "genetic factors", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "CAN_CAUSE", "to": "osteoporosis", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "CAUSES", "to": "complications in every major organ system", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "INCREASES_RISK_OF", "to": "suicide", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "AFFECTS", "to": "0.2% to 0.3% of men", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "IS_MORE_LIKELY_IN", "to": "pubertal years", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "IS_DIAGNOSED_BY", "to": "significantly low weight", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "CAUSES", "to": "cessation of menstruation", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "AFFECTS", "to": "elderly population", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_SUBTYPE", "to": "Restricting type", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_SUBTYPE", "to": "Binge-eating/purging type", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_PSYCHOLOGICAL_CAUSE", "to": "low self-esteem", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_CHARACTERISTIC", "to": "food restriction", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa", "label": "HAS_DIAGNOSTIC_CRITERION", "to": "Disturbance in body image", "width": 1}, {"arrows": "to", "from": "William Gull", "label": "COINED_TERM", "to": "Anorexia nervosa", "width": 1}, {"arrows": "to", "from": "Hypokalaemia", "label": "CAUSES", "to": "abnormal heart rhythms", "width": 1}, {"arrows": "to", "from": "Evolutionary psychiatry", "label": "STUDIES", "to": "mental disorders from evolutionary perspective", "width": 1}, {"arrows": "to", "from": "Interoception", "label": "PLAYS_ROLE_IN", "to": "homeostasis", "width": 1}, {"arrows": "to", "from": "Interoception", "label": "INVOLVES", "to": "sense of internal body state", "width": 1}, {"arrows": "to", "from": "Interoception", "label": "PLAYS_ROLE_IN", "to": "regulation of emotions", "width": 1}, {"arrows": "to", "from": "Estrogen related receptor alpha", "label": "IS_CODED_BY", "to": "anorexia-linked gene", "width": 1}, {"arrows": "to", "from": "Estrogen related receptor alpha", "label": "IS_LINKED_TO", "to": "Anorexia nervosa", "width": 1}, {"arrows": "to", "from": "Epigenetic modifications", "label": "MAY_CONTRIBUTE_TO", "to": "anorexia nervosa", "width": 1}, {"arrows": "to", "from": "DNA methylation", "label": "IS_TYPE_OF", "to": "Epigenetic modifications", "width": 1}, {"arrows": "to", "from": "Estrogen", "label": "AFFECTS", "to": "appetite and feeding", "width": 1}, {"arrows": "to", "from": "Prenatal complications", "label": "MAY_FACTOR_INTO", "to": "anorexia nervosa development", "width": 1}, {"arrows": "to", "from": "Gastrointestinal diseases", "label": "INCREASES_RISK_OF", "to": "restrictive eating disturbances", "width": 1}, {"arrows": "to", "from": "Celiac disease", "label": "ASSOCIATED_WITH", "to": "aphthous-like stomatitis", "width": 1}, {"arrows": "to", "from": "Celiac disease", "label": "IS_ASSOCIATED_WITH", "to": "anorexia nervosa", "width": 1}, {"arrows": "to", "from": "Starvation", "label": "CAUSES", "to": "disordered eating patterns", "width": 1}, {"arrows": "to", "from": "Traumatic events", "label": "IS_RISK_FACTOR_FOR", "to": "anorexia nervosa", "width": 1}, {"arrows": "to", "from": "People with anorexia", "label": "EXHIBITS_TRAIT", "to": "high perfectionism", "width": 1}, {"arrows": "to", "from": "Traumatic event", "label": "IS_RISK_FACTOR_FOR", "to": "Anorexia nervosa", "width": 1}, {"arrows": "to", "from": "Childhood sexual abuse", "label": "IDENTIFIED_AS", "to": "first predicting traumatic event", "width": 1}, {"arrows": "to", "from": "Interpersonal trauma", "label": "IS_MOST_COMMON_TYPE_OF", "to": "traumatic event for anorexia", "width": 1}, {"arrows": "to", "from": "Media exposure to body ideals", "label": "IS_RISK_FACTOR_FOR", "to": "body dissatisfaction", "width": 1}, {"arrows": "to", "from": "body dissatisfaction", "label": "IS_RISK_FACTOR_FOR", "to": "anorexia nervosa", "width": 1}, {"arrows": "to", "from": "Cultural body ideal", "label": "FAVORS", "to": "slender women", "width": 1}, {"arrows": "to", "from": "Professions with social pressure to be thin", "label": "HAVE_HIGHER_RISK_OF", "to": "Anorexia nervosa", "width": 1}, {"arrows": "to", "from": "jockeys", "label": "EXPERIENCE_HIGHER_RATE_OF", "to": "anorexia nervosa", "width": 1}, {"arrows": "to", "from": "wrestlers", "label": "EXPERIENCE_HIGHER_RATE_OF", "to": "anorexia nervosa", "width": 1}, {"arrows": "to", "from": "overprotective families", "label": "IS_RISK_FACTOR_FOR", "to": "anorexia nervosa", "width": 1}, {"arrows": "to", "from": "media body ideals", "label": "IS_RISK_FACTOR_FOR", "to": "body dissatisfaction", "width": 1}, {"arrows": "to", "from": "pro-anorexia websites", "label": "REINFORCES", "to": "internalization of body ideals", "width": 1}, {"arrows": "to", "from": "serotonin (5-HT)", "label": "PLAYS_ROLE_IN", "to": "anorexia nervosa", "width": 1}, {"arrows": "to", "from": "altered 5-HT2A receptor activity", "label": "LINKED_TO", "to": "obsessiveness and anxiety", "width": 1}, {"arrows": "to", "from": "acute malnutrition", "label": "ASSOCIATED_WITH", "to": "reduced gray and white matter", "width": 1}, {"arrows": "to", "from": "recovered anorexia patients", "label": "SHOW_REDUCED_ACTIVATION_IN", "to": "brain reward system", "width": 1}, {"arrows": "to", "from": "DSM-5", "label": "USES_INDICATOR", "to": "Body Mass Index (BMI)", "width": 1}, {"arrows": "to", "from": "Body Mass Index (BMI)", "label": "INDICATES_SEVERITY_OF", "to": "Anorexia nervosa", "width": 1}, {"arrows": "to", "from": "Acute malnutrition", "label": "ASSOCIATED_WITH", "to": "Reduced gray matter volume", "width": 1}, {"arrows": "to", "from": "Complete blood count (CBC)", "label": "USED_TO_ASSESS", "to": "Disorders from malnutrition", "width": 1}, {"arrows": "to", "from": "Urinalysis", "label": "USED_FOR", "to": "test for substance abuse", "width": 1}, {"arrows": "to", "from": "Urinalysis", "label": "USED_FOR", "to": "diagnosis of medical disorders", "width": 1}, {"arrows": "to", "from": "Glucose tolerance test", "label": "USED_FOR", "to": "detect diabetes", "width": 1}, {"arrows": "to", "from": "BUN test", "label": "PRIMARILY_USES", "to": "test kidney function", "width": 1}, {"arrows": "to", "from": "BUN test", "label": "CAN_INDICATE", "to": "effects of malnutrition", "width": 1}, {"arrows": "to", "from": "Electrocardiogram", "label": "MEASURES", "to": "electrical activity of the heart", "width": 1}, {"arrows": "to", "from": "Electroencephalogram", "label": "MEASURES", "to": "electrical activity of the brain", "width": 1}, {"arrows": "to", "from": "Bulimia nervosa patients", "label": "TYPICALLY_HAVE", "to": "healthy or slightly overweight", "width": 1}, {"arrows": "to", "from": "Treatment for anorexia nervosa", "label": "ADDRESSES", "to": "restoring healthy weight", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa treatment", "label": "ADDRESSES", "to": "restoring healthy weight", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa treatment", "label": "ADDRESSES", "to": "treating psychological disorders", "width": 1}, {"arrows": "to", "from": "Anorexia nervosa treatment", "label": "ADDRESSES", "to": "reducing disordered eating behaviors", "width": 1}, {"arrows": "to", "from": "Family-based treatment", "label": "RECOMMENDED_FOR", "to": "adolescents with anorexia", "width": 1}, {"arrows": "to", "from": "Cognitive behavioral therapy", "label": "USEFUL_FOR", "to": "adolescents and adults with anorexia", "width": 1}, {"arrows": "to", "from": "Olanzapine", "label": "INCREASES", "to": "body weight", "width": 1}, {"arrows": "to", "from": "Refeeding syndrome", "label": "CHARACTERIZED_BY", "to": "falling potassium levels", "width": 1}, {"arrows": "to", "from": "Refeeding syndrome", "label": "CHARACTERIZED_BY", "to": "falling phosphate levels", "width": 1}, {"arrows": "to", "from": "Royal College of Psychiatrists", "label": "PUBLISHES_GUIDELINES_ON", "to": "managing severe anorexia", "width": 1}, {"arrows": "to", "from": "Refeeding Syndrome", "label": "ASSOCIATED_WITH", "to": "medical comorbidities", "width": 1}, {"arrows": "to", "from": "Refeeding Syndrome", "label": "ASSOCIATED_WITH", "to": "low BMI", "width": 1}, {"arrows": "to", "from": "Refeeding Syndrome", "label": "CHARACTERIZED_BY", "to": "falling phosphate levels", "width": 1}, {"arrows": "to", "from": "Refeeding Syndrome", "label": "CHARACTERIZED_BY", "to": "falling potassium levels", "width": 1}, {"arrows": "to", "from": "Anorexia Nervosa", "label": "CAN_CAUSE", "to": "cessation of menstruation", "width": 1}, {"arrows": "to", "from": "Anorexia Nervosa", "label": "HAS_COMPLICATION", "to": "kidney failure", "width": 1}, {"arrows": "to", "from": "Anorexia Nervosa", "label": "HAS_MORTALITY_RATE", "to": "highest of psychological disorders", "width": 1}, {"arrows": "to", "from": "Anorexia Nervosa", "label": "HAS_COMPLICATION", "to": "heart conditions", "width": 1}, {"arrows": "to", "from": "Anorexia Nervosa", "label": "CAN_CAUSE", "to": "growth retardation", "width": 1}, {"arrows": "to", "from": "Alexithymia", "label": "INFLUENCES", "to": "anorexia treatment outcome", "width": 1}, {"arrows": "to", "from": "Hypokalemia", "label": "CAUSES", "to": "life-threatening arrhythmias", "width": 1}, {"arrows": "to", "from": "Hypokalemia", "label": "CAUSED_BY", "to": "purging behaviors", "width": 1}, {"arrows": "to", "from": "Delayed stomach emptying", "label": "MANAGED_BY", "to": "metoclopramide", "width": 1}, {"arrows": "to", "from": "Wernicke encephalopathy", "label": "CAUSED_BY", "to": "vitamin B1 deficiency", "width": 1}, {"arrows": "to", "from": "Hypomagnesemia", "label": "CAUSES", "to": "life-threatening arrhythmias", "width": 1}, {"arrows": "to", "from": "Cardiac muscle atrophy", "label": "LEADS_TO", "to": "decreased ability to pump blood", "width": 1}, {"arrows": "to", "from": "Medical students", "label": "HAVE_PREVALENCE_OF", "to": "10.4% for eating disorders", "width": 1}, {"arrows": "to", "from": "Eating disorders", "label": "MORE_REPORTED_IN", "to": "Western countries", "width": 1}, {"arrows": "to", "from": "Eating disorders", "label": "LESS_REPORTED_IN", "to": "preindustrial non-westernized countries", "width": 1}, {"arrows": "to", "from": "Anorexia of Aging", "label": "HAS_TYPE", "to": "early onset", "width": 1}, {"arrows": "to", "from": "Anorexia of Aging", "label": "HAS_TYPE", "to": "late onset", "width": 1}, {"arrows": "to", "from": "Anorexia of Aging", "label": "HAS_SYMPTOM", "to": "unexplained hair loss", "width": 1}, {"arrows": "to", "from": "Anorexia of Aging", "label": "CAUSED_BY", "to": "loss of control", "width": 1}, {"arrows": "to", "from": "Anorexia of Aging", "label": "HAS_SYMPTOM", "to": "desire to eat alone", "width": 1}, {"arrows": "to", "from": "Anorexia of Aging", "label": "HAS_SYMPTOM", "to": "sudden weight loss", "width": 1}, {"arrows": "to", "from": "Male and female athletes", "label": "OVERLOOKED_AS", "to": "anorexic individuals", "width": 1}, {"arrows": "to", "from": "malnutrition", "label": "PREVALENT_IN", "to": "nursing homes", "width": 1}, {"arrows": "to", "from": "assisted living facilities", "label": "SERVES", "to": "bland monotonous food", "width": 1}, {"arrows": "to", "from": "treatment for anorexia of aging", "label": "IS_SAME_AS", "to": "treatment for other age groups", "width": 1}, {"arrows": "to", "from": "male athletes", "label": "ARE_OVERLOOKED_AS", "to": "anorexic", "width": 1}, {"arrows": "to", "from": "female athletes", "label": "ARE_OVERLOOKED_AS", "to": "anorexic", "width": 1}, {"arrows": "to", "from": "Richard Morton", "label": "CREDITED_WITH", "to": "earliest medical descriptions of anorexia", "width": 1}, {"arrows": "to", "from": "Sir William Gull", "label": "COINED_TERM", "to": "anorexia nervosa", "width": 1}, {"arrows": "to", "from": "Hilde Bruch", "label": "PUBLISHED", "to": "The Golden Cage: the Enigma of Anorexia Nervosa", "width": 1}, {"arrows": "to", "from": "Karen Carpenter", "label": "DEATH_PROMPTED", "to": "media coverage of eating disorders", "width": 1}, {"arrows": "to", "from": "anorexia mirabilis", "label": "REFERS_TO", "to": "medieval practice of self-starvation", "width": 1}, {"arrows": "to", "from": "Anthrax", "label": "SPREAD_BY", "to": "contact with bacterial spores", "width": 1}, {"arrows": "to", "from": "Anthrax", "label": "HAS_FORM", "to": "inhalation anthrax", "width": 1}, {"arrows": "to", "from": "Anthrax", "label": "CAUSED_BY", "to": "Bacillus anthracis", "width": 1}, {"arrows": "to", "from": "Anthrax", "label": "ENTERS_THROUGH", "to": "human skin", "width": 1}, {"arrows": "to", "from": "Anthrax", "label": "ENTERS_VIA", "to": "intestines, lungs, or skin", "width": 1}, {"arrows": "to", "from": "Anthrax", "label": "ENTERS_THROUGH", "to": "human lungs", "width": 1}, {"arrows": "to", "from": "Anthrax", "label": "USED_AS", "to": "biological warfare agent", "width": 1}, {"arrows": "to", "from": "Anthrax", "label": "NAMED_AFTER", "to": "anthrax disease", "width": 1}, {"arrows": "to", "from": "Anthrax", "label": "ENTERS_THROUGH", "to": "human intestines", "width": 1}, {"arrows": "to", "from": "Anthrax", "label": "HAS_FORM", "to": "intestinal anthrax", "width": 1}, {"arrows": "to", "from": "Anthrax", "label": "HAS_FORM", "to": "cutaneous anthrax", "width": 1}, {"arrows": "to", "from": "Anthrax", "label": "PREVENTED_BY", "to": "anthrax vaccination", "width": 1}, {"arrows": "to", "from": "Anthrax", "label": "HAS_FORM", "to": "injection anthrax", "width": 1}, {"arrows": "to", "from": "Bacillus anthracis", "label": "PRODUCES", "to": "anthrax toxin", "width": 1}, {"arrows": "to", "from": "Bacillus anthracis", "label": "HAS_COLONY_MORPHOLOGY", "to": "medusa head appearance", "width": 1}, {"arrows": "to", "from": "Bacillus anthracis", "label": "SURVIVES_AS", "to": "spores in soil", "width": 1}, {"arrows": "to", "from": "Bacillus anthracis", "label": "IDENTIFIED_BY", "to": "polymerase chain reaction-based assays", "width": 1}, {"arrows": "to", "from": "Bacillus anthracis", "label": "IDENTIFIED_BY", "to": "immunofluorescence microscopy", "width": 1}, {"arrows": "to", "from": "Bacillus anthracis", "label": "PRODUCES", "to": "lethal toxin", "width": 1}, {"arrows": "to", "from": "Bacillus anthracis", "label": "PRODUCES", "to": "poly-D-glutamic acid capsule", "width": 1}, {"arrows": "to", "from": "cutaneous anthrax", "label": "HAS_FATALITY_RATE", "to": "20% without treatment", "width": 1}, {"arrows": "to", "from": "Robert Koch", "label": "IDENTIFIED", "to": "anthrax bacterium", "width": 1}, {"arrows": "to", "from": "Robert Koch", "label": "IDENTIFIED_CAUSE_OF", "to": "Anthrax", "width": 1}, {"arrows": "to", "from": "Robert Koch", "label": "DEMONSTRATED_CAUSALITY_OF", "to": "Bacillus anthracis", "width": 1}, {"arrows": "to", "from": "Robert Koch", "label": "WON", "to": "1905 Nobel Prize", "width": 1}, {"arrows": "to", "from": "Cutaneous anthrax", "label": "CAUSED_BY", "to": "B. anthracis spores", "width": 1}, {"arrows": "to", "from": "Cutaneous anthrax", "label": "IS_MOST_COMMON_FORM_OF", "to": "anthrax", "width": 1}, {"arrows": "to", "from": "Cutaneous anthrax", "label": "HAS_SYMPTOM", "to": "painless necrotic ulcer", "width": 1}, {"arrows": "to", "from": "Cutaneous anthrax", "label": "HAS_SYMPTOM", "to": "black eschar skin lesion", "width": 1}, {"arrows": "to", "from": "Inhalation anthrax", "label": "HAS_SYMPTOM", "to": "hemorrhagic mediastinitis", "width": 1}, {"arrows": "to", "from": "Inhalation anthrax", "label": "HAD_FATALITY_RATE", "to": "90% before 2001", "width": 1}, {"arrows": "to", "from": "Inhalation anthrax", "label": "HAS_SYMPTOM", "to": "fever and chest pain", "width": 1}, {"arrows": "to", "from": "Inhalation anthrax", "label": "HAS_FATALITY_RATE", "to": "45% since 2001", "width": 1}, {"arrows": "to", "from": "anthrax", "label": "DIAGNOSED_BY", "to": "Ascoli test", "width": 1}, {"arrows": "to", "from": "anthrax", "label": "PREVENTED_BY", "to": "preventive antibiotics", "width": 1}, {"arrows": "to", "from": "anthrax", "label": "OCCURS_GLOBALLY", "to": "2000 cases a year", "width": 1}, {"arrows": "to", "from": "Injection anthrax", "label": "ASSOCIATED_WITH", "to": "heroin use", "width": 1}, {"arrows": "to", "from": "Gastrointestinal anthrax", "label": "CAUSED_BY", "to": "consuming infected meat", "width": 1}, {"arrows": "to", "from": "Herbivores", "label": "INFECTED_WHILE", "to": "grazing", "width": 1}, {"arrows": "to", "from": "Herbivores", "label": "INFECTED_BY", "to": "anthrax spores", "width": 1}, {"arrows": "to", "from": "anthrax spores", "label": "CAN_SURVIVE_IN", "to": "arctic permafrost", "width": 1}, {"arrows": "to", "from": "Anthrax spores", "label": "SURVIVES_IN", "to": "harsh conditions for decades", "width": 1}, {"arrows": "to", "from": "Anthrax spores", "label": "ENTERS_VIA", "to": "grazing on vegetation", "width": 1}, {"arrows": "to", "from": "Anthrax spores", "label": "USED_AS", "to": "biological warfare weapon", "width": 1}, {"arrows": "to", "from": "Anthrax spores", "label": "WERE_WEAPONIZED_IN", "to": "1916 Finland conflict", "width": 1}, {"arrows": "to", "from": "Anthrax bacteria", "label": "PRODUCES", "to": "edema toxin", "width": 1}, {"arrows": "to", "from": "Anthrax bacteria", "label": "PRODUCES", "to": "lethal toxin", "width": 1}, {"arrows": "to", "from": "Lethal toxin", "label": "CAUSES", "to": "host death", "width": 1}, {"arrows": "to", "from": "Inhalational anthrax", "label": "WAS_CALLED", "to": "woolsorters disease", "width": 1}, {"arrows": "to", "from": "Occupational exposure", "label": "LEADS_TO", "to": "human anthrax infection", "width": 1}, {"arrows": "to", "from": "anthrax toxin", "label": "COMPOSED_OF", "to": "edema factor (EF)", "width": 1}, {"arrows": "to", "from": "anthrax toxin", "label": "COMPOSED_OF", "to": "protective antigen (PA)", "width": 1}, {"arrows": "to", "from": "anthrax toxin", "label": "COMPOSED_OF", "to": "lethal factor (LF)", "width": 1}, {"arrows": "to", "from": "lethal factor (LF)", "label": "INACTIVATES", "to": "neutrophils", "width": 1}, {"arrows": "to", "from": "Bacillus spp.", "label": "HAS_SIZE", "to": "3 to 4 \u03bcm long", "width": 1}, {"arrows": "to", "from": "Bacillus spp.", "label": "GROWS_ON", "to": "5% sheep blood agar", "width": 1}, {"arrows": "to", "from": "Louis Pasteur", "label": "DEVELOPED", "to": "first effective anthrax vaccine", "width": 1}, {"arrows": "to", "from": "Louis Pasteur", "label": "DEVELOPED", "to": "anthrax vaccine", "width": 1}, {"arrows": "to", "from": "Louis Pasteur", "label": "FOUNDED", "to": "Pasteur Institutes", "width": 1}, {"arrows": "to", "from": "BioThrax", "label": "LICENSED_BY", "to": "FDA", "width": 1}, {"arrows": "to", "from": "FDA", "label": "APPROVED", "to": "omitting week-2 dose", "width": 1}, {"arrows": "to", "from": "FDA", "label": "APPROVED", "to": "raxibacumab injection", "width": 1}, {"arrows": "to", "from": "United States Postal Service", "label": "INSTALLED", "to": "biodetection systems", "width": 1}, {"arrows": "to", "from": "biodetection systems", "label": "DETECTS", "to": "anthrax infection sources", "width": 1}, {"arrows": "to", "from": "raxibacumab", "label": "IS_A", "to": "monoclonal antibody", "width": 1}, {"arrows": "to", "from": "raxibacumab", "label": "TREATS", "to": "inhalational anthrax", "width": 1}, {"arrows": "to", "from": "inhalational anthrax", "label": "HAS_FATALITY_RATE", "to": "45% since 2001", "width": 1}, {"arrows": "to", "from": "monoclonal antibody", "label": "NEUTRALIZES", "to": "B. anthracis toxins", "width": 1}, {"arrows": "to", "from": "Cutaneous skin infection", "label": "PROGRESSES_TO", "to": "toxemia and death", "width": 1}, {"arrows": "to", "from": "Fulminant phase of inhalational anthrax", "label": "HAS_FATALITY_RATE", "to": "97%", "width": 1}, {"arrows": "to", "from": "Anthrax meningoencephalitis", "label": "IS_ALMOST_ALWAYS", "to": "fatal", "width": 1}, {"arrows": "to", "from": "GI anthrax infections", "label": "HAVE_FATALITY_RATE", "to": "25% to 60%", "width": 1}, {"arrows": "to", "from": "John Henry Bell", "label": "LINKED_DISEASE_TO", "to": "anthrax", "width": 1}, {"arrows": "to", "from": "John Henry Bell", "label": "IDENTIFIED_AS", "to": "doctor", "width": 1}, {"arrows": "to", "from": "John Henry Bell", "label": "LINKED", "to": "woolsorters disease to anthrax", "width": 1}, {"arrows": "to", "from": "Friederich Wilhelm Eurich", "label": "IDENTIFIED_AS", "to": "bacteriologist", "width": 1}, {"arrows": "to", "from": "Friederich Wilhelm Eurich", "label": "CONTRIBUTED_TO", "to": "Anthrax Investigation Board", "width": 1}, {"arrows": "to", "from": "Friederich Wilhelm Eurich", "label": "CONTRIBUTED_TO", "to": "Anthrax Prevention Act (1919)", "width": 1}, {"arrows": "to", "from": "Britain", "label": "HAD_INDUSTRIES_AFFECTED_BY", "to": "anthrax", "width": 1}, {"arrows": "to", "from": "Anthrax Prevention Act", "label": "ENACTED_IN", "to": "1919", "width": 1}, {"arrows": "to", "from": "Sterne strain", "label": "USED_AS", "to": "vaccine", "width": 1}, {"arrows": "to", "from": "Ames strain", "label": "USED_IN", "to": "2001 anthrax attacks", "width": 1}, {"arrows": "to", "from": "2001 anthrax attacks", "label": "USED", "to": "anthrax spores", "width": 1}, {"arrows": "to", "from": "Vollum 1B strain", "label": "ISOLATED_FROM", "to": "William A. Boyles", "width": 1}, {"arrows": "to", "from": "Vollum 1B strain", "label": "IS_VARIATION_OF", "to": "Vollum strain", "width": 1}, {"arrows": "to", "from": "Vollum 1B strain", "label": "USED_IN", "to": "US bioweapon program", "width": 1}, {"arrows": "to", "from": "Vollum 1B strain", "label": "USED_IN", "to": "UK bioweapon program", "width": 1}, {"arrows": "to", "from": "William A. Boyles", "label": "WORKED_AT", "to": "US Army Biological Warfare Laboratories", "width": 1}, {"arrows": "to", "from": "US Air Force researchers", "label": "DEVELOPED", "to": "Alls/Gifford (Curlicue) strain", "width": 1}, {"arrows": "to", "from": "Alls/Gifford (Curlicue) strain", "label": "IS_DESIGNATED_AS", "to": "anthrax vaccine strain", "width": 1}, {"arrows": "to", "from": "Chlorine dioxide", "label": "IS_PREFERRED_BIOCIDE_FOR", "to": "anthrax decontamination", "width": 1}, {"arrows": "to", "from": "Environmental Protection Agency", "label": "HEADED_EFFORT", "to": "Senate Office Building decontamination", "width": 1}, {"arrows": "to", "from": "Wildlife workers", "label": "EXPERIMENTED_WITH", "to": "covering anthrax carcasses", "width": 1}, {"arrows": "to", "from": "Covering anthrax carcasses", "label": "PREVENTS", "to": "scavengers opening carcasses", "width": 1}, {"arrows": "to", "from": "Preventing scavenger access", "label": "ALLOWS", "to": "putrefactive bacteria kill B. anthracis", "width": 1}, {"arrows": "to", "from": "Ministry of Defence", "label": "DECONTAMINATED", "to": "Gruinard Island", "width": 1}, {"arrows": "to", "from": "Unit 731", "label": "TESTED", "to": "anthrax as biological agent", "width": 1}, {"arrows": "to", "from": "British bioweapons trials", "label": "CONTAMINATED", "to": "Gruinard Island", "width": 1}, {"arrows": "to", "from": "Operation Vegetarian", "label": "PREPARED", "to": "anthrax-impregnated cattle cakes", "width": 1}, {"arrows": "to", "from": "Soviet Union", "label": "VIOLATED", "to": "1972 Bioweapons Treaty", "width": 1}, {"arrows": "to", "from": "Soviet Union", "label": "STORED", "to": "100-200 tons of anthrax spores", "width": 1}, {"arrows": "to", "from": "Sverdlovsk biological weapons complex", "label": "CAUSED", "to": "accidental anthrax release in 1979", "width": 1}, {"arrows": "to", "from": "KGB", "label": "DESTROYED", "to": "medical records", "width": 1}, {"arrows": "to", "from": "Boris Yeltsin", "label": "ADMITTED", "to": "anthrax accident", "width": 1}, {"arrows": "to", "from": "Bruce Ivins", "label": "SUSPECTED_OF", "to": "2001 anthrax attacks", "width": 1}, {"arrows": "to", "from": "US Postal Service", "label": "STERILIZED", "to": "mail", "width": 1}, {"arrows": "to", "from": "US Postal Service", "label": "INSTALLED", "to": "biohazard detection systems", "width": 1}, {"arrows": "to", "from": "Sipco Industries", "label": "SUPPLIED", "to": "proprietary enzyme formula", "width": 1}, {"arrows": "to", "from": "electric iron", "label": "CAN_DESTROY", "to": "anthrax spores", "width": 1}, {"arrows": "to", "from": "The Loves of Joanna Godden", "label": "FEATURES_DEATH_BY", "to": "anthrax", "width": 1}, {"arrows": "to", "from": "The Loves of Joanna Godden", "label": "RELEASED_IN", "to": "1947", "width": 1}, {"arrows": "to", "from": "Ralph Vaughan Williams", "label": "COMPOSED_MUSIC_FOR", "to": "The Loves of Joanna Godden", "width": 1}, {"arrows": "to", "from": "Alfred Hitchcock Presents", "label": "HAS_EPISODE", "to": "Diagnosis: Danger", "width": 1}, {"arrows": "to", "from": "Diagnosis: Danger", "label": "RELEASED_IN", "to": "1963", "width": 1}, {"arrows": "to", "from": "Diagnosis: Danger", "label": "CONCERNS", "to": "anthrax outbreak", "width": 1}, {"arrows": "to", "from": "Silent Witness", "label": "FEATURES_CASE_OF", "to": "genetically modified anthrax", "width": 1}, {"arrows": "to", "from": "The Power of the Dog", "label": "DIRECTED_BY", "to": "Jane Campion", "width": 1}, {"arrows": "to", "from": "Anticholinergics", "label": "CAUSES_SIDE_EFFECT", "to": "Delirium", "width": 1}, {"arrows": "to", "from": "Anticholinergics", "label": "CAUSES_SIDE_EFFECT", "to": "Constipation", "width": 1}, {"arrows": "to", "from": "Anticholinergics", "label": "PRODUCES", "to": "sedation", "width": 1}, {"arrows": "to", "from": "Anticholinergics", "label": "TREATS", "to": "Organophosphate poisoning", "width": 1}, {"arrows": "to", "from": "Anticholinergics", "label": "HAS_SUBCLASS", "to": "Antimuscarinic agents", "width": 1}, {"arrows": "to", "from": "Anticholinergics", "label": "TREATS", "to": "Respiratory disorders", "width": 1}, {"arrows": "to", "from": "Anticholinergics", "label": "TREATS", "to": "Gastrointestinal disorders", "width": 1}, {"arrows": "to", "from": "Anticholinergics", "label": "HAS_SUBCLASS", "to": "Antinicotinic agents", "width": 1}, {"arrows": "to", "from": "Anticholinergics", "label": "HAS_EFFECT", "to": "antisialagogue effects", "width": 1}, {"arrows": "to", "from": "Anticholinergics", "label": "CLASSIFIED_BY", "to": "affected receptors", "width": 1}, {"arrows": "to", "from": "Anticholinergics", "label": "BLOCKS", "to": "acetylcholine", "width": 1}, {"arrows": "to", "from": "Anticholinergics", "label": "INHIBITS", "to": "parasympathetic nervous system", "width": 1}, {"arrows": "to", "from": "Antimuscarinic agents", "label": "ACTS_ON", "to": "muscarinic acetylcholine receptors", "width": 1}, {"arrows": "to", "from": "Antinicotinic agents", "label": "ACTS_ON", "to": "nicotinic acetylcholine receptors", "width": 1}, {"arrows": "to", "from": "Physostigmine", "label": "CAUSES_SIDE_EFFECT", "to": "asystole", "width": 1}, {"arrows": "to", "from": "Physostigmine", "label": "CAUSES_SIDE_EFFECT", "to": "seizures", "width": 1}, {"arrows": "to", "from": "Physostigmine", "label": "IS_ANTIDOTE_FOR", "to": "Anticholinergic toxicity", "width": 1}, {"arrows": "to", "from": "Physostigmine", "label": "IS_ANTIDOTE_FOR", "to": "anticholinergic poisoning", "width": 1}, {"arrows": "to", "from": "Tricyclic antidepressant overdose", "label": "CONTRANDICATES", "to": "Physostigmine administration", "width": 1}, {"arrows": "to", "from": "Solanaceae plants", "label": "CONTAINS", "to": "anticholinergic tropane alkaloids", "width": 1}, {"arrows": "to", "from": "Acute anticholinergic syndrome", "label": "CAUSED_BY", "to": "significant anticholinergic intake", "width": 1}, {"arrows": "to", "from": "Atropa belladonna", "label": "CONTAINS", "to": "atropine", "width": 1}, {"arrows": "to", "from": "atropine", "label": "IS_EXAMPLE_OF", "to": "Antisialagogues", "width": 1}, {"arrows": "to", "from": "Antisialagogues", "label": "CAN_HAVE_ORIGIN", "to": "synthetic substances", "width": 1}, {"arrows": "to", "from": "Antisialagogues", "label": "CAN_HAVE_ORIGIN", "to": "natural substances", "width": 1}, {"arrows": "to", "from": "Antisialagogues", "label": "HAS_OPPOSITE_EFFECT_OF", "to": "sialagogues", "width": 1}, {"arrows": "to", "from": "Antisialagogues", "label": "DECREASES_FLOW_OF", "to": "saliva", "width": 1}, {"arrows": "to", "from": "antisialagogue effects", "label": "IS_ADVANTAGEOUS_IN", "to": "surgical procedures", "width": 1}, {"arrows": "to", "from": "sedation", "label": "IS_ADVANTAGEOUS_IN", "to": "surgical procedures", "width": 1}, {"arrows": "to", "from": "belladonna", "label": "IS_EXAMPLE_OF", "to": "Antisialagogues", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "ASSOCIATED_WITH_DEFICIENCY", "to": "vitamin B12", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "CHARACTERIZED_BY", "to": "recurrent mouth ulcers", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "HAS_UNDERLYING_MECHANISM", "to": "T cell-mediated immune response", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "HAS_HISTORICAL_TERM", "to": "Mikulicz\u0027s aphthae", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "DIAGNOSED_BY", "to": "clinical appearance and medical history", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "IS_NOT", "to": "Oral cancer", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "TREATED_WITH", "to": "corticosteroids", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "ALSO_KNOWN_AS", "to": "canker sore", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "MANIFESTS_AS", "to": "isolated oral ulceration", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "HAS_TYPICAL_ONSET", "to": "childhood or adolescence", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "AFFECTS", "to": "5% to 66% of people", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "ASSOCIATED_WITH", "to": "systemic lupus erythematosus", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "CLASSIFIED_AS", "to": "non-infectious stomatitis", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "FIRST_LINE_TREATMENT", "to": "Topical corticosteroids", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "IS_BENIGN", "to": "oral cancer", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "IS_NOT", "to": "Contagious", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "AFFECTS", "to": "20% of general population", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "ALSO_KNOWN_AS", "to": "recurrent aphthous stomatitis (RAS)", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "ASSOCIATED_WITH", "to": "Beh\u00e7et\u0027s disease", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "HAS_PROGNOSIS", "to": "No serious underlying condition", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "HAS_RISK_FACTOR", "to": "stress", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "ASSOCIATED_WITH", "to": "inflammatory bowel diseases", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "ASSOCIATED_WITH_DEFICIENCY", "to": "folate", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "HAS_RISK_FACTOR", "to": "positive family history", "width": 1}, {"arrows": "to", "from": "Aphthous stomatitis", "label": "PEAK_AGE_OF_ONSET", "to": "10 and 19 years", "width": 1}, {"arrows": "to", "from": "T cell-mediated immune response", "label": "TRIGGERED_BY", "to": "nutritional deficiencies", "width": 1}, {"arrows": "to", "from": "T cell-mediated immune response", "label": "TRIGGERED_BY", "to": "local trauma", "width": 1}, {"arrows": "to", "from": "Mast cells", "label": "SECRETE", "to": "TNF-\u03b1", "width": 1}, {"arrows": "to", "from": "Macrophages", "label": "SECRETE", "to": "TNF-\u03b1", "width": 1}, {"arrows": "to", "from": "T cells", "label": "SECRETE", "to": "TNF-\u03b1", "width": 1}, {"arrows": "to", "from": "Beh\u00e7et\u0027s disease", "label": "MANIFESTS_AS", "to": "aphthous-like ulceration", "width": 1}, {"arrows": "to", "from": "Beh\u00e7et\u0027s disease", "label": "MORE_COMMON_IN", "to": "Silk Road populations", "width": 1}, {"arrows": "to", "from": "Trauma", "label": "OCCURS_DURING", "to": "dental injections", "width": 1}, {"arrows": "to", "from": "Trauma", "label": "OCCURS_DURING", "to": "dental treatments", "width": 1}, {"arrows": "to", "from": "Frictional trauma", "label": "CAUSED_BY", "to": "sharp surface in mouth", "width": 1}, {"arrows": "to", "from": "Hormonal factors", "label": "ALTERS", "to": "mucosal barrier", "width": 1}, {"arrows": "to", "from": "Smoking", "label": "INCREASES_RISK_OF", "to": "aphthous stomatitis", "width": 1}, {"arrows": "to", "from": "Smoking cessation", "label": "EXACERBATES", "to": "aphthous stomatitis", "width": 1}, {"arrows": "to", "from": "Sodium lauryl sulphate", "label": "ASSOCIATED_WITH", "to": "oral ulceration", "width": 1}, {"arrows": "to", "from": "PFAPA syndrome", "label": "TENDS_TO_OCCUR_IN", "to": "children", "width": 1}, {"arrows": "to", "from": "Beh\u00e7ets disease", "label": "HAS_MAIN_FEATURE", "to": "aphthous-like ulceration", "width": 1}, {"arrows": "to", "from": "Beh\u00e7ets disease", "label": "MORE_COMMON_IN", "to": "individuals from Silk Road regions", "width": 1}, {"arrows": "to", "from": "MAGIC syndrome", "label": "IS_VARIANT_OF", "to": "Beh\u00e7ets disease", "width": 1}, {"arrows": "to", "from": "MAGIC syndrome", "label": "ASSOCIATED_WITH", "to": "aphthous-like ulceration", "width": 1}, {"arrows": "to", "from": "Cyclic neutropenia", "label": "ASSOCIATED_WITH", "to": "aphthous-like ulceration", "width": 1}, {"arrows": "to", "from": "Hematinic deficiencies", "label": "CAN_CAUSE", "to": "anemia", "width": 1}, {"arrows": "to", "from": "Oral ulceration", "label": "INVESTIGATED_BY", "to": "blood tests for nutritional deficiencies", "width": 1}, {"arrows": "to", "from": "Systemic diseases", "label": "CAUSE", "to": "oral ulceration", "width": 1}, {"arrows": "to", "from": "Patch testing", "label": "INDICATED_FOR", "to": "suspected allergies", "width": 1}, {"arrows": "to", "from": "Nicorandil", "label": "CAN_CAUSE", "to": "oral ulceration", "width": 1}, {"arrows": "to", "from": "Tissue biopsy", "label": "USED_TO_RULE_OUT", "to": "oral squamous cell carcinoma", "width": 1}, {"arrows": "to", "from": "Minor aphthous ulceration", "label": "ACCOUNTS_FOR", "to": "80-85% of aphthous stomatitis cases", "width": 1}, {"arrows": "to", "from": "Minor aphthous ulceration", "label": "AFFECTS", "to": "non-keratinized mucosal surfaces", "width": 1}, {"arrows": "to", "from": "Major aphthous ulceration", "label": "ACCOUNTS_FOR", "to": "10% of aphthous stomatitis cases", "width": 1}, {"arrows": "to", "from": "Herpetiform ulceration", "label": "RESEMBLES", "to": "primary herpes simplex virus infection", "width": 1}, {"arrows": "to", "from": "Herpetiform ulceration", "label": "RESEMBLES", "to": "Primary herpetic gingivostomatitis", "width": 1}, {"arrows": "to", "from": "Herpetiform ulceration", "label": "IS_CAUSED_BY", "to": "Not herpes viruses", "width": 1}, {"arrows": "to", "from": "Herpetiform ulceration", "label": "IS_SUBTYPE_OF", "to": "Aphthous stomatitis", "width": 1}, {"arrows": "to", "from": "Major aphthae", "label": "COMPARED_TO", "to": "Minor aphthous ulceration", "width": 1}, {"arrows": "to", "from": "Major aphthae", "label": "HAS_CHARACTERISTIC", "to": "irregular outline", "width": 1}, {"arrows": "to", "from": "RAS-type ulceration", "label": "IS_ASSOCIATED_WITH", "to": "Systemic conditions", "width": 1}, {"arrows": "to", "from": "Silver nitrate", "label": "USED_AS", "to": "chemical cauterant", "width": 1}, {"arrows": "to", "from": "Aloe vera", "label": "TREATS", "to": "aphthous stomatitis", "width": 1}, {"arrows": "to", "from": "Mikulicz\u0027s aphthae", "label": "IS_SYNONYM_OF", "to": "minor RAS", "width": 1}, {"arrows": "to", "from": "Mikulicz\u0027s aphthae", "label": "NAMED_AFTER", "to": "Jan Mikulicz-Radecki", "width": 1}, {"arrows": "to", "from": "Major RAS", "label": "HAS_SYNONYM", "to": "Sutton\u0027s ulcers", "width": 1}, {"arrows": "to", "from": "Sutton\u0027s ulcers", "label": "IS_SYNONYM_OF", "to": "major RAS", "width": 1}, {"arrows": "to", "from": "Sutton\u0027s ulcers", "label": "NAMED_AFTER", "to": "Richard Lightburn Sutton", "width": 1}, {"arrows": "to", "from": "Aphtha", "label": "DERIVED_FROM", "to": "Greek word aphtha", "width": 1}, {"arrows": "to", "from": "Recurrent aphthous stomatitis", "label": "IS_KNOWN_AS", "to": "aphthous stomatitis", "width": 1}, {"arrows": "to", "from": "Recurrent aphthous stomatitis", "label": "IS_MOST_COMMON_IN", "to": "developed countries", "width": 1}, {"arrows": "to", "from": "Stomatitis", "label": "MAY_INCLUDE", "to": "angular stomatitis", "width": 1}, {"arrows": "to", "from": "Stomatitis", "label": "IS_A", "to": "inflammatory process in the mouth", "width": 1}, {"arrows": "to", "from": "Traditional Chinese medicine", "label": "TREATS", "to": "aphthae", "width": 1}, {"arrows": "to", "from": "Rembrandt Gentle White toothpaste", "label": "MARKETED_FOR", "to": "canker sore sufferers", "width": 1}, {"arrows": "to", "from": "Johnson \u0026 Johnson", "label": "DISCONTINUED", "to": "Rembrandt Gentle White toothpaste", "width": 1}, {"arrows": "to", "from": "APL", "label": "STANDS_FOR", "to": "APL programming language", "width": 1}, {"arrows": "to", "from": "APL", "label": "STANDS_FOR", "to": "Nampula Airport", "width": 1}, {"arrows": "to", "from": "APL", "label": "STANDS_FOR", "to": "Afghanistan Premier League", "width": 1}, {"arrows": "to", "from": "APL", "label": "STANDS_FOR", "to": "American President Lines", "width": 1}, {"arrows": "to", "from": "APL", "label": "STANDS_FOR", "to": "Applied Physics Laboratory", "width": 1}, {"arrows": "to", "from": "APL", "label": "STANDS_FOR", "to": "Applied Physics Letters", "width": 1}, {"arrows": "to", "from": "Applied Physics Laboratory", "label": "LOCATED_AT", "to": "Johns Hopkins University", "width": 1}, {"arrows": "to", "from": "American President Lines", "label": "BASED_IN", "to": "Singapore", "width": 1}, {"arrows": "to", "from": "Afghanistan Premier League", "label": "FEATURES", "to": "Twenty20 cricket", "width": 1}, {"arrows": "to", "from": "apl.de.ap", "label": "BELONGS_TO", "to": "Allan Pineda Lindo", "width": 1}, {"arrows": "to", "from": "Apnea of prematurity", "label": "OCCURS_IN", "to": "85 percent of infants born at less than 34 weeks", "width": 1}, {"arrows": "to", "from": "Apnea of prematurity", "label": "DEFINED_AS", "to": "cessation of breathing by premature infant", "width": 1}, {"arrows": "to", "from": "Apnea of prematurity", "label": "CLASSIFIED_INTO", "to": "mixed apnea", "width": 1}, {"arrows": "to", "from": "Apnea of prematurity", "label": "CLASSIFIED_INTO", "to": "obstructive apnea", "width": 1}, {"arrows": "to", "from": "Apnea of prematurity", "label": "TREATED_WITH", "to": "CPAP", "width": 1}, {"arrows": "to", "from": "Apnea of prematurity", "label": "CLASSIFIED_INTO", "to": "central apnea", "width": 1}, {"arrows": "to", "from": "Apnea of prematurity", "label": "MONITORED_BY", "to": "home apnea monitor", "width": 1}, {"arrows": "to", "from": "Apnea of prematurity", "label": "TREATED_WITH", "to": "Methylxanthines", "width": 1}, {"arrows": "to", "from": "Methylxanthines", "label": "INCLUDES", "to": "theophylline", "width": 1}, {"arrows": "to", "from": "Methylxanthines", "label": "INCLUDES", "to": "caffeine", "width": 1}, {"arrows": "to", "from": "Arsenic poisoning", "label": "DIAGNOSED_BY", "to": "urine, blood, or hair testing", "width": 1}, {"arrows": "to", "from": "Arsenic poisoning", "label": "CAUSED_BY", "to": "elevated arsenic levels", "width": 1}, {"arrows": "to", "from": "Arsenic poisoning", "label": "HAS_SYMPTOM", "to": "vomiting and abdominal pain", "width": 1}, {"arrows": "to", "from": "Long-term arsenic exposure", "label": "CAUSES", "to": "skin thickening and cancer", "width": 1}, {"arrows": "to", "from": "Contaminated drinking water", "label": "IS_PRIMARY_SOURCE_OF", "to": "long-term arsenic exposure", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "CAUSES", "to": "oxidative stress", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "INHIBITS", "to": "pyruvate dehydrogenase complex", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "CAUSES", "to": "lung cancer", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "FOUND_IN", "to": "air", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "IS_FOUND_IN", "to": "groundwater", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "FOUND_IN", "to": "soil", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "INCREASES_RISK_OF", "to": "skin, lung, liver, and kidney cancer", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "IS_USED_AS", "to": "pesticide in Asia", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "AFFECTS_FUNCTION_OF", "to": "approximately 200 enzymes", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "BYPRODUCT_OF", "to": "copper smelting", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "WAS_ADDED_TO", "to": "copper", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "MEASURED_IN", "to": "blood or urine", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "IS_ENCOUNTERED_IN", "to": "smelting of zinc and copper ores", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "STIMULATES_PRODUCTION_OF", "to": "hydrogen peroxide", "width": 1}, {"arrows": "to", "from": "Arsenic", "label": "INDUCES", "to": "cardiac hypertrophy", "width": 1}, {"arrows": "to", "from": "Acute arsenic poisoning", "label": "TREATED_WITH", "to": "Dimercaptosuccinic acid", "width": 1}, {"arrows": "to", "from": "Dimercaptosuccinic acid", "label": "TREATS", "to": "acute arsenic poisoning", "width": 1}, {"arrows": "to", "from": "Dimethylarsinic acid", "label": "CAUSES", "to": "DNA single strand breaks", "width": 1}, {"arrows": "to", "from": "Dimethylarsinic acid", "label": "IS_EXCRETED_AS", "to": "primary urinary metabolite", "width": 1}, {"arrows": "to", "from": "Arsenic exposure", "label": "ASSOCIATED_WITH", "to": "chromosomal aberrations", "width": 1}, {"arrows": "to", "from": "Arsenic exposure", "label": "CORRELATES_WITH", "to": "elevated serum lipid peroxides", "width": 1}, {"arrows": "to", "from": "DMA(III)", "label": "RELEASES", "to": "iron from ferritin", "width": 1}, {"arrows": "to", "from": "DMA(III)", "label": "REACTS_WITH", "to": "molecular oxygen", "width": 1}, {"arrows": "to", "from": "DMA(III)", "label": "FORMS", "to": "reactive oxygen species", "width": 1}, {"arrows": "to", "from": "Reactive oxygen species", "label": "CAUSES", "to": "DNA damage", "width": 1}, {"arrows": "to", "from": "DMA(V)", "label": "INCREASES", "to": "8-hydroxy-2-deoxyguanosine", "width": 1}, {"arrows": "to", "from": "Arsenic methylation", "label": "IS_A", "to": "detoxification pathway", "width": 1}, {"arrows": "to", "from": "Inorganic arsenic", "label": "IS_MORE_TOXIC_THAN", "to": "organic arsenic", "width": 1}, {"arrows": "to", "from": "Chronic arsenic poisoning", "label": "CAUSED_BY", "to": "drinking contaminated well water", "width": 1}, {"arrows": "to", "from": "Organic arsenic", "label": "IS_LESS_HARMFUL_THAN", "to": "inorganic arsenic", "width": 1}, {"arrows": "to", "from": "Seafood", "label": "IS_SOURCE_OF", "to": "organic arsenic", "width": 1}, {"arrows": "to", "from": "Bangladesh", "label": "HAS_PERMISSIBLE_LIMIT_FOR", "to": "arsenic", "width": 1}, {"arrows": "to", "from": "Bangladesh", "label": "EXPERIENCED", "to": "largest mass arsenic poisoning", "width": 1}, {"arrows": "to", "from": "Hydraulic fracturing", "label": "CAN_MOBILIZE", "to": "arsenic in groundwater", "width": 1}, {"arrows": "to", "from": "Yellowstone National Park", "label": "HAS", "to": "geothermal fluids with arsenic", "width": 1}, {"arrows": "to", "from": "California", "label": "HAS_GROUNDWATER_WITH", "to": "arsenic concentrations up to 48,000 \u03bcg/L", "width": 1}, {"arrows": "to", "from": "As-bearing sulfide minerals", "label": "IS_SOURCE_OF", "to": "arsenic in groundwater", "width": 1}, {"arrows": "to", "from": "Geothermal waters on Dominica", "label": "CONTAINS", "to": "arsenic \u003e50 \u03bcg/L", "width": 1}, {"arrows": "to", "from": "Arsenobetaine", "label": "IS_MAJOR_FORM_IN", "to": "marine animals", "width": 1}, {"arrows": "to", "from": "Rice", "label": "ACCUMULATES", "to": "arsenic from soil", "width": 1}, {"arrows": "to", "from": "U.S. commercially raised chickens", "label": "CONTAIN", "to": "arsenic from feed additives", "width": 1}, {"arrows": "to", "from": "Roxarsone and nitarsone", "label": "ARE_USED_TO_CONTROL", "to": "coccidiosis infection", "width": 1}, {"arrows": "to", "from": "Air in industrial sites", "label": "CAN_CONTAIN_UP_TO", "to": "50 ng/m\u00b3 of arsenic", "width": 1}, {"arrows": "to", "from": "Lead arsenate pesticides", "label": "USE_HAS_BEEN_ELIMINATED_FOR", "to": "over 50 years", "width": 1}, {"arrows": "to", "from": "Lead arsenate", "label": "CONTAMINATES", "to": "land", "width": 1}, {"arrows": "to", "from": "Chromated copper arsenate", "label": "PRESERVES", "to": "wood", "width": 1}, {"arrows": "to", "from": "Arsenic trioxide", "label": "AFFECTS", "to": "voltage-gated potassium channels", "width": 1}, {"arrows": "to", "from": "Arsenic trioxide", "label": "CAUSES", "to": "heart rhythm problems", "width": 1}, {"arrows": "to", "from": "Chronic arsenic exposure", "label": "LEADS_TO", "to": "skin cancer", "width": 1}, {"arrows": "to", "from": "Chronic arsenic exposure", "label": "INDUCES", "to": "high oxidative stress", "width": 1}, {"arrows": "to", "from": "chronic arsenic exposure", "label": "INDUCES", "to": "high oxidative stress", "width": 1}, {"arrows": "to", "from": "arsenic exposure", "label": "CAUSES", "to": "arrhythmia", "width": 1}, {"arrows": "to", "from": "arsenic exposure", "label": "INDUCES", "to": "atherosclerosis", "width": 1}, {"arrows": "to", "from": "chronic exposure to arsenic", "label": "UPREGULATES_EXPRESSION_OF", "to": "tumor necrosis factor-\u03b1", "width": 1}, {"arrows": "to", "from": "arsenic compounds", "label": "BLOCKS", "to": "IKr and Iks channels", "width": 1}, {"arrows": "to", "from": "arsenic", "label": "INHIBITS", "to": "pyruvate dehydrogenase", "width": 1}, {"arrows": "to", "from": "arsenic", "label": "HAS_ORIGINAL_MCL", "to": "0.05 mg/L", "width": 1}, {"arrows": "to", "from": "Arsenate", "label": "REPLACES", "to": "phosphate", "width": 1}, {"arrows": "to", "from": "Dimethylarsenic acid", "label": "ALSO_KNOWN_AS", "to": "Agent Blue", "width": 1}, {"arrows": "to", "from": "Dimethylarsenic acid", "label": "WAS_USED_AS", "to": "Agent Blue herbicide", "width": 1}, {"arrows": "to", "from": "Agent Blue", "label": "WAS_USED_AS", "to": "herbicide", "width": 1}, {"arrows": "to", "from": "Agent Blue", "label": "WAS_USED_IN", "to": "American war in Vietnam", "width": 1}, {"arrows": "to", "from": "Arsenic pentoxide", "label": "IS_REDUCED_TO", "to": "Arsenic trioxide", "width": 1}, {"arrows": "to", "from": "Reduction of arsenic pentoxide", "label": "INCREASES", "to": "toxicity of arsenic", "width": 1}, {"arrows": "to", "from": "Methyltransferase enzymes", "label": "CATALYZES", "to": "methylation of arsenic", "width": 1}, {"arrows": "to", "from": "S-adenosylmethionine", "label": "SERVES_AS", "to": "methyl donor", "width": 1}, {"arrows": "to", "from": "Arsenite", "label": "INHIBITS", "to": "glutathione reductase", "width": 1}, {"arrows": "to", "from": "Oxidative stress from arsenic", "label": "DISRUPTS", "to": "NF-\u03baB signaling", "width": 1}, {"arrows": "to", "from": "Oxidative stress", "label": "DISRUPTS", "to": "signal transduction pathways", "width": 1}, {"arrows": "to", "from": "Chronic arsenic consumption", "label": "CORRELATES_WITH", "to": "type 2 diabetes incidence", "width": 1}, {"arrows": "to", "from": "Urine test", "label": "DETECTS", "to": "recent arsenic exposure", "width": 1}, {"arrows": "to", "from": "Hair analysis", "label": "DETECTS", "to": "long-term arsenic exposure", "width": 1}, {"arrows": "to", "from": "Dimercaprol", "label": "TREATS", "to": "acute arsenic poisoning", "width": 1}, {"arrows": "to", "from": "Dimercaprol", "label": "HAS_SIDE_EFFECT", "to": "hypertension", "width": 1}, {"arrows": "to", "from": "Supplemental potassium", "label": "DECREASES_RISK_OF", "to": "heart rhythm problems", "width": 1}, {"arrows": "to", "from": "Supplemental potassium", "label": "DECREASES_RISK_OF", "to": "life-threatening heart rhythm problem", "width": 1}, {"arrows": "to", "from": "Arsenic compounds", "label": "WAS_USED_TO_TREAT", "to": "syphilis", "width": 1}, {"arrows": "to", "from": "Emerald Green pigment", "label": "CONTAINS", "to": "arsenic compounds", "width": 1}, {"arrows": "to", "from": "U.S. Environmental Protection Agency", "label": "SET_REGULATION_FOR", "to": "arsenic in drinking water", "width": 1}, {"arrows": "to", "from": "U.S. Environmental Protection Agency", "label": "DETERMINED", "to": "National Interim Primary Drinking Water Regulation", "width": 1}, {"arrows": "to", "from": "U.S. Environmental Protection Agency", "label": "REVISED", "to": "arsenic MCL", "width": 1}, {"arrows": "to", "from": "Safe Drinking Water Act", "label": "AUTHORIZED", "to": "U.S. Environmental Protection Agency", "width": 1}, {"arrows": "to", "from": "Safe Drinking Water Act", "label": "AUTHORIZED", "to": "arsenic level regulation", "width": 1}, {"arrows": "to", "from": "Guangxu Emperor", "label": "WAS_MURDERED_BY", "to": "arsenic", "width": 1}, {"arrows": "to", "from": "National Interim Primary Drinking Water Regulation", "label": "SET_LEVEL_FOR", "to": "arsenic", "width": 1}, {"arrows": "to", "from": "arsenic MCL", "label": "CURRENT_STANDARD", "to": "0.01 mg/L", "width": 1}, {"arrows": "to", "from": "India", "label": "HAS_PERMISSIBLE_LIMIT_FOR", "to": "arsenic", "width": 1}, {"arrows": "to", "from": "arsenic removal technologies", "label": "INCLUDE", "to": "precipitative processes", "width": 1}, {"arrows": "to", "from": "pregnant women", "label": "ARE_AT_RISK_FROM", "to": "arsenic exposure", "width": 1}]); | |
| nodeColors = {}; | |
| allNodes = nodes.get({ returnType: "Object" }); | |
| for (nodeId in allNodes) { | |
| nodeColors[nodeId] = allNodes[nodeId].color; | |
| } | |
| allEdges = edges.get({ returnType: "Object" }); | |
| // adding nodes and edges to the graph | |
| data = {nodes: nodes, edges: edges}; | |
| var options = { | |
| "configure": { | |
| "enabled": false | |
| }, | |
| "edges": { | |
| "color": { | |
| "inherit": true | |
| }, | |
| "smooth": { | |
| "enabled": true, | |
| "type": "dynamic" | |
| } | |
| }, | |
| "interaction": { | |
| "dragNodes": true, | |
| "hideEdgesOnDrag": false, | |
| "hideNodesOnDrag": false | |
| }, | |
| "physics": { | |
| "enabled": true, | |
| "stabilization": { | |
| "enabled": true, | |
| "fit": true, | |
| "iterations": 1000, | |
| "onlyDynamicEdges": false, | |
| "updateInterval": 50 | |
| } | |
| } | |
| }; | |
| network = new vis.Network(container, data, options); | |
| network.on("stabilizationProgress", function(params) { | |
| document.getElementById('loadingBar').removeAttribute("style"); | |
| var maxWidth = 496; | |
| var minWidth = 20; | |
| var widthFactor = params.iterations/params.total; | |
| var width = Math.max(minWidth,maxWidth * widthFactor); | |
| document.getElementById('bar').style.width = width + 'px'; | |
| document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%'; | |
| }); | |
| network.once("stabilizationIterationsDone", function() { | |
| document.getElementById('text').innerHTML = '100%'; | |
| document.getElementById('bar').style.width = '496px'; | |
| document.getElementById('loadingBar').style.opacity = 0; | |
| // really clean the dom element | |
| setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500); | |
| }); | |
| return network; | |
| } | |
| drawGraph(); | |
| </script> | |
| </body> | |
| </html> |