From d40553924bf8387e367b9853593d4e868382e004 Mon Sep 17 00:00:00 2001 From: gtsueng Date: Fri, 8 Nov 2019 09:42:13 -0800 Subject: [PATCH 1/6] Initial commit --- .../SPL ADR Standard Data set.ipynb | 491 + .../data/FinalReferenceStandard200Labels.csv | 14488 ++++++++++++++++ .../results/drug_wdid_df.tsv | 176 + 3 files changed, 15155 insertions(+) create mode 100644 scheduled_bots/SPL_ADR_standard_dataset/SPL ADR Standard Data set.ipynb create mode 100644 scheduled_bots/SPL_ADR_standard_dataset/data/FinalReferenceStandard200Labels.csv create mode 100644 scheduled_bots/SPL_ADR_standard_dataset/results/drug_wdid_df.tsv diff --git a/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR Standard Data set.ipynb b/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR Standard Data set.ipynb new file mode 100644 index 0000000..add2c64 --- /dev/null +++ b/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR Standard Data set.ipynb @@ -0,0 +1,491 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## A dataset of 200 structured product labels annotated for adverse drug reactions\n", + "The annotations were performed by Dina Demner-Fushman's team in order to create a standard set to encourage the development of NLP tools for ADR annotation from FDA Structured Product labels.\n", + "\n", + "The publication can be found here: https://www.nature.com/articles/sdata20181\n", + "\n", + "We have been given explicit permission to import this data set so long as we make it clear that it is not an NLM-sanctioned gold standard database and that the curation was done by a small team of biocurators to the best of their ability and not by experts verse in pharmacology.\n", + "\n", + "It should be noted that the dataset is not expected to change in the future; however, coverage of corresponding entries in Wikidata may grow over time so re-running the dataset on a schedule may help to improve representation of the dataset in Wikidata over time." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from wikidataintegrator import wdi_core, wdi_login, wdi_helpers\n", + "from wikidataintegrator.ref_handlers import update_retrieved_if_new_multiple_refs\n", + "import pandas as pd\n", + "from pandas import read_csv\n", + "import requests\n", + "from tqdm.notebook import trange, tqdm\n", + "import ipywidgets \n", + "import widgetsnbextension\n", + "import time\n", + "\n", + "datasrc = 'data/FinalReferenceStandard200Labels.csv'\n", + "exppath = 'results/'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## Login for Scheduled bot\n", + "\"\"\"\n", + "print(\"Logging in...\")\n", + "try:\n", + " from scheduled_bots.local import WDUSER, WDPASS\n", + "except ImportError:\n", + " if \"WDUSER\" in os.environ and \"WDPASS\" in os.environ:\n", + " WDUSER = os.environ['WDUSER']\n", + " WDPASS = os.environ['WDPASS']\n", + " else:\n", + " raise ValueError(\"WDUSER and WDPASS must be specified in local.py or as environment variables\")\n", + "\"\"\"" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Logging in...\n", + "https://www.wikidata.org/w/api.php\n", + "Successfully logged in as Gtsulab\n" + ] + } + ], + "source": [ + "\n", + "print(\"Logging in...\")\n", + "import wdi_user_config ## Credentials stored in a wdi_user_config file\n", + "login_dict = wdi_user_config.get_credentials()\n", + "login = wdi_login.WDLogin(login_dict['WDUSER'], login_dict['WDPASS'])\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Index Drug ID Drug Name Section LOINC \\\n", + "0 1 00a8921e-46a6-4df1-a744-9e532b6fb06f NUCYNTA 34084-4 \n", + "1 2 00a8921e-46a6-4df1-a744-9e532b6fb06f NUCYNTA 34084-4 \n", + "\n", + " Section Display Name MedDRA PT PT ID MedDRA LLT \\\n", + "0 ADVERSE REACTIONS Abdominal discomfort 10000059 Abdominal discomfort \n", + "1 ADVERSE REACTIONS Abnormal dreams 10000125 Abnormal dreams \n", + "\n", + " LLT ID Matching String UMLS CUI UMLS PrefName Flag 1 \\\n", + "0 10000059 abdominal discomfort C0232487 Abdominal discomfort None \n", + "1 10000125 abnormal dreams C0234458 Dream disorder None \n", + "\n", + " Flag 2 \n", + "0 None \n", + "1 None \n" + ] + } + ], + "source": [ + "spl_adr_raw = read_csv(datasrc, delimiter=\"|\", header=0, dtype={'Index':int,'PT ID':str,'LLT ID':str}).fillna('None')\n", + "print(spl_adr_raw.head(n=2))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Retrieve and map WDIDs\n", + "The Risk Factor property is how adverse effects appear to currently be modeled in Wikidata. The disease entity is the subject, with risk factor as a predicate and the drug as the object. The diseases in this data set appear to be normalized to UMLS CUIs which aren't great due to one-to-many and many-to-one mappings, but we can filter those out and limit our dataset to just the ones that are unique.\n", + "\n", + "Unfortunately, the DailyMed drug ID's don't appear to be in use in Wikidata yet, which means that the drugs will still need to be mapped to some extent. That said, there were only 200 drug labels that were annotated in this data set, so manual mapping is entirely not unreasonable. We'll try mapping via sparql query which can be quite stringent, and then attempt to manually map anything that fails." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Retrieve the QIDs for each UMLS CUI ID (The property for Orphanet IDs is P2892)\n", + "umls_cui_list = spl_adr_raw['UMLS CUI'].unique().tolist()\n", + "#umls_cui_list = ['C0002792', 'C0002994', 'C0003467'] ##test list\n", + "\n", + "i=0\n", + "wdmap = []\n", + "wdmapfail = []\n", + "for i in tqdm(range(len(umls_cui_list))):\n", + " cui_id = umls_cui_list[i]\n", + " try:\n", + " sparqlQuery = \"SELECT * WHERE {?topic wdt:P2892 \\\"\"+cui_id+\"\\\"}\"\n", + " result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", + " k=0\n", + " while k < len(result[\"results\"][\"bindings\"]): ## Take into account that there may be one to many mappings\n", + " umls_qid = result[\"results\"][\"bindings\"][k][\"topic\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", + " tmpdict = {'UMLS CUI':cui_id,'disease_WDID':umls_qid}\n", + " wdmap.append(tmpdict)\n", + " k=k+1\n", + " except:\n", + " wdmapfail.append(cui_id)\n", + " i=i+1\n", + "\n", + "## Inspect the results for mapping or coverage issues\n", + "wdid_umls_df = pd.DataFrame(wdmap)\n", + "print(\"resulting mapping table has: \",len(wdid_umls_df),\" rows.\")\n", + "\n", + "# Store the data to minimize having to run the sparql query again within a short period of time\n", + "wdid_umls_df.to_csv(exppath+'cui_wdid_xref.tsv',sep='\\t',header=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "wdid_umls_df = read_csv(exppath+'cui_wdid_xref.tsv',delimiter='\\t',header=0,index_col=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "initial mapping table size: 1013 de-duplicated: 921\n" + ] + } + ], + "source": [ + "## Exclude entities with one to many OR many to one mappings\n", + "\n", + "wdid_umls_df_unique = wdid_umls_df.drop_duplicates(subset='disease_WDID').copy()\n", + "wdid_umls_df_unique.drop_duplicates(subset='UMLS CUI',inplace=True)\n", + "\n", + "print(\"initial mapping table size: \",len(wdid_umls_df), \" de-duplicated: \",len(wdid_umls_df_unique))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14487 14487\n" + ] + } + ], + "source": [ + "## Merge the mapping table to the original table\n", + "spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left')\n", + "print(len(spl_adr_raw),len(spl_with_disease_wdids))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Query Wikidata for instances of drugs whose names match to product label names\n", + "We can limit the query by selecting for instances of Pharmaceutical products, medications, or chemical compounds. The queries should be run in that order...only search for medications of a label doesn't match a pharmaceutical product. Only search for chemical compounds if a label doesn't match a medication OR pharmaceutical product:\n", + "\n", + "* pharm_wid = 'Q28885102'\n", + "* chem_wdid = 'Q11173'\n", + "* medi_wdid = 'Q12140'" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "\"\"\"\n", + "## Unit test\n", + "query_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q28885102; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), \"'\n", + "query_subject = 'NUCYNTA'\n", + "query_end = '\"@en)).}'\n", + "sparqlQuery = query_start+query_subject.lower()+query_end\n", + "result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", + "drug_qid = result[\"results\"][\"bindings\"][0][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", + "drug_label = result[\"results\"][\"bindings\"][0][\"itemLabel\"][\"value\"]\n", + "print(drug_qid, drug_label)\n", + "print(len(result[\"results\"][\"bindings\"]))\n", + "\"\"\"" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#drug_list = ['NUCYNTA','Natazia','EDURANT'] ## Loop test\n", + "drug_list = spl_with_disease_wdids['Drug Name'].unique().tolist()\n", + "\n", + "pharm_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q28885102; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), \"'\n", + "med_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q12140; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), \"'\n", + "chem_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q11173; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), \"'\n", + "query_end = '\"@en)).}'\n", + "drug_wdid_list = []\n", + "drug_match_failed = []\n", + "\n", + "for i in tqdm(range(len(drug_list))):\n", + " query_subject = drug_list[i].lower()\n", + " try:\n", + " sparqlQuery = pharm_start+query_subject+query_end\n", + " result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", + " drug_qid = result[\"results\"][\"bindings\"][0][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", + " drug_label = result[\"results\"][\"bindings\"][0][\"itemLabel\"][\"value\"]\n", + " drug_wdid_list.append({'Drug Name':drug_list[i],'drug_WDID':drug_qid,'drug_wd_label':drug_label,'instance_of':'pharmaceutical product'})\n", + " time.sleep(1)\n", + " except:\n", + " try:\n", + " sparqlQuery = med_start+query_subject+query_end\n", + " result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", + " drug_qid = result[\"results\"][\"bindings\"][0][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", + " drug_label = result[\"results\"][\"bindings\"][0][\"itemLabel\"][\"value\"]\n", + " drug_wdid_list.append({'Drug Name':drug_list[i],'drug_WDID':drug_qid,'drug_wd_label':drug_label,'instance_of':'medication'})\n", + " time.sleep(1)\n", + " except:\n", + " try:\n", + " sparqlQuery = chem_start+query_subject+query_end\n", + " result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", + " drug_qid = result[\"results\"][\"bindings\"][0][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", + " drug_label = result[\"results\"][\"bindings\"][0][\"itemLabel\"][\"value\"]\n", + " drug_wdid_list.append({'Drug Name':drug_list[i],'drug_WDID':drug_qid,'drug_wd_label':drug_label,'instance_of':'chemical'}) \n", + " time.sleep(1)\n", + " except:\n", + " drug_match_failed.append(drug_list[i])\n", + "\n", + "drug_wdid_df = pd.DataFrame(drug_wdid_list)\n", + "drug_wdid_df.to_csv(exppath+'drug_wdid_df.tsv',sep='\\t',header=True)\n", + "print(i)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "drug_wdid_df = read_csv(exppath+'drug_wdid_df.tsv',delimiter='\\t',header=0, index_col=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Drug Name drug_WDID drug_wd_label instance_of\n", + "0 NUCYNTA Q47521917 Nucynta pharmaceutical product\n", + "1 EDURANT Q29005767 Edurant pharmaceutical product\n" + ] + }, + { + "ename": "NameError", + "evalue": "name 'drug_match_failed' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdrug_wdid_df\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mhead\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mn\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;36m2\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 2\u001b[1;33m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdrug_match_failed\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 3\u001b[0m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mlen\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdrug_wdid_df\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m+\u001b[0m\u001b[0mlen\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdrug_match_failed\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mNameError\u001b[0m: name 'drug_match_failed' is not defined" + ] + } + ], + "source": [ + "print(drug_wdid_df.head(n=2))\n", + "print(drug_match_failed)\n", + "print(len(drug_wdid_df)+len(drug_match_failed))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Merge tables to convert drug names to WDID products\n", + "Filter out the entries that could not be mapped to Wikidata." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "14487\n", + "7127\n" + ] + } + ], + "source": [ + "df_to_write = spl_with_disease_wdids.merge(drug_wdid_df, on='Drug Name',how = 'left')\n", + "print(len(df_to_write))\n", + "\n", + "all_data_available = df_to_write.loc[(~df_to_write['disease_WDID'].isnull()) & \n", + " (~df_to_write['drug_WDID'].isnull())]\n", + "\n", + "wdid_not_available = df_to_write.loc[(df_to_write['disease_WDID'].isnull()) | \n", + " (df_to_write['drug_WDID'].isnull())]\n", + "print(len(all_data_available))\n", + "#print(wdid_not_available.head(n=2))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Convert triples to WD statements\n", + "\n", + "The Adverse Effect of \"lactic acidosis\" from metformin use was modeled on the Risk Factor property page and discussed there. These adverse effects can be expected to modeled similarly. \n", + "\n", + "We can use rank as a means to indicate severity of the warning. For example, a Black Box Warning would get a higher priority rank than text mined from 'adverse effect'. Alternatively, we can try to include a qualifier that would indicate where the ADR was derived.\n", + "Eg- using \"P958\" Paragraph/section/clause\n", + "in conjunction with:\n", + "* Q879952 (Boxed Warning)\n", + "* Q45959 (Adverse Drug Reactions)\n", + "* Q21010924 (Safety Precautions)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "from datetime import datetime\n", + "import copy\n", + "def create_reference(spl_url):\n", + " timeStringNow = datetime.now().strftime(\"+%Y-%m-%dT00:00:00Z\")\n", + " archived_date = datetime.strptime('9/29/2015','%m/%d/%Y').strftime(\"+%Y-%m-%dT00:00:00Z\")\n", + " refStatedIn = wdi_core.WDItemID(value=\"Q73670648\", prop_nr=\"P248\", is_reference=True)\n", + " refRetrieved = wdi_core.WDTime(timeStringNow, prop_nr=\"P813\", is_reference=True)\n", + " refRetrieved2 = wdi_core.WDTime(archived_date, prop_nr=\"P2960\", is_reference=True)\n", + " refURL = wdi_core.WDUrl(value=spl_url, prop_nr=\"P854\", is_reference=True)\n", + " return [refStatedIn, refRetrieved, refRetrieved2, refURL]\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Unit TEST not complete\n", + "--trying to use qualifier to model source of the data (boxed warning, etc)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## Unit test -- write a statement\n", + "fda_base_spl_url = 'https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid='\n", + "\n", + "i=0\n", + "drug_qid = all_data_available.iloc[i]['drug_WDID']\n", + "#disease_qid = all_data_available.iloc[i]['disease_WDID']\n", + "disease_qid = 'Q4115189' #sandbox run\n", + "spl_drug_id = all_data_available.iloc[i]['Drug ID']\n", + "spl_url = fda_base_spl_url+spl_drug_id\n", + "reference = create_reference(spl_url)\n", + "source_qualifier = wdi_core.WDItemID('Q56478729', prop_nr='P2241', is_qualifier=True)\n", + "\n", + "statement = [wdi_core.WDItemID(value=drug_qid, prop_nr=\"P5642\", \n", + " qualifiers=[source_qualifier],\n", + " references=[copy.deepcopy(reference)])]\n", + "wikidata_item = wdi_core.WDItemEngine(wd_item_id=disease_qid, data=statement, append_value=\"P5642\",\n", + " global_ref_mode='CUSTOM', ref_handler=update_retrieved_if_new_multiple_refs)\n", + "\n", + "#wikidata_item.get_wd_json_representation()\n", + "wikidata_item.write(login)\n", + "print(i,disease_qid,drug_qid)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "run_list = all_data_available[0:3] ## test run\n", + "#run_list = all_data_available\n", + "\n", + "for i in tqdm(range(len(run_list))):\n", + " drug_qid = all_data_available.iloc[i]['drug_WDID']\n", + " disease_qid = all_data_available.iloc[i]['disease_WDID']\n", + " spl_drug_id = all_data_available.iloc[i]['Drug ID']\n", + " spl_url = fda_base_spl_url+spl_drug_id\n", + " reference = create_reference(spl_url)\n", + "\n", + " statement = [wdi_core.WDItemID(value=drug_qid, prop_nr=\"P5642\", references=[copy.deepcopy(reference)])]\n", + " wikidata_item = wdi_core.WDItemEngine(wd_item_id=disease_qid, data=statement, append_value=\"P5642\",\n", + " global_ref_mode='CUSTOM', ref_handler=update_retrieved_if_new_multiple_refs)\n", + " wikidata_item.write(login, edit_summary='added ADR relationship from FDA SPLs') " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "fda_base_spl_url = 'Base url: https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid='\n", + "spl_sample_id = '00a8921e-46a6-4df1-a744-9e532b6fb06f'\n", + "original_retrieval_date = 'September 29, 2015' ## Use 'P2960' (archived date)\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.2" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/scheduled_bots/SPL_ADR_standard_dataset/data/FinalReferenceStandard200Labels.csv b/scheduled_bots/SPL_ADR_standard_dataset/data/FinalReferenceStandard200Labels.csv new file mode 100644 index 0000000..215b9f1 --- /dev/null +++ b/scheduled_bots/SPL_ADR_standard_dataset/data/FinalReferenceStandard200Labels.csv @@ -0,0 +1,14488 @@ +Index|Drug ID|Drug Name|Section LOINC|Section Display Name|MedDRA PT|PT ID|MedDRA LLT|LLT ID|Matching String|UMLS CUI|UMLS PrefName|Flag 1|Flag 2 +000001|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +000002|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Abnormal dreams|10000125|Abnormal dreams|10000125|abnormal dreams|C0234458|Dream disorder|| +000003|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +000004|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +000005|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Alcohol interaction|10001597|Interaction with alcohol|10022527|interaction with alcohol|C0853206|Alcohol interaction|| +000006|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +000007|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Anaphylactic shock|10002199|Anaphylactic shock|10002199|anaphylactic shock|C0002792|anaphylaxis|| +000008|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +000009|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +000010|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +000011|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Ataxia|10003591|Ataxia|10003591|ataxia|C0004134|Ataxia|| +000012|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Blood pressure decreased|10005734|Blood pressure decreased|10005734|blood pressure decreased|C0020649|Hypotension|| +000013|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Chronic respiratory disease|10061768|Chronic respiratory disease|10061768|chronic pulmonary disease|C0264220|Chronic disease of respiratory system|| +000014|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +000015|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +000016|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Coordination abnormal|10010947|Coordination abnormal|10010947|coordination abnormal|C0520966|Abnormal coordination|| +000017|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +000018|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +000019|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Depressed level of consciousness|10012373|Depressed level of consciousness|10012373|depressed level of consciousness|C0549249|Depressed Level of Consciousness|| +000020|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +000021|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Discomfort|10013082|Sensation of heaviness|10040000|sensation of heaviness|C0581912|Heavy feeling|| +000022|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Disorientation|10013395|Disorientation|10013395|disorientation|C0233407|Disorientation|| +000023|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Disturbance in attention|10013496|Disturbance in attention|10013496|disturbance in attention|C0233414|Disturbance of attention|| +000024|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +000025|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Drug abuse|10013654|Drug abuse|10013654|drug abuse|C0013146|Drug abuse|| +000026|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Drug dependence|10013663|Dependence addictive|10012336|addiction|C0085281|Addictive Behavior|| +000027|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Drug dependence|10013663|Drug dependence|10013663|drug dependence|C1510472|Drug Dependence|| +000028|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Drug withdrawal syndrome|10013754|Drug withdrawal syndrome|10013754|drug withdrawal syndrome|C0152128|Drug withdrawal syndrome|| +000029|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +000030|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +000031|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +000032|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +000033|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Euphoric mood|10015535|Euphoric mood|10015535|euphoric mood|C0235146|Euphoric mood|| +000034|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +000035|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Feeling drunk|10016330|Feeling drunk|10016330|feeling drunk|C0522172|Feeling intoxicated|| +000036|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Feeling hot|10016334|Feeling hot|10016334|feeling hot|C2939147|Feels hot|| +000037|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|Gamma-glutamyltransferase increased|10017693|gamma-glutamyltransferase increased|C0151662|Gamma-glutamyl transferase raised|| +000038|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal effects|C0426576|Gastrointestinal symptom|| +000039|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Hallucination|10019063|Hallucination|10019063|hallucination|C0018524|Hallucinations|| +000040|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +000041|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Heart rate decreased|10019301|Heart rate decreased|10019301|heart rate decreased|C2230138|Pulse slow (finding)|| +000042|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Heart rate increased|10019303|Heart rate increased|10019303|heart rate increased|C0039231|Tachycardia|| +000043|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +000044|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +000045|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +000046|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +000047|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotensive|10021107|hypotensive effects|C0857353|Hypotensive|| +000048|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Impaired gastric emptying|10021518|Impaired gastric emptying|10021518|impaired gastric emptying|C0522063|Impaired gastric emptying|| +000049|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +000050|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +000051|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Lethargy|10024264|Lethargy|10024264|lethargy|C0023380|Lethargy|| +000052|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Memory impairment|10027175|Memory impairment|10027175|memory impairment|C0233794|Memory impairment|| +000053|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Muscle contractions involuntary|10028293|Muscle contractions involuntary|10028293|involuntary muscle contractions|C0235086|Involuntary muscle contraction|| +000054|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +000055|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000056|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Nervousness|10029216|Nervousness|10029216|nervousness|C0027769|Nervousness|| +000057|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +000058|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Oxygen saturation decreased|10033318|Oxygen saturation decreased|10033318|oxygen saturation decreased|C0746961|Oxygen saturation below reference range|| +000059|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +000060|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Panic attack|10033664|Panic attack|10033664|panic attack|C0086769|Panic Attacks|| +000061|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +000062|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Pollakiuria|10036018|Pollakiuria|10036018|pollakiuria|C0042023|Increased frequency of micturition|| +000063|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Presyncope|10036653|Presyncope|10036653|presyncope|C0700200|Presyncope|| +000064|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Pruritus generalised|10052576|Pruritus generalized|10037092|pruritus generalized|C0475858|Generalized pruritus|| +000065|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +000066|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +000067|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Respiratory depression|10038678|Respiratory depression|10038678|respiratory depression|C0235063|Respiratory Depression|| +000068|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Restlessness|10038743|Restlessness|10038743|restlessness|C3887611|Restlessness|| +000069|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +000070|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +000071|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Seizure|10039906|Seizure|10039906|seizure|C0036572|Seizures|| +000072|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Serotonin syndrome|10040108|Serotonin syndrome|10040108|serotonin syndrome|C0699828|Serotonin Syndrome|| +000073|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +000074|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +000075|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +000076|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Thinking abnormal|10043431|Thinking abnormal|10043431|thinking abnormal|C0233632|Disturbance in thinking|| +000077|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +000078|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +000079|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Urinary hesitation|10046542|Urinary hesitation|10046542|urinary hesitation|C0152032|Urinary hesitation|| +000080|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +000081|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +000082|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Visual impairment|10047571|Visual disturbance|10047543|visual disturbance|C0547030|Visual disturbance|| +000083|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +000084|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Apnoea|10002974|Apnea|10002972|apnea|C0003578|Apnea|| +000085|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure decreased|10005734|Blood pressure decreased|10005734|reduce blood pressure|C0020649|Hypotension|| +000086|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Cardiac output decreased|10007595|Cardiac output decreased|10007595|reduce cardiac output|C0007166|Low Cardiac Output|| +000087|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Coma|10010071|Coma|10010071|coma|C0009421|Comatose|| +000088|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +000089|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Depressed level of consciousness|10012373|Depression central nervous system|10012383|central nervous system depression|C0151559|Central nervous system depression (disorder)|| +000090|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Hypercapnia|10020591|Retention carbon dioxide|10038778|co2retention|C0020440|Hypercapnia|| +000091|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Hypopnoea|10021079|Respiration spontaneous decreased|10038657|reduce respiratory drive|C0456035|Poor respiratory drive|| +000092|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +000093|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotensive|10021107|hypotensive effect|C0857353|Hypotensive|| +000094|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Impaired driving ability|10049564|Impaired driving ability|10049564|impair driving a car|C0684311|impaired driving|| +000095|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Impaired work ability|10052302|Impaired work ability|10052302|impair operating machinery|C0948361|Impaired work ability|| +000096|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Intracranial pressure increased|10022773|Intracranial pressure increased|10022773|increase intracranial pressure|C0151740|Intracranial Hypertension|| +000097|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Mental disability|10027353|Mental disability|10027353|impair mental abilities|C1306341|Mental handicap|| +000098|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Obstructive airways disorder|10061877|Airway resistance increased|10001537|increased airway resistance|C0860511|Airway resistance increased|| +000099|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Overdose|10033295|Overdose|10033295|overdose|C0029944|Drug Overdose|| +000100|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Physical disability|10048624|Physical impairment|10076322|impaired physical abilities|C0231171|Physical impairment|| +000101|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Respiratory depression|10038678|Respiratory depression|10038678|respiratory depression|C0235063|Respiratory Depression|| +000102|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Sedation|10039897|Sedation excessive|10039898|profound sedation|C0235194|Tranquillisation excessive|| +000103|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Convulsions aggravated|10010915|aggravate convulsions|C0234975|Convulsions aggravated|| +000104|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +000105|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Serotonin syndrome|10040108|Serotonin syndrome|10040108|serotonin syndrome|C0699828|Serotonin Syndrome|| +000106|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|Vasodilatation|10047141|Vasodilatation|10047141|vasodilation|C0595862|Vasodilation disorder|| +000107|00a8921e-46a6-4df1-a744-9e532b6fb06f|NUCYNTA|43685-7|WARNINGS AND PRECAUTIONS|||||decreased respiratory drive|C0456035|Poor respiratory drive|unmapped| +000108|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34066-1|BOXED WARNINGS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular events|C1320716|Cardiovascular event||DrugClass +000109|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +000110|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Abnormal withdrawal bleeding|10069195|Abnormal withdrawal bleeding|10069195|abnormal withdrawal bleeding|C2609183|Abnormal withdrawal bleeding|| +000111|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Acne|10000496|Acne|10000496|acne|C0702166|Acne|| +000112|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Affect lability|10054196|Affect lability|10054196|affect lability|C0233472|Labile affect|| +000113|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +000114|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Angiopathy|10059245|Vascular disorder|10047059|vascular events|C0042373|Vascular Diseases|| +000115|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Breast discomfort|10049872|Breast discomfort|10049872|breast discomfort|C0877338|Breast discomfort|| +000116|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Breast pain|10006298|Breast pain|10006298|breast pain|C0024902|Mastodynia|| +000117|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Breast tenderness|10006313|Breast tenderness|10006313|breast tenderness|C0262397|Breast tenderness|| +000118|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular events|C1320716|Cardiovascular event|| +000119|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Cerebral thrombosis|10008132|Cerebral thrombosis|10008132|cerebral thrombosis|C0079102|Cerebral Thrombosis|| +000120|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +000121|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Chloasma|10008570|Chloasma|10008570|chloasma|C0025218|Chloasma|| +000122|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Cholecystitis acute|10008614|Acute cholecystitis|10000691|acute cholecystitis|C0149520|Acute Cholecystitis|| +000123|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Cholecystitis|10008612|Acalculous cholecystitis|10000347|chronic acalculous cholecystitis|C3272619|Chronic Acalculous Cholecystitis|| +000124|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Crying|10011469|Crying abnormal|10011470|crying|C0235939|Crying abnormal|| +000125|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Deep vein thrombosis|10051055|Deep vein thrombosis|10051055|deep vein thrombosis|C0149871|Deep Vein Thrombosis|| +000126|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Depressed mood|10012374|Depressed mood|10012374|depressed mood|C0344315|Depressed mood|| +000127|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +000128|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +000129|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Dysfunctional uterine bleeding|10013908|Dysfunctional uterine bleeding|10013908|dysfunctional uterine bleeding|C0025874|Metrorrhagia|| +000130|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Dysthymic disorder|10013982|Dysthymic disorder|10013982|dysthymic disorder|C0013415|Dysthymic Disorder|| +000131|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolic events|C3544094|Arterial thromboembolism|| +000132|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolic events|C1861172|Venous Thromboembolism|| +000133|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Erythema multiforme|10015218|Erythema multiforme|10015218|erythema multiforme|C0014742|Erythema Multiforme|| +000134|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Erythema nodosum|10015226|Erythema nodosum|10015226|erythema nodosum|C0014743|Erythema Nodosum|| +000135|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Fluid retention|10016807|Fluid retention|10016807|fluid retention|C0268000|Body fluid retention|| +000136|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Focal nodular hyperplasia|10052285|Hepatic nodular hyperplasia|10058959|focal nodular hyperplasia of the liver|C0700636|Focal nodular hyperplasia of liver|| +000137|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Gallbladder disorder|10017626|Gallbladder disease|10017641|gallbladder disease|C0016977|Gall Bladder Diseases|| +000138|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal symptoms|C0426576|Gastrointestinal symptom|| +000139|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Genital haemorrhage|10061178|Genital hemorrhage|10055260|genital hemorrhage|C0854381|Genital hemorrhage|| +000140|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headaches|C0018681|Headache|| +000141|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +000142|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +000143|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +000144|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Hypertriglyceridaemia|10020869|Hypertriglyceridemia|10020870|hypertriglyceridemia|C0020557|Hypertriglyceridemia|| +000145|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Liver disorder|10024670|Hepatic disease|10019650|liver disease|C0023895|Liver diseases|| +000146|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Menorrhagia|10027313|Menorrhagia|10027313|menorrhagia|C0025323|Menorrhagia|| +000147|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Menstrual disorder|10027327|Menstrual disorder|10027327|menstrual disorders|C0025345|Menstruation Disturbances|| +000148|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Menstruation irregular|10027339|Menstruation irregular|10027339|menstruation irregular|C0156404|Irregular periods|| +000149|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Metrorrhagia|10027514|Metrorrhagia|10027514|metrorrhagia|C0025874|Metrorrhagia|| +000150|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Migraine|10027599|Migraine|10027599|migraines|C0149931|Migraine Disorders|| +000151|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Mood altered|10027940|Mood altered|10027940|mood altered|C0085633|Mood swings|| +000152|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Mood altered|10027940|Mood change|10027941|mood changes|C0085633|Mood swings|| +000153|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Mood swings|10027951|Mood swings|10027951|mood swings|C0085633|Mood swings|| +000154|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +000155|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000156|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Ovarian cyst ruptured|10033136|Ovarian cyst ruptured|10033136|ruptured ovarian cyst|C0404478|Ruptured cyst of ovary|| +000157|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolus|10037380|pulmonary emboli|C0034065|Pulmonary Embolism|| +000158|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Uterine haemorrhage|10046788|Uterine hemorrhage|10046789|uterine hemorrhage|C0042134|Uterine hemorrhage|| +000159|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Uterine leiomyoma|10046798|Uterine leiomyoma|10046798|uterine leiomyoma|C0042133|Uterine Fibroids|| +000160|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Vaginal haemorrhage|10046910|Vaginal hemorrhage|10046912|vaginal hemorrhage|C2979982|Vaginal Hemorrhage|| +000161|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +000162|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Vulvovaginal candidiasis|10047784|Vulvovaginal candidiasis|10047784|vulvovaginal candidiasis|C0700345|Candidiasis, Vulvovaginal|| +000163|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +000164|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Amenorrhoea|10001928|Amenorrhea|10001927|amenorrhea|C0002453|Amenorrhea|| +000165|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +000166|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Arterial thrombosis|10003178|Arterial thrombosis|10003178|arterial thromboses|C0151942|Arterial thrombosis||DrugClass +000167|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|increase in blood pressure|C0497247|Increase in blood pressure||DrugClass +000168|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Carbohydrate metabolism disorder|10061023|Carbohydrate metabolism disorder|10061023|carbohydrate metabolic effects|C0149670|Disorder of carbohydrate metabolism|| +000169|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident||DrugClass +000170|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular disorder|10008196|Cerebrovascular disorder|10008196|cerebrovascular events|C0007820|Cerebrovascular Disorders||DrugClass +000171|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Cervical dysplasia|10008263|Cervical intraepithelial neoplasia|10056576|cervical intraepithelial neoplasia|C0206708|Cervical Intraepithelial Neoplasia||DrugClass +000172|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Cervix carcinoma|10008342|Cervical cancer|10008229|cervical cancer|C0302592|Cervix carcinoma||DrugClass +000173|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Chloasma|10008570|Chloasma|10008570|chloasma|C0025218|Chloasma|| +000174|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Cholestasis|10008635|Cholestasis|10008635|cholestasis|C0008370|Cholestasis||DrugClass +000175|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +000176|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|vte|C1861172|Venous Thromboembolism|| +000177|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Embolism|10061169|Thromboembolism|10043566|thromboembolic disease|C0040038|Thromboembolism||DrugClass +000178|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Gallbladder disorder|10017626|Gallbladder disease|10017641|gallbladder disease|C0016977|Gall Bladder Diseases||DrugClass +000179|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Glucose tolerance decreased|10018428|Glucose tolerance decreased|10018428|decrease glucose tolerance|C0151671|Glucose tolerance decreased||DrugClass +000180|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhagic stroke|10019016|Hemorrhagic stroke|10048863|hemorrhagic strokes|C0553692|Brain hemorrhage||DrugClass +000181|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Headache|10019211|Headache recurrent|10066618|headaches recurrent|C0239888|Headache recurrent|| +000182|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +000183|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Hepatic adenoma|10019629|Hepatic adenoma|10019629|rupture of hepatic adenomas|C0206669|Hepatocellular Adenoma|duplicate| +000184|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Hepatic cancer|10073069|Liver, cancer of|10024720|liver cancers|C0345904|Malignant neoplasm of liver||DrugClass +000185|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Hepatic rupture|10019707|Hepatic rupture|10019707|rupture of hepatic adenomas|C0341444|Rupture of liver|duplicate| +000186|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Hepatocellular carcinoma|10073071|Hepatocellular carcinoma|10073071|hepatocellular carcinoma|C2239176|Liver carcinoma||DrugClass +000187|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Blood pressure high|10005747|high blood pressure|C0020538|Hypertensive disease|| +000188|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +000189|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Intra-abdominal haemorrhage|10061249|Intra-abdominal hemorrhage|10055291|intra-abdominal hemorrhage|C0236178|Intraabdominal hemorrhage|| +000190|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Lipids abnormal|10024588|Lipids abnormal|10024588|adverse lipid changes|C0549634|Lipids abnormal||DrugClass +000191|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Liver disorder|10024670|Hepatic disease|10019650|liver disease|C0023895|Liver diseases|| +000192|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Metrorrhagia|10027514|Bleeding breakthrough|10005105|breakthrough bleeding|C3495440|Break-through bleeding (finding)||DrugClass +000193|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Metrorrhagia|10027514|Metrorrhagia|10027514|intracyclic bleeding|C0025874|Metrorrhagia|| +000194|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Migraine|10027599|Migraine|10027599|migraine|C0149931|Migraine Disorders||DrugClass +000195|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarctions|C0027051|Myocardial Infarction||DrugClass +000196|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Oligomenorrhoea|10030295|Oligomenorrhea|10030294|oligomenorrhea|C0028949|Oligomenorrhea|| +000197|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis||DrugClass +000198|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Thrombosis|10043607|Thrombosis|10043607|vascular risks thrombotic|C0040053|Thrombosis|| +000199|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Thrombotic stroke|10043647|Thrombotic stroke|10043647|thrombotic strokes|C0242129|Thrombotic stroke||DrugClass +000200|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Thyroxin binding globulin increased|10051420|Thyroxin binding globulin increased|10051420|thyroid-binding globulin increase|C0241400|Thyroxin binding globulin increased||DrugClass +000201|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Uterine haemorrhage|10046788|Uterine bleeding|10046765|uterine bleeding|C0042134|Uterine hemorrhage|| +000202|02c91fba-9c47-43ef-ac78-e82369798834|Natazia|43685-7|WARNINGS AND PRECAUTIONS|Vaginal haemorrhage|10046910|Spotting vaginal|10048821|spotting|C0025874|Metrorrhagia||DrugClass +000203|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|ACTH stimulation test abnormal|10065675|ACTH stimulation test abnormal|10065675|abnormal 250 micrograms acth stimulation tests|C1696684|ACTH stimulation test abnormal|| +000204|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +000205|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +000206|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Abnormal dreams|10000125|Abnormal dreams|10000125|abnormal dreams|C0234458|Dream disorder|| +000207|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Adrenal insufficiency|10001367|Adrenal insufficiency|10001367|adrenal insufficiency|C0001623|Adrenal gland hypofunction|| +000208|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increased alt|C0151905|Alanine aminotransferase increased|| +000209|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +000210|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increased ast|C0151904|Aspartate aminotransferase increased|| +000211|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|increased total bilirubin|C0741494|Elevated total bilirubin|| +000212|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Blood cholesterol abnormal|10005423|Cholesterol total abnormal NOS|10008669|changes in total cholesterol|C0860919|Cholesterol total abnormal NOS|| +000213|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Blood cholesterol increased|10005425|Cholesterol total increased|10008671|increased total cholesterol fasted|C1522133|Hypercholesterolemia result|| +000214|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Blood cortisol abnormal|10005456|Cortisol abnormal|10011196|change in basal cortisol|C0860768|Abnormal cortisol|| +000215|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Blood cortisol increased|10005458|Cortisol increased|10011207|basal cortisol increase|C0541847|Hydrocortisone increased|| +000216|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|increased creatinine|C0151578|Creatinine increased|| +000217|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|serum creatinine increases|C0700225|Serum creatinine raised|| +000218|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Blood triglycerides abnormal|10005837|Triglycerides abnormal|10044661|changes triglycerides|C0860922|Triglycerides abnormal NOS|| +000219|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|increased triglycerides fasted|C1522137|Hypertriglyceridemia result|| +000220|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Cholecystitis|10008612|Cholecystitis|10008612|cholecystitis|C0008325|Cholecystitis|| +000221|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Cholelithiasis|10008629|Cholelithiasis|10008629|cholelithiasis|C0008350|Cholelithiasis|| +000222|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +000223|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +000224|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Depression|10012378|Depressive disorder|10012399|depressive disorders|C0011581|Depressive disorder|| +000225|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +000226|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +000227|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress|C3541994|Drug Hypersensitivity Syndrome|| +000228|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug reaction with eosinophilia and systemic symptoms|10073508|drug reaction with eosinophilia and systemic symptoms|C3541994|Drug Hypersensitivity Syndrome|| +000229|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +000230|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Glomerulonephritis membranous|10018372|Glomerulonephritis membranous|10018372|glomerulonephritis membranous|C0017665|Membranous glomerulonephritis|| +000231|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +000232|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Hepatic enzyme increased|10060795|hepatic enzyme elevation|C0235996|Elevated liver enzymes|| +000233|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +000234|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|High density lipoprotein abnormal|10020051|High density lipoprotein cholesterol abnormal NOS|10020053|changes hdl-cholesterol|C0853605|High density lipoprotein abnormal|| +000235|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +000236|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +000237|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Low density lipoprotein abnormal|10024901|Low density lipoprotein cholesterol abnormal NOS|10024903|changes ldl-cholesterol|C0853611|Low density lipoprotein abnormal|| +000238|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Low density lipoprotein increased|10024910|LDL cholesterol increased|10024055|increased ldl cholesterol fasted|C0549399|Low density lipoprotein increased|| +000239|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Mental disorder|10061284|Mental disorder|10061284|psychiatric disorders|C0004936|Mental disorders|| +000240|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Mesangioproliferative glomerulonephritis|10066453|Mesangioproliferative glomerulonephritis|10066453|glomerulonephritis mesangioproliferative|C1737225|Mesangioproliferative glomerulonephritis|| +000241|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000242|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Nephrolithiasis|10029148|Nephrolithiasis|10029148|nephrolithiasis|C0392525|Nephrolithiasis|| +000243|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Nephrotic syndrome|10029164|Nephrotic syndrome|10029164|nephrotic syndrome|C0027726|Nephrotic Syndrome|| +000244|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +000245|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Rash|10037844|Skin rash|10040913|skin rash|C0015230|Exanthema|| +000246|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +000247|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Sleep disorder|10040984|Sleep disorder|10040984|sleep disorders|C0851578|Sleep Disorders|| +000248|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +000249|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +000250|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune disorder|10061664|Autoimmune disorder|10061664|autoimmune disorders|C0004364|Autoimmune Diseases|| +000251|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Basedow's disease|10004161|Graves' disease|10018706|graves' disease|C0018213|Graves Disease|| +000252|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Body fat disorder|10055164|Body fat disorder|10055164|accumulation of body fat|C1096393|Body fat disorder|| +000253|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Breast enlargement|10006242|Breast enlargement|10006242|breast enlargement|C2225524|Macromastia||DrugClass +000254|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Cachexia|10006895|Constitutional syndrome|10073674|constitutional symptoms|C0009812|Constitutional Symptom|| +000255|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Central obesity|10065941|Central obesity|10065941|central obesity|C0311277|Obesity, Abdominal||DrugClass +000256|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Cushingoid|10011655|Cushingoid facies|10011656|cushingoid appearance|C0742929|CUSHINGOID APPEARANCE||DrugClass +000257|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Cytomegalovirus infection|10011831|Cytomegalovirus infection|10011831|cytomegalovirus|C0010823|Cytomegalovirus Infections||DrugClass +000258|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Depressed mood|10012374|Depressed mood|10012374|depressed mood|C0344315|Depressed mood|| +000259|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +000260|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Depression|10012378|Depressive disorder|10012399|depressive disorders|C0011581|Depressive disorder|| +000261|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress|C3541994|Drug Hypersensitivity Syndrome|| +000262|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug reaction with eosinophilia and systemic symptoms|10073508|drug reaction with eosinophilia and systemic symptoms|C3541994|Drug Hypersensitivity Syndrome|| +000263|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Dysphoria|10013954|Dysphoria|10013954|dysphoria|C0233477|Dysphoric mood|| +000264|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|prolong the qtc interval|C0855333|Electrocardiogram QT corrected interval prolonged|| +000265|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Facial wasting|10056866|Facial wasting|10056866|facial wasting|C1112303|Facial wasting||DrugClass +000266|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Fat redistribution|10048474|Fat redistribution|10048474|redistribution of body fat|C0856151|Fat redistribution|| +000267|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Guillain-Barre syndrome|10018767|Guillain-Barre syndrome|10018767|guillain-barre syndrome|C0018378|Guillain-Barre Syndrome|| +000268|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Hepatic function abnormal|10019670|Hepatic function abnormal|10019670|hepatic adverse events|C0086565|Liver Dysfunction|| +000269|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatic toxicity|C0348754|Toxic liver disease|| +000270|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +000271|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Immune reconstitution inflammatory syndrome|10065042|Immune reconstitution syndrome|10054014|immune reconstitution syndrome|C1096197|Immune reconstitution syndrome|| +000272|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Inflammation|10061218|Inflammatory reaction|10021995|inflammatory response|C1155266|inflammatory response||DrugClass +000273|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Lipodystrophy acquired|10049287|Peripheral lipodystrophy|10069215|peripheral wasting|C2609346|Peripheral lipodystrophy|underspecified|DrugClass +000274|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Lipohypertrophy|10062315|Buffalo hump|10006539|dorsocervical fat enlargement|C0520573|Buffalo hump||DrugClass +000275|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Liver function test abnormal|10024690|Raised liver function tests|10048557|elevations in hepatic serum biochemistries|C0877359|Increased liver function tests|| +000276|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Major depression|10057840|Major depression|10057840|major depression|C1269683|Major Depressive Disorder|| +000277|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Mood altered|10027940|Mood altered|10027940|mood altered|C0085633|Mood swings|| +000278|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Mycobacterium avium complex infection|10058806|Infection mycobacterium avium|10021840|mycobacterium avium infection|C1411980|Mycobacterium avium infection||DrugClass +000279|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Negative thoughts|10058672|Negative thoughts|10058672|negative thoughts|C1142075|Negative thoughts|| +000280|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|indolent opportunistic infections|C0029118|Opportunistic Infections|underspecified|DrugClass +000281|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Organ failure|10053159|Organ failure|10053159|organ dysfunctions|C0349410|Single organ dysfunction|| +000282|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystis jiroveci pneumonia|10064108|pneumocystis jiroveci pneumonia|C1535939|Pneumocystis jiroveci pneumonia||DrugClass +000283|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Polymyositis|10036102|Polymyositis|10036102|polymyositis|C0085655|Polymyositis|| +000284|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +000285|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rashes|C0015230|Exanthema|| +000286|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +000287|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +000288|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Suicide attempt|10042464|Suicide attempt|10042464|suicide attempt|C0038663|Suicide attempt|| +000289|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|worsening transaminase elevations|C0438717|Transaminases increased|| +000290|03880372-2c68-45c6-a53a-f420c49541d6|EDURANT|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis||DrugClass +000291|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +000292|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +000293|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Acute respiratory distress syndrome|10001052|Acute respiratory distress syndrome|10001052|acute respiratory distress syndrome|C0035222|Respiratory Distress Syndrome, Adult|| +000294|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +000295|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +000296|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Arrhythmia supraventricular|10003130|Arrhythmia supraventricular|10003130|supraventricular arrhythmia|C0428974|Supraventricular arrhythmia|| +000297|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +000298|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +000299|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|myelosuppression|C0854467|Myelosuppression|| +000300|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Candida sepsis|10053166|Candida sepsis|10053166|candida sepsis|C0949091|Candida sepsis|| +000301|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Cardiogenic shock|10007625|Cardiogenic shock|10007625|cardiogenic shock|C0036980|Shock, Cardiogenic|| +000302|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Cardiopulmonary failure|10051093|Cardiopulmonary failure|10051093|cardiopulmonary failure|C1444565|Cardiorespiratory failure|| +000303|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +000304|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +000305|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +000306|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +000307|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +000308|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|deaths|C1306577|Death (finding)|| +000309|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Death|10011906|Unknown cause of death|10063378|death of unknown cause|C0277589|Death of unknown cause|| +000310|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +000311|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Deep vein thrombosis|10051055|Deep vein thrombosis|10051055|deep vein thrombosis|C0149871|Deep Vein Thrombosis|| +000312|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +000313|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Dermatitis exfoliative|10012455|Exfoliative dermatitis|10015665|exfoliative dermatitis|C0011606|Exfoliative dermatitis|| +000314|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +000315|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Device related infection|10064687|Catheter related infection|10007810|catheter related infection|C0860239|Catheter related infection|| +000316|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Device related infection|10064687|Central line infection|10054192|central line infection|C1096243|Central line infection|| +000317|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +000318|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +000319|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +000320|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +000321|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Electrocardiogram ST-T change|10061117|ECG Nonspecific ST-T change|10057502|electrocardiogram st-t wave changes|C1112720|ECG Nonspecific ST-T change|| +000322|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Electrocardiogram T wave abnormal|10050380|Electrocardiogram T wave abnormal|10050380|ecg t-wave changes|C0438167|ECG: T wave abnormal|| +000323|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Electrocardiogram change|10061116|Electrocardiogram change|10061116|electrocardiographic changes|C0855329|Electrocardiographic changes|| +000324|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Epstein-Barr virus infection|10015108|Epstein-Barr virus infection reactivation|10015109|epstein barr virus reactivation|C0854503|EBV infection reactivation|| +000325|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +000326|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +000327|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +000328|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Hepatitis B|10019731|Hepatitis B reactivation|10058827|reactivation of hepatitis b virus infection|C1142420|Hepatitis B reactivation|| +000329|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Hyperbilirubinaemia|10020578|Hyperbilirubinemia|10020582|hyperbilirubinemia|C0020433|Hyperbilirubinemia|| +000330|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +000331|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Hypermagnesaemia|10020669|Hypermagnesemia|10020670|hypermagnesemia|C0151714|Hypermagnesemia|| +000332|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +000333|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Hyperuricaemia|10020903|Hyperuricemia|10020907|hyperuricemia|C0740394|Hyperuricemia|| +000334|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Hypoalbuminaemia|10020942|Hypoalbuminemia|10020943|hypoalbuminemia|C0239981|Hypoalbuminemia|| +000335|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +000336|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +000337|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +000338|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +000339|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +000340|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +000341|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Hypoxia|10021143|Hypoxia|10021143|hypoxia|C0242184|Hypoxia|| +000342|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +000343|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +000344|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +000345|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Multi-organ failure|10028154|Multi-organ failure|10028154|multi-organ failure|C0026766|Multiple Organ Failure|| +000346|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Myocardial ischaemia|10028600|Myocardial ischemia|10028601|myocardial ischemia|C0151744|Myocardial Ischemia|| +000347|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000348|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +000349|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +000350|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +000351|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +000352|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +000353|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +000354|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +000355|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +000356|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +000357|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Septic shock|10040070|Septic shock|10040070|septic shock|C0036983|Septic Shock|| +000358|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +000359|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +000360|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +000361|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +000362|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +000363|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Ventricular arrhythmia|10047281|Ventricular arrhythmia|10047281|ventricular arrhythmia|C0085612|Ventricular arrhythmia|| +000364|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +000365|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +000366|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +000367|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +000368|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram ST segment abnormal|10014390|Electrocardiogram ST segment abnormal|10014390|ecgs st-segment changes|C0232326|EKG ST segment changes|| +000369|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram T wave abnormal|10050380|Electrocardiogram T wave abnormal|10050380|ecgs t-wave changes|C0438167|ECG: T wave abnormal|| +000370|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram change|10061116|Change in ECG|10008396|ecg changes|C0855329|Electrocardiographic changes|| +000371|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram change|10061116|Electrocardiogram change|10061116|electrocardiographic changes|C0855329|Electrocardiographic changes|| +000372|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Epstein-Barr virus infection|10015108|Epstein-Barr virus infection reactivation|10015109|reactivation epstein barr viruses|C0854503|EBV infection reactivation|| +000373|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +000374|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Foetal death|10055690|Fetal death|10016479|embryocidal|C0015927|Fetal Death||Animal +000375|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Liver failure|10024678|liver failure|C0085605|Liver Failure|| +000376|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis B|10019731|Hepatitis B reactivation|10058827|reactivation hepatitis b|C1142420|Hepatitis B reactivation|| +000377|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Infection reactivation|10070891|Infection reactivation|10070891|viral reactivation|C3160756|Infection reactivation|duplicate| +000378|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +000379|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +000380|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +000381|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +000382|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +000383|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +000384|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +000385|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +000386|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Viral infection|10047461|Viral infection|10047461|viral reactivation|C0042769|Virus Diseases|duplicate| +000387|03b39d40-90fe-11df-9de6-0002a5d5c51b|ISTODAX|43685-7|WARNINGS AND PRECAUTIONS|Viral test positive|10059424|Viral DNA test positive|10063306|reactivation of dna viruses|C1328457|Viral DNA test positive|| +000388|052bfe45-c485-49e5-8fc4-51990b2efba4|Ella|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Upper abdominal pain|10046272|upper abdominal pain|C0232492|Upper abdominal pain|| +000389|052bfe45-c485-49e5-8fc4-51990b2efba4|Ella|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +000390|052bfe45-c485-49e5-8fc4-51990b2efba4|Ella|34084-4|ADVERSE REACTIONS|Acne|10000496|Acne|10000496|acne|C0702166|Acne|| +000391|052bfe45-c485-49e5-8fc4-51990b2efba4|Ella|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +000392|052bfe45-c485-49e5-8fc4-51990b2efba4|Ella|34084-4|ADVERSE REACTIONS|Dysmenorrhoea|10013935|Dysmenorrhea|10013934|dysmenorrhea|C0013390|Dysmenorrhea|| +000393|052bfe45-c485-49e5-8fc4-51990b2efba4|Ella|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +000394|052bfe45-c485-49e5-8fc4-51990b2efba4|Ella|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +000395|052bfe45-c485-49e5-8fc4-51990b2efba4|Ella|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000396|052bfe45-c485-49e5-8fc4-51990b2efba4|Ella|43685-7|WARNINGS AND PRECAUTIONS|Ectopic pregnancy|10014166|Ectopic pregnancy|10014166|ectopic pregnancy|C0032987|Ectopic Pregnancy|| +000397|052bfe45-c485-49e5-8fc4-51990b2efba4|Ella|43685-7|WARNINGS AND PRECAUTIONS|Menstrual disorder|10027327|Menstrual disorder|10027327|alter the next expected menses|C3549779|Menstrual abnormalities|| +000398|052bfe45-c485-49e5-8fc4-51990b2efba4|Ella|43685-7|WARNINGS AND PRECAUTIONS|Menstruation delayed|10027336|Menses onset delayed|10027320|menses occur later|C0240322|Menstrual period late|| +000399|052bfe45-c485-49e5-8fc4-51990b2efba4|Ella|43685-7|WARNINGS AND PRECAUTIONS|Menstruation irregular|10027339|Irregular menstrual cycle|10022991|menses occurring earlier than expected|C0156404|Irregular periods|| +000400|052bfe45-c485-49e5-8fc4-51990b2efba4|Ella|43685-7|WARNINGS AND PRECAUTIONS|Metrorrhagia|10027514|Intermenstrual bleeding|10022559|intermenstrual bleeding|C0025874|Metrorrhagia|| +000401|052bfe45-c485-49e5-8fc4-51990b2efba4|Ella|43685-7|WARNINGS AND PRECAUTIONS|Oligomenorrhoea|10030295|Menstrual cycle prolonged|10050352|cycle length was increased|C0919662|Menstrual cycle prolonged|| +000402|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +000403|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +000404|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +000405|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Angina pectoris|10002383|Angina pectoris|10002383|angina pectoris|C0002962|Angina Pectoris|| +000406|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +000407|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Arrhythmia supraventricular|10003130|Arrhythmia supraventricular|10003130|supraventricular arrhythmia|C0428974|Supraventricular arrhythmia|| +000408|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Arrhythmia|10003119|Cardiac arrhythmia|10007518|rhythm abnormalities|C0003811|Cardiac Arrhythmia|| +000409|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation with rapid ventricular response|10058331|atrial fibrillation with rapid ventricular response recurrent|C1142306|Atrial fibrillation with rapid ventricular response|| +000410|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +000411|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Atrial flutter|10003662|Atrial flutter|10003662|atrial flutter|C0004239|Atrial Flutter|| +000412|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Atrioventricular block complete|10003673|Heart block third degree|10019271|heart block third-degree block|C0151517|Complete atrioventricular block|| +000413|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Atrioventricular block first degree|10003674|AV block first degree|10003850|first-degree av block|C0085614|First degree atrioventricular block|| +000414|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Atrioventricular block first degree|10003674|Atrioventricular conduction time prolonged|10003681|av conduction abnormalities|C4025244|Abnormal atrioventricular conduction|duplicate| +000415|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Atrioventricular block second degree|10003677|AV block second degree|10003851|second-degree av block|C0264906|Second degree atrioventricular block|| +000416|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Atrioventricular block|10003671|AV block|10003846|av block|C0004245|Atrioventricular Block|| +000417|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Atrioventricular block|10003671|Atrioventricular block|10003671|atrioventricular nodal block|C0004245|Atrioventricular Block|| +000418|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Atrioventricular block|10003671|Heart block|10019252|heart block|C0018794|Heart Block|| +000419|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Atrioventricular conduction time shortened|10068180|Atrioventricular conduction time shortened|10068180|av conduction abnormalities|C4025244|Abnormal atrioventricular conduction|duplicate| +000420|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Back pain|10003988|Low back pain|10024891|pain localized in the lower back|C0024031|Low Back Pain|| +000421|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Bronchospasm|10006482|Bronchoconstriction|10006464|bronchoconstriction|C0006266|Bronchial Spasm|| +000422|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Cardiac arrest|10007515|Asystole|10003586|asystole|C0018790|Cardiac Arrest|| +000423|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +000424|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Cerebrovascular accident|10008190|Cerebrovascular accident|10008190|cerebrovascular accident|C0038454|Cerebrovascular accident|| +000425|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +000426|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +000427|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +000428|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Conduction disorder|10010276|Conduction disorder|10010276|ventricular conduction abnormalities|C0232219|Abnormal cardiac conduction|| +000429|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Conduction disorder|10010276|Defect conduction (NOS)|10012117|conduction abnormalities|C0232219|Abnormal cardiac conduction|| +000430|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +000431|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +000432|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +000433|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Dyspnoea exertional|10013971|Dyspnea exertional|10013966|dyspnea exertional|C0231807|Dyspnea on exertion|| +000434|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +000435|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Electrocardiogram PR prolongation|10053657|PR prolongation|10036473|pr prolongation > 220 msec|C0600125|Prolonged PR interval|| +000436|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|qtc prolongation|C0855333|Electrocardiogram QT corrected interval prolonged|| +000437|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Electrocardiogram ST segment depression|10014391|ST segment depression|10041892|st segment depression|C0520887|ST segment depression (finding)|| +000438|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Faecal incontinence|10016092|Fecal incontinence|10016296|fecal incontinence|C0015732|Fecal Incontinence|| +000439|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Feeling hot|10016334|Feeling hot|10016334|feeling hot|C2939147|Feels hot|| +000440|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +000441|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Forced expiratory volume decreased|10016987|FEV 1 decreased|10016550|fev1 reduction|C0520837|Decreased forced expiratory volume|| +000442|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Haemorrhage intracranial|10018985|Intracranial hemorrhage|10022763|intracranial hemorrhage|C0151699|Intracranial Hemorrhages|| +000443|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +000444|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +000445|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +000446|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension symptomatic|10021105|symptomatic hypotension|C0863113|Hypotension symptomatic|| +000447|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +000448|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Buttock pain|10048677|pain extended to the buttocks bilaterally|C0231710|Pain in buttock|| +000449|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +000450|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgias|C0231528|Myalgia|| +000451|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +000452|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Myocardial ischaemia|10028600|Myocardial ischemia|10028601|myocardial ischemia|C0151744|Myocardial Ischemia|| +000453|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000454|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Obstructive airways disorder|10061877|Obstructive airways disorder|10061877|obstructive airway disorder|C0600260|Lung Diseases, Obstructive|| +000455|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Oxygen saturation decreased|10033318|Oxygen saturation decreased|10033318|decreased oxygen saturation|C0746961|Oxygen saturation below reference range|| +000456|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in arm|10033421|pain localized in the arms|C0239377|Arm Pain|| +000457|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pains in legs|10033522|pain extended to the lower legs bilaterally|C0023222|Pain in lower limb|| +000458|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +000459|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rashes|C0015230|Exanthema|| +000460|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Respiratory arrest|10038669|Respiratory arrest|10038669|respiratory arrest|C0162297|Respiratory arrest|| +000461|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Respiratory distress|10038687|Respiratory distress|10038687|respiratory distress|C0476273|Respiratory distress|| +000462|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Respiratory symptom|10075535|Respiratory symptom|10075535|respiratory adverse reactions|C0037090|Signs and Symptoms, Respiratory|| +000463|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +000464|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Seizure|10039906|Seizure|10039906|seizure|C0036572|Seizures|| +000465|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Sinoatrial block|10040736|Sinoatrial block|10040736|sinoatrial nodal block|C0037188|Sinoatrial Block|| +000466|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Supraventricular extrasystoles|10042602|Premature atrial contraction|10056964|pacs|C0033036|Atrial Premature Complexes|| +000467|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Supraventricular tachyarrhythmia|10065342|Supraventricular tachyarrhythmia|10065342|supraventricular tachyarrhythmias|C1698480|Supraventricular tachyarrhythmia|| +000468|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +000469|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Tachypnoea|10043089|Tachypnea|10043088|tachypnea|C0231835|Tachypnea|| +000470|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Throat tightness|10043528|Throat tightness|10043528|throat tightness|C0236071|Feeling of throat tightness|| +000471|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Transient ischaemic attack|10044390|Transient ischemic attack|10072760|transient ischemic attack|C0007787|Transient Ischemic Attack|| +000472|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +000473|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +000474|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Ventricular arrhythmia|10047281|Ventricular arrhythmia|10047281|ventricular arrhythmia|C0085612|Ventricular arrhythmia|| +000475|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Ventricular extrasystoles|10047289|Premature ventricular contractions|10036614|pvcs|C0151636|Premature ventricular contractions|| +000476|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +000477|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Wandering pacemaker|10047818|Wandering atrial pacemaker|10047817|wandering atrial pacemaker|C1321523|Ectopic atrial pacemaker|| +000478|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|34084-4|ADVERSE REACTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +000479|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +000480|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +000481|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Atrial fibrillation|10003658|Atrial fibrillation with rapid ventricular response|10058331|recurrent atrial fibrillation with rapid ventricular response|C1142306|Atrial fibrillation with rapid ventricular response|| +000482|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Atrial flutter|10003662|Atrial flutter|10003662|atrial flutter|C0004239|Atrial Flutter|| +000483|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block complete|10003671|Atrioventricular block complete|10003671|depress the av nodes|C3276314|Atrioventricular node dysfunction (in some patients)|| +000484|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block complete|10003673|Heart block third degree|10019271|third-degree heart block|C0151517|Complete atrioventricular block|| +000485|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block complete|10003673|Third degree AV block|10043440|third-degree av block|C0151517|Complete atrioventricular block|| +000486|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block first degree|10003674|AV block first degree|10003850|first degree av block|C0085614|First degree atrioventricular block|| +000487|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block second degree|10003677|AV block second degree|10003851|second degree av block|C0264906|Second degree atrioventricular block|| +000488|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure diastolic decreased|10005737|Blood pressure diastolic decreased|10005737|decreased diastolic blood pressure|C0277890|Decreased diastolic arterial pressure|| +000489|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|blood pressure increase|C0497247|Increase in blood pressure|| +000490|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure systolic decreased|10005758|Blood pressure systolic decreased|10005758|decreased systolic blood pressure|C0277885|Decreased systolic arterial pressure|| +000491|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Bronchospasm|10006482|Bronchoconstriction|10006464|bronchoconstriction|C0006266|Bronchial Spasm|| +000492|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Cardiac arrest|10007515|Asystole|10003586|asystole|C0018790|Cardiac Arrest|| +000493|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +000494|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiac events|C0741923|cardiac event|| +000495|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Central nervous system haemorrhages and cerebrovascular accidents|10007948|Central nervous system haemorrhages and cerebrovascular accidents|10007948|hemorrhagic cerebrovascular accidents|C0852393|Central nervous system haemorrhages and cerebrovascular accidents|HLT| +000496|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Cerebral ischaemia|10008120|Other generalized ischemic cerebrovascular disease|10032087|ischemic cerebrovascular accidents|C3272363|Ischemic Cerebrovascular Accident|| +000497|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Convulsive threshold lowered|10010927|Convulsive threshold lowered|10010927|lower the seizure threshold|C0234976|Lowered convulsive threshold|| +000498|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +000499|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +000500|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram PR prolongation|10053657|PR prolongation|10036473|pr prolongation > 220 msec|C0600125|Prolonged PR interval|| +000501|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Extrasystoles|10015856|Dropped beats|10013646|one dropped beat|C0425591|Dropped beats - heart|| +000502|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Haemodynamic instability|10052076|Hemodynamic instability|10058270|hemodynamic effects|C0948268|Hemodynamic instability|| +000503|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +000504|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +000505|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +000506|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +000507|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Oxygen saturation decreased|10033318|Oxygen saturation decreased|10033318|decreased oxygen saturation|C0746961|Oxygen saturation below reference range|| +000508|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rashes|C0015230|Exanthema|| +000509|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Respiratory arrest|10038669|Respiratory arrest|10038669|respiratory arrest|C0162297|Respiratory arrest|| +000510|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Respiratory distress|10038687|Respiratory distress|10038687|respiratory distress|C0476273|Respiratory distress|| +000511|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Respiratory failure|10038695|Respiratory insufficiency|10038701|respiratory compromise|C0035229|Respiratory Insufficiency|| +000512|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Convulsive seizure|10010926|new onset convulsive seizures|C0751494|Convulsive Seizures|| +000513|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Prolonged seizure|10076333|seizures prolonged|C3809175|Prolonged seizure|| +000514|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +000515|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Sinus bradycardia|10040741|Sinus bradycardia|10040741|sinus bradycardia|C0085610|Sinus bradycardia|| +000516|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Sinus node dysfunction|10075889|Sinoatrial node dysfunction|10040737|depress the sa nodes|C0428908|Sinus Node Dysfunction (disorder)|| +000517|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +000518|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Throat tightness|10043528|Throat tightness|10043528|throat tightness|C0236071|Feeling of throat tightness|| +000519|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Transient ischaemic attack|10044390|Transient ischemic attacks|10044391|transient ischemic attacks|C0007787|Transient Ischemic Attack|| +000520|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +000521|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Vasodilatation|10047141|Vasodilatation|10047141|arterial vasodilation|C0595862|Vasodilation disorder|| +000522|057289f4-2e18-4c1e-bed4-6c1858e2ef16|Lexiscan|43685-7|WARNINGS AND PRECAUTIONS|Ventricular arrhythmia|10047281|Ventricular arrhythmia|10047281|ventricular arrhythmias|C0085612|Ventricular arrhythmia|| +000523|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Abscess limb|10050473|Abscess limb|10050473|abscess limb|C0578455|Abscess of limb|| +000524|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +000525|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +000526|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +000527|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +000528|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|total bilirubin increased|C0741494|Elevated total bilirubin|| +000529|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +000530|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +000531|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Clostridium difficile colitis|10009657|Diarrhea, Clostridium difficile|10012734|clostridium difficile -associated diarrhea|C0235952|Clostridium difficile diarrhea|| +000532|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +000533|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +000534|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Eosinophilia|10014950|Eosinophilia|10014950|eosinophilia|C0014457|Eosinophilia|| +000535|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Erythema multiforme|10015218|Erythema multiforme|10015218|erythema multiforme|C0014742|Erythema Multiforme|| +000536|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Extravasation|10015866|Extravasation|10015866|extravasation|C0015376|Extravasation|| +000537|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +000538|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Hypersensitivity vasculitis|10020764|Leucocytoclastic vasculitis|10024278|leucocytoclastic vasculitis|C2973529|Leukocytoclastic vasculitis|| +000539|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +000540|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +000541|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Hyperuricaemia|10020903|Hyperuricemia|10020907|hyperuricemia|C0740394|Hyperuricemia|| +000542|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +000543|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Induration|10060708|Induration|10060708|induration|C0332534|Induration|| +000544|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion related reactions|C0948715|Infusion related reaction|| +000545|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Infusion site erythema|10048634|Infusion site erythema|10048634|infusion site erythema|C0877365|Infusion site erythema|| +000546|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Infusion site phlebitis|10053663|Infusion site phlebitis|10053663|infusion site phlebitis|C1096460|Infusion site phlebitis|| +000547|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Infusion site reaction|10054996|Infusion site reaction|10054996|infusion site reaction|C1096343|Infusion site reaction|| +000548|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +000549|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000550|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +000551|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Osteomyelitis|10031252|Osteomyelitis|10031252|osteomyelitis|C0029443|Osteomyelitis|| +000552|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritis|C0033774|Pruritus|| +000553|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +000554|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Subcutaneous abscess|10042343|Subcutaneous abscess|10042343|subcutaneous abscesses|C0241266|Subcutaneous Abscess|| +000555|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +000556|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Tenosynovitis|10043261|Tenosynovitis|10043261|tenosynovitis|C0039520|Tenosynovitis|| +000557|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +000558|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +000559|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|34084-4|ADVERSE REACTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +000560|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|Activated partial thromboplastin time prolonged|10000636|APTT prolonged|10003067|prolong aptt|C0240671|Partial thromboplastin time increased (finding)|| +000561|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|Clostridium difficile colitis|10009657|Clostridium difficile colitis|10009657|clostridium difficile -associated colitis|C0238106|Clostridium difficile colitis|| +000562|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|Clostridium difficile colitis|10009657|Diarrhea, Clostridium difficile|10012734|cdad|C0235952|Clostridium difficile diarrhea|| +000563|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|Coagulation time abnormal|10009791|Coagulation time abnormal|10009791|effects on act|C0549543|Coagulation time abnormal|| +000564|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +000565|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +000566|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +000567|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +000568|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +000569|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +000570|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|International normalised ratio increased|10022595|INR increased|10022402|prolong inr|C0853225|INR raised|| +000571|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|Osteomyelitis|10031252|Osteomyelitis|10031252|osteomyelitis|C0029443|Osteomyelitis|| +000572|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|Prothrombin time prolonged|10037063|PT prolonged|10037262|prolong pt|C0151872|Prothrombin time increased|| +000573|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +000574|085d6d1a-21c2-11e4-8c21-0800200c9a66|Orbactiv|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +000575|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +000576|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +000577|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +000578|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +000579|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +000580|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Autoimmune disorder|10061664|Autoimmune disorder|10061664|autoimmune disorders|C0004364|Autoimmune Diseases|| +000581|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Body temperature increased|10005911|Body temperature increased|10005911|body temperature increased|C0015967|Fever|| +000582|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Cardiac failure congestive|10007559|Congestive heart failure|10010684|congestive heart failure|C0018802|Congestive heart failure|| +000583|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +000584|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Completed suicide|10010144|Suicide|10042462|suicide|C0038661|Suicide|| +000585|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +000586|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Full blood count decreased|10017413|Full blood count decreased|10017413|decreased peripheral blood counts|C0853649|Full blood count decreased|| +000587|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|Gamma-glutamyltransferase increased|10017693|gamma-glutamyl-transferase increased|C0151662|Gamma-glutamyl transferase raised|| +000588|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +000589|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +000590|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Hyperthermia|10020843|Hyperthermia|10020843|hyperthermia|C0015967|Fever|| +000591|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Influenza like illness|10022004|Flu-like symptoms|10016797|flu-like symptoms|C0392171|Influenza-like symptoms|| +000592|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Influenza like illness|10022004|Influenza like illness|10022004|influenza like illness|C0521839|Influenza-like illness|| +000593|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +000594|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Injection site haematoma|10022066|Injection site hematoma|10055371|injection site hematoma|C0542008|Injection site haematoma|| +000595|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Injection site oedema|10022085|Injection site edema|10022058|injection site edema|C0151605|Injection site edema|| +000596|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +000597|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|injection site pruritus|C0852995|Injection site pruritus|| +000598|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Injection site rash|10022094|Injection site rash|10022094|injection site rash|C0521505|Injection site dermatitis|| +000599|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +000600|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Injection site warmth|10022112|Injection site warmth|10022112|injection site warmth|C0858934|Injection site warmth|| +000601|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Liver injury|10067125|Liver injury|10067125|hepatic injury|C0160390|Injury of liver|| +000602|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +000603|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000604|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Neutralising antibodies|10058063|Neutralizing antibodies|10058033|neutralizing antibodies|C1609515|Neutralising antibodies positive|| +000605|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +000606|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +000607|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +000608|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +000609|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +000610|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|elevations of alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +000611|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +000612|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +000613|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|elevations of aspartate aminotransferase|C0151904|Aspartate aminotransferase increased|| +000614|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune disorder|10061664|Autoimmune disorder|10061664|autoimmune disorders|C0004364|Autoimmune Diseases|| +000615|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune hepatitis|10003827|Autoimmune hepatitis|10003827|autoimmune hepatitis|C0241910|Hepatitis, Autoimmune|| +000616|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevated bilirubin|C0311468|Increased bilirubin level (finding)|| +000617|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure congestive|10007559|Congestive heart failure|10010684|congestive heart failure|C0018802|Congestive heart failure|| +000618|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Cardiomyopathy|10007636|Cardiomyopathy|10007636|cardiomyopathy|C0878544|Cardiomyopathies|| +000619|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular events|C1320716|Cardiovascular event|| +000620|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicide|C0038661|Suicide|| +000621|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +000622|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Full blood count decreased|10017413|Full blood count decreased|10017413|decreased peripheral blood counts|C0853649|Full blood count decreased|| +000623|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Hepatic enzyme increased|10060795|Hepatic enzyme increased|10060795|elevations in hepatic enzymes|C0235996|Elevated liver enzymes|| +000624|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +000625|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +000626|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +000627|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Hyperthyroidism|10020850|Hyperthyroidism|10020850|hyper thyroidism|C0020550|Hyperthyroidism|| +000628|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +000629|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Immune thrombocytopenic purpura|10074667|Idiopathic thrombocytopenia|10051057|idiopathic thrombocytopenia|C0920163|Idiopathic thrombocytopenia|| +000630|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +000631|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +000632|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Injection site necrosis|10022082|Injection site necrosis|10022082|injection site necrosis|C0151795|Injection site necrosis|| +000633|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Injection site oedema|10022085|Injection site edema|10022058|injection site edema|C0151605|Injection site edema|| +000634|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +000635|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|injection site pruritus|C0852995|Injection site pruritus|| +000636|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +000637|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Liver injury|10067125|Liver injury|10067125|hepatic injury|C0160390|Injury of liver|| +000638|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Lymphocyte count decreased|10025256|Lymphocyte count decreased|10025256|decreases in lymphocyte counts|C0853986|Lymphocyte count decreased|| +000639|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +000640|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|decreases in neutrophil counts|C0853697|Neutrophil count decreased|| +000641|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Neutrophil count decreased|10029366|Neutrophil count low|10029369|neutrophil count less than or equal to 0.5 x 10 9 /l|C0853697|Neutrophil count decreased|| +000642|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +000643|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Platelet count decreased|10035528|Low platelets|10024922|platelet count less than or equal to 10 x 10 9 /l|C0392386|Decreased platelet count|| +000644|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|decreases in platelet counts|C0392386|Decreased platelet count|| +000645|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +000646|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +000647|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +000648|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevations of serum hepatic transaminases|C1848701|Elevated hepatic transaminases|| +000649|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +000650|08f0ea03-4e6d-195d-aef4-886e32befa95|Plegridy|43685-7|WARNINGS AND PRECAUTIONS|White blood cell count decreased|10047942|White blood cell count decreased|10047942|decreases in white blood cell counts|C0750394|White blood cell count decreased|| +000651|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +000652|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +000653|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Blood triglycerides increased|10005839|Blood triglycerides increased|10005839|increased blood triglycerides|C0853692|Blood triglycerides increased|| +000654|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +000655|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +000656|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +000657|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +000658|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +000659|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Ileus|10021328|Ileus|10021328|ileus|C1258215|Ileus|| +000660|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +000661|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000662|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Oxygen saturation decreased|10033318|Oxygen saturation decreased|10033318|decreased oxygen saturation|C0746961|Oxygen saturation below reference range|| +000663|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +000664|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Reflex tachycardia|10063096|reflex tachycardia|C1328539|Reflex tachycardia|| +000665|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Ventilation perfusion mismatch|10069675|Intrapulmonary shunt|10072687|pulmonary shunting|C0489642|Intrapulmonary shunt|| +000666|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +000667|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Cardiac failure aggravated|10007557|exacerbate heart failure|C0235875|Cardiac failure aggravated||DrugClass +000668|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +000669|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|43685-7|WARNINGS AND PRECAUTIONS|Negative cardiac inotropic effect|10049671|Negative cardiac inotropic effect|10049671|negative inotropic effects|C0877281|Negative cardiac inotropic effect||DrugClass +000670|095081a0-1398-11dc-82e1-0002a5d5c51b|Cleviprex|43685-7|WARNINGS AND PRECAUTIONS|Tachycardia|10043071|Reflex tachycardia|10063096|reflex tachycardia|C1328539|Reflex tachycardia|| +000671|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|deaths|C1306577|Death (finding)||Animal +000672|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34066-1|BOXED WARNINGS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration||Animal +000673|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +000674|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Abdominal pain lower|10000084|Lower abdominal pain|10024940|lower abdominal pain|C0232495|Lower abdominal pain|| +000675|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Upper abdominal pain|10046272|upper abdominal pain|C0232492|Upper abdominal pain|| +000676|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +000677|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +000678|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +000679|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +000680|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Faecal incontinence|10016092|Fecal incontinence|10016296|fecal incontinence|C0015732|Fecal Incontinence|| +000681|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +000682|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +000683|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Gastroenteritis viral|10017918|Viral gastroenteritis|10047445|viral gastroenteritis|C0152517|Enteritis due to specified virus|| +000684|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gi adverse reactions|C0426576|Gastrointestinal symptom|| +000685|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +000686|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Haematochezia|10018836|Hematochezia|10060544|hematochezia|C0018932|Hematochezia|| +000687|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +000688|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +000689|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Melaena|10027141|Melena|10027162|melena|C0025222|Melena|| +000690|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Rectal haemorrhage|10038063|Rectal hemorrhage|10038064|rectal hemorrhage|C0267596|Rectal hemorrhage|| +000691|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +000692|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +000693|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Hives|10020197|hives|C0042109|Urticaria|| +000694|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +000695|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +000696|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|deaths|C1306577|Death (finding)||Animal +000697|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|43685-7|WARNINGS AND PRECAUTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration||Animal +000698|09beda19-56d6-4a56-afdc-9a77b70b2ef3|Linzess|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +000699|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Upper abdominal pain|10046272|upper abdominal pain|C0232492|Upper abdominal pain|| +000700|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Aggression|10001488|Aggression|10001488|aggression|C0001807|Aggressive behavior|| +000701|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +000702|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +000703|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Ataxia|10003591|Ataxia|10003591|ataxia|C0004134|Ataxia|| +000704|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Atrioventricular block first degree|10003674|Atrioventricular block first degree|10003674|atrioventricular block first degree|C0085614|First degree atrioventricular block|| +000705|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +000706|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +000707|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Bundle branch block right|10006582|Bundle branch block right|10006582|bundle branch block right|C0085615|Right bundle branch block|| +000708|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +000709|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +000710|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +000711|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +000712|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Disturbance in attention|10013496|Disturbance in attention|10013496|disturbance in attention|C0233414|Disturbance of attention|| +000713|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +000714|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress|C3541994|Drug Hypersensitivity Syndrome|| +000715|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug reaction with eosinophilia and systemic symptoms|10073508|multi-organ hypersensitivity|C3541994|Drug Hypersensitivity Syndrome|| +000716|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +000717|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Dysuria|10013990|Dysuria|10013990|dysuria|C0013428|Dysuria|| +000718|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Ear infection|10014011|Ear infection|10014011|ear infection|C0699744|Infection of ear|| +000719|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Electrocardiogram QT shortened|10014388|QT shortened|10037706|qt shortening|C0151879|Shortened QT interval|| +000720|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Enuresis|10014928|Enuresis|10014928|enuresis|C0014394|Enuresis|| +000721|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +000722|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Gait disturbance|10017577|gait disturbance|C0575081|Gait abnormality|| +000723|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Gastroenteritis|10017888|Gastroenteritis|10017888|gastroenteritis|C0017160|Gastroenteritis|| +000724|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +000725|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +000726|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Incontinence|10021639|Incontinence|10021639|incontinence|C0021167|Incontinence|| +000727|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Increased appetite|10021654|Increased appetite|10021654|increased appetite|C0232461|Increased appetite (finding)|| +000728|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +000729|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Iron deficiency anaemia|10022972|Iron deficiency anemia|10022974|iron deficiency anemia|C0162316|Iron deficiency anemia|| +000730|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +000731|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Lymphadenopathy|10025197|Lymphadenopathy|10025197|lymphadenopathy|C0497156|Lymphadenopathy|| +000732|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Nasal congestion|10028735|Nasal congestion|10028735|nasal congestion|C0027424|Nasal congestion (finding)|| +000733|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +000734|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000735|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Nephrolithiasis|10029148|Nephrolithiasis|10029148|nephrolithiasis|C0392525|Nephrolithiasis|| +000736|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +000737|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Nocturia|10029446|Nocturia|10029446|nocturia|C0028734|Nocturia|| +000738|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Nystagmus|10029864|Nystagmus|10029864|nystagmus|C0028738|Nystagmus|| +000739|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Otitis media|10033078|Otitis media|10033078|otitis media|C0029882|Otitis Media|| +000740|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Pneumonia aspiration|10035669|Pneumonia aspiration|10035669|pneumonia aspiration|C0032290|Aspiration Pneumonia|| +000741|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +000742|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Pollakiuria|10036018|Pollakiuria|10036018|pollakiuria|C0042023|Increased frequency of micturition|| +000743|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Polyuria|10036142|Polyuria|10036142|polyuria|C0032617|Polyuria|| +000744|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Post procedural complication|10058046|Central nervous system complication, not elsewhere classified|10007937|central nervous system reactions|C0161815|Central nervous system complication|| +000745|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritis|C0033774|Pruritus|| +000746|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Psychomotor hyperactivity|10037211|Psychomotor hyperactivity|10037211|psychomotor hyperactivity|C3887612|Psychomotor Agitation|| +000747|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +000748|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Rash|10037844|Skin rash|10040913|skin rashes|C0015230|Exanthema|| +000749|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsion|10010904|convulsion|C0036572|Seizures|| +000750|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +000751|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +000752|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +000753|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +000754|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +000755|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +000756|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +000757|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Urinary incontinence|10046543|Urinary incontinence|10046543|urinary incontinence|C0042024|Urinary Incontinence|| +000758|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +000759|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +000760|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +000761|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +000762|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|decreased weight|C1262477|Weight decreased|| +000763|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Ataxia|10003591|Ataxia|10003591|ataxia|C0004134|Ataxia|| +000764|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicides|C0038661|Suicide|| +000765|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Coordination abnormal|10010947|Coordination abnormal|10010947|coordination abnormalities|C0520966|Abnormal coordination|| +000766|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +000767|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +000768|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress|C3541994|Drug Hypersensitivity Syndrome|| +000769|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug reaction with eosinophilia and systemic symptoms|10073508|drug reaction with eosinophilia and systemic symptoms|C3541994|Drug Hypersensitivity Syndrome|| +000770|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT shortened|10014388|QT interval shortened|10037704|shortening of the qt interval|C0151879|Shortened QT interval|| +000771|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT shortened|10014388|QT shortened|10037706|qt shortening|C0151879|Shortened QT interval|| +000772|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +000773|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Gait disturbance|10017577|Gait disturbance|10017577|gait disturbances|C0575081|Gait abnormality|| +000774|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +000775|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Post procedural complication|10058046|Central nervous system complication, not elsewhere classified|10007937|central nervous system-related adverse reactions|C0161815|Central nervous system complication|| +000776|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +000777|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Status epilepticus|10041962|Status epilepticus|10041962|status epilepticus|C0038220|Status Epilepticus|| +000778|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +000779|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thoughts|C0424000|Feeling suicidal (finding)|| +000780|0a3fa925-1abd-458a-bd57-4ae780a1ef2d|Banzel|43685-7|WARNINGS AND PRECAUTIONS|White blood cell count decreased|10047942|White blood cell count decreased|10047942|reduce white cell count|C0750394|White blood cell count decreased|| +000781|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +000782|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Acne|10000496|Acne|10000496|acne|C0702166|Acne|| +000783|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt >8 * uln|C0151905|Alanine aminotransferase increased|| +000784|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +000785|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast levels >8 * uln|C0151904|Aspartate aminotransferase increased|| +000786|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +000787|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Bacterial test positive|10059421|Bacteria sputum identified|10061673|bacteria in sputum|C0855270|Bacteria sputum identified|| +000788|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Blood glucose increased|10005557|blood glucose increased|C0595877|Blood glucose increased|| +000789|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +000790|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +000791|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +000792|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Hepatic enzyme increased|10060795|hepatic enzyme increased|C0235996|Elevated liver enzymes|| +000793|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +000794|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Musculoskeletal chest pain|10050819|Musculoskeletal chest pain|10050819|musculoskeletal chest pain|C0476280|Musculoskeletal chest pain|| +000795|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +000796|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Nasal congestion|10028735|Nasal congestion|10028735|nasal congestion|C0027424|Nasal congestion (finding)|| +000797|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +000798|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000799|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +000800|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Pharyngeal erythema|10057009|Pharyngeal erythema|10057009|pharyngeal erythema|C0455899|Red throat|| +000801|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Pleuritic pain|10035623|Pleuritic pain|10035623|pleuritic pain|C0008033|Pleuritic pain|| +000802|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +000803|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +000804|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Sinus congestion|10040742|Sinus congestion|10040742|sinus congestion|C0152029|Congestion of nasal sinus|| +000805|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Sinus headache|10040744|Sinus headache|10040744|sinus headache|C0037195|Sinus headache|| +000806|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevated transaminases|C0438717|Transaminases increased|| +000807|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +000808|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|34084-4|ADVERSE REACTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +000809|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevated alt|C0151905|Alanine aminotransferase increased|| +000810|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|elevated ast|C0151904|Aspartate aminotransferase increased|| +000811|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|43685-7|WARNINGS AND PRECAUTIONS|Cataract|10007739|Cataracts|10007771|cataracts|C0086543|Cataract|| +000812|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|43685-7|WARNINGS AND PRECAUTIONS|Cataract|10007739|Cataract|10007739|non-congenital cataracts|C0086543|Cataract|| +000813|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|43685-7|WARNINGS AND PRECAUTIONS|Lenticular opacities|10024214|Lenticular opacities|10024214|non-congenital lens opacities|C1510497|Lens Opacities|| +000814|0ab0c9f8-3eee-4e0f-9f3f-c1e16aaffe25|Kalydeco|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevated transaminases|C0438717|Transaminases increased|| +000815|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Stomach discomfort|10042101|stomach discomfort|C0235309|Upset stomach|| +000816|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +000817|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Upper abdominal pain|10046272|upper abdominal pain|C0232492|Upper abdominal pain|| +000818|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +000819|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis|| +000820|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increases of alt|C0151905|Alanine aminotransferase increased|| +000821|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +000822|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +000823|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increases of ast|C0151904|Aspartate aminotransferase increased|| +000824|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +000825|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|bilirubin increased|C0311468|Increased bilirubin level (finding)|| +000826|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +000827|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +000828|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +000829|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +000830|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +000831|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +000832|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +000833|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal disorder|10017944|gastrointestinal disorders|C0017178|Gastrointestinal Diseases|| +000834|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastro-esophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +000835|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +000836|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|liver enzyme elevations|C0235996|Elevated liver enzymes|| +000837|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +000838|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000839|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Non-cardiac chest pain|10062501|Non-cardiac chest pain|10062501|non-cardiac chest pain|C0476281|Non-cardiac chest pain|| +000840|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Photosensitivity reaction|10034972|Photosensitivity reaction|10034972|photosensitivity reaction|C0162830|Dermatitis, Phototoxic|| +000841|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +000842|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +000843|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +000844|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +000845|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +000846|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +000847|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|43685-7|WARNINGS AND PRECAUTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +000848|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increases in alt|C0151905|Alanine aminotransferase increased|| +000849|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|elevations in ast|C0151904|Aspartate aminotransferase increased|| +000850|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|bilirubin elevations|C0311468|Increased bilirubin level (finding)|| +000851|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +000852|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|43685-7|WARNINGS AND PRECAUTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +000853|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal events|C0426576|Gastrointestinal symptom|| +000854|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|43685-7|WARNINGS AND PRECAUTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastro-esophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +000855|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000856|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|43685-7|WARNINGS AND PRECAUTIONS|Photosensitivity reaction|10034972|Photosensitivity reaction|10034972|photosensitivity reactions|C0162830|Dermatitis, Phototoxic|| +000857|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|43685-7|WARNINGS AND PRECAUTIONS|Photosensitivity reaction|10034972|Photosensitivity|10034966|photosensitivity|C0349506|Photosensitivity of skin|| +000858|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +000859|0ab861c2-d5ca-4f92-854c-6477971a1b38|Esbriet|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +000860|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34066-1|BOXED WARNINGS|Blindness|10005169|Vision loss|10047522|vision loss|C3665386|Abnormal vision|| +000861|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34066-1|BOXED WARNINGS|Retinal degeneration|10038845|Retinal pigment degeneration|10038892|retinal pigmentary abnormalities|C0151891|Retinal depigmentation|| +000862|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34066-1|BOXED WARNINGS|Retinal disorder|10038853|Retinal disorder|10038853|retinal abnormalities|C0035300|Abnormality of the retina|| +000863|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34066-1|BOXED WARNINGS|Retinal dystrophy|10038857|Pigmentary retinal dystrophy|10035017|retinal abnormalities similar to retinal pigment dystrophies|C0854723|Retinal Dystrophies|| +000864|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34066-1|BOXED WARNINGS|Retinal injury|10057430|Retinal damage|10038841|damage to the photoreceptors|C0235272|Retinal damage|| +000865|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34066-1|BOXED WARNINGS|Visual acuity reduced|10047531|Visual acuity reduced|10047531|abnormal visual acuity|C0234632|Reduced visual acuity|| +000866|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +000867|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Amnesia|10001949|Amnesia|10001949|amnesia|C0002622|Amnesia|| +000868|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +000869|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Aphasia|10002948|Aphasia|10002948|aphasia|C0003537|Aphasia|| +000870|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Aphasia|10002948|Dysphasia|10013951|dysphasia|C0973461|Dysphasia|| +000871|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +000872|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Balance disorder|10049848|Balance disorder|10049848|balance disorder|C0575090|Equilibration disorder|| +000873|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Blindness|10005169|Vision loss|10047522|vision loss|C3665386|Abnormal vision|| +000874|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Chromaturia|10008796|Chromaturia|10008796|chromaturia|C0541832|Chromaturia|| +000875|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Coma|10010071|Coma|10010071|coma|C0009421|Comatose|| +000876|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +000877|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +000878|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Coordination abnormal|10010947|Coordination abnormal|10010947|abnormal coordination|C0520966|Abnormal coordination|| +000879|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +000880|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Disorientation|10013395|Disorientation|10013395|disorientation|C0233407|Disorientation|| +000881|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Disturbance in attention|10013496|Disturbance in attention|10013496|disturbance in attention|C0233414|Disturbance of attention|| +000882|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +000883|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Drug withdrawal convulsions|10013752|Withdrawal seizures|10048009|withdrawal seizures|C0235097|Withdrawal seizures|| +000884|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +000885|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +000886|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +000887|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +000888|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +000889|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Dysuria|10013990|Dysuria|10013990|dysuria|C0013428|Dysuria|| +000890|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|QT interval prolonged|10037703|qt interval effect|C0151878|Prolonged QT interval|| +000891|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Encephalopathy|10014625|Encephalopathy|10014625|encephalopathy|C0085584|Encephalopathies|| +000892|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Euphoric mood|10015535|Euphoric mood|10015535|euphoric mood|C0235146|Euphoric mood|| +000893|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +000894|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Gait disturbance|10017577|gait disturbance|C0575081|Gait abnormality|| +000895|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +000896|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Hallucination|10019063|Hallucinations|10019077|hallucinations|C0018524|Hallucinations|| +000897|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|increased liver enzymes|C0235996|Elevated liver enzymes|| +000898|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhydrosis|C0020458|Hyperhidrosis disorder|| +000899|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Hypokinesia|10021021|Hypokinesia|10021021|hypokinesia|C0086439|Hypokinesia|| +000900|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Increased appetite|10021654|Increased appetite|10021654|increased appetite|C0232461|Increased appetite (finding)|| +000901|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +000902|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +000903|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +000904|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Memory impairment|10027175|Memory impairment|10027175|memory impairment|C0233794|Memory impairment|| +000905|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasm|10028333|muscle spasm|C0037763|Spasm|| +000906|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Myoclonus|10028622|Myoclonus|10028622|myoclonus|C0027066|Myoclonus|| +000907|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000908|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Nephrolithiasis|10029148|Nephrolithiasis|10029148|nephrolithiasis|C0392525|Nephrolithiasis|| +000909|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +000910|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Nystagmus|10029864|Nystagmus|10029864|nystagmus|C0028738|Nystagmus|| +000911|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +000912|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +000913|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Psychotic disorder|10061920|Psychotic disorder|10061920|psychotic disorder|C0033975|Psychotic Disorders|| +000914|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +000915|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Renal colic|10038419|Renal colic|10038419|renal colic|C0152169|Renal Colic|| +000916|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Retinal disorder|10038853|Retinal disorder|10038853|retinal abnormalities|C0035300|Abnormality of the retina|| +000917|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Skin discolouration|10040829|Skin discoloration|10040828|skin discoloration|C0151907|Discoloration of skin|| +000918|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +000919|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +000920|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +000921|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +000922|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +000923|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +000924|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Urinary hesitation|10046542|Urinary hesitation|10046542|urinary hesitation|C0152032|Urinary hesitation|| +000925|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Urinary retention|10046555|Urinary retention|10046555|urinary retention|C0080274|Urinary Retention|| +000926|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +000927|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +000928|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight gain|10047896|weight gain|C0043094|Weight Gain|| +000929|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +000930|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|34084-4|ADVERSE REACTIONS|||||neuropsychiatric symptoms|C3534763|One or more neuropsychiatric symptoms|unmapped| +000931|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Angiogram abnormal|10060956|Fluorescein angiography abnormal|10016813|abnormal fluorescein angiography|C0861125|Fluorescein angiography abnormal|| +000932|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Blindness|10005169|Vision loss|10047522|vision loss|C3665386|Abnormal vision|| +000933|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicides|C0038661|Suicide|| +000934|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +000935|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Conjunctival discolouration|10010712|Conjunctival discoloration|10010711|discoloration of the conjunctiva|C0235979|Conjunctival discoloration|| +000936|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +000937|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Dysuria|10013990|Dysuria|10013990|dysuria|C0013428|Dysuria|| +000938|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +000939|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Electrooculogram abnormal|10014456|Electrooculogram abnormal|10014456|abnormalities in electrooculogram|C0159104|Electrooculogram abnormal|| +000940|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Hallucination, auditory|10019070|Auditory hallucinations|10003785|auditory hallucinations|C0233762|Hallucinations, Auditory|| +000941|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Hallucination, visual|10019075|Visual hallucinations|10047570|visual hallucinations|C0233763|Hallucinations, Visual|| +000942|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Hallucinations, mixed|10019079|Hallucinations, mixed|10019079|mixed hallucinations|C0855223|Hallucinations, mixed|| +000943|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Hallucination|10019063|Hallucinations|10019077|hallucinations|C0018524|Hallucinations|| +000944|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Hydronephrosis|10020524|Hydronephrosis|10020524|hydronephrosis|C0020295|Hydronephrosis|| +000945|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Lip discolouration|10024549|Lip discoloration|10055532|lip discoloration|C0854373|Lip discolouration|| +000946|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Mucosal discolouration|10054877|Mucosal discoloration|10054905|mucous membrane discoloration|C1096311|Mucosal discolouration|| +000947|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Nail discolouration|10028692|Nail discoloration|10028691|nail discoloration|C0221345|Nail discoloration|| +000948|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Oral mucosal discolouration|10030996|Oral mucosal discoloration|10066247|discoloration of the palate|C0853939|Oral mucosal discolouration|| +000949|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Psychiatric symptom|10061472|Psychiatric symptom|10061472|psychiatric symptoms|C0233401|Psychiatric symptom|| +000950|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Psychotic behaviour|10037249|Psychotic behavior|10067568|psychotic symptoms|C0871189|Psychotic symptom|| +000951|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Psychotic disorder|10061920|Psychosis|10037234|psychosis|C0033975|Psychotic Disorders|| +000952|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Impaired renal function|10021523|renal function impairment|C1565489|Renal Insufficiency|| +000953|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Retinal degeneration|10038845|Retinal pigment clumping|10062964|focal retinal pigment epithelium clumping|C1328514|Pigmentary retinal deposits|| +000954|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Retinal degeneration|10038845|Retinal pigment degeneration|10038892|retinal pigmentary abnormalities|C0151891|Retinal depigmentation|| +000955|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Retinal disorder|10038853|Retinal disorder|10038853|retinal abnormalities|C0035300|Abnormality of the retina|| +000956|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Retinal disorder|10038853|Unspecified retinal disorder|10046146|abnormalities of the retina|C0035300|Abnormality of the retina|| +000957|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Retinal dystrophy|10038857|Pigmentary retinal dystrophy|10035017|funduscopic features similar to retinal pigment dystrophies|C0854723|Retinal Dystrophies|| +000958|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Retinal dystrophy|10038857|Retinal dystrophy|10038857|retinal dystrophy|C0854723|Retinal Dystrophies|| +000959|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Retinal injury|10057430|Retinal damage|10038841|damage to photoreceptors|C0235272|Retinal damage|| +000960|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Retinal pigmentation|10038894|Pigmentation retinal|10035027|perivascular pigmentation in the retinal periphery|C3552986|Pigmentation in retinal periphery|underspecified| +000961|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Retinogram abnormal|10059663|Electroretinogram abnormal|10052533|abnormalities in the electroretinogram|C0476397|Electroretinogram abnormal|| +000962|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Scleral discolouration|10039696|Scleral discoloration|10055535|discoloration of the sclera|C0235980|Scleral discoloration|| +000963|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Skin discolouration|10040829|Skin discoloration|10040828|skin discoloration|C0151907|Discoloration of skin|| +000964|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Skin texture abnormal|10075267|Skin texture abnormal|10075267|skin abnormalities|C0037268|Skin Abnormalities|| +000965|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +000966|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +000967|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thinking|C0424000|Feeling suicidal (finding)|| +000968|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Urinary hesitation|10046542|Urinary hesitation|10046542|urinary hesitation|C0152032|Urinary hesitation|| +000969|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Urinary retention|10046555|Urinary retention|10046555|urinary retention|C0080274|Urinary Retention|| +000970|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Visual acuity reduced|10047531|Visual acuity decreased|10049061|decreased visual acuity|C0234632|Reduced visual acuity|| +000971|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Visual acuity reduced|10047531|Visual acuity reduced|10047531|abnormal visual acuity|C0234632|Reduced visual acuity|| +000972|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|Visual field defect|10047555|Visual field defect|10047555|diminished sensitivity on visual field|C3887875|Visual field defects|| +000973|0c60979b-489d-4e7b-8893-468ae00c44bb|POTIGA|43685-7|WARNINGS AND PRECAUTIONS|||||neuropsychiatric symptoms|C3534763|One or more neuropsychiatric symptoms|unmapped| +000974|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +000975|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +000976|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +000977|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +000978|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +000979|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Cyanosis|10011703|Cyanosis|10011703|cyanosis|C0010520|Cyanosis|| +000980|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +000981|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +000982|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +000983|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal symptoms|C0426576|Gastrointestinal symptom|| +000984|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +000985|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000986|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +000987|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Retching|10038776|Retching|10038776|retching|C0232602|Retching|| +000988|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Throat tightness|10043528|Throat tightness|10043528|throat tightness|C0236071|Feeling of throat tightness|| +000989|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +000990|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34066-1|BOXED WARNINGS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +000991|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +000992|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +000993|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +000994|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +000995|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +000996|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +000997|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +000998|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +000999|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +001000|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +001001|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +001002|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +001003|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +001004|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +001005|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Cyanosis|10011703|Cyanosis|10011703|cyanosis|C0010520|Cyanosis|| +001006|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +001007|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +001008|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +001009|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal symptoms|C0426576|Gastrointestinal symptom|| +001010|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +001011|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +001012|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +001013|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +001014|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +001015|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Post procedural complication|10058046|Respiratory complications, not elsewhere classified|10038671|acute respiratory complications|C0161818|Respiratory complication|| +001016|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +001017|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Retching|10038776|Retching|10038776|retching|C0232602|Retching|| +001018|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Throat tightness|10043528|Throat tightness|10043528|throat tightness|C0236071|Feeling of throat tightness|| +001019|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +001020|0caa2565-12b2-0ad0-1f9a-273e81c3d4cc|VIMIZIM|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +001021|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +001022|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +001023|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Anaphylactic shock|10002199|Anaphylactic shock|10002199|anaphylactic shock|C0002792|anaphylaxis|| +001024|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +001025|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +001026|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +001027|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Arthropathy|10003285|Arthropathy|10003285|arthropathy|C0022408|Arthropathy|| +001028|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +001029|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +001030|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|increases in creatinine|C0151578|Creatinine increased|| +001031|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Blood uric acid increased|10005861|Uric acid increased|10066980|elevated uric acid levels|C1868912|Uric acid increased|| +001032|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +001033|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +001034|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Contusion|10050584|Bruising|10006504|bruising|C0009938|Contusions|| +001035|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Contusion|10050584|Contusion|10050584|contusion|C0009938|Contusions|| +001036|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +001037|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Cytopenia|10066274|Cytopenia|10066274|cytopenias|C0010828|Cytopenia|| +001038|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +001039|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +001040|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +001041|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +001042|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +001043|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +001044|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +001045|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +001046|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +001047|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +001048|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decrease of hemoglobin|C0162119|Hemoglobin low|| +001049|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hemoglobin decreased|C0162119|Hemoglobin low|| +001050|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +001051|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +001052|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +001053|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +001054|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Hyperuricaemia|10020903|Hyperuricemia|10020907|hyperuricemia|C0740394|Hyperuricemia|| +001055|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +001056|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +001057|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Laceration|10023572|Laceration|10023572|laceration|C0043246|Laceration|| +001058|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +001059|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +001060|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +001061|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +001062|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +001063|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|neutrophils decreased|C0853697|Neutrophil count decreased|| +001064|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +001065|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +001066|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Petechiae|10034754|Petechiae|10034754|petechiae|C0031256|Petechiae|| +001067|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelets decreased|10035545|platelets decreased|C0392386|Decreased platelet count|| +001068|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +001069|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +001070|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +001071|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +001072|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +001073|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Second primary malignancy|10039801|Second primary malignancy|10039801|second primary malignancies|C0751623|Second Primary Cancers|| +001074|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +001075|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Skin cancer|10040808|Skin cancer|10040808|skin cancer|C0007114|Malignant neoplasm of skin|| +001076|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Skin infection|10040872|Skin infection|10040872|skin infections|C0037278|Skin Diseases, Infectious|| +001077|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +001078|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Subdural haematoma|10042361|Subdural hematoma|10042380|subdural hematomas|C0018946|Hematoma, Subdural|| +001079|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +001080|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +001081|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +001082|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +001083|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +001084|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +001085|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +001086|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +001087|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +001088|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Atrial flutter|10003662|Atrial flutter|10003662|atrial flutter|C0004239|Atrial Flutter|| +001089|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Contusion|10050584|Bruising|10006504|bruising|C0009938|Contusions|| +001090|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Cytopenia|10066274|Cytopenia|10066274|cytopenias|C0010828|Cytopenia|| +001091|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +001092|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +001093|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Foetal growth restriction|10070531|Fetal growth restriction|10070532|reduced fetal weights|C0015934|Fetal Growth Retardation|| +001094|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Foetal malformation|10060919|Fetal malformation|10060920|malformations|C0000768|Congenital Abnormality||Animal +001095|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal bleeding|10017936|gastrointestinal bleeding|C0017181|Gastrointestinal Hemorrhage|| +001096|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +001097|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +001098|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +001099|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +001100|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +001101|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Carcinoma|10007284|carcinomas|C0007097|Carcinoma|| +001102|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +001103|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +001104|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Petechiae|10034754|Petechiae|10034754|petechiae|C0031256|Petechiae|| +001105|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Post procedural haemorrhage|10051077|Post procedural hemorrhage|10055320|post procedural hemorrhage|C0919874|Post procedural hemorrhage|| +001106|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|pml|C0023524|Leukoencephalopathy, Progressive Multifocal|| +001107|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Second primary malignancy|10039801|Second primary malignancy|10039801|second primary malignancy|C0751623|Second Primary Cancers|| +001108|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Skin cancer|10040808|Cancer of skin (excl melanoma)|10007116|non-melanoma skin cancer|C0699893|Skin carcinoma|| +001109|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Skin cancer|10040808|Skin cancer|10040808|skin cancers|C0007114|Malignant neoplasm of skin|| +001110|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Subdural haematoma|10042361|Subdural hematoma|10042380|subdural hematoma|C0018946|Hematoma, Subdural|| +001111|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +001112|0dfd0279-ff17-4ea9-89be-9803c71bab44|IMBRUVICA|43685-7|WARNINGS AND PRECAUTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tls|C0041364|Tumor Lysis Syndrome|| +001113|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +001114|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +001115|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +001116|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +001117|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +001118|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +001119|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Ear infection|10014011|Ear infection|10014011|ear infection|C0699744|Infection of ear|| +001120|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hemoglobin decreased|C0162119|Hemoglobin low|| +001121|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +001122|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +001123|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infection|C3714514|Infection|| +001124|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +001125|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +001126|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +001127|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +001128|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +001129|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +001130|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Tonsillitis|10044008|Tonsillitis|10044008|tonsilitis|C0040425|Tonsillitis|| +001131|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +001132|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +001133|10175e73-5172-4dde-a508-8a88b7afc0a1|Carbaglu|43685-7|WARNINGS AND PRECAUTIONS|Hyperammonaemia|10020575|Hyperammonemia|10020576|hyperammonemia|C0220994|Hyperammonemia|| +001134|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|increased mortality|C1306577|Death (finding)|| +001135|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34066-1|BOXED WARNINGS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QT prolonged|10014387|additive qt prolongation|C0151878|Prolonged QT interval|| +001136|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34066-1|BOXED WARNINGS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +001137|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase 3 times the upper limit of normal|C0151905|Alanine aminotransferase increased|| +001138|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34084-4|ADVERSE REACTIONS|Amylase increased|10002016|Blood amylase increased|10005328|blood amylase increased|C0852913|Blood amylase increased|| +001139|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +001140|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase 3 times the upper limit of normal|C0151904|Aspartate aminotransferase increased|| +001141|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +001142|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +001143|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +001144|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +001145|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34084-4|ADVERSE REACTIONS|Haemoptysis|10018964|Hemoptysis|10019523|hemoptysis|C0019079|Hemoptysis|| +001146|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +001147|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +001148|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +001149|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +001150|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminases increased|C0438717|Transaminases increased|| +001151|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +001152|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT interval prolonged|10037703|prolongs the qt interval|C0151878|Prolonged QT interval|| +001153|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +001154|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|43685-7|WARNINGS AND PRECAUTIONS|Hepatic function abnormal|10019670|Hepatic function abnormal|10019670|hepatic-related adverse reactions|C0086565|Liver Dysfunction|| +001155|1534c9ae-4948-4cf4-9f66-222a99db6d0e|SIRTURO|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +001156|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Erythema of eyelid|10015237|Erythema of eyelid|10015237|erythema of eyelid|C0239454|Eyelid erythema|| +001157|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Eye discharge|10015915|Eye discharge|10015915|eye discharge|C0423006|Discharge from eye|| +001158|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Eye irritation|10015946|Burning sensation in eye|10006786|eye burning upon instillation|C0234655|Burning sensation in eye|duplicate| +001159|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Eye irritation|10015946|Eye irritation|10015946|eye irritation|C0235266|Eye irritation|| +001160|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Eye pain|10015958|Stinging sensation in eyes|10042068|eye stinging on instillation|C0863079|Ocular stinging|duplicate| +001161|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Eye pruritus|10052140|Eye pruritus|10052140|eye pruritus|C0022281|Itching of eye|| +001162|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Eye swelling|10015967|Eye swelling|10015967|eye swelling|C0270996|Eye swelling|| +001163|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Eye symptom|10075536|Eye symptom|10075536|ocular adverse reactions|C1557306|Adverse Event Associated with Ocular and Visual Systems|| +001164|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Eyelid oedema|10015993|Eyelid edema|10015985|eyelid edema|C0162285|Edema of eyelid|| +001165|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +001166|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +001167|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Instillation site pain|10022459|Instillation site burning|10052063|eye burning upon instillation|C0948773|Instillation site burning|duplicate| +001168|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Instillation site pain|10022459|Instillation site stinging|10052064|eye stinging on instillation|C0949068|Instillation site stinging|duplicate| +001169|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +001170|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Ocular hyperaemia|10030041|Eye redness|10015963|eye redness|C0235267|Redness of eye|| +001171|17d37e8d-7825-424b-b6ca-0a85d0bf4694|LASTACAFT|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +001172|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34066-1|BOXED WARNINGS|Cardiac failure congestive|10007559|Congestive heart failure|10010684|chf|C0018802|Congestive heart failure|| +001173|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34066-1|BOXED WARNINGS|Cardiac failure|10007554|Cardiac failure|10007554|cardiac failure|C0018801|Heart failure|| +001174|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34066-1|BOXED WARNINGS|Congenital anomaly|10010356|Birth defects|10048305|birth defects|C0000768|Congenital Abnormality|| +001175|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)||Animal +001176|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34066-1|BOXED WARNINGS|Ejection fraction decreased|10050528|Left ventricular ejection fraction decreased|10053222|decreased lvef|C1096403|Left ventricular ejection fraction decreased|| +001177|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34066-1|BOXED WARNINGS|Foetal death|10055690|Fetal death|10016479|embryo-fetal death|C0015927|Fetal Death|| +001178|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34066-1|BOXED WARNINGS|Left ventricular dysfunction|10049694|Left ventricular dysfunction|10049694|left ventricular dysfunction|C0242698|Ventricular Dysfunction, Left|| +001179|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34066-1|BOXED WARNINGS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +001180|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34066-1|BOXED WARNINGS|Oligohydramnios|10030289|Oligohydramnios|10030289|oligohydramnios|C0079924|Oligohydramnios||Animal +001181|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34066-1|BOXED WARNINGS|||||delayed renal development|||unmapped|Animal +001182|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increased|C0151905|Alanine aminotransferase increased|| +001183|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +001184|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +001185|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +001186|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +001187|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +001188|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Cardiac failure congestive|10007559|Congestive heart failure|10010684|chf|C0018802|Congestive heart failure|| +001189|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +001190|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +001191|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +001192|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +001193|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +001194|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +001195|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +001196|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +001197|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +001198|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +001199|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Eye disorder|10015916|Eye disorder|10015916|eye disorders|C0015397|Disorder of eye|| +001200|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +001201|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +001202|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +001203|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +001204|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +001205|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +001206|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +001207|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +001208|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Lacrimation increased|10023644|Lacrimation increased|10023644|lacrimation increased|C0152227|Excessive tearing|| +001209|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Left ventricular dysfunction|10049694|Left ventricular dysfunction|10049694|symptomatic left ventricular dysfunction|C0242698|Ventricular Dysfunction, Left|| +001210|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Left ventricular dysfunction|10049694|Left ventricular systolic dysfunction|10069501|symptomatic left ventricular systolic dysfunction|C1277187|Left ventricular systolic dysfunction|| +001211|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +001212|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +001213|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Mucosal inflammation|10028116|Mucosal inflammation|10028116|mucosal inflammation|C0333355|Inflammatory disease of mucous membrane|| +001214|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +001215|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Nail disorder|10028694|Nail disorder|10028694|nail disorder|C0027339|Nail Diseases|| +001216|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +001217|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +001218|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +001219|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +001220|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +001221|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +001222|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysaesthesia syndrome|10033553|palmar-plantar erythrodysaesthesia syndrome|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +001223|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Paronychia|10034016|Paronychia|10034016|paronychia|C0030578|Paronychia Inflammation|| +001224|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Peripheral sensory neuropathy|10034620|Peripheral sensory neuropathy|10034620|peripheral sensory neuropathy|C0151313|Sensory neuropathy|| +001225|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Pleural effusion|10035598|Pleural effusion|10035598|pleural effusion|C0032227|Pleural effusion disorder|| +001226|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +001227|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +001228|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +001229|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +001230|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +001231|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +001232|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +001233|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylaxis events|C0002792|anaphylaxis|| +001234|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +001235|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +001236|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure congestive|10007559|Congestive heart failure|10010684|congestive heart failure|C0018802|Congestive heart failure|| +001237|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +001238|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Cytokine release syndrome|10052015|Cytokine release syndrome|10052015|cytokine release syndrome|C0948245|Cytokine release syndrome|| +001239|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +001240|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Ejection fraction decreased|10050528|Left ventricular ejection fraction decreased|10053222|lvef decline|C1096403|Left ventricular ejection fraction decreased|| +001241|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +001242|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +001243|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Foetal death|10055690|Fetal death|10016479|embryo-fetal death|C0015927|Fetal Death||Animal +001244|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +001245|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +001246|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +001247|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|acute infusion reaction|C0948715|Infusion related reaction|| +001248|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Left ventricular dysfunction|10049694|Left ventricular dysfunction|10049694|left ventricular dysfunction|C0242698|Ventricular Dysfunction, Left|| +001249|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Left ventricular dysfunction|10049694|Left ventricular systolic dysfunction|10069501|lvsd|C1277187|Left ventricular systolic dysfunction|| +001250|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +001251|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Oligohydramnios|10030289|Oligohydramnios|10030289|oligohydramnios|C0079924|Oligohydramnios||Animal +001252|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +001253|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +001254|17f85d17-ab71-4f5b-9fe3-0b8c822f69ff|PERJETA|43685-7|WARNINGS AND PRECAUTIONS|||||delayed fetal kidney development|||unmapped|Animal +001255|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Bilirubin conjugated increased|10004685|Direct bilirubin increased|10013038|elevation direct bilirubin|C0740434|Direct bilirubin increased|| +001256|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|alkaline phosphatase > 2.50 to <= 5.00 * uln|C0151849|Alkaline phosphatase raised|| +001257|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevated bilirubin|C0311468|Increased bilirubin level (finding)|| +001258|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Blood bilirubin unconjugated increased|10005370|Indirect bilirubin increased|10021709|elevation indirect bilirubin|C0740435|Bilirubin unconjugated increased|| +001259|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|symptomatic bradycardia|C0741627|BRADYCARDIA SYMPTOMATIC|| +001260|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +001261|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +001262|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +001263|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +001264|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +001265|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Hepatic failure|10019663|Hepatic decompensation|10076894|hepatic decompensation|C1394798|hepatic; decompensation|| +001266|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +001267|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Hyperbilirubinaemia|10020578|Hyperbilirubinemia|10020582|hyperbilirubinemia|C0020433|Hyperbilirubinemia|| +001268|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +001269|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +001270|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +001271|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Photosensitivity reaction|10034972|Photosensitivity|10034966|photosensitivity|C0349506|Photosensitivity of skin|| +001272|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +001273|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +001274|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|elevated bilirubin levels|C0311468|Increased bilirubin level (finding)|| +001275|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|symptomatic bradycardia|C0741627|BRADYCARDIA SYMPTOMATIC|| +001276|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|43685-7|WARNINGS AND PRECAUTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +001277|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +001278|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic decompensation|10076894|hepatic decompensation|C1394798|hepatic; decompensation|| +001279|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +001280|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|43685-7|WARNINGS AND PRECAUTIONS|Photosensitivity reaction|10034972|Photosensitivity|10034966|photosensitivity|C0349506|Photosensitivity of skin|| +001281|1816fd68-0ed7-4a37-84bb-e298c5ab6e28|OLYSIO|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +001282|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +001283|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34066-1|BOXED WARNINGS|Fistula|10016717|Fistula|10016717|fistulas|C0016169|pathologic fistula|| +001284|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34066-1|BOXED WARNINGS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +001285|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34066-1|BOXED WARNINGS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforations|C0151664|Gastrointestinal perforation|| +001286|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34066-1|BOXED WARNINGS|Haemoptysis|10018964|Hemoptysis|10019523|hemoptysis|C0019079|Hemoptysis|| +001287|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34066-1|BOXED WARNINGS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +001288|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34066-1|BOXED WARNINGS|Perforation|10076705|Perforation|10076705|perforations|C0549099|Perforation (observation)|| +001289|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +001290|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increased alt|C0151905|Alanine aminotransferase increased|| +001291|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +001292|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +001293|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +001294|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increased ast|C0151904|Aspartate aminotransferase increased|| +001295|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +001296|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|ALP increased|10001771|increased alp|C0151849|Alkaline phosphatase raised|| +001297|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|increased alkaline phosphatase|C0151849|Alkaline phosphatase raised|| +001298|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|elevated blood pressure|C0497247|Increase in blood pressure|| +001299|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Blood thyroid stimulating hormone increased|10005833|Thyroid stimulating hormone increased|10043770|increased levels of thyroid stimulating hormone|C0586553|Raised TSH level|| +001300|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +001301|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +001302|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +001303|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +001304|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +001305|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +001306|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +001307|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +001308|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +001309|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +001310|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +001311|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Dysphonia|10013952|Dysphonia|10013952|dysphonia|C1527344|Dysphonia|| +001312|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Embolism|10061169|Thromboembolic event|10043565|thromboembolic events|C0040038|Thromboembolism|| +001313|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +001314|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +001315|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Fistula|10016717|Fistula|10016717|fistula|C0016169|pathologic fistula|| +001316|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +001317|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Haemorrhoids|10019022|Hemorrhoids|10019611|hemorrhoids|C0019112|Hemorrhoids|| +001318|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Hair colour changes|10019030|Hair color changes|10055525|hair color changes|C0474378|Hair color change (finding)|| +001319|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Hair colour changes|10019030|Hair depigmented|10019033|hair color depigmentation|C0239794|HAIR DEPIGMENTATION|| +001320|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +001321|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Hyperbilirubinaemia|10020578|Hyperbilirubinemia|10020582|hyperbilirubinemia|C0020433|Hyperbilirubinemia|| +001322|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Hyperkeratosis|10020649|Hyperkeratosis|10020649|hyperkeratosis|C0870082|Hyperkeratosis|| +001323|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +001324|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +001325|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +001326|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +001327|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +001328|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +001329|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +001330|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Lipase increased|10024574|Lipase increased|10024574|increased lipase|C0549475|Lipase increased|| +001331|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +001332|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +001333|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Musculoskeletal chest pain|10050819|Musculoskeletal chest pain|10050819|musculoskeletal chest pain|C0476280|Musculoskeletal chest pain|| +001334|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +001335|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +001336|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +001337|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Oral pain|10031009|Oral pain|10031009|oral pain|C0221776|Oral pain|| +001338|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Osteonecrosis of jaw|10064658|Osteonecrosis of jaw|10064658|osteonecrosis of the jaw|C2902031|Osteonecrosis of jaw caused by drug|| +001339|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysesthesia syndrome|10054524|ppes|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +001340|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +001341|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +001342|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Perforation|10076705|Perforation|10076705|perforations|C0549099|Perforation (observation)|| +001343|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Peripheral sensory neuropathy|10034620|Peripheral sensory neuropathy|10034620|peripheral sensory neuropathy|C0151313|Sensory neuropathy|| +001344|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +001345|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|reversible posterior leukoencephalopathy syndrome|C3160858|Posterior reversible encephalopathy syndrome|| +001346|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Prehypertension|10065918|Prehypertension|10065918|pre-hypertension|C1696708|Prehypertension|| +001347|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +001348|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +001349|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Respiratory failure|10038695|Respiratory failure|10038695|respiratory failure|C1145670|Respiratory Failure|| +001350|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Septicemia|10040089|septicemia|C0036690|Septicemia|| +001351|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +001352|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +001353|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Tracheal fistula|10065787|Tracheal fistula|10065787|tracheal fistula formation|C0340214|Tracheal fistula|| +001354|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +001355|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|decreased weight|C1262477|Weight decreased|| +001356|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|34084-4|ADVERSE REACTIONS|Wound complication|10053692|Wound complication|10053692|wound complications|C1096106|Wound complication|| +001357|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Bone erosion|10051728|Bone erosion|10051728|bone erosion|C0587240|Bone erosion|| +001358|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Congenital musculoskeletal anomaly|10062344|Skeletal malformation|10040771|skeletal variations|C0795693|Skeletal malformation||Animal +001359|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +001360|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolism|C3544094|Arterial thromboembolism|| +001361|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolism|C1861172|Venous Thromboembolism|| +001362|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Fistula|10016717|Fistula|10016717|non-gi fistulas|C0016169|pathologic fistula|| +001363|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +001364|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Foetal death|10055690|Fetal death|10016479|embryolethal|C0015927|Fetal Death||Animal +001365|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal fistula|10017877|Gastrointestinal fistula|10017877|gastrointestinal fistulas|C0079238|Digestive System Fistula|| +001366|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal malformation|10061596|Gastrointestinal malformation|10061596|visceral malformations|C3808677|Visceral malformations||Animal +001367|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|GI perforation|10018242|gi perforations|C0151664|Gastrointestinal perforation|| +001368|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforations|C0151664|Gastrointestinal perforation|| +001369|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Gingival erosion|10018282|Gingival erosion|10018282|gingival erosion|C0235346|Superficial gingival ulcer|| +001370|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Gingival ulceration|10049398|Gingival ulceration|10049398|gingival ulceration|C0392378|Ulceration of gingivae|| +001371|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +001372|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +001373|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Impaired healing|10021519|Delayed healing of wound|10012200|slow healing of the mouth after dental surgery|C0151692|Impaired wound healing|underspecified| +001374|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryofetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +001375|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Nephrotic syndrome|10029164|Nephrotic syndrome|10029164|nephrotic syndrome|C0027726|Nephrotic Syndrome|| +001376|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Oesophageal fistula|10065835|Esophageal fistula|10065851|fistulas esophageal|C0014856|Esophageal Fistula|| +001377|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Osteitis|10031149|Osteitis|10031149|osteitis|C0029400|Osteitis|| +001378|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Osteomyelitis|10031252|Osteomyelitis|10031252|osteomyelitis|C0029443|Osteomyelitis|| +001379|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Osteonecrosis of jaw|10064658|Osteonecrosis of jaw|10064658|osteonecrosis of the jaw|C2902031|Osteonecrosis of jaw caused by drug|| +001380|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Pain in jaw|10033433|Jaw pain|10023157|persistent jaw pain|C0236000|Jaw pain|| +001381|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysesthesia syndrome|10054524|palmar-plantar erythrodysesthesia syndrome|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +001382|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Periodontitis|10034539|Periodontal infection|10034538|periodontal infection|C0747479|Periodontal infection|| +001383|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|rpls|C3160858|Posterior reversible encephalopathy syndrome|| +001384|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +001385|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Thrombosis|10043607|Thrombosis|10043607|thrombotic events|C0040053|Thrombosis|| +001386|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Tooth infection|10048762|Tooth infection|10048762|tooth infection|C0877046|Infection of tooth|| +001387|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Toothache|10044055|Toothache|10044055|toothache|C0040460|Toothache|| +001388|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Tracheal fistula|10065787|Tracheal fistula|10065787|fistulas tracheal|C0340214|Tracheal fistula|| +001389|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Vasogenic cerebral oedema|10067275|Vasogenic cerebral edema|10067278|subcortical vasogenic edema|C0472387|Vasogenic Cerebral Edema|underspecified| +001390|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|Wound complication|10053692|Wound complication|10053692|wound complications|C1096106|Wound complication|| +001391|1a0c3bea-c87b-4d25-bb44-5f0174da6b34|COMETRIQ|43685-7|WARNINGS AND PRECAUTIONS|||||visceral variations|||unmapped|Animal +001392|1ae61072-bca0-43f0-a741-07bda2d50c87|Kerydin|34084-4|ADVERSE REACTIONS|Application site dermatitis|10003036|Application site dermatitis|10003036|application site dermatitis|C0521495|Application site rash|| +001393|1ae61072-bca0-43f0-a741-07bda2d50c87|Kerydin|34084-4|ADVERSE REACTIONS|Application site erythema|10003041|Application site erythema|10003041|application site erythema|C0853700|Application site erythema|| +001394|1ae61072-bca0-43f0-a741-07bda2d50c87|Kerydin|34084-4|ADVERSE REACTIONS|Application site exfoliation|10064578|Application site exfoliation|10064578|application site exfoliation|C1610049|Application site exfoliation|| +001395|1ae61072-bca0-43f0-a741-07bda2d50c87|Kerydin|34084-4|ADVERSE REACTIONS|Ingrowing nail|10022013|Ingrown toe nail|10022015|ingrown toenail|C0027343|Nails, Ingrown|| +001396|1ae61072-bca0-43f0-a741-07bda2d50c87|Kerydin|34084-4|ADVERSE REACTIONS|Skin irritation|10040880|Skin irritation|10040880|skin irritation|C0152030|Skin irritation|| +001397|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34066-1|BOXED WARNINGS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +001398|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +001399|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +001400|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +001401|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decrease in hemoglobin|C0162119|Hemoglobin low|| +001402|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +001403|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +001404|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +001405|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +001406|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +001407|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Nasal congestion|10028735|Nasal congestion|10028735|nasal congestion|C0027424|Nasal congestion (finding)|| +001408|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +001409|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Pharyngitis|10034835|Pharyngitis|10034835|pharyngitis|C0031350|Pharyngitis|| +001410|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +001411|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +001412|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +001413|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +001414|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|43685-7|WARNINGS AND PRECAUTIONS|Haematocrit decreased|10018838|Hematocrit decreased|10019423|decreases in hematocrit|C0744727|Hematocrit decreased|| +001415|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|43685-7|WARNINGS AND PRECAUTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decrease in hemoglobin|C0162119|Hemoglobin low|| +001416|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Liver failure|10024678|liver failure|C0085605|Liver Failure||DrugClass +001417|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|43685-7|WARNINGS AND PRECAUTIONS|Hepatic function abnormal|10019670|Hepatic function abnormal|10019670|hepatic adverse events|C0086565|Liver Dysfunction|| +001418|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity||DrugClass +001419|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary oedema|10037423|Pulmonary edema|10037375|pulmonary edema|C0034063|Pulmonary Edema|| +001420|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|43685-7|WARNINGS AND PRECAUTIONS|Sperm concentration decreased|10070925|Sperm count decreased|10041481|decreases in sperm count|C0853711|Sperm count decreased||DrugClass +001421|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|43685-7|WARNINGS AND PRECAUTIONS|Spermatogenesis abnormal|10041493|Spermatogenesis abnormal|10041493|adverse effects on spermatogenesis|C0520933|Abnormal spermatogenesis||DrugClass +001422|1e484a50-55db-4b85-8c57-6cd1b0353abd|OPSUMIT|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevated aminotransferases|C0438717|Transaminases increased|| +001423|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +001424|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Abnormal behaviour|10061422|Behavior abnormal|10004203|abnormal behavior|C0233514|Abnormal behavior|| +001425|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Acne|10000496|Acne|10000496|acne|C0702166|Acne|| +001426|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Activated partial thromboplastin time prolonged|10000636|Partial thromboplastin time prolonged|10034094|elevated partial thromboplastin time|C0240671|Partial thromboplastin time increased (finding)|| +001427|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +001428|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Acute respiratory distress syndrome|10001052|Acute respiratory distress syndrome|10001052|acute respiratory distress|C0748355|Acute respiratory distress|| +001429|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Acute respiratory failure|10001053|Acute respiratory failure|10001053|acute respiratory failure|C0264490|Acute respiratory failure|| +001430|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Aggression|10001488|Aggression|10001488|aggression|C0001807|Aggressive behavior|| +001431|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +001432|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increased alt|C0151905|Alanine aminotransferase increased|| +001433|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine transaminase increased|C0151905|Alanine aminotransferase increased|| +001434|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +001435|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Alveolitis|10001889|Alveolitis|10001889|alveolitis|C0549493|Alveolitis|| +001436|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Amenorrhoea|10001928|Amenorrhea|10001927|amenorrhea|C0002453|Amenorrhea|| +001437|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +001438|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +001439|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +001440|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Aphthous ulcer|10002959|Aphthous stomatitis|10002958|aphthous stomatitis|C0038363|Aphthous Stomatitis|| +001441|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Arterial thrombosis|10003178|Arterial thrombosis|10003178|arterial thrombotic events|C0151942|Arterial thrombosis|| +001442|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +001443|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increased ast|C0151904|Aspartate aminotransferase increased|| +001444|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate transaminase increased|C0151904|Aspartate aminotransferase increased|| +001445|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Aspergillus infection|10074171|Aspergillosis|10003488|aspergillosis|C0004030|Aspergillosis|| +001446|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +001447|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +001448|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood albumin decreased|10005287|Albumin decreased|10001561|albumin decreased|C0860864|Decreased albumin|| +001449|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|alkaline phosphatase increased|C0151849|Alkaline phosphatase raised|| +001450|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood bicarbonate decreased|10005359|Blood bicarbonate decreased|10005359|bicarbonate decreased|C0238762|BICARBONATE, DECREASED|| +001451|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|bilirubin increased|C0311468|Increased bilirubin level (finding)|| +001452|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood calcium decreased|10005395|Calcium decreased|10006954|calcium decreased|C0860967|Calcium low|| +001453|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood cholesterol increased|10005425|Cholesterol levels raised|10008663|cholesterol increased|C3276464|Increased cholesterol|| +001454|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|creatinine increased|C0151578|Creatinine increased|| +001455|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood follicle stimulating hormone increased|10005534|Blood follicle stimulating hormone increased|10005534|increased blood follicle stimulating hormone levels|C0853124|Blood follicle stimulating hormone increased|| +001456|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood follicle stimulating hormone increased|10005534|FSH increased|10017403|increased blood fsh levels|C0853124|Blood follicle stimulating hormone increased|| +001457|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Fasting blood glucose increased|10050786|glucose (fasting) increased|C0920108|Fasting blood glucose increased|underspecified| +001458|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Glucose increased|10018421|glucose increased|C0860803|Glucose increased|| +001459|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood luteinising hormone increased|10005649|Blood luteinising hormone increased|10005649|increased blood luteinizing hormone levels|C0853123|Blood luteinising hormone increased|| +001460|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood phosphorus decreased|10049471|Phosphate decreased|10034930|phosphate decreased|C0860987|Phosphate low|| +001461|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood potassium decreased|10005724|Potassium decreased|10036443|potassium decreased|C0860866|Potassium low|| +001462|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood potassium increased|10005725|Potassium increased|10036450|potassium increased|C0856882|Potassium increased|| +001463|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood sodium decreased|10005802|Sodium decreased|10041268|sodium decreased|C0860871|Sodium decreased|| +001464|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|triglycerides increased|C1522137|Hypertriglyceridemia result|| +001465|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +001466|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +001467|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Candida infection|10074170|Candidiasis|10007152|candidiasis|C0006840|Candidiasis|| +001468|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +001469|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Cardiac failure congestive|10007559|Congestive cardiac failure|10010682|congestive cardiac failure|C0018802|Congestive heart failure|| +001470|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Cardiac failure congestive|10007559|Congestive heart failure|10010684|congestive heart failure|C0018802|Congestive heart failure|| +001471|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +001472|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +001473|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +001474|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Cholecystitis|10008612|Cholecystitis|10008612|cholecystitis|C0008325|Cholecystitis|| +001475|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Cholelithiasis|10008629|Cholelithiasis|10008629|cholelithiasis|C0008350|Cholelithiasis|| +001476|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +001477|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Complex regional pain syndrome|10064332|Reflex sympathetic dystrophy|10038249|reflex sympathetic dystrophy|C0034931|Reflex Sympathetic Dystrophy|| +001478|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +001479|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +001480|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +001481|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Cystitis|10011781|Cystitis|10011781|cystitis|C0010692|Cystitis|| +001482|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|deaths|C1306577|Death (finding)|| +001483|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +001484|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +001485|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Deep vein thrombosis|10051055|Deep vein thrombosis|10051055|deep vein thrombosis|C0149871|Deep Vein Thrombosis|| +001486|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Defaecation urgency|10012110|Defecation urgency|10012114|defecation urgency|C0426636|Urgent desire for stool|| +001487|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +001488|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +001489|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Dermatitis acneiform|10012432|Acneiform dermatitis|10000520|acneiform dermatitis|C0234894|Dermatitis acneiform|| +001490|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Dermatitis allergic|10012434|Dermatitis allergic|10012434|dermatitis allergic|C0011615|Dermatitis, Atopic|| +001491|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Diabetes mellitus|10012601|Diabetes mellitus|10012601|new onset of diabetes mellitus|C0743128|DIABETES MELLITUS NOS NEW ONSET|| +001492|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +001493|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +001494|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +001495|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +001496|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +001497|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Taste abnormality|10043123|abnormal taste|C0849799|abnormal taste|| +001498|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Dysmenorrhoea|10013935|Dysmenorrhea|10013934|dysmenorrhea|C0013390|Dysmenorrhea|| +001499|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +001500|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Dyspnoea exertional|10013971|Dyspnea exertional|10013966|dyspnea exertional|C0231807|Dyspnea on exertion|| +001501|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +001502|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Enteritis|10014866|Enteritis|10014866|enteritis|C0014335|Enteritis|| +001503|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Enterocolitis|10014893|Enterocolitis|10014893|enterocolitis|C0014356|Enterocolitis|| +001504|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +001505|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +001506|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Eyelid oedema|10015993|Eyelid edema|10015985|eyelid edema|C0162285|Edema of eyelid|| +001507|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +001508|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Gastroenteritis viral|10017918|Gastroenteritis viral|10017918|gastroenteritis viral|C0152517|Enteritis due to specified virus|| +001509|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Gastroenteritis|10017888|Gastroenteritis|10017888|gastroenteritis|C0017160|Gastroenteritis|| +001510|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Gastrointestinal infection|10017964|Gastrointestinal infection|10017964|gastrointestinal infection|C0729555|Infection of digestive system|| +001511|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Generalised oedema|10018092|Edema generalized|10014223|edema general|C1850534|Edema, generalized|| +001512|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Gingival pain|10018286|Gingival pain|10018286|gingival pain|C0239739|Tenderness of gums|| +001513|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Gingival swelling|10018291|Gingival swelling|10018291|gingival swelling|C0235324|Dental swelling|| +001514|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Gingival ulceration|10049398|Gingival ulceration|10049398|gingival ulceration|C0392378|Ulceration of gingivae|| +001515|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Glossitis|10018386|Glossitis|10018386|glossitis|C0017675|Glossitis|| +001516|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Glossodynia|10018388|Glossodynia|10018388|glossodynia|C0017672|Glossalgia|| +001517|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decreased hemoglobin|C0162119|Hemoglobin low|| +001518|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hemoglobin decreased|C0162119|Hemoglobin low|| +001519|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +001520|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Haemorrhoids|10019022|Hemorrhoids|10019611|hemorrhoids|C0019112|Hemorrhoids|| +001521|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +001522|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +001523|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Hepatitis C|10019744|Hepatitis C|10019744|hepatitis c|C0019196|Hepatitis C|| +001524|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +001525|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Hypercholesterolaemia|10020603|Hypercholesterolemia|10020604|hypercholesterolemia|C0020443|Hypercholesterolemia|| +001526|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Fasting hyperglycemia|10068938|fasting hyperglycemia|C2609269|Fasting hyperglycaemia|| +001527|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +001528|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +001529|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +001530|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Hypertriglyceridaemia|10020869|Hypertriglyceridemia|10020870|hypertriglyceridemia|C0020557|Hypertriglyceridemia|| +001531|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +001532|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +001533|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Impaired healing|10021519|Wound healing disturbance of|10048037|impaired wound healing|C0151692|Impaired wound healing|| +001534|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infection|C3714514|Infection|| +001535|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +001536|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +001537|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Laryngeal pain|10023848|Pharyngolaryngeal pain|10034844|pharyngolaryngeal pain|C0858635|Pharyngolaryngeal pain|| +001538|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leucopenia|10024283|leucopenia|C0023530|Leukopenia|| +001539|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +001540|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Lip ulceration|10024572|Lip ulceration|10024572|lip ulceration|C0267033|Lip ulcer (disorder)|| +001541|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Lung infiltration|10025102|Lung infiltration|10025102|lung infiltration|C0235896|Infiltrate of lung|| +001542|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Lymphocyte count decreased|10025256|Lymphocyte count decreased|10025256|lymphocytes decreased|C0853986|Lymphocyte count decreased|| +001543|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +001544|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +001545|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Menorrhagia|10027313|Menorrhagia|10027313|menorrhagia|C0025323|Menorrhagia|| +001546|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Menstrual disorder|10027327|Menstrual disorder|10027327|menstrual abnormalities|C3549779|Menstrual abnormalities|| +001547|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Menstruation irregular|10027339|Irregular menstruation|10022992|irregular menstruation|C0156404|Irregular periods|| +001548|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Menstruation irregular|10027339|Menstrual irregularity|10027333|unspecified menstrual irregularity|C0156404|Irregular periods|| +001549|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Menstruation irregular|10027339|Menstruation irregular|10027339|menstrual irregularities|C0156404|Irregular periods|| +001550|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Metrorrhagia|10027514|Metrorrhagia|10027514|metrorrhagia|C0025874|Metrorrhagia|| +001551|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Migraine|10027599|Migraine|10027599|migraine|C0149931|Migraine Disorders|| +001552|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Mouth ulceration|10028034|Mouth ulceration|10028034|mouth ulceration|C0149745|Oral Ulcer|| +001553|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Mouth ulceration|10028034|Oral ulceration|10031027|oral ulceration|C0149745|Oral Ulcer|| +001554|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Mucosal inflammation|10028116|Mucosal inflammation|10028116|mucosal inflammation|C0333355|Inflammatory disease of mucous membrane|| +001555|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +001556|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +001557|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Nail disorder|10028694|Nail disorder|10028694|nail disorders|C0027339|Nail Diseases|| +001558|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +001559|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +001560|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +001561|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|neutrophils decreased|C0853697|Neutrophil count decreased|| +001562|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Obsessive-compulsive disorder|10029898|Obsessive-compulsive disorder|10029898|obsessive compulsive disorder|C0028768|Obsessive-Compulsive Disorder|| +001563|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +001564|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +001565|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +001566|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Onychoclasis|10048886|Onychoclasis|10048886|onychoclasis|C0546956|Trachyonychia|| +001567|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +001568|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Otitis media|10033078|Otitis media|10033078|otitis media|C0029882|Otitis Media|| +001569|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Ovarian cyst|10033132|Ovarian cyst|10033132|ovarian cyst|C0029927|Ovarian Cysts|| +001570|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +001571|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pain in jaw|10033433|Jaw pain|10023157|jaw pain|C0236000|Jaw pain|| +001572|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Hand and foot syndrome|10019111|hand-foot syndrome|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +001573|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysesthesia syndrome|10054524|palmar-plantar erythrodysesthesia syndrome|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +001574|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pancreatitis acute|10033647|Acute pancreatitis|10000971|acute pancreatitis|C0001339|Acute pancreatitis|| +001575|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +001576|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Panic attack|10033664|Panic attack|10033664|panic attack|C0086769|Panic Attacks|| +001577|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +001578|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelets decreased|10035545|platelets decreased|C0392386|Decreased platelet count|| +001579|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pleural effusion|10035598|Pleural effusion|10035598|pleural effusion|C0032227|Pleural effusion disorder|| +001580|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +001581|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +001582|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Productive cough|10036790|Productive cough|10036790|productive cough|C0239134|Productive cough|| +001583|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pruritus generalised|10052576|Pruritus generalized|10037092|pruritus generalized|C0475858|Generalized pruritus|| +001584|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +001585|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pulmonary alveolar haemorrhage|10037313|Pulmonary alveolar hemorrhage|10037314|pulmonary alveolar hemorrhage|C0852879|Pulmonary Alveolar Hemorrhage|| +001586|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolus|10037380|pulmonary embolus|C0034065|Pulmonary Embolism|| +001587|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pulmonary fibrosis|10037383|Pulmonary fibrosis|10037383|pulmonary fibrosis|C0034069|Pulmonary Fibrosis|| +001588|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pulmonary toxicity|10061924|Pulmonary toxicity|10061924|pulmonary toxicity|C0919924|Pulmonary toxicity|| +001589|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +001590|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +001591|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|rash generalized|C0497365|Rash generalised|| +001592|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Rash macular|10037867|Rash macular|10037867|rash macular|C0221201|Macular rash|| +001593|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Rash maculo-papular|10037868|rash maculo-papular|C0423791|Maculopapular eruption|| +001594|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Rash papular|10037876|Rash papular|10037876|rash papular|C1519353|Skin Papule|| +001595|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +001596|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +001597|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Respiratory tract infection viral|10062106|Respiratory tract infection viral|10062106|respiratory tract infection viral|C0877203|Respiratory tract infection viral|| +001598|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Respiratory tract infection|10062352|Respiratory tract infection|10062352|respiratory tract infection|C0035243|Respiratory Tract Infections|| +001599|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Restrictive pulmonary disease|10048667|Restrictive pulmonary disease|10048667|restrictive pulmonary disease|C0877013|Restrictive pulmonary disease|| +001600|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +001601|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Rhinorrhoea|10039101|Rhinorrhea|10039100|rhinorrhea|C1260880|Rhinorrhea|| +001602|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsion|10010904|convulsion|C0036572|Seizures|| +001603|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +001604|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +001605|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Skin lesion|10040882|Skin lesion|10040882|skin lesion|C0037284|Skin lesion|| +001606|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Steatorrhoea|10041969|Steatorrhea|10041968|steatorrhea|C0038238|Steatorrhea|| +001607|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +001608|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Sudden death|10042434|Sudden death|10042434|sudden death|C0011071|Sudden death|| +001609|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +001610|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +001611|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Thrombosis|10043607|Thrombosis|10043607|thrombotic events|C0040053|Thrombosis|| +001612|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Tongue ulceration|10043991|Tongue ulceration|10043991|tongue ulceration|C0235351|Ulcer on tongue|| +001613|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|uri|C0041912|Upper Respiratory Infections|| +001614|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +001615|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +001616|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Vaginal haemorrhage|10046910|Vaginal hemorrhage|10046912|vaginal hemorrhage|C2979982|Vaginal Hemorrhage|| +001617|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +001618|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +001619|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|WBC decreased|10056731|wbc decreased|C0750394|White blood cell count decreased|| +001620|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|34084-4|ADVERSE REACTIONS|Xeroderma|10048218|Xeroderma|10048218|xeroderma|C0043345|Xeroderma|| +001621|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +001622|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +001623|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Aspergillus infection|10074171|Aspergillosis|10003488|aspergillosis|C0004030|Aspergillosis|| +001624|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Bacterial infection|10060945|Bacterial infection|10060945|bacterial infections|C0004623|Bacterial Infections|| +001625|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Blood creatinine increased|10005483|Raised serum creatinine|10037825|elevations of serum creatinine|C0700225|Serum creatinine raised|| +001626|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Blood glucose increased|10005557|Blood glucose increased|10005557|blood glucose elevations|C0595877|Blood glucose increased|| +001627|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Candida infection|10074170|Candidiasis|10007152|candidiasis|C0006840|Candidiasis|| +001628|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +001629|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +001630|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Fungal infection|10017533|Fungal infection|10017533|fungal infections|C0026946|Mycoses|| +001631|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decreased hemoglobin|C0162119|Hemoglobin low|| +001632|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +001633|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis B|10019731|Hepatitis B reactivation|10058827|reactivation of hepatitis b virus|C1142420|Hepatitis B reactivation|| +001634|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +001635|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Hyperlipidaemia|10062060|Hyperlipidemia|10020667|hyperlipidemia|C0020473|Hyperlipidemia|| +001636|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Hypertriglyceridaemia|10020869|Hypertriglyceridemia|10020870|hypertriglyceridemia|C0020557|Hypertriglyceridemia|| +001637|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Impaired healing|10021519|Wound healing delayed|10048036|delays wound healing|C0151692|Impaired wound healing|| +001638|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Impaired healing|10021519|Wound healing disturbance of|10048037|impaired wound healing|C0151692|Impaired wound healing|| +001639|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Incisional hernia|10021619|Incisional hernia|10021619|incisional hernia|C0267716|Incisional hernia|| +001640|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Infection protozoal|10021859|Infection protozoal|10021859|protozoal infections|C0033740|Protozoan Infections|| +001641|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +001642|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Lipids increased|10024592|Lipids increased|10024592|lipids elevations|C0851043|Increased lipid|| +001643|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Liver disorder|10024670|Hepatic impairment|10052254|hepatic impairment|C0948807|Hepatic impairment|| +001644|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Lung disorder|10025082|Pulmonary function impairment|10037386|respiratory impairment|C0035229|Respiratory Insufficiency|| +001645|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Lymphocele|10048642|Lymphocele|10048642|lymphocele|C0024248|Lymphocele|| +001646|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Lymphocyte count decreased|10025256|Lymphocyte count decreased|10025256|decreased lymphocytes|C0853986|Lymphocyte count decreased|| +001647|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +001648|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Mouth ulceration|10028034|Mouth ulcer|10028033|mouth ulcers|C0149745|Oral Ulcer|| +001649|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Mouth ulceration|10028034|Oral ulceration|10031027|oral ulceration|C0149745|Oral Ulcer|| +001650|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Mycobacterial infection|10062207|Mycobacterial infection|10062207|mycobacterial infection|C0026918|Mycobacterium Infections|| +001651|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|decreases in neutrophils|C0853697|Neutrophil count decreased|| +001652|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|infections with opportunistic pathogens|C0029118|Opportunistic Infections|| +001653|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Platelet count decreased|10035528|Platelets decreased|10035545|decreases in platelets|C0392386|Decreased platelet count|| +001654|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystis jiroveci pneumonia|10064108|pneumocystis jiroveci pneumonia|C1535939|Pneumocystis jiroveci pneumonia|| +001655|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystis jirovecii pneumonia|10073755|pjp|C1535939|Pneumocystis jiroveci pneumonia|| +001656|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +001657|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|non-infectious pneumonitis|C0264376|Non-infectious pneumonia|| +001658|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Protein urine present|10053123|Urinary protein increased|10046553|urinary protein elevations|C0858667|Urinary protein increased|| +001659|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +001660|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +001661|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Respiratory failure|10038695|Respiratory failure|10038695|respiratory failure|C1145670|Respiratory Failure|| +001662|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Respiratory tract oedema|10070774|Airway edema|10070778|swelling of the airways|C2939065|Airway edema|| +001663|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +001664|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Seroma|10040102|Seroma|10040102|seroma|C0262627|Seroma|| +001665|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Stomatitis|10042128|Mucositis oral|10028130|oral mucositis|C1568868|Oral Mucositis|| +001666|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +001667|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Swollen tongue|10042727|Swelling of tongue|10042706|swelling of the tongue|C0236068|Tongue swelling|| +001668|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Systemic mycosis|10052366|Invasive mycosis|10062642|invasive fungal infections|C1262313|Invasive mycosis|| +001669|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Viral infection|10047461|Viral infection|10047461|viral infections|C0042769|Virus Diseases|| +001670|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Wound complication|10053692|Wound complication|10053692|wound-related complications|C1096106|Wound complication|| +001671|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Wound dehiscence|10048031|Wound dehiscence|10048031|wound dehiscence|C0259768|Wound dehiscence|| +001672|2150f73a-179b-4afc-b8ce-67c85cc72f04|Afinitor|43685-7|WARNINGS AND PRECAUTIONS|Wound infection|10048038|Wound infection|10048038|wound infection|C0043241|Wound Infection|| +001673|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34066-1|BOXED WARNINGS|Hypertension|10020772|Hypertension|10020772|supine hypertension|C0020538|Hypertensive disease|underspecified| +001674|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34084-4|ADVERSE REACTIONS|Arrhythmia|10003119|Arrhythmia|10003119|exacerbate arrhythmias|C0003811|Cardiac Arrhythmia|| +001675|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|Increased blood pressure|10021655|increased blood pressure|C0497247|Increase in blood pressure|| +001676|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34084-4|ADVERSE REACTIONS|Cardiac failure congestive|10007559|Congestive cardiac failure aggravated|10048565|exacerbate congestive heart failure|C3532952|Exacerbation of congestive heart failure|| +001677|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusion|10010300|confusion|C0009676|Confusion|| +001678|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +001679|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34084-4|ADVERSE REACTIONS|Fall|10016173|Fall|10016173|falls|C0085639|Falls|| +001680|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +001681|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +001682|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34084-4|ADVERSE REACTIONS|Hyperpyrexia|10020741|Hyperpyrexia|10020741|hyperpyrexia|C0392676|Hyperpyrexia|| +001683|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +001684|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34084-4|ADVERSE REACTIONS|Myocardial ischaemia|10028600|Ischaemic heart disease|10023024|exacerbate ischemic heart disease|C0151744|Myocardial Ischemia|| +001685|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +001686|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +001687|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infections|C0042029|Urinary tract infection|| +001688|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Altered state of consciousness|10001854|Consciousness abnormal|10010765|altered consciousness|C0234428|Disturbance of consciousness|| +001689|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Arrhythmia|10003119|Arrhythmia|10003119|exacerbate arrhythmias|C0003811|Cardiac Arrhythmia|| +001690|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Asthma|10003553|Asthma bronchial|10003555|bronchial asthma|C0004096|Asthma|| +001691|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure congestive|10007559|Congestive cardiac failure aggravated|10048565|exacerbate congestive heart failure|C3532952|Exacerbation of congestive heart failure|| +001692|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular risk|C0850624|cardiovascular risk factor|| +001693|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Confusional state|10010305|Confusion|10010300|confusion|C0009676|Confusion|| +001694|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Dyskinesia|10013916|Movements involuntary|10028041|involuntary movements|C0427086|Involuntary Movements|| +001695|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Hyperpyrexia|10020741|Hyperpyrexia|10020741|hyperpyrexia|C0392676|Hyperpyrexia|| +001696|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +001697|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|supine hypertension|C0020538|Hypertensive disease|underspecified| +001698|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Hyperthermia|10020843|Hyperthermia|10020843|hyperthermia|C0015967|Fever|| +001699|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Mental status changes|10048294|Mental status changes|10048294|mental status change|C0856054|Mental status changes|| +001700|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Muscle rigidity|10028330|Muscle rigidity|10028330|muscle rigidity|C0026837|Muscle Rigidity|| +001701|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Myocardial ischaemia|10028600|Ischaemic heart disease|10023024|exacerbate ischemic heart disease|C0151744|Myocardial Ischemia|| +001702|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Neuroleptic malignant syndrome|10029282|NMS|10029435|nms|C0027849|Neuroleptic Malignant Syndrome|| +001703|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Neuroleptic malignant syndrome|10029282|Neuroleptic malignant syndrome|10029282|neuroleptic malignant syndrome|C0027849|Neuroleptic Malignant Syndrome|| +001704|2179f02c-48d7-48eb-8007-5ae43d8d16bc|Northera|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +001705|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +001706|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34066-1|BOXED WARNINGS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +001707|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34066-1|BOXED WARNINGS|Endocrine disorder|10014695|Endocrine disorder|10014695|endocrinopathy|C0014130|Endocrine System Diseases|| +001708|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34066-1|BOXED WARNINGS|Enterocolitis|10014893|Enterocolitis|10014893|enterocolitis|C0014356|Enterocolitis|| +001709|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34066-1|BOXED WARNINGS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +001710|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34066-1|BOXED WARNINGS|Hypersensitivity|10020751|Hypersensitivity|10020751|immune-mediated reactions|C0020517|Hypersensitivity|| +001711|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34066-1|BOXED WARNINGS|Neuropathy peripheral|10029331|Neuropathy|10029328|neuropathy|C0442874|Neuropathy|| +001712|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34066-1|BOXED WARNINGS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +001713|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Acute respiratory distress syndrome|10001052|Acute respiratory distress syndrome|10001052|acute respiratory distress syndrome|C0035222|Respiratory Distress Syndrome, Adult|| +001714|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Adrenal insufficiency|10001367|Adrenal insufficiency|10001367|adrenal insufficiency|C0001623|Adrenal gland hypofunction|| +001715|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Autoimmune colitis|10075761|Autoimmune colitis|10075761|immune-mediated enterocolitis|C3888552|Autoimmune colitis|underspecified| +001716|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Autoimmune hepatitis|10003827|Autoimmune hepatitis|10003827|immune-mediated hepatitis|C0241910|Hepatitis, Autoimmune|underspecified| +001717|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Autoimmune neuropathy|10070439|Autoimmune neuropathy|10070439|immune-mediated neuropathies|C2748363|Autoimmune neuropathy|underspecified| +001718|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +001719|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +001720|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Dermatitis allergic|10012434|Dermatitis allergic|10012434|immune-mediated dermatitis|C3670617|Immune mediated dermatitis|| +001721|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +001722|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +001723|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress syndrome|C3541994|Drug Hypersensitivity Syndrome|| +001724|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug reaction with eosinophilia and systemic symptoms|10073508|drug reaction with eosinophilia and systemic symptoms|C3541994|Drug Hypersensitivity Syndrome|| +001725|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Endocrine autoimmune disorders|10003818|Endocrine autoimmune disorders|10003818|immune-mediated endocrinopathies|C0342552|Autoimmune endocrine disease|underspecified; HLT| +001726|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Endocrine disorder|10014695|Endocrine disorder|10014695|endocrinopathy|C0014130|Endocrine System Diseases|| +001727|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Enterocolitis|10014893|Enterocolitis|10014893|enterocolitis|C0014356|Enterocolitis|| +001728|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Eosinophilia|10014950|Eosinophilia|10014950|eosinophilia|C0014457|Eosinophilia|| +001729|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Eye symptom|10075536|Eye symptom|10075536|ocular manifestations|C0586406|Eye symptom|| +001730|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +001731|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +001732|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +001733|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|immune-mediated adverse reactions|C0020517|Hypersensitivity|| +001734|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Hypopituitarism|10021067|Hypopituitarism|10021067|hypopituitarism|C0020635|Hypopituitarism|| +001735|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reaction|C0948715|Infusion related reaction|| +001736|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Intestinal perforation|10022694|Intestinal perforation|10022694|intestinal perforation|C0021845|Intestinal Perforation|| +001737|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Large intestinal ulcer|10023799|Large intestinal ulcer|10023799|large intestinal ulcer|C0267491|Ulceration of colon|| +001738|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Meningitis|10027199|Meningitis|10027199|meningitis|C0025289|Meningitis|| +001739|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Nephritis|10029117|Nephritis|10029117|nephritis|C0027697|Nephritis|| +001740|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy|10029328|neuropathy|C0442874|Neuropathy|| +001741|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Oesophagitis|10030216|Esophagitis|10015461|esophagitis|C0014868|Esophagitis|| +001742|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Pericarditis|10034484|Pericarditis|10034484|pericarditis|C0031046|Pericarditis|| +001743|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +001744|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +001745|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +001746|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +001747|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +001748|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +001749|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Adrenal insufficiency|10001367|Adrenal insufficiency|10001367|adrenal insufficiency|C0001623|Adrenal gland hypofunction|| +001750|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt elevations|C0151905|Alanine aminotransferase increased|| +001751|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Angiopathy|10059245|Angiopathy|10059245|angiopathy|C0042373|Vascular Diseases|| +001752|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Arthritis|10003246|Arthritis|10003246|arthritis|C0003864|Arthritis|| +001753|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast elevations|C0151904|Aspartate aminotransferase increased|| +001754|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune colitis|10075761|Autoimmune colitis|10075761|immune-mediated enterocolitis|C3888552|Autoimmune colitis|underspecified| +001755|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune hepatitis|10003827|Autoimmune hepatitis|10003827|immune-mediated hepatitis|C0241910|Hepatitis, Autoimmune|underspecified| +001756|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune neuropathy|10070439|Autoimmune neuropathy|10070439|autoimmune central neuropathy|C2748363|Autoimmune neuropathy|| +001757|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune thyroiditis|10049046|Autoimmune thyroiditis|10049046|autoimmune thyroiditis|C0920350|Autoimmune thyroiditis|| +001758|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Blepharitis|10005148|Blepharitis|10005148|blepharitis|C0005741|Blepharitis|| +001759|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|total bilirubin elevation|C0741494|Elevated total bilirubin|| +001760|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +001761|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Cushing's syndrome|10011652|Cushing's syndrome|10011652|cushing's syndrome|C0010481|Cushing Syndrome|| +001762|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +001763|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis allergic|10012434|Dermatitis allergic|10012434|immune-mediated dermatitis|C3670617|Immune mediated dermatitis|| +001764|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis bullous|10012441|Dermatitis bullous|10012441|dermal bullous manifestations|C0085932|Skin Diseases, Bullous|| +001765|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +001766|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +001767|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Encephalitis|10014581|Encephalitis|10014581|encephalitis|C0014038|Encephalitis|| +001768|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Endocrine autoimmune disorders|10003818|Endocrine autoimmune disorders|10003818|immune-mediated endocrinopathies|C0342552|Autoimmune endocrine disease|underspecified; HLT| +001769|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Endocrine disorder|10014695|Endocrine disorder|10014695|endocrinopathy|C0014130|Endocrine System Diseases|| +001770|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Enterocolitis|10014893|Enterocolitis|10014893|enterocolitis|C0014356|Enterocolitis|| +001771|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Episcleritis|10015084|Episcleritis|10015084|episcleritis|C0014583|Episcleritis|| +001772|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Erythema multiforme|10015218|Erythema multiforme|10015218|erythema multiforme|C0014742|Erythema Multiforme|| +001773|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Extraocular muscle disorder|10053635|Orbital myositis|10031050|ocular myositis|C2350476|Orbital Myositis|underspecified| +001774|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Guillain-Barre syndrome|10018767|Guillain-Barre syndrome|10018767|guillain-barre syndrome|C0018378|Guillain-Barre Syndrome|| +001775|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Haematochezia|10018836|Blood in stool|10005603|blood in stool|C1321898|Blood in stool|| +001776|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Haemolytic anaemia|10018916|Hemolytic anemia|10019493|hemolytic anemia|C0002878|Anemia, Hemolytic|| +001777|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +001778|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +001779|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity vasculitis|10020764|Leukocytoclastic vasculitis|10024377|leukocytoclastic vasculitis|C2973529|Leukocytoclastic vasculitis|| +001780|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|immune-mediated adverse reactions|C0020517|Hypersensitivity|| +001781|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Hyperthyroidism|10020850|Hyperthyroidism|10020850|hyperthyroidism|C0020550|Hyperthyroidism|| +001782|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Hypogonadism|10058359|Hypogonadism|10058359|hypogonadism|C0020619|Hypogonadism|| +001783|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Hypophysitis|10062767|Hypophysitis|10062767|hypophysitis|C0342409|Hypophysitis|| +001784|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Hypopituitarism|10021067|Hypopituitarism|10021067|hypopituitarism|C0020635|Hypopituitarism|| +001785|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +001786|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Ileus|10021328|Ileus|10021328|ileus|C1258215|Ileus|| +001787|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Intestinal perforation|10022694|Intestinal perforation|10022694|intestinal perforation|C0021845|Intestinal Perforation|| +001788|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Iritis|10022955|Iritis|10022955|iritis|C0022081|Iritis|| +001789|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Liver function test abnormal|10024690|Liver function tests multiple abnorm|10024694|liver function test abnormalities|C0151766|Liver function tests abnormal finding|| +001790|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Meningitis|10027199|Meningitis|10027199|meningitis|C0025289|Meningitis|| +001791|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Mucous stools|10028140|Mucous stools|10028140|mucus in stool|C0241254|Mucus in stool|| +001792|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Myasthenia gravis|10028417|Myasthenia gravis|10028417|myasthenia gravis|C0026896|Myasthenia Gravis|| +001793|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Myocarditis|10028606|Myocarditis|10028606|myocarditis|C0027059|Myocarditis|| +001794|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Myositis|10028653|Myositis|10028653|myositis|C0027121|Myositis|| +001795|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Nephritis|10029117|Nephritis|10029117|nephritis|C0027697|Nephritis|| +001796|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Neurosensory hypoacusis|10067587|Neurosensory hypoacusis|10067587|neurosensory hypoacusis|C1963781|Neurosensory hypoacusis|| +001797|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +001798|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Pericarditis|10034484|Pericarditis|10034484|pericarditis|C0031046|Pericarditis|| +001799|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Peripheral motor neuropathy|10034580|Peripheral motor neuropathy|10034580|peripheral motor neuropathy|C0235025|Peripheral motor neuropathy|| +001800|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Peritoneal disorder|10061343|Peritoneal disorder|10061343|peritoneal signs|C0031142|Peritoneal Diseases|| +001801|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +001802|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Polymyalgia rheumatica|10036099|Polymyalgia rheumatica|10036099|polymyalgia rheumatica|C0032533|Polymyalgia Rheumatica|| +001803|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Polymyositis|10036102|Polymyositis|10036102|polymyositis|C0085655|Polymyositis|| +001804|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Psoriasis|10037153|Psoriasis|10037153|psoriasis|C0033860|Psoriasis|| +001805|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Purpura|10037549|Dermatitis hemorrhagic|10012467|dermal hemorrhagic manifestations|C0235955|Dermatitis hemorrhagic|| +001806|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +001807|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +001808|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Sarcoidosis|10039486|Sarcoidosis|10039486|sarcoidosis|C0036202|Sarcoidosis|| +001809|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Scleritis|10039705|Scleritis|10039705|scleritis|C0036416|Scleritis|| +001810|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Skin necrosis|10040893|Skin necrosis|10040893|dermal necrotic manifestations|C0151799|Skin necrosis|| +001811|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Skin ulcer|10040943|Skin ulceration|10040947|dermal ulceration|C0037299|Skin Ulcer|| +001812|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +001813|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Temporal arteritis|10043207|Temporal arteritis|10043207|temporal arteritis|C1956391|Temporal Arteritis|| +001814|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +001815|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|increases in transaminases|C0438717|Transaminases increased|| +001816|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Uveitis|10046851|Uveitis|10046851|uveitis|C0042164|Uveitis|| +001817|2265ef30-253e-11df-8a39-0800200c9a66|YERVOY|43685-7|WARNINGS AND PRECAUTIONS|Vasculitis|10047115|Vasculitis|10047115|vasculitis|C0042384|Vasculitis|| +001818|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34066-1|BOXED WARNINGS|Cardiotoxicity|10048610|Cardiotoxicity|10048610|cardiac toxicity|C0876994|Cardiotoxicity|| +001819|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34066-1|BOXED WARNINGS|Congenital anomaly|10010356|Birth defects|10048305|birth defects|C0000768|Congenital Abnormality|| +001820|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +001821|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34066-1|BOXED WARNINGS|Ejection fraction decreased|10050528|Left ventricular ejection fraction decreased|10053222|reductions in lvef|C1096403|Left ventricular ejection fraction decreased|| +001822|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34066-1|BOXED WARNINGS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +001823|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34066-1|BOXED WARNINGS|Foetal death|10055690|Fetal death|10016479|embryo-fetal death|C0015927|Fetal Death|| +001824|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34066-1|BOXED WARNINGS|Hepatic failure|10019663|Liver failure|10024678|liver failure|C0085605|Liver Failure|| +001825|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34066-1|BOXED WARNINGS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +001826|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34066-1|BOXED WARNINGS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +001827|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +001828|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increased alt|C0151905|Alanine aminotransferase increased|| +001829|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +001830|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +001831|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increased ast|C0151904|Aspartate aminotransferase increased|| +001832|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +001833|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Blood alkaline phosphatase increased|10059570|blood alkaline phosphatase increased|C0852911|Blood alkaline phosphatase increased|| +001834|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|increased bilirubin|C0311468|Increased bilirubin level (finding)|| +001835|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Blood potassium decreased|10005724|Potassium decreased|10036443|decreased potassium|C0860866|Potassium low|| +001836|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +001837|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +001838|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +001839|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +001840|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +001841|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +001842|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Drug hypersensitivity|10013700|Drug hypersensitivity|10013700|drug hypersensitivity|C0013182|Drug Allergy|| +001843|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Dry eye|10013774|Dry eye|10013774|dry eye|C0314719|Dryness of eye|| +001844|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +001845|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +001846|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +001847|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +001848|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +001849|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +001850|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decreased hemoglobin|C0162119|Hemoglobin low|| +001851|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +001852|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +001853|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +001854|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +001855|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +001856|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +001857|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +001858|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +001859|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +001860|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Lacrimation increased|10023644|Lacrimation increased|10023644|lacrimation increased|C0152227|Excessive tearing|| +001861|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Left ventricular dysfunction|10049694|Left ventricular dysfunction|10049694|left ventricular dysfunction|C0242698|Ventricular Dysfunction, Left|| +001862|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +001863|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +001864|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +001865|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +001866|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +001867|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +001868|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Neurotoxicity|10029350|Neurotoxicity|10029350|neurotoxicity|C0235032|Neurotoxicity Syndromes|| +001869|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +001870|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|decreased neutrophils|C0853697|Neutrophil count decreased|| +001871|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Nodular regenerative hyperplasia|10051081|Nodular regenerative hyperplasia|10051081|nodular regenerative hyperplasia|C0020510|Nodular hyperplasia|| +001872|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +001873|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|decreased platelet count|C0392386|Decreased platelet count|| +001874|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +001875|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Portal hypertension|10036200|Portal hypertension|10036200|portal hypertension|C0020541|Hypertension, Portal|| +001876|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +001877|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Pulmonary toxicity|10061924|Pulmonary toxicity|10061924|pulmonary toxicity|C0919924|Pulmonary toxicity|| +001878|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +001879|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +001880|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +001881|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +001882|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|increased transaminases|C0438717|Transaminases increased|| +001883|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +001884|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +001885|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +001886|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Acute respiratory distress syndrome|10001052|Acute respiratory distress syndrome|10001052|acute respiratory distress syndrome|C0035222|Respiratory Distress Syndrome, Adult|| +001887|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactoid reaction|10002216|Anaphylactic type reaction|10002213|anaphylactic-like reaction|C0340865|Anaphylactoid reaction|| +001888|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +001889|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Central nervous system haemorrhage|10072043|Central nervous system hemorrhage|10072051|central nervous system hemorrhage|C3267019|Central nervous system haemorrhage|| +001890|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +001891|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Congenital musculoskeletal anomaly|10062344|Congenital musculoskeletal anomaly|10062344|skeletal abnormalities|C4021790|Abnormality of the skeletal system|| +001892|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +001893|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Death neonatal|10011912|Death neonatal|10011912|neonatal death|C0410916|Neonatal Death|| +001894|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +001895|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +001896|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Ejection fraction decreased|10050528|Left ventricular ejection fraction decreased|10053222|decrease of lvef|C1096403|Left ventricular ejection fraction decreased|| +001897|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +001898|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +001899|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Focal nodular hyperplasia|10052285|Hepatic nodular hyperplasia|10058959|nrh of the liver|C1318485|Liver regeneration disorder|duplicate| +001900|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +001901|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +001902|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding events|C0019080|Hemorrhage|| +001903|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +001904|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Hepatic encephalopathy|10019660|Hepatic encephalopathy|10019660|hepatic encephalopathy|C0019151|Hepatic Encephalopathy|| +001905|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Hepatobiliary disease|10062000|Hepatobiliary disease|10062000|hepatobiliary disorders|C0267792|Hepatobiliary disease|| +001906|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +001907|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic -like reaction|C0020517|Hypersensitivity|| +001908|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +001909|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +001910|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +001911|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +001912|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Infusion site erythema|10048634|Infusion site erythema|10048634|erythema infusion site|C0877365|Infusion site erythema|| +001913|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Infusion site irritation|10065473|Infusion site irritation|10065473|skin irritation infusion site|C1695897|Infusion site irritation|| +001914|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Infusion site pain|10053483|Infusion site pain|10053483|pain infusion site|C1096035|Infusion site pain|| +001915|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Infusion site pain|10053483|Infusion site tenderness|10053532|tenderness infusion site|C1096440|Infusion site tenderness|| +001916|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Infusion site swelling|10053505|Infusion site swelling|10053505|swelling infusion site|C1096049|Infusion site swelling|| +001917|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|ild|C0206062|Lung Diseases, Interstitial|| +001918|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Left ventricular dysfunction|10049694|Left ventricular dysfunction|10049694|left ventricular dysfunction|C0242698|Ventricular Dysfunction, Left|| +001919|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver|| +001920|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Lung infiltration|10025102|Pulmonary infiltration|10037411|pulmonary infiltrates|C0235896|Infiltrate of lung|| +001921|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +001922|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +001923|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Neurotoxicity|10029350|Neurotoxicity|10029350|neurotoxicity|C0235032|Neurotoxicity Syndromes|| +001924|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Nodular regenerative hyperplasia|10051081|Nodular regenerative hyperplasia|10051081|nrh of the liver|C1318485|Liver regeneration disorder|duplicate| +001925|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Oligohydramnios|10030289|Oligohydramnios|10030289|oligohydramnios|C0079924|Oligohydramnios|| +001926|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Peripheral sensory neuropathy|10034620|Peripheral sensory neuropathy|10034620|peripheral neuropathy sensory|C0151313|Sensory neuropathy|| +001927|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|decreased platelet count|C0392386|Decreased platelet count|| +001928|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +001929|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary hypoplasia|10037407|Pulmonary hypoplasia|10037407|pulmonary hypoplasia|C0265783|Congenital hypoplasia of lung|| +001930|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary toxicity|10061924|Pulmonary toxicity|10061924|pulmonary toxicity|C0919924|Pulmonary toxicity|| +001931|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +001932|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Respiratory tract haemorrhage|10038727|Respiratory tract hemorrhage|10038730|respiratory hemorrhage|C0235560|Respiratory tract hemorrhage|| +001933|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +001934|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +001935|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Serum transaminase increased|10040421|increases in serum transaminases|C0859350|Serum transaminase increased|| +001936|23f3c1f4-0fc8-4804-a9e3-04cf25dd302e|KADCYLA|43685-7|WARNINGS AND PRECAUTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +001937|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Stomach discomfort|10042101|stomach discomfort|C0235309|Upset stomach|| +001938|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +001939|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Blood cholesterol increased|10005425|Cholesterol total increased|10008671|increases in total cholesterol|C1522133|Hypercholesterolemia result|| +001940|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|increases triglycerides|C1522137|Hypertriglyceridemia result|| +001941|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +001942|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Bursitis infective|10061022|Bursitis infective|10061022|infection in olecranon bursa|C1290161|Infected bursa|duplicate| +001943|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Bursitis|10006811|Olecranon bursitis|10030278|infection in olecranon bursa|C0263962|Olecranon bursitis|duplicate| +001944|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +001945|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +001946|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|died|C1306577|Death (finding)|| +001947|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +001948|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal bleeding|10017936|gastrointestinal bleeding|C0017181|Gastrointestinal Hemorrhage|| +001949|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|High density lipoprotein increased|10020061|HDL cholesterol increased|10070544|increases hdl cholesterol|C2938903|HDL cholesterol increased|| +001950|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +001951|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +001952|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Injection site bruising|10022052|Injection site bruising|10022052|is bruising|C0521508|Injection site bruising|| +001953|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Injection site dermatitis|10022056|Injection site dermatitis|10022056|is dermatitis|C0521505|Injection site dermatitis|| +001954|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|is erythema|C0852625|Injection site erythema|| +001955|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Injection site haemorrhage|10022067|Injection site hemorrhage|10022068|is hemorrhage|C0151698|Injection site hemorrhage|| +001956|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Injection site inflammation|10022078|Injection site inflammation|10022078|is inflammation|C0151734|Injection site inflammation|| +001957|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Injection site mass|10022081|Injection site mass|10022081|is mass|C0151775|Injection site mass|| +001958|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Injection site oedema|10022085|Injection site edema|10022058|is edema|C0151605|Injection site edema|| +001959|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|is pruritis|C0852995|Injection site pruritus|| +001960|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection-site reactions|C0151735|Injection site reaction|| +001961|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Injection site swelling|10053425|Injection site swelling|10053425|is swelling|C0151605|Injection site edema|| +001962|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Injection site urticaria|10022107|Injection site urticaria|10022107|is urticaria|C0392196|Injection site urticaria|| +001963|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Injection site vesicles|10022111|Injection site vesicles|10022111|is vesicles|C0854431|Injection site vesicles|| +001964|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Injection site warmth|10022112|Injection site warmth|10022112|is warmth|C0858934|Injection site warmth|| +001965|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Low density lipoprotein increased|10024910|LDL cholesterol increased|10024055|increases ldl cholesterol|C0549399|Low density lipoprotein increased|| +001966|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Meningitis pneumococcal|10027253|Streptococcus pneumoniae meningitis|10042194|streptococcus pneumoniae meningitis|C0025295|Meningitis, Pneumococcal|| +001967|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Mycobacterium avium complex infection|10058806|Mycobacterium avium complex infection|10058806|mycobacterium intracellulare infection|C0026916|Mycobacterium avium-intracellulare Infection|| +001968|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Mycobacterium avium complex infection|10058806|Mycobacterium avium intracellulare infection|10058807|infection mycobacterium intracellulare|C0026916|Mycobacterium avium-intracellulare Infection|| +001969|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +001970|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|transient neutropenia|C0027947|Neutropenia|| +001971|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Absolute neutrophil count decreased|10059234|anc < 1 x 10 9 /l|C1168174|Absolute neutrophil count decreased|| +001972|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +001973|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory infection|10046300|upper respiratory infection|C0041912|Upper Respiratory Infections|| +001974|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +001975|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +001976|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|43685-7|WARNINGS AND PRECAUTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +001977|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|died|C1306577|Death (finding)|| +001978|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|43685-7|WARNINGS AND PRECAUTIONS|Decreased immune responsiveness|10011968|Decreased immune responsiveness|10011968|interfere with the immune response to infections|C0863087|Decreased immune responsiveness|| +001979|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +001980|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +001981|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|43685-7|WARNINGS AND PRECAUTIONS|Meningitis bacterial|10027202|Bacterial meningitis|10004049|bacterial meningitis|C0085437|Meningitis, Bacterial|| +001982|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +001983|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections||DrugClass +001984|282f4099-e848-432a-bac1-e041c192a5ba|Arcalyst|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|TB|10043148|tb|C0041296|Tuberculosis||DrugClass +001985|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +001986|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Abscess|10000269|Abscess|10000269|abscess|C0000833|Abscess|| +001987|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Acute respiratory distress syndrome|10001052|Acute respiratory distress syndrome|10001052|acute respiratory distress syndrome|C0035222|Respiratory Distress Syndrome, Adult|| +001988|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Acute respiratory failure|10001053|Acute respiratory failure|10001053|acute respiratory failure|C0264490|Acute respiratory failure|| +001989|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt elevation|C0151905|Alanine aminotransferase increased|| +001990|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase elevation|C0151905|Alanine aminotransferase increased|| +001991|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Arrhythmia|10003119|Arrhythmia|10003119|arrhythmia|C0003811|Cardiac Arrhythmia|| +001992|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast elevation|C0151904|Aspartate aminotransferase increased|| +001993|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase elevation|C0151904|Aspartate aminotransferase increased|| +001994|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Blindness|10005169|Vision loss|10047522|visual loss|C3665386|Abnormal vision|| +001995|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +001996|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +001997|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Cyst|10011732|Cyst|10011732|local cystic invasion beyond the kidney|C0010709|Cyst|underspecified| +001998|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +001999|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +002000|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Diabetic ketoacidosis|10012671|Diabetic ketoacidosis|10012671|diabetic ketoacidosis|C0011880|Diabetic Ketoacidosis|| +002001|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +002002|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +002003|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Dysaesthesia|10013886|Dysesthesia|10062872|dysesthesia|C0392699|Dysesthesia|| +002004|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +002005|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +002006|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +002007|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +002008|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QT prolonged|10014387|electrocardiogram qt prolonged|C0151878|Prolonged QT interval|| +002009|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|qtc prolongation|C0855333|Electrocardiogram QT corrected interval prolonged|| +002010|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|QT interval prolonged|10037703|qt interval prolongation|C0151878|Prolonged QT interval|| +002011|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +002012|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Gait disturbance|10017577|gait disturbance|C0575081|Gait abnormality|| +002013|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +002014|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +002015|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +002016|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoaesthesia|10020937|hypoaesthesia|C0020580|Hypesthesia|| +002017|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +002018|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +002019|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +002020|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|ild|C0206062|Lung Diseases, Interstitial|| +002021|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +002022|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasm|10028333|muscle spasm|C0037763|Spasm|| +002023|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Muscular weakness|10028372|Muscular weakness|10028372|muscular weakness|C0151786|Muscle Weakness|| +002024|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +002025|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Neuralgia|10029223|Neuralgia|10029223|neuralgia|C0027796|Neuralgia|| +002026|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +002027|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy|10029328|neuropathy|C0442874|Neuropathy|| +002028|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +002029|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +002030|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +002031|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paraesthesia|10033775|paraesthesia|C0030554|Paresthesia|| +002032|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|parasthesia|C0030554|Paresthesia|| +002033|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Peripheral sensory neuropathy|10034620|Peripheral sensory neuropathy|10034620|peripheral sensory neuropathy|C0151313|Sensory neuropathy|| +002034|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Peripheral sensory neuropathy|10034620|Sensory neuropathy|10062975|neuropathy sensory|C0151313|Sensory neuropathy|| +002035|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Photopsia|10034962|Photopsia|10034962|photopsia|C0085635|Photopsia|| +002036|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +002037|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +002038|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Polyneuropathy|10036105|Polyneuropathy|10036105|polyneuropathy|C0152025|Polyneuropathy|| +002039|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +002040|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +002041|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +002042|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Renal cyst|10038423|Renal cyst|10038423|renal cysts|C3887499|Renal cyst|| +002043|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Respiratory failure|10038695|Respiratory failure|10038695|respiratory failure|C1145670|Respiratory Failure|| +002044|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Sensory disturbance|10040026|Sensory disturbance|10040026|sensory disturbance|C0152027|Sensory Disorders|| +002045|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +002046|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Septic shock|10040070|Septic shock|10040070|septic shock|C0036983|Septic Shock|| +002047|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Skin burning sensation|10054786|Skin burning sensation|10054786|burning sensation in skin|C0241057|Burning sensation of skin|| +002048|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +002049|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevated transaminases|C0438717|Transaminases increased|| +002050|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory infection|10046300|upper respiratory infection|C0041912|Upper Respiratory Infections|| +002051|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +002052|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Vision disorders|10047518|Vision disorders|10047518|vision disorder|C0042790|Vision Disorders|HLGT| +002053|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Visual impairment|10047571|Visual disturbances|10047545|visual disturbances|C0547030|Visual disturbance|| +002054|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Visual impairment|10047571|Visual disturbance|10047543|visual adverse reactions|C1557306|Adverse Event Associated with Ocular and Visual Systems|| +002055|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Visual impairment|10047571|Visual impairment|10047571|visual impairment|C3665347|Visual Impairment|| +002056|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Vitreous floaters|10047654|Vitreous floaters|10047654|vitreous floaters|C0016242|Vitreous floaters|| +002057|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +002058|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +002059|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +002060|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevations in alt|C0151905|Alanine aminotransferase increased|| +002061|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|elevations in alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +002062|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|elevations in ast|C0151904|Aspartate aminotransferase increased|| +002063|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|elevations in aspartate aminotransferase|C0151904|Aspartate aminotransferase increased|| +002064|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Blindness|10005169|Vision loss|10047522|visual loss|C3665386|Abnormal vision|| +002065|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|total bilirubin two times the uln|C0741494|Elevated total bilirubin|| +002066|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|symptomatic bradycardia|C0741627|BRADYCARDIA SYMPTOMATIC|| +002067|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +002068|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|increase qtcf|C3828431|QTcF Prolongation|| +002069|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT interval prolonged|10037703|qt interval prolongation|C0151878|Prolonged QT interval|| +002070|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +002071|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Heart rate decreased|10019301|Heart rate decreased|10019301|heart rate less than 50 beats per minute|C2230138|Pulse slow (finding)|| +002072|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +002073|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|ild|C0206062|Lung Diseases, Interstitial|| +002074|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryofetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +002075|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Optic atrophy|10030910|Optic atrophy|10030910|optic atrophy|C0029124|Optic Atrophy|| +002076|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Optic nerve disorder|10061322|Optic nerve disorder|10061322|optic nerve disorder|C0029132|Disorder of the optic nerve|| +002077|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +002078|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +002079|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminase elevations|C0438717|Transaminases increased|| +002080|2a51b0de-47d6-455e-a94c-d2c737b04ff7|Xalkori|43685-7|WARNINGS AND PRECAUTIONS|Visual field defect|10047555|Visual field defect|10047555|visual field defect|C3887875|Visual field defects|| +002081|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34066-1|BOXED WARNINGS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +002082|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34066-1|BOXED WARNINGS|Deep vein thrombosis|10051055|DVT|10013877|dvt|C0149871|Deep Vein Thrombosis|| +002083|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34066-1|BOXED WARNINGS|Deep vein thrombosis|10051055|Thrombosis venous deep|10043642|deep venous thrombosis|C0149871|Deep Vein Thrombosis|| +002084|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34066-1|BOXED WARNINGS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolism|C3544094|Arterial thromboembolism|| +002085|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34066-1|BOXED WARNINGS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolism|C1861172|Venous Thromboembolism|| +002086|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34066-1|BOXED WARNINGS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +002087|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34066-1|BOXED WARNINGS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +002088|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34066-1|BOXED WARNINGS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pe|C0034065|Pulmonary Embolism|| +002089|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +002090|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +002091|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +002092|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Angina pectoris|10002383|Angina pectoris|10002383|angina pectoris|C0002962|Angina Pectoris|| +002093|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +002094|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +002095|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +002096|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +002097|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +002098|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +002099|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +002100|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Bacteraemia|10003997|Bacteremia|10003999|bacteremia|C0004610|Bacteremia|| +002101|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Blood creatinine increased|10005483|blood creatinine increased|C0235431|Blood creatinine increased|| +002102|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Bone pain|10006002|Bone pain|10006002|bone pain|C0151825|Bone pain|| +002103|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +002104|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Cardiac failure congestive|10007559|Cardiac failure congestive|10007559|cardiac failure congestive|C0018802|Congestive heart failure|| +002105|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +002106|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +002107|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Chronic obstructive pulmonary disease|10009033|Chronic obstructive pulmonary disease|10009033|chronic obstructive pulmonary disease|C0024117|Chronic Obstructive Airway Disease|| +002108|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Clostridium difficile colitis|10009657|Clostridium difficile colitis|10009657|clostridium difficile colitis|C0238106|Clostridium difficile colitis|| +002109|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Compression fracture|10010214|Compression fracture|10010214|compression fracture|C0521169|Fractures, Compression|| +002110|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +002111|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +002112|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +002113|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +002114|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +002115|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +002116|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Depressed level of consciousness|10012373|Depressed level of consciousness|10012373|depressed level of consciousness|C0549249|Depressed Level of Consciousness|| +002117|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +002118|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +002119|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +002120|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +002121|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolism|C3544094|Arterial thromboembolism|| +002122|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolism|C1861172|Venous Thromboembolism|| +002123|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +002124|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Failure to thrive|10016165|Failure to thrive|10016165|failure to thrive|C0015544|Failure to Thrive|| +002125|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Fall|10016173|Fall|10016173|fall|C0085639|Falls|| +002126|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +002127|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +002128|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Femur fracture|10016454|Femur fracture|10016454|femur fracture|C0015802|Femoral Fractures|| +002129|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|General physical health deterioration|10049438|General physical health deterioration|10049438|general physical health deterioration|C0877211|General physical health deterioration|| +002130|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Haematotoxicity|10061188|Hematotoxicity|10061196|hematologic toxicity|C0920103|Haematotoxicity|| +002131|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hemoglobin decreased|C0162119|Hemoglobin low|| +002132|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +002133|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|elevated liver enzymes|C0235996|Elevated liver enzymes|| +002134|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +002135|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +002136|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Hyperbilirubinaemia|10020578|Hyperbilirubinemia|10020582|hyperbilirubinemia|C0020433|Hyperbilirubinemia|| +002137|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Hypercalcaemia|10020583|Hypercalcemia|10020587|hypercalcemia|C0020437|Hypercalcemia|| +002138|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +002139|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +002140|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Hyperkalaemia|10020646|Hyperkalemia|10020647|hyperkalemia|C0020461|Hyperkalemia|| +002141|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +002142|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +002143|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +002144|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +002145|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +002146|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +002147|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +002148|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +002149|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +002150|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Lung infection|10061229|Lung infection|10061229|lung infection|C0876973|Infectious disease of lung|| +002151|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Lymphocyte count decreased|10025256|Lymphocyte count decreased|10025256|lymphocyte count decreased|C0853986|Lymphocyte count decreased|| +002152|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +002153|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Maternal drugs affecting foetus|10026923|Maternal drugs affecting fetus|10060521|fetal risk|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +002154|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Mental status changes|10048294|Mental status changes|10048294|mental status change|C0856054|Mental status changes|| +002155|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Multi-organ failure|10028154|Multi-organ failure|10028154|multi-organ failure|C0026766|Multiple Organ Failure|| +002156|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +002157|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Muscular weakness|10028372|Muscular weakness|10028372|muscular weakness|C0151786|Muscle Weakness|| +002158|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Musculoskeletal chest pain|10050819|Musculoskeletal chest pain|10050819|musculoskeletal chest pain|C0476280|Musculoskeletal chest pain|| +002159|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +002160|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +002161|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +002162|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +002163|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy|10029328|neuropathy|C0442874|Neuropathy|| +002164|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +002165|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Neutropenic sepsis|10049151|Neutropenic sepsis|10049151|neutropenic sepsis|C0877153|Neutropenic sepsis|| +002166|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|neutrophil count decreased|C0853697|Neutrophil count decreased|| +002167|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Night sweats|10029410|Night sweats|10029410|night sweats|C0028081|Night sweats|| +002168|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Non-cardiac chest pain|10062501|Non-cardiac chest pain|10062501|non-cardiac chest pain|C0476281|Non-cardiac chest pain|| +002169|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +002170|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +002171|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +002172|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +002173|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +002174|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Pelvic pain|10034263|Pelvic pain|10034263|pelvic pain|C0030794|Pelvic Pain|| +002175|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|platelet count decreased|C0392386|Decreased platelet count|| +002176|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystis jiroveci pneumonia|10064108|pneumocystis jiroveci pneumonia|C1535939|Pneumocystis jiroveci pneumonia|| +002177|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Pneumonia respiratory syncytial viral|10035732|Pneumonia respiratory syncytial viral|10035732|pneumonia respiratory syncytial viral|C0152413|Pneumonia due to respiratory syncytial virus|| +002178|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Pneumonia streptococcal|10035735|Pneumonia streptococcal|10035735|pneumonia streptococcal|C0155862|Streptococcal pneumonia|| +002179|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Lobar pneumonia|10024738|lobar pneumonia|C0032300|Lobar Pneumonia|| +002180|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +002181|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Productive cough|10036790|Productive cough|10036790|productive cough|C0239134|Productive cough|| +002182|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +002183|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +002184|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +002185|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +002186|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Rash|10037844|Skin rash|10040913|skin rash|C0015230|Exanthema|| +002187|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +002188|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Respiratory failure|10038695|Respiratory failure|10038695|respiratory failure|C1145670|Respiratory Failure|| +002189|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Respiratory syncytial virus infection|10061603|Respiratory syncytial virus infection|10061603|respiratory syncytial virus infection|C0035235|Respiratory Syncytial Virus Infections|| +002190|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Second primary malignancy|10039801|Second primary malignancy|10039801|second primary malignancies|C0751623|Second Primary Cancers|| +002191|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +002192|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Septic shock|10040070|Septic shock|10040070|septic shock|C0036983|Septic Shock|| +002193|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Spinal compression fracture|10041541|Spinal compression fracture|10041541|spinal compression fracture|C0262431|Compression fracture of vertebral column|| +002194|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +002195|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +002196|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +002197|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +002198|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +002199|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Urinary retention|10046555|Urinary retention|10046555|urinary retention|C0080274|Urinary Retention|| +002200|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +002201|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Urosepsis|10048709|Urosepsis|10048709|urosepsis|C0149801|Sepsis due to urinary tract infection|| +002202|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +002203|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +002204|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Viral infection|10047461|Viral infection|10047461|viral infection|C0042769|Virus Diseases|| +002205|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +002206|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +002207|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +002208|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|White blood cell count decreased|10047942|white blood cell count decreased|C0750394|White blood cell count decreased|| +002209|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Acute myeloid leukaemia|10000880|Acute myeloid leukemia|10000886|acute myelogenous leukemia|C0023467|Leukemia, Myelocytic, Acute|| +002210|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|elevated levels of alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +002211|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +002212|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +002213|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|elevated levels of bilirubin|C0311468|Increased bilirubin level (finding)|| +002214|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Cerebral ischaemia|10008120|Other generalized ischemic cerebrovascular disease|10032087|ischemic cerebrovascular conditions|C0029626|Other generalized ischemic cerebrovascular disease|| +002215|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +002216|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +002217|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatalities|C1306577|Death (finding)|| +002218|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Deep vein thrombosis|10051055|Thrombosis venous deep|10043642|deep venous thrombosis|C0149871|Deep Vein Thrombosis|| +002219|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +002220|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolic events|C3544094|Arterial thromboembolism|| +002221|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolic events|C1861172|Venous Thromboembolism|| +002222|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Embolism|10061169|Thromboembolic event|10043565|thromboembolic events|C0040038|Thromboembolism|| +002223|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +002224|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +002225|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +002226|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Myocardial ischaemia|10028600|Ischemic heart disease|10055218|ischemic heart disease|C0151744|Myocardial Ischemia|| +002227|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +002228|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Neuropathy peripheral|10029331|Neuropathy|10029328|neuropathy|C0442874|Neuropathy|| +002229|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +002230|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +002231|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|dermatologic reactions|C0221743|Skin reaction|| +002232|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +002233|2b25ef01-5c9e-11e1-b86c-0800200c9a66|Pomalyst|43685-7|WARNINGS AND PRECAUTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +002234|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt > 10 x uln|C0151905|Alanine aminotransferase increased|| +002235|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast > 10 x uln|C0151904|Aspartate aminotransferase increased|| +002236|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +002237|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|elevations of total bilirubin|C0741494|Elevated total bilirubin|| +002238|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +002239|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +002240|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +002241|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +002242|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +002243|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevations of transaminases|C0438717|Transaminases increased|| +002244|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +002245|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +002246|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Autonomic nervous system imbalance|10003840|Autonomic instability|10049218|autonomic instability|C0262385|Autonomic nervous system imbalance|| +002247|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Coma|10010071|Coma|10010071|coma|C0009421|Comatose|| +002248|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Coordination abnormal|10010947|Incoordination|10021649|incoordination|C0520966|Abnormal coordination|| +002249|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +002250|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Delirium|10012218|Delirium|10012218|delirium|C0011206|Delirium|| +002251|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +002252|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +002253|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +002254|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal symptoms|C0426576|Gastrointestinal symptom|| +002255|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Hallucination|10019063|Hallucinations|10019077|hallucinations|C0018524|Hallucinations|| +002256|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Hyperhidrosis|10020642|Diaphoresis|10012703|diaphoresis|C0700590|Increased sweating|| +002257|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Hyperreflexia|10020745|Hyperreflexia|10020745|hyperreflexia|C0151889|Hyperreflexia|| +002258|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +002259|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Hyperthermia|10020843|Hyperthermia|10020843|hyperthermia|C0015967|Fever|| +002260|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Labile blood pressure|10023533|Labile blood pressure|10023533|labile blood pressure|C0428895|Labile blood pressure|| +002261|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Mental status changes|10048294|Mental status changes|10048294|mental status changes|C0856054|Mental status changes|| +002262|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Muscle rigidity|10028330|Rigidity|10039168|rigidity|C0026837|Muscle Rigidity|| +002263|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Myoclonus|10028622|Myoclonus|10028622|myoclonus|C0027066|Myoclonus|| +002264|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +002265|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Neuromyopathy|10029323|Neuromuscular disorder NOS|10029316|neuromuscular symptoms|C0752252|Neuromuscular Manifestations|| +002266|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +002267|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Serotonin syndrome|10040108|Serotonin syndrome|10040108|serotonin syndrome|C0699828|Serotonin Syndrome||DrugClass +002268|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +002269|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +002270|2daa0c22-3051-4f12-a860-e5404c862760|AKYNZEO|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +002271|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34066-1|BOXED WARNINGS|Asthma|10003553|Asthma|10003553|asthma|C0004096|Asthma||DrugClass +002272|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)||DrugClass +002273|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +002274|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Angle closure glaucoma|10002500|Anatomical narrow angle borderline glaucoma|10002251|worsening of narrow-angle glaucoma|C0154941|Anatomical narrow angle borderline glaucoma|| +002275|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +002276|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +002277|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Asthma|10003553|Asthma|10003553|asthma|C0004096|Asthma||DrugClass +002278|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +002279|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Bronchospasm paradoxical|10006486|Paradoxical bronchospasm|10033770|paradoxical bronchospasm|C0236072|Paradoxical bronchospasm|| +002280|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Cardiac fibrillation|10061592|Fibrillation|10016565|fibrillation|C0232197|Fibrillation|| +002281|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular effects|C0476270|Cardiovascular symptoms|| +002282|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +002283|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +002284|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +002285|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +002286|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +002287|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)||DrugClass +002288|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Diabetes mellitus|10012601|Diabetes mellitus|10012601|diabetes mellitus|C0011849|Diabetes Mellitus|| +002289|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +002290|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +002291|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +002292|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +002293|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +002294|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Lower respiratory tract infection|10024968|Lower respiratory tract infection|10024968|lower respiratory tract infection|C0149725|Lower respiratory tract infection|| +002295|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +002296|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Musculoskeletal chest pain|10050819|Musculoskeletal chest pain|10050819|musculoskeletal chest pain|C0476280|Musculoskeletal chest pain|| +002297|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +002298|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +002299|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Neck pain|10028836|Neck pain|10028836|neck pain|C0007859|Neck Pain|| +002300|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +002301|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Pharyngitis|10034835|Pharyngitis|10034835|pharyngitis|C0031350|Pharyngitis|| +002302|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Pleuritic pain|10035623|Pleuritic pain|10035623|pleuritic pain|C0008033|Pleuritic pain|| +002303|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Productive cough|10036790|Productive cough|10036790|productive cough|C0239134|Productive cough|| +002304|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +002305|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +002306|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Respiratory tract infection viral|10062106|Respiratory tract infection viral|10062106|viral respiratory tract infection|C0877203|Respiratory tract infection viral|| +002307|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +002308|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Supraventricular extrasystoles|10042602|Supraventricular extrasystoles|10042602|supraventricular extrasystoles|C0033036|Atrial Premature Complexes|| +002309|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Toothache|10044055|Toothache|10044055|toothache|C0040460|Toothache|| +002310|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Urinary retention|10046555|Urinary retention|10046555|worsening of urinary retention|C0080274|Urinary Retention|| +002311|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +002312|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Ventricular extrasystoles|10047289|Ventricular extrasystoles|10047289|ventricular extrasystoles|C0151636|Premature ventricular contractions|| +002313|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +002314|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +002315|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +002316|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Angle closure glaucoma|10002500|Anatomical narrow angle borderline glaucoma|10002251|worsening of narrow-angle glaucoma|C0154941|Anatomical narrow angle borderline glaucoma|| +002317|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Asthma|10003553|Asthma|10003553|asthma|C0004096|Asthma||DrugClass +002318|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Blood potassium decreased|10005724|Serum potassium decreased|10040378|decrease in serum potassium|C0595885|Serum potassium decreased|| +002319|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure diastolic increased|10005739|Blood pressure diastolic increased|10005739|increases in diastolic blood pressure|C0277889|Increased diastolic arterial pressure|| +002320|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure systolic increased|10005760|Blood pressure systolic increased|10005760|increases in systolic blood pressure|C0277884|Increased systolic arterial pressure|| +002321|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Bronchospasm paradoxical|10006486|Paradoxical bronchospasm|10033770|paradoxical bronchospasm|C0236072|Paradoxical bronchospasm|| +002322|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular effects|C0476270|Cardiovascular symptoms||DrugClass +002323|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|deaths|C1306577|Death (finding)||DrugClass +002324|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Diabetes mellitus|10012601|Diabetes mellitus aggravated|10012603|aggravate preexisting diabetes mellitus|C0235398|Diabetes mellitus exacerbated||DrugClass +002325|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|prolongation of the qtc interval|C0855333|Electrocardiogram QT corrected interval prolonged||DrugClass +002326|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram ST segment depression|10014391|ST segment depression|10041892|st segment depression|C0520887|ST segment depression (finding)||DrugClass +002327|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram T wave amplitude decreased|10014394|T wave flattening of|10042965|flattening of the t wave|C0429059|Flattened T wave (finding)||DrugClass +002328|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram change|10061116|Electrocardiogram change|10061116|electrocardiographic changes|C0855329|Electrocardiographic changes||DrugClass +002329|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Heart rate increased|10019303|Pulse rate increased|10037490|increases in pulse rate|C0039231|Tachycardia|| +002330|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|transient hyperglycemia|C0020456|Hyperglycemia||DrugClass +002331|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +002332|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia||DrugClass +002333|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Ketoacidosis|10023379|Ketoacidosis|10023379|aggravate preexisting ketoacidosis|C0220982|Ketoacidosis||DrugClass +002334|2dbd0671-c565-40c5-bf0f-e324db26799c|Anoro|43685-7|WARNINGS AND PRECAUTIONS|Urinary retention|10046555|Urinary retention|10046555|worsening of urinary retention|C0080274|Urinary Retention|| +002335|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34066-1|BOXED WARNINGS|Aspergillus infection|10074171|Aspergillosis|10003488|aspergillosis|C0004030|Aspergillosis|| +002336|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34066-1|BOXED WARNINGS|Bacterial infection|10060945|Bacterial infection|10060945|bacterial infections opportunistic|C0004623|Bacterial Infections|duplicate| +002337|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34066-1|BOXED WARNINGS|Candida infection|10074170|Candidiasis|10007152|candidiasis|C0006840|Candidiasis|| +002338|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +002339|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34066-1|BOXED WARNINGS|Extrapulmonary tuberculosis|10064445|Extrapulmonary tuberculosis|10064445|active tuberculosis extrapulmonary|C0679362|Tuberculosis, extrapulmonary|| +002340|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34066-1|BOXED WARNINGS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +002341|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34066-1|BOXED WARNINGS|Opportunistic infection|10030901|Opportunistic infection|10030901|viral opportunistic infections|C0029118|Opportunistic Infections|duplicate| +002342|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34066-1|BOXED WARNINGS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystis pneumonia|10035661|pneumocystis|C1535939|Pneumocystis jiroveci pneumonia|| +002343|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34066-1|BOXED WARNINGS|Pulmonary tuberculosis|10037440|Pulmonary tuberculosis|10037440|active tuberculosis pulmonary|C0041327|Tuberculosis, Pulmonary|| +002344|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34066-1|BOXED WARNINGS|Systemic mycosis|10052366|Invasive mycosis|10062642|invasive fungal infections|C1262313|Invasive mycosis|| +002345|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34066-1|BOXED WARNINGS|Tuberculosis|10044755|Active tuberculosis|10071157|active tuberculosis|C0151332|Active tuberculosis|| +002346|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34066-1|BOXED WARNINGS|Tuberculosis|10044755|TB|10043148|tb|C0041296|Tuberculosis|| +002347|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34066-1|BOXED WARNINGS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +002348|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34066-1|BOXED WARNINGS|Viral infection|10047461|Viral infection|10047461|viral opportunistic infections|C0042769|Virus Diseases|duplicate| +002349|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +002350|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Abscess|10000269|Abscess|10000269|abscess|C0000833|Abscess|| +002351|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increased|C0151905|Alanine aminotransferase increased|| +002352|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reaction|C0002792|anaphylaxis|| +002353|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +002354|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +002355|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +002356|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Arthritis bacterial|10053555|Arthritis bacterial|10053555|bacterial arthritis|C1692886|Arthritis, Bacterial|| +002357|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast (u/l) > 3* uln to 5* uln|C0151904|Aspartate aminotransferase increased|| +002358|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|total bilirubin increased|C0741494|Elevated total bilirubin|| +002359|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Blood cholesterol increased|10005425|Cholesterol total increased|10008671|elevations in total cholesterol|C1522133|Hypercholesterolemia result|| +002360|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|increases in triglycerides|C1522137|Hypertriglyceridemia result|| +002361|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +002362|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +002363|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +002364|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +002365|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +002366|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +002367|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Diverticulitis|10013538|Diverticulitis|10013538|diverticulitis|C0012813|Diverticulitis|| +002368|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +002369|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +002370|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Epigastric discomfort|10053155|Epigastric discomfort|10053155|epigastric discomfort|C1291078|Epigastric discomfort|| +002371|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Fistula|10016717|Fistula|10016717|fistula|C0016169|pathologic fistula|| +002372|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Gastric ulcer|10017822|Gastric ulcer|10017822|gastric ulcer|C0038358|Gastric ulcer|| +002373|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +002374|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Gastroenteritis|10017888|Gastroenteritis|10017888|gastroenteritis|C0017160|Gastroenteritis|| +002375|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Gastrointestinal perforation|10018001|GI perforation|10018242|gi perforations|C0151664|Gastrointestinal perforation|| +002376|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +002377|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +002378|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Hepatic enzyme abnormal|10062685|Liver enzyme abnormal|10024677|liver enzyme abnormalities|C0438237|Liver enzymes abnormal|| +002379|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|liver enzyme elevation|C0235996|Elevated liver enzymes|| +002380|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +002381|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|High density lipoprotein increased|10020061|HDL increased|10019187|hdl elevations in|C0853084|High density lipoprotein increased|| +002382|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|High density lipoprotein increased|10020061|Increased HDL|10021662|hdl increased|C0853084|High density lipoprotein increased|| +002383|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Histiocytosis haematophagic|10048595|Macrophage activation syndrome|10053867|mas|C1096155|Macrophage Activation Syndrome|| +002384|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reaction|C0020517|Hypersensitivity|| +002385|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +002386|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +002387|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +002388|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +002389|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|adverse events associated with the infusion|C0948715|Infusion related reaction|| +002390|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +002391|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Injection site haematoma|10022066|Injection site hematoma|10055371|injection site hematoma|C0542008|Injection site haematoma|| +002392|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +002393|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|injection site pruritus|C0852995|Injection site pruritus|| +002394|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +002395|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|LDL/HDL ratio increased|10049030|LDL/HDL ratio increased|10049030|ldl/hdl ratio increased|C0877123|LDL/HDL ratio increased|| +002396|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +002397|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Lipids increased|10024592|Lipids increased|10024592|elevations in lipid parameters|C0851043|Increased lipid|| +002398|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Low density lipoprotein increased|10024910|LDL increased|10024057|increase in ldl|C0549399|Low density lipoprotein increased|| +002399|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Mouth ulceration|10028034|Mouth ulceration|10028034|mouth ulceration|C0149745|Oral Ulcer|| +002400|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +002401|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +002402|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +002403|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Nephrolithiasis|10029148|Nephrolithiasis|10029148|nephrolithiasis|C0392525|Nephrolithiasis|| +002404|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Neutralising antibodies|10058063|Neutralizing antibodies|10058033|neutralizing antibodies|C1609515|Neutralising antibodies positive|| +002405|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Absolute neutrophil count decreased|10059234|anc below 1000 per mm 3|C1168174|Absolute neutrophil count decreased|| +002406|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|decrease in neutrophil counts|C0853697|Neutrophil count decreased|| +002407|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +002408|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +002409|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Oral herpes|10067152|Herpes simplex oral|10073933|oral herpes simplex|C0341012|Oral herpes simplex infection|| +002410|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Otitis media|10033078|Otitis media|10033078|otitis media|C0029882|Otitis Media|| +002411|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Peritonitis|10034674|Peritonitis|10034674|generalized purulent peritonitis|C0341504|Purulent peritonitis|underspecified| +002412|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|decrease in platelet count|C0392386|Decreased platelet count|| +002413|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +002414|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|skin pruritus|C0033774|Pruritus|| +002415|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +002416|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Rash|10037844|Skin rash|10040913|skin rash|C0015230|Exanthema|| +002417|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +002418|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +002419|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +002420|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +002421|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminase increased|C0438717|Transaminases increased|| +002422|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infections|C0041912|Upper Respiratory Infections|| +002423|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +002424|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|skin urticaria|C0042109|Urticaria|| +002425|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Varicella|10046980|Varicella|10046980|varicella|C0008049|Chickenpox|| +002426|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +002427|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevation in alt|C0151905|Alanine aminotransferase increased|| +002428|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylaxis events|C0002792|anaphylaxis|| +002429|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +002430|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Arthritis bacterial|10053555|Arthritis bacterial|10053555|bacterial arthritis|C1692886|Arthritis, Bacterial|| +002431|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|elevation in ast|C0151904|Aspartate aminotransferase increased|| +002432|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Aspergillus infection|10074171|Aspergillosis|10003488|aspergillosis|C0004030|Aspergillosis|| +002433|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Bacterial infection|10060945|Infection bacterial|10021804|infections bacterial opportunistic|C0004623|Bacterial Infections|duplicate| +002434|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Blood cholesterol increased|10005425|Cholesterol total increased|10008671|increases in total cholesterol|C1522133|Hypercholesterolemia result|| +002435|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|increases in triglycerides|C1522137|Hypertriglyceridemia result|| +002436|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Candida infection|10074170|Candidiasis|10007152|candidiasis|C0006840|Candidiasis|| +002437|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +002438|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Chronic inflammatory demyelinating polyradiculoneuropathy|10057645|Chronic inflammatory demyelinating polyradiculoneuropathy|10057645|chronic inflammatory demyelinating polyneuropathy|C0393819|Polyradiculoneuropathy, Chronic Inflammatory Demyelinating|| +002439|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Coccidioidomycosis|10009825|Coccidioidomycosis|10009825|coccidioidomycosis|C0009186|Coccidioidomycosis|| +002440|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Cryptococcosis|10011490|Cryptococcosis|10011490|infections cryptococcus|C0276687|Disseminated cryptococcosis|| +002441|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +002442|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Diverticulitis|10013538|Diverticulitis|10013538|diverticulitis|C0012813|Diverticulitis|| +002443|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Gastroenteritis|10017888|Gastroenteritis|10017888|gastroenteritis|C0017160|Gastroenteritis|| +002444|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|GI perforation|10018242|gi perforation|C0151664|Gastrointestinal perforation|| +002445|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +002446|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Generalised erythema|10051576|Generalized erythema|10062433|generalized erythema|C0849916|Generalised erythema|| +002447|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|liver enzyme elevation|C0235996|Elevated liver enzymes|| +002448|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster exacerbation|C0019360|Herpes zoster disease|| +002449|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|High density lipoprotein increased|10020061|HDL cholesterol increased|10070544|increases in hdl cholesterol|C2938903|HDL cholesterol increased|| +002450|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Histoplasmosis|10020141|Histoplasmosis|10020141|histoplasmosis|C0019655|Histoplasmosis|| +002451|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +002452|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +002453|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Infection protozoal|10021859|Infection protozoal|10021859|infections protozoal opportunistic|C0033740|Protozoan Infections|duplicate| +002454|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Infection reactivation|10070891|Infection reactivation|10070891|viral reactivation|C3160756|Infection reactivation|duplicate|DrugClass +002455|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +002456|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Lipids increased|10024592|Lipids increased|10024592|lipid elevations|C0851043|Increased lipid|| +002457|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Listeriosis|10024641|Listeriosis|10024641|listeriosis|C0023860|Listeriosis|| +002458|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Low density lipoprotein increased|10024910|LDL cholesterol increased|10024055|increases in ldl cholesterol|C0549399|Low density lipoprotein increased|| +002459|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Multiple sclerosis|10028245|Multiple sclerosis|10028245|multiple sclerosis|C0026769|Multiple Sclerosis|| +002460|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Mycobacterial infection|10062207|Mycobacterial infection|10062207|infections mycobacterial opportunistic|C0026918|Mycobacterium Infections|duplicate| +002461|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms||DrugClass +002462|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +002463|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Neutrophil count decreased|10029366|Neutrophil count low|10029369|low neutrophil count|C0853697|Neutrophil count decreased|| +002464|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|infections mycobacterial opportunistic|C0029118|Opportunistic Infections|duplicate| +002465|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Platelet count decreased|10035528|Low platelets|10024922|low platelet count|C0392386|Decreased platelet count|| +002466|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|reduction in platelet counts|C0392386|Decreased platelet count|| +002467|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Platelet count decreased|10035528|Platelets decreased|10035545|reduction in platelets|C0392386|Decreased platelet count|| +002468|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystosis|10035662|pneumocystosis|C1535939|Pneumocystis jiroveci pneumonia|| +002469|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +002470|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +002471|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +002472|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Systemic mycosis|10052366|Invasive mycosis|10062642|infections invasive fungal opportunistic|C1262313|Invasive mycosis|duplicate| +002473|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminase elevations|C0438717|Transaminases increased|| +002474|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +002475|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +002476|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|uticaria|C0042109|Urticaria|| +002477|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Viral infection|10047461|Infection viral|10021876|infections viral opportunistic|C0042769|Virus Diseases|duplicate| +002478|2e5365ff-cb2a-4b16-b2c7-e35c6bf2de13|ACTEMRA|43685-7|WARNINGS AND PRECAUTIONS|Viral infection|10047461|Viral infection|10047461|viral reactivation|C0042769|Virus Diseases|duplicate|DrugClass +002479|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +002480|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +002481|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Cystitis|10011781|Cystitis|10011781|cystitis|C0010692|Cystitis|| +002482|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|mortality|C1306577|Death (finding)|| +002483|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +002484|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +002485|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +002486|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Eyelid oedema|10015993|Eyelid edema|10015985|eyelid edema|C0162285|Edema of eyelid|| +002487|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Gastroenteritis viral|10017918|Gastroenteritis viral|10017918|gastroenteritis viral|C0152517|Enteritis due to specified virus|| +002488|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +002489|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +002490|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +002491|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +002492|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +002493|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +002494|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Lupus nephritis|10025140|Lupus nephritis|10025140|lupus nephritis|C0024143|Lupus Nephritis|| +002495|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Migraine|10027599|Migraine|10027599|migraine|C0149931|Migraine Disorders|| +002496|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +002497|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +002498|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancy|C1306459|Primary malignant neoplasm|| +002499|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +002500|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Pharyngitis|10034835|Pharyngitis|10034835|pharyngitis|C0031350|Pharyngitis|| +002501|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +002502|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +002503|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|34084-4|ADVERSE REACTIONS|Rash erythematous|10037855|Erythematous rash|10015243|erythematous rash|C0234913|Rash erythematous|| +002504|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +002505|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +002506|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +002507|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +002508|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +002509|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular disorder|10007649|Cardiovascular disorder|10007649|cardiovascular disease|C0007222|Cardiovascular Diseases|| +002510|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +002511|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicides|C0038661|Suicide|| +002512|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|deaths|C1306577|Death (finding)|| +002513|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +002514|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +002515|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Face oedema|10016029|Face edema|10016025|facial edema|C0542571|Facial edema|| +002516|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +002517|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +002518|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|acute hypersensitivity reactions|C0020517|Hypersensitivity|| +002519|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +002520|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +002521|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +002522|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +002523|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +002524|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +002525|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|JC virus infection|10023163|JC virus infection|10023163|jc virus|C0857836|JC virus infection|| +002526|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +002527|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +002528|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +002529|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +002530|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Nervous system disorder|10029202|Neurological impairment|10074237|neurological deficits|C0521654|Neurologic Deficits|| +002531|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +002532|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|pml|C0023524|Leukoencephalopathy, Progressive Multifocal|| +002533|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +002534|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Psychiatric symptom|10061472|Psychiatric symptom|10061472|psychiatric events|C0233401|Psychiatric symptom|| +002535|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +002536|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +002537|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Skin cancer|10040808|Cancer of skin (excl melanoma)|10007116|non-melanoma skin cancers|C0699893|Skin carcinoma|| +002538|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +002539|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +002540|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +002541|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +002542|2fa3c528-1777-4628-8a55-a69dae2381a3|BENLYSTA|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +002543|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +002544|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +002545|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Central nervous system haemorrhage|10072043|Central nervous system hemorrhage|10072051|cns hemorrhage|C3267019|Central nervous system haemorrhage|| +002546|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Cerebral venous thrombosis|10008138|Cerebral venous thrombosis|10008138|cerebral venous thrombosis|C0151945|Thrombosis of cerebral veins|| +002547|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Coagulopathy|10009802|Coagulopathy|10009802|coagulopathy|C0005779|Blood Coagulation Disorders|| +002548|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +002549|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Glucose tolerance impaired|10018429|Glucose intolerance|10052426|glucose intolerance|C0271650|Impaired glucose tolerance|| +002550|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +002551|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Hyperbilirubinaemia|10020578|Hyperbilirubinemia|10020582|hyperbilirubinemia|C0020433|Hyperbilirubinemia|| +002552|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +002553|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Hyperlipidaemia|10062060|Hyperlipidemia|10020667|hyperlipidemia|C0020473|Hyperlipidemia|| +002554|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +002555|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Allergy|10001738|allergy|C0020517|Hypersensitivity|| +002556|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +002557|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Systemic allergic reaction|10066472|systemic hypersensitivity|C1736167|Systemic allergic reaction|| +002558|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Infarction|10061216|Infarction|10061216|infarct|C0021308|Infarction|| +002559|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Ketoacidosis|10023379|Ketoacidosis|10023379|ketoacidosis|C0220982|Ketoacidosis|| +002560|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Local reaction|10024769|Local reaction|10024769|local reactions|C0853813|Local reaction|| +002561|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +002562|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Nervous system disorder|10029202|Nervous system disorder|10029202|cns thrombosis|C0007682|CNS disorder|duplicate| +002563|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +002564|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +002565|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Thrombosis|10043607|Thrombosis|10043607|thrombosis|C0040053|Thrombosis|| +002566|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Transaminases abnormal|10062688|Transaminases abnormal|10062688|transaminases abnormal|C1328397|Transaminases abnormal|| +002567|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +002568|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +002569|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|43685-7|WARNINGS AND PRECAUTIONS|Antithrombin III decreased|10049547|Antithrombin III decreased|10049547|decreased anti-thrombin iii|C0238665|Antithrombin III decreased|| +002570|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|43685-7|WARNINGS AND PRECAUTIONS|Blood fibrinogen decreased|10005520|Fibrinogen decreased|10016596|decreased fibrinogen|C1295715|Decreased fibrinogen|| +002571|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|43685-7|WARNINGS AND PRECAUTIONS|Coagulation factor decreased|10009736|Coagulation factor decreased|10009736|coagulation proteins decreased|C0272315|Coagulation factor deficiency syndrome|| +002572|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|43685-7|WARNINGS AND PRECAUTIONS|Glucose tolerance impaired|10018429|Glucose intolerance|10052426|glucose intolerance|C0271650|Impaired glucose tolerance|| +002573|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +002574|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +002575|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis haemorrhagic|10033650|Hemorrhagic pancreatitis|10019607|hemorrhagic pancreatitis|C0267940|Acute hemorrhagic pancreatitis|| +002576|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +002577|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|43685-7|WARNINGS AND PRECAUTIONS|Protein C decreased|10037005|Protein C decreased|10037005|decreased protein c activity|C0852955|Protein C decreased|| +002578|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|43685-7|WARNINGS AND PRECAUTIONS|Protein S decreased|10051120|Protein S decreased|10051120|decreased protein s activity|C0919888|Protein S decreased|| +002579|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +002580|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|43685-7|WARNINGS AND PRECAUTIONS|Superior sagittal sinus thrombosis|10042567|Sagittal sinus thrombosis|10039369|sagittal sinus thrombosis|C0338575|Sagittal Sinus Thrombosis|| +002581|30bdf2ea-008b-4cbb-81e4-c3474f2ad286|ERWINAZE|43685-7|WARNINGS AND PRECAUTIONS|Thrombosis|10043607|Thrombosis|10043607|thrombosis|C0040053|Thrombosis|| +002582|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +002583|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt elevation|C0151905|Alanine aminotransferase increased|| +002584|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +002585|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +002586|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +002587|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +002588|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +002589|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevations in bilirubin|C0311468|Increased bilirubin level (finding)|| +002590|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Bone pain|10006002|Bone pain|10006002|bone pain|C0151825|Bone pain|| +002591|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +002592|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +002593|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|died|C1306577|Death (finding)|| +002594|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +002595|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +002596|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +002597|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +002598|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +002599|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +002600|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +002601|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +002602|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +002603|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|QT interval prolonged|10037703|qt interval prolongation|C0151878|Prolonged QT interval|| +002604|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +002605|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +002606|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +002607|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +002608|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +002609|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +002610|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +002611|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +002612|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +002613|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Lacrimation increased|10023644|Lacrimation increased|10023644|increased lacrimation|C0152227|Excessive tearing|| +002614|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +002615|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Mucosal inflammation|10028116|Mucosal inflammation|10028116|mucosal inflammation|C0333355|Inflammatory disease of mucous membrane|| +002616|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +002617|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Muscular weakness|10028372|Muscular weakness|10028372|muscular weakness|C0151786|Muscle Weakness|| +002618|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +002619|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +002620|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +002621|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy|10029328|neuropathy|C0442874|Neuropathy|| +002622|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +002623|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Neutropenic sepsis|10049151|Neutropenic sepsis|10049151|neutropenic sepsis|C0877153|Neutropenic sepsis|| +002624|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +002625|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +002626|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +002627|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paraesthesia|10033775|paraesthesia|C0030554|Paresthesia|| +002628|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Peripheral motor neuropathy|10034580|Peripheral motor neuropathy|10034580|peripheral motor neuropathy|C0235025|Peripheral motor neuropathy|| +002629|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Peripheral sensory neuropathy|10034620|Peripheral sensory neuropathy|10034620|peripheral sensoryneuropathy|C0151313|Sensory neuropathy|| +002630|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +002631|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Polyneuropathy|10036105|Polyneuropathy|10036105|polyneuropathy|C0152025|Polyneuropathy|| +002632|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +002633|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +002634|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +002635|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +002636|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +002637|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +002638|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +002639|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +002640|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +002641|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +002642|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +002643|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|43685-7|WARNINGS AND PRECAUTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +002644|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +002645|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk||Animal +002646|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|43685-7|WARNINGS AND PRECAUTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +002647|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|43685-7|WARNINGS AND PRECAUTIONS|Neuropathy peripheral|10029331|Neuropathy|10029328|neuropathy|C0442874|Neuropathy|| +002648|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +002649|31ce4750-ded5-4a0b-95e9-f229fa6bc822|Halaven|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenicity|C0232910|Teratogenesis||Animal +002650|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34066-1|BOXED WARNINGS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevation in alt|C0151905|Alanine aminotransferase increased|| +002651|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34066-1|BOXED WARNINGS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|elevation in alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +002652|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34066-1|BOXED WARNINGS|Hepatic cirrhosis|10019641|Hepatic cirrhosis|10019641|cirrhosis|C0023890|Liver Cirrhosis|| +002653|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34066-1|BOXED WARNINGS|Hepatic steatosis|10019708|Hepatic steatosis|10019708|increases hepatic fat|C2711227|Steatohepatitis|| +002654|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34066-1|BOXED WARNINGS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +002655|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34066-1|BOXED WARNINGS|Liver disorder|10024670|Liver disorder|10024670|progressive liver disease|C1859539|Progressive liver disease|| +002656|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34066-1|BOXED WARNINGS|Steatohepatitis|10076331|Steatohepatitis|10076331|steatohepatitis|C2711227|Steatohepatitis|| +002657|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34066-1|BOXED WARNINGS|Transaminases increased|10054889|Transaminases increased|10054889|increases in transaminases|C0438717|Transaminases increased|| +002658|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +002659|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevated serum levels alt|C0878602|alanine transaminase levels raised (plasma or serum)|| +002660|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +002661|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Angina pectoris|10002383|Angina pectoris|10002383|angina pectoris|C0002962|Angina Pectoris|| +002662|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +002663|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +002664|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast elevations|C0151904|Aspartate aminotransferase increased|| +002665|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +002666|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Benign neoplasm|10060999|Benign neoplasm|10060999|neoplasms benign|C0086692|Benign Neoplasm|| +002667|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +002668|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +002669|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Glomerulonephritis|10018364|Nephritis-glomerular|10029143|glomerular nephritis|C0017658|Glomerulonephritis|| +002670|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +002671|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Hepatic enzyme increased|10060795|hepatic enzyme increased|C0235996|Elevated liver enzymes|| +002672|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Hepatic steatosis|10019708|Fatty liver|10016261|liver fat fraction > 20%|C0015695|Fatty Liver|| +002673|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Hepatic steatosis|10019708|Hepatic steatosis|10019708|increase in fat fraction|C2711227|Steatohepatitis|| +002674|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +002675|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reaction|C0020517|Hypersensitivity|| +002676|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +002677|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Immune thrombocytopenic purpura|10074667|Idiopathic thrombocytopenic purpura|10021245|idiopathic thrombocytopenic purpura|C0398650|Immune thrombocytopenic purpura|| +002678|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Influenza like illness|10022004|Flu-like symptoms|10016797|flu-like symptoms|C0392171|Influenza-like symptoms|| +002679|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Influenza like illness|10022004|Influenza like illness|10022004|influenza-like illness|C0521839|Influenza-like illness|| +002680|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Injection site discolouration|10051572|Injection site discoloration|10055530|injection site discoloration|C0948991|Injection site discolouration|| +002681|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +002682|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Injection site haematoma|10022066|Injection site hematoma|10055371|injection site hematoma|C0542008|Injection site haematoma|| +002683|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +002684|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site tenderness|10022102|tenderness at previous injection sites|C0863083|Injection site tenderness|| +002685|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|pruritus at previous injection sites|C0852995|Injection site pruritus|| +002686|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +002687|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Injection site recall reaction|10066797|Injection site recall reaction|10066797|injection site recall reactions|C1868770|Injection site recall reaction|| +002688|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Injection site swelling|10053425|Injection site swelling|10053425|injection site swelling|C0151605|Injection site edema|| +002689|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +002690|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Liver function test abnormal|10024690|Liver function test abnormal|10024690|liver function test abnormal|C0151766|Liver function tests abnormal finding|| +002691|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +002692|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +002693|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +002694|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +002695|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|neoplasms malignant|C0006826|Malignant Neoplasms|| +002696|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +002697|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +002698|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +002699|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|change in platelet count -23.8 * 10 3 /ul|C0392386|Decreased platelet count|| +002700|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +002701|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +002702|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Serum transaminase increased|10040421|elevated serum transaminase levels|C0859350|Serum transaminase increased|| +002703|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminase elevations|C0438717|Transaminases increased|| +002704|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +002705|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevation in alt|C0151905|Alanine aminotransferase increased|| +002706|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|increases in alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +002707|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +002708|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increases in ast|C0151904|Aspartate aminotransferase increased|| +002709|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|increases in aspartate aminotransferase|C0151904|Aspartate aminotransferase increased|| +002710|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +002711|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +002712|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Hepatic cirrhosis|10019641|Hepatic cirrhosis|10019641|cirrhosis|C0023890|Liver Cirrhosis|| +002713|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Hepatic steatosis|10019708|Hepatic steatosis|10019708|increase in hepatic fat|C2711227|Steatohepatitis|| +002714|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +002715|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Influenza like illness|10022004|Flu-like symptoms|10016797|flu-like symptoms|C0392171|Influenza-like symptoms|| +002716|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Influenza like illness|10022004|Influenza like illness|10022004|influenza-like illness|C0521839|Influenza-like illness|| +002717|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Injection site erythema|10022061|Injection site erythema|10022061|erythema injection site|C0852625|Injection site erythema|| +002718|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +002719|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Injection site pain|10022086|Injection site tenderness|10022102|tenderness injection site|C0863083|Injection site tenderness|| +002720|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Injection site pain|10022086|Pain injection site|10033453|pain injection site|C0151828|Injection site pain|| +002721|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|injection site pruritus|C0852995|Injection site pruritus|| +002722|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +002723|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Injection site swelling|10053425|Injection site swelling|10053425|injection site local swelling|C0151605|Injection site edema|| +002724|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +002725|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +002726|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +002727|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Steatohepatitis|10076331|Steatohepatitis|10076331|steatohepatitis|C2711227|Steatohepatitis|| +002728|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Serum transaminase increased|10040421|increases in serum transaminases|C0859350|Serum transaminase increased|| +002729|34de65be-f110-4000-a0f1-cb00ec98658f|Kynamro|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevations in transaminases|C0438717|Transaminases increased|| +002730|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Gastrointestinal discomfort|10054209|gastrointestinal discomfort|C1096250|Gastrointestinal discomfort|| +002731|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distention|C0000731|Abdomen distended|| +002732|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +002733|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Activated partial thromboplastin time prolonged|10000636|Activated partial thromboplastin time prolonged|10000636|activated partial thromboplastin time prolonged|C0240671|Partial thromboplastin time increased (finding)|| +002734|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Aggression|10001488|Aggressive reaction|10001493|aggressive thoughts|C1457883|Aggressive reaction|| +002735|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +002736|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +002737|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Amylase increased|10002016|Amylase increased|10002016|amylase increased|C0151479|Amylase increased|| +002738|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +002739|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reaction|C0002792|anaphylaxis|| +002740|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +002741|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Angina pectoris|10002383|Angina pectoris|10002383|angina pectoris|C0002962|Angina Pectoris|| +002742|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angio-edema|10002394|angio-edema|C0002994|Angioedema|| +002743|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +002744|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +002745|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Arthritis|10003246|Arthritis|10003246|arthritis|C0003864|Arthritis|| +002746|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +002747|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +002748|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Atrial flutter|10003662|Atrial flutter|10003662|atrial flutter|C0004239|Atrial Flutter|| +002749|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Balance disorder|10049848|Balance disorder|10049848|balance disorder|C0575090|Equilibration disorder|| +002750|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|alkaline phosphatase increased|C0151849|Alkaline phosphatase raised|| +002751|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood bicarbonate decreased|10005359|Blood bicarbonate decreased|10005359|bicarbonate decreased|C0238762|BICARBONATE, DECREASED|| +002752|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood cholesterol increased|10005425|Cholesterol levels raised|10008663|cholesterol increased|C3276464|Increased cholesterol|| +002753|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood creatine increased|10005464|Creatine increased|10011333|creatine increased|C0860942|Creatine increased|| +002754|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|CPK increased|10011268|cpk increased|C0151576|Elevated creatine kinase|| +002755|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|Creatine phosphokinase increased|10011349|creatine phosphokinase increased|C0151576|Elevated creatine kinase|| +002756|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|creatinine increased|C0151578|Creatinine increased|| +002757|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Glucose increased|10018421|glucose increased|C0860803|Glucose increased|| +002758|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood lactate dehydrogenase increased|10005630|LDH increased|10024051|ldh increased|C0151754|Lactic dehydrogenase activity increased|| +002759|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood potassium increased|10005725|Potassium increased|10036450|potassium increased|C0856882|Potassium increased|| +002760|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood sodium increased|10005803|Sodium increased|10041272|sodium increased|C0595879|Sodium high|| +002761|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood thyroid stimulating hormone increased|10005833|TSH increased|10044718|tsh increased|C0586553|Raised TSH level|| +002762|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|triglycerides increased|C1522137|Hypertriglyceridemia result|| +002763|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood urea increased|10005851|Blood urea increased|10005851|blood urea increased|C0151539|Blood urea increased|| +002764|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Blood urea nitrogen/creatinine ratio increased|10050760|Blood urea nitrogen/creatinine ratio increased|10050760|bun/creatinine ratio increased|C0920239|Blood urea nitrogen/creatinine ratio increased|| +002765|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Breast pain|10006298|Breast pain|10006298|breast pain|C0024902|Mastodynia|| +002766|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +002767|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Cardiac death|10049993|Cardiac death|10049993|cardiovascular death|C0376297|Cardiac Death|| +002768|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Cardiac murmur|10007586|Cardiac murmur|10007586|cardiac murmur|C0018808|Heart murmur|| +002769|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular events|C1320716|Cardiovascular event|| +002770|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Cerebrovascular accident|10008190|Cerebrovascular accident|10008190|cerebrovascular accident|C0038454|Cerebrovascular accident|| +002771|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +002772|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +002773|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +002774|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Cholecystitis|10008612|Cholecystitis|10008612|cholecystitis|C0008325|Cholecystitis|| +002775|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Cholelithiasis|10008629|Cholelithiasis|10008629|cholelithiasis|C0008350|Cholelithiasis|| +002776|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Coagulation test abnormal|10063557|Coagulation test abnormal|10063557|coagulation test abnormal|C1504379|Coagulation test abnormal|| +002777|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +002778|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Contusion|10050584|Contusion|10050584|contusion|C0009938|Contusions|| +002779|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +002780|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Deafness|10011878|Deafness|10011878|deafness|C0011053|Deafness|| +002781|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +002782|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +002783|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Appetite decreased NOS|10003020|appetite decreased|C0232462|Decrease in appetite|| +002784|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +002785|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +002786|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Dermatitis allergic|10012434|Cutaneous hypersensitivity|10011667|hypersensitivity skin reactions|C0585186|Cutaneous hypersensitivity|| +002787|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +002788|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Diabetes mellitus|10012601|Diabetes mellitus|10012601|diabetes mellitus|C0011849|Diabetes Mellitus|| +002789|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +002790|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +002791|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Taste altered|10043126|altered taste|C0740425|Altered Taste|| +002792|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +002793|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +002794|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Ecchymosis|10014080|Ecchymosis|10014080|ecchymosis|C0013491|Ecchymosis|| +002795|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Eczema|10014184|Eczema|10014184|eczema|C0013595|Eczema|| +002796|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Electrocardiogram abnormal|10014363|ECG abnormal|10014085|ecg abnormal|C0522055|Electrocardiogram abnormal|| +002797|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Electroencephalogram abnormal|10014408|EEG abnormal|10014276|eeg abnormal|C0151611|Electroencephalogram abnormal|| +002798|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +002799|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Erectile dysfunction|10061461|Erectile dysfunction|10061461|erectile dysfunction|C0242350|Erectile dysfunction|| +002800|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +002801|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Feeling abnormal|10016322|Feeling abnormal|10016322|feeling abnormal|C1443060|Feeling abnormal|| +002802|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +002803|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +002804|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Frequent bowel movements|10017367|Increased stool frequency|10048456|frequent stools|C0848342|frequent stools|| +002805|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Gait disturbance|10017577|gait disturbance|C0575081|Gait abnormality|| +002806|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +002807|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +002808|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Gingival pain|10018286|Gingival pain|10018286|gingival pain|C0239739|Tenderness of gums|| +002809|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Guillain-Barre syndrome|10018767|Guillain-Barre syndrome|10018767|guillain-barre syndrome|C0018378|Guillain-Barre Syndrome|| +002810|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Gynaecomastia|10018800|Gynecomastia|10018801|gynecomastia|C0018418|Gynecomastia|| +002811|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Haematemesis|10018830|Haematemesis|10018830|haematemesis|C0018926|Hematemesis|| +002812|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Haematochezia|10018836|Hematochezia|10060544|hematochezia|C0018932|Hematochezia|| +002813|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Haematocrit decreased|10018838|Hematocrit decreased|10019423|hematocrit decreased|C0744727|Hematocrit decreased|| +002814|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +002815|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hemoglobin decreased|C0162119|Hemoglobin low|| +002816|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hair colour changes|10019030|Hair color changes|10055525|hair color changes|C0474378|Hair color change (finding)|| +002817|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hair growth abnormal|10019044|Hair growth abnormal|10019044|hair growth abnormal|C0232409|Abnormal hair growth|| +002818|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +002819|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hemiparesis|10019465|Hemiparesis|10019465|hemiparesis|C0018989|Hemiparesis|| +002820|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +002821|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hepatic function abnormal|10019670|Function liver abnormal|10017475|liver function abnormalities|C0086565|Liver Dysfunction|| +002822|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hepatic steatosis|10019708|Hepatic steatosis|10019708|hepatic steatosis|C2711227|Steatohepatitis|| +002823|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +002824|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hepatomegaly|10019842|Hepatomegaly|10019842|hepatomegaly|C0019209|Hepatomegaly|| +002825|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +002826|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +002827|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hyperchlorhydria|10020601|Hyperchlorhydria|10020601|hyperchlorhydria|C0151713|Hyperchlorhydria|| +002828|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hypercholesterolaemia|10020603|Hypercholesterolemia|10020604|hypercholesterolemia|C0020443|Hypercholesterolemia|| +002829|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +002830|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +002831|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hyperlipidaemia|10062060|Hyperlipidemia|10020667|hyperlipidemia|C0020473|Hyperlipidemia|| +002832|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +002833|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +002834|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hypertriglyceridaemia|10020869|Hypertriglyceridemia|10020870|hypertriglyceridemia|C0020557|Hypertriglyceridemia|| +002835|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +002836|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +002837|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hyposmia|10050515|Hyposmia|10050515|hyposmia|C2364082|Sense of smell impaired|| +002838|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +002839|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Immune thrombocytopenic purpura|10074667|Idiopathic thrombocytopenic purpura|10021245|idiopathic thrombocytopenic purpura|C0398650|Immune thrombocytopenic purpura|| +002840|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Increased appetite|10021654|Increased appetite|10021654|appetite increased|C0232461|Increased appetite (finding)|| +002841|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Influenza like illness|10022004|Influenza-like symptoms|10022009|influenza-like symptoms|C0392171|Influenza-like symptoms|| +002842|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +002843|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +002844|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Jaundice|10023126|Jaundice|10023126|jaundice|C0022346|Icterus|| +002845|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Joint stiffness|10023230|Joint stiffness|10023230|joint stiffness|C0162298|Joint stiffness|| +002846|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Joint swelling|10023232|Joint swelling|10023232|joint swelling|C0152031|Joint swelling|| +002847|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Lacunar infarction|10051078|Lacunar infarction|10051078|lacunar infarction|C0333559|Infarction, Lacunar|| +002848|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Lethargy|10024264|Lethargy|10024264|lethargy|C0023380|Lethargy|| +002849|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Leukocytosis|10024378|Leukocytosis|10024378|leukocytosis|C0023518|Leukocytosis|| +002850|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +002851|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Libido decreased|10024419|Libido decreased|10024419|libido decreased|C0011124|Decreased Libido|| +002852|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Liver disorder|10024670|Liver disorder|10024670|liver disorder|C0023895|Liver diseases|| +002853|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Low density lipoprotein increased|10024910|LDL increased|10024057|ldl increased|C0549399|Low density lipoprotein increased|| +002854|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Low density lipoprotein increased|10024910|Low density lipoprotein increased|10024910|low density lipoprotein increased|C0549399|Low density lipoprotein increased|| +002855|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Lymphocyte count decreased|10025256|Lymphocyte count decreased|10025256|lymphocyte count decreased|C0853986|Lymphocyte count decreased|| +002856|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Mass|10026865|Mass|10026865|mass|C0577559|Mass of body structure|| +002857|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Mean cell volume increased|10027004|Mean cell volume increased|10027004|mcv increased|C0302845|MCV - raised|| +002858|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Mechanical urticaria|10068773|Dermographism|10012521|dermographism|C0343065|Symptomatic dermographism|| +002859|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Mental impairment|10027374|Mental impairment|10027374|mental impairment|C1306341|Mental handicap|| +002860|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Micturition urgency|10027566|Urinary urgency|10046593|urinary urgency|C0085606|Urgency of micturition|| +002861|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Migraine|10027599|Migraine|10027599|migraine|C0149931|Migraine Disorders|| +002862|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Mouth ulceration|10028034|Mouth ulceration|10028034|mouth ulceration|C0149745|Oral Ulcer|| +002863|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +002864|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Muscle tightness|10049816|Muscle tightness|10049816|muscle tightness|C0877322|Muscle tightness|| +002865|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Muscle twitching|10028347|Muscle twitching|10028347|muscle twitching|C0231530|Muscle twitch|| +002866|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Muscular weakness|10028372|Muscle weakness|10028350|muscle weakness|C0151786|Muscle Weakness|| +002867|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +002868|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Musculoskeletal stiffness|10052904|Musculoskeletal stiffness|10052904|musculoskeletal stiffness|C0948525|Musculoskeletal stiffness|| +002869|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +002870|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +002871|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Nasal dryness|10028740|Nasal dryness|10028740|nasal dryness|C0231919|Nasal mucosa dry|| +002872|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +002873|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Nephrolithiasis|10029148|Nephrolithiasis|10029148|nephrolithiasis|C0392525|Nephrolithiasis|| +002874|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Nervousness|10029216|Nervousness|10029216|nervousness|C0027769|Nervousness|| +002875|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +002876|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|neutrophil count decreased|C0853697|Neutrophil count decreased|| +002877|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +002878|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +002879|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +002880|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +002881|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +002882|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Panic attack|10033664|Panic attack|10033664|panic attack|C0086769|Panic Attacks|| +002883|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +002884|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Paranasal sinus hypersecretion|10057392|Paranasal sinus hypersecretion|10057392|paranasal sinus hypersecretion|C1112369|Paranasal sinus hypersecretion|| +002885|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Peptic ulcer|10034341|Peptic ulcer|10034341|peptic ulcer|C0030920|Peptic Ulcer|| +002886|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Personality change|10034719|Personality change|10034719|personality change|C0240735|Personality change|| +002887|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Petechiae|10034754|Petechiae|10034754|petechiae|C0031256|Petechiae|| +002888|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Pharyngeal oedema|10034829|Pharyngeal edema|10054544|pharyngeal edema|C0236024|Edema of pharynx|| +002889|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Photosensitivity reaction|10034972|Photosensitivity|10034966|photosensitivity|C0349506|Photosensitivity of skin|| +002890|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Pigmentation disorder|10062080|Pigmentation skin|10035028|skin altered pigmentation|C1260926|Abnormal pigmentation|| +002891|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|platelet count decreased|C0392386|Decreased platelet count|| +002892|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Pollakiuria|10036018|Pollakiuria|10036018|pollakiuria|C0042023|Increased frequency of micturition|| +002893|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Prostatic specific antigen increased|10036975|PSA increased|10037102|psa increased|C0178415|Raised prostate specific antigen|| +002894|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Protein urine present|10053123|Protein urine positive|10037020|urine positive for protein|C0033687|Proteinuria|| +002895|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +002896|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Prothrombin time prolonged|10037063|Prothrombin time prolonged|10037063|prothrombin time prolonged|C0151872|Prothrombin time increased|| +002897|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +002898|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Psychotic behaviour|10037249|Psychotic behavior|10067568|psychotic behavior|C0740409|Psychotic behaviour|| +002899|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Purpura|10037549|Purpura|10037549|purpura|C0034150|Purpura|| +002900|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|generalized rash|C0497365|Rash generalised|| +002901|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +002902|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Red blood cell count decreased|10038153|RBC decreased|10037926|rbc decreased|C0427457|RBC count low|| +002903|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +002904|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal insufficiency|10038474|renal insufficiency|C1565489|Renal Insufficiency|| +002905|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Respiratory tract congestion|10052251|Respiratory tract congestion|10052251|respiratory tract congestion|C0948349|Respiratory tract congestion|| +002906|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Rhabdomyolysis|10039020|Rhabdomyolysis|10039020|rhabdomyolysis|C0035410|Rhabdomyolysis|| +002907|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Sinus bradycardia|10040741|Sinus bradycardia|10040741|sinus bradycardia|C0085610|Sinus bradycardia|| +002908|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Skin discolouration|10040829|Skin discoloration|10040828|skin discoloration|C0151907|Discoloration of skin|| +002909|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Skin exfoliation|10040844|Skin peeling|10040908|peeling skin|C0237849|Peeling of skin|| +002910|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Skin lesion|10040882|Skin lesion|10040882|skin lesion|C0037284|Skin lesion|| +002911|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Skin odour abnormal|10040904|Skin odor abnormal|10040903|skin odor abnormal|C0234930|Skin odour abnormal|| +002912|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Sneezing|10041232|Sneezing|10041232|sneezing|C0037383|Sneezing|| +002913|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +002914|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Splenomegaly|10041660|Splenomegaly|10041660|splenomegaly|C0038002|Splenomegaly|| +002915|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens Johnson syndrome|10042030|stevens johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +002916|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +002917|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Thirst|10043458|Thirst|10043458|thirst|C0039971|Thirst|| +002918|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Throat irritation|10043521|Throat irritation|10043521|throat irritation|C0700184|Throat irritation|| +002919|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +002920|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Tinnitus|10043882|Tinnitus|10043882|tinnitus|C0040264|Tinnitus|| +002921|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Transient ischaemic attack|10044390|Transient ischemic attack|10072760|transient ischemic attack|C0007787|Transient Ischemic Attack|| +002922|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +002923|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Tubulointerstitial nephritis|10048302|Tubulointerstitial nephritis|10048302|tubulointerstitial nephritis|C0041349|Nephritis, Tubulointerstitial|| +002924|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +002925|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Urinary casts present|10067534|Urinary casts present|10067534|urinary casts|C1963772|Urinary casts present|| +002926|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Urinary incontinence|10046543|Urinary incontinence|10046543|urinary incontinence|C0042024|Urinary Incontinence|| +002927|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Urine output decreased|10059895|Urine output decreased|10059895|urine output decreased|C3887784|Decreased urine output|| +002928|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Urine output increased|10059896|Urine output increased|10059896|urine output increased|C1167965|Urine output increased|| +002929|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +002930|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +002931|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +002932|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +002933|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +002934|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +002935|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|WBC decreased|10056731|wbc decreased|C0750394|White blood cell count decreased|| +002936|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|White blood cell count increased|10047943|WBC increased|10056739|wbc increased|C0750426|White blood cell count increased (lab result)|| +002937|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|34084-4|ADVERSE REACTIONS|White blood cells urine positive|10047967|White blood cells urine positive|10047967|urine positive for white blood cells|C0555120|Urine microscopy leukocytes present finding|| +002938|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|43685-7|WARNINGS AND PRECAUTIONS|Cardiac death|10049993|Cardiac death|10049993|cardiovascular deaths|C0376297|Cardiac Death|| +002939|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular events|C1320716|Cardiovascular event|| +002940|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Stroke|10042244|strokes|C0038454|Cerebrovascular accident|| +002941|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +002942|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|43685-7|WARNINGS AND PRECAUTIONS|Embolism|10061169|Thromboembolic event|10043565|cardiovascular thromboembolic events|C0040038|Thromboembolism|| +002943|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|43685-7|WARNINGS AND PRECAUTIONS|Gout|10018627|Gout flare|10064900|gout flares|C1619733|Gout flare|| +002944|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +002945|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxic effect|10019850|hepatic effects|C0235378|Hepatotoxicity|| +002946|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarctions|C0027051|Myocardial Infarction|| +002947|3803df6e-b765-4917-ab0e-4d91a23be47f|ULORIC|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminase elevations|C0438717|Transaminases increased|| +002948|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34066-1|BOXED WARNINGS|Cytokine release syndrome|10052015|Cytokine release syndrome|10052015|cytokine release syndrome|C0948245|Cytokine release syndrome|| +002949|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +002950|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34066-1|BOXED WARNINGS|Neurotoxicity|10029350|Neurotoxicity|10029350|neurological toxicities|C0235032|Neurotoxicity Syndromes|| +002951|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +002952|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Acute respiratory failure|10001053|Acute respiratory failure|10001053|acute respiratory failure|C0264490|Acute respiratory failure|| +002953|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|increased alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +002954|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +002955|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Aphasia|10002948|Aphasia|10002948|aphasia|C0003537|Aphasia|| +002956|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +002957|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|increased aspartate aminotransferase|C0151904|Aspartate aminotransferase increased|| +002958|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +002959|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Bacterial infection|10060945|Bacterial infection|10060945|bacterial infections|C0004623|Bacterial Infections|| +002960|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Blood bilirubin increased|10005364|increased blood bilirubin|C0311468|Increased bilirubin level (finding)|| +002961|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Bone pain|10006002|Bone pain|10006002|bone pain|C0151825|Bone pain|| +002962|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Bronchial hyperreactivity|10066091|Bronchial hyperactivity|10056285|bronchial hyperactivity|C0085129|Bronchial Hyperreactivity|| +002963|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +002964|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Capillary leak syndrome|10007196|Capillary leak syndrome|10007196|capillary leak syndrome|C0343084|Capillary Leak Syndrome|| +002965|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +002966|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +002967|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Cognitive disorder|10057668|Cognitive disorder|10057668|cognitive disorder|C0009241|Cognition Disorders|| +002968|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +002969|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusion|10010300|confusion|C0009676|Confusion|| +002970|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +002971|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +002972|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Cytokine release syndrome|10052015|Cytokine release syndrome|10052015|cytokine release syndrome|C0948245|Cytokine release syndrome|| +002973|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Cytokine storm|10050685|Cytokine storm|10050685|cytokine storm|C0919747|Cytokine storm|| +002974|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +002975|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +002976|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Device related infection|10064687|Device related infection|10064687|device-related infection|C1619702|Device related infection|| +002977|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +002978|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Disorientation|10013395|Disorientation|10013395|disorientation|C0233407|Disorientation|| +002979|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +002980|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Dyspnoea exertional|10013971|Dyspnea exertional|10013966|dyspnea exertional|C0231807|Dyspnea on exertion|| +002981|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +002982|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Encephalopathy|10014625|Encephalopathy|10014625|encephalopathy|C0085584|Encephalopathies|| +002983|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Enteritis|10014866|Enteritis|10014866|enteritis|C0014335|Enteritis|| +002984|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +002985|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +002986|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +002987|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Fungal infection|10017533|Fungal infection|10017533|fungal infections|C0026946|Mycoses|| +002988|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|Gamma-glutamyltransferase increased|10017693|increased gamma-glutamyl-transferase|C0151662|Gamma-glutamyl transferase raised|| +002989|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +002990|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|elevated liver enzymes|C0235996|Elevated liver enzymes|| +002991|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +002992|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +002993|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +002994|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +002995|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Hypoalbuminaemia|10020942|Hypoalbuminemia|10020943|hypoalbuminemia|C0239981|Hypoalbuminemia|| +002996|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +002997|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +002998|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +002999|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +003000|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Immunoglobulins decreased|10021499|Decreased immunoglobulins|10011969|decreased immunoglobulins|C0151728|Decreased immunoglobulin|| +003001|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Impaired driving ability|10049564|Driving ability disturbed|10050503|effects on ability to drive|C0877256|Impaired driving ability|| +003002|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +003003|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +003004|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Leukocytosis|10024378|Leukocytosis|10024378|leukocytosis|C0023518|Leukocytosis|| +003005|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Leukoencephalopathy|10024382|Leukoencephalopathy|10024382|leukoencephalopathy|C0270612|Leukoencephalopathies|| +003006|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +003007|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +003008|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Memory impairment|10027175|Memory impairment|10027175|memory impairment|C0233794|Memory impairment|| +003009|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +003010|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Neurotoxicity|10029350|Neurotoxicity|10029350|neurological toxicities|C0235032|Neurotoxicity Syndromes|| +003011|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +003012|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Neutropenic colitis|10062959|Neutropenic colitis|10062959|neutropenic colitis|C0400823|Neutropenic colitis|| +003013|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +003014|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +003015|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Overdose|10033295|Overdose|10033295|overdose|C0029944|Drug Overdose|| +003016|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +003017|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +003018|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +003019|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +003020|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Rash erythematous|10037855|Erythematous rash|10015243|erythematous rash|C0234913|Rash erythematous|| +003021|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|generalized rash|C0497365|Rash generalised|| +003022|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Rash macular|10037867|Macular rash|10025418|macular rash|C0221201|Macular rash|| +003023|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Maculo-papular rash|10025423|maculo-papular rash|C0423791|Maculopapular eruption|| +003024|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Rash papular|10037876|Papular rash|10033726|papular rash|C1519353|Skin Papule|| +003025|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Rash vesicular|10037898|Vesicular rash|10047377|vesicular rash|C0221203|Vesicular rash|| +003026|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +003027|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Respiratory distress|10038687|Respiratory distress|10038687|respiratory distress|C0476273|Respiratory distress|| +003028|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Respiratory failure|10038695|Respiratory failure|10038695|respiratory failure|C1145670|Respiratory Failure|| +003029|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Resting tremor|10071390|Resting tremor|10071390|resting tremor|C0234379|Resting Tremor|| +003030|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsion|10010904|convulsion|C0036572|Seizures|| +003031|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +003032|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Speech disorder|10041466|Speech disorder|10041466|speech disorder|C0037822|Speech Disorders|| +003033|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Staphylococcal bacteraemia|10051017|Staphylococcal bacteremia|10054637|staphylococcal bacteremia|C0152965|Staphylococcal bacteraemia|| +003034|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +003035|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +003036|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +003037|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +003038|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Viral infection|10047461|Viral infection|10047461|viral infections|C0042769|Virus Diseases|| +003039|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +003040|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|increased weight|C0043094|Weight Gain|| +003041|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +003042|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|34084-4|ADVERSE REACTIONS|||||effects on ability to use machines|||unmapped| +003043|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|increased alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +003044|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Altered state of consciousness|10001854|Consciousness disturbed|10010770|disturbances in consciousness|C0234428|Disturbance of consciousness|| +003045|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|increased aspartate aminotransferase|C0151904|Aspartate aminotransferase increased|| +003046|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +003047|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Bacteraemia|10003997|Bacteremia|10003999|bacteremia|C0004610|Bacteremia|| +003048|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Balance disorder|10049848|Balance disorder|10049848|balance disorders|C0575090|Equilibration disorder|| +003049|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|increased total bilirubin|C0741494|Elevated total bilirubin|| +003050|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Capillary leak syndrome|10007196|Capillary leak syndrome|10007196|capillary leak syndrome|C0343084|Capillary Leak Syndrome|| +003051|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Catheter site infection|10056520|Catheter site infection|10056520|catheter-site infections|C1112210|Catheter site infection|| +003052|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Confusional state|10010305|Confusion|10010300|confusion|C0009676|Confusion|| +003053|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Coordination abnormal|10010947|Coordination impaired|10010950|coordination disorders|C0520966|Abnormal coordination|| +003054|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Cytokine release syndrome|10052015|Cytokine release syndrome|10052015|crs|C0948245|Cytokine release syndrome|| +003055|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +003056|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Disorientation|10013395|Disorientation|10013395|disorientation|C0233407|Disorientation|| +003057|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Disseminated intravascular coagulation|10013442|DIC|10012769|dic|C0012739|Disseminated Intravascular Coagulation|| +003058|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Disseminated intravascular coagulation|10013442|Disseminated intravascular coagulation|10013442|disseminated intravascular coagulation|C0012739|Disseminated Intravascular Coagulation|| +003059|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Encephalopathy|10014625|Encephalopathy|10014625|encephalopathy|C0085584|Encephalopathies|| +003060|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +003061|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +003062|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|elevations in liver enzymes|C0235996|Elevated liver enzymes|| +003063|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Histiocytosis haematophagic|10048595|Hemophagocytic lymphohistiocytosis|10071580|hlh|C0024291|Lymphohistiocytosis, Hemophagocytic|| +003064|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Histiocytosis haematophagic|10048595|Macrophage activation syndrome|10053867|macrophage activation syndrome|C1096155|Macrophage Activation Syndrome|| +003065|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +003066|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Impaired driving ability|10049564|Driving ability disturbed|10050503|effects on ability to drive|C0877256|Impaired driving ability|| +003067|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +003068|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +003069|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Leukoencephalopathy|10024382|Leukoencephalopathy|10024382|leukoencephalopathy|C0270612|Leukoencephalopathies|| +003070|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Loss of consciousness|10024855|Loss of consciousness|10024855|loss of consciousness|C0041657|Unconscious State|| +003071|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +003072|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Neurological symptom|10060860|Neurologic reaction|10029290|neurologic events|C0235030|Neurologic reaction|| +003073|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Neurotoxicity|10029350|Neurotoxicity|10029350|neurological toxicities|C0235032|Neurotoxicity Syndromes|| +003074|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +003075|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +003076|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +003077|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +003078|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Convulsions|10010914|convulsions|C0036572|Seizures|| +003079|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +003080|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +003081|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Speech disorder|10041466|Speech disorder|10041466|speech disorders|C0037822|Speech Disorders|| +003082|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tls|C0041364|Tumor Lysis Syndrome|| +003083|38b482a8-960b-4591-9857-5031ecb830aa|BLINCYTO|43685-7|WARNINGS AND PRECAUTIONS|||||effects on ability to use machines|||unmapped| +003084|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Actinic keratosis|10000614|Actinic keratosis|10000614|actinic keratosis|C0022602|Actinic keratosis|| +003085|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +003086|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +003087|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Arthritis|10003246|Arthritis|10003246|arthritis|C0003864|Arthritis|| +003088|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +003089|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +003090|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +003091|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Basal cell carcinoma|10004146|Basal cell carcinoma|10004146|basal cell carcinoma|C0007117|Basal cell carcinoma|| +003092|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Chronic myelomonocytic leukaemia|10009018|Chronic myelomonocytic leukemia|10054350|progression of pre-existing chronic myelomonocytic leukemia with nras mutation|C0023480|Leukemia, Myelomonocytic, Chronic|duplicate underspecified| +003093|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +003094|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +003095|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +003096|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +003097|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Disease progression|10061818|Disease progression|10061818|progression of pre-existing chronic myelomonocytic leukemia with nras mutation|C0242656|Disease Progression|duplicate underspecified| +003098|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress syndrome|C3541994|Drug Hypersensitivity Syndrome|| +003099|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug reaction with eosinophilia and systemic symptoms|10073508|drug reaction with eosinophilia and systemic symptoms syndrome|C3541994|Drug Hypersensitivity Syndrome|| +003100|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +003101|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +003102|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +003103|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Erythema nodosum|10015226|Erythema nodosum|10015226|erythema nodosum|C0014743|Erythema Nodosum|| +003104|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +003105|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Eye symptom|10075536|Eye symptom|10075536|ophthalmologic reactions|C0586406|Eye symptom|| +003106|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +003107|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Folliculitis|10016936|Folliculitis|10016936|folliculitis|C0016436|Folliculitis|| +003108|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|Gamma-glutamyltransferase increased|10017693|gamma-glutamyltransferase increased|C0151662|Gamma-glutamyl transferase raised|| +003109|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +003110|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +003111|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Hyperkeratosis|10020649|Hyperkeratosis|10020649|hyperkeratosis|C0870082|Hyperkeratosis|| +003112|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +003113|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Keratosis pilaris|10066295|Keratosis pilaris|10066295|keratosis pilaris|C0263383|Keratosis pilaris|| +003114|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Liver function test abnormal|10024690|Liver function tests multiple abnorm|10024694|liver laboratory abnormalities|C0151766|Liver function tests abnormal finding|| +003115|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +003116|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +003117|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +003118|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|primary malignancies|C0865017|Generalized malignancy, primary|| +003119|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|neuropathy peripheral|C0031117|Peripheral Neuropathy|| +003120|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +003121|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +003122|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Oropharyngeal squamous cell carcinoma|10031112|Oropharyngeal squamous cell carcinoma|10031112|oropharyngeal squamous cell carcinoma|C0280313|Squamous cell carcinoma of oropharynx|| +003123|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +003124|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysesthesia syndrome|10054524|palmar-plantar erythrodysesthesia syndrome|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +003125|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +003126|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Panniculitis|10033675|Panniculitis|10033675|panniculitis|C0030326|Panniculitis|| +003127|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Photosensitivity reaction|10034972|Photosensitivity reaction|10034972|photosensitivity reaction|C0162830|Dermatitis, Phototoxic|| +003128|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Photosensitivity reaction|10034972|Photosensitivity|10034966|photosensitivity|C0349506|Photosensitivity of skin|| +003129|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +003130|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +003131|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Radiation injury|10037760|Radiation injury|10037760|radiation sensitization|C4021850|Increased sensitivity to ionizing radiation|| +003132|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Rash maculo-papular|10037868|rash maculo-papular|C0423791|Maculopapular eruption|| +003133|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Rash papular|10037876|Rash papular|10037876|rash papular|C1519353|Skin Papule|| +003134|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +003135|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Recall phenomenon|10060856|Radiation recall syndrome|10037768|radiation recall|C0520802|Radiation recall syndrome|| +003136|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Retinal vein occlusion|10038907|Retinal vein occlusion|10038907|retinal vein occlusion|C0035328|Retinal Vein Occlusion|| +003137|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Seborrhoeic keratosis|10039796|Seborrheic keratosis|10039791|seborrheic keratosis|C0022603|Seborrheic keratosis|| +003138|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Skin papilloma|10040907|Skin papilloma|10040907|skin papilloma|C0347390|Skin Papilloma|| +003139|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|dermatologic reactions|C0221743|Skin reaction|| +003140|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Squamous cell carcinoma of skin|10041834|Squamous cell carcinoma of skin|10041834|cutaneous scc|C0553723|Squamous cell carcinoma of skin|| +003141|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +003142|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Sunburn|10042496|Sunburn|10042496|sunburn|C0038814|Sunburn|| +003143|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +003144|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|VIIth nerve paralysis|10050040|VIIth nerve paralysis|10050040|vii th nerve paralysis|C0919980|VIIth nerve paralysis|| +003145|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Vasculitis|10047115|Vasculitis|10047115|vasculitis|C0042384|Vasculitis|| +003146|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +003147|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +003148|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|increases in bilirubin|C0311468|Increased bilirubin level (finding)|| +003149|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Carcinogenicity|10007269|Carcinogenicity|10007269|tumor promotion in braf wild-type melanoma|C1519689|Tumor Promotion|| +003150|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Coagulopathy|10009802|Coagulopathy|10009802|coagulopathy|C0005779|Blood Coagulation Disorders|| +003151|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress syndrome|C3541994|Drug Hypersensitivity Syndrome|| +003152|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug reaction with eosinophilia and systemic symptoms|10073508|drug reaction with eosinophilia and systemic symptoms syndrome|C3541994|Drug Hypersensitivity Syndrome|| +003153|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +003154|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Eye symptom|10075536|Eye symptom|10075536|ophthalmologic reactions|C0586406|Eye symptom|| +003155|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +003156|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Generalised erythema|10051576|Generalized erythema|10062433|generalized erythema|C0849916|Generalised erythema|| +003157|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Hepatic function abnormal|10019670|Hepatic function decreased|10019673|functional hepatic impairment|C0232744|Decreased liver function|duplicate| +003158|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +003159|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +003160|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +003161|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Iritis|10022955|Iritis|10022955|iritis|C0022081|Iritis|| +003162|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Keratoacanthoma|10023347|Keratoacanthoma|10023347|keratoacanthomas|C0022572|keratoacanthoma|| +003163|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Liver disorder|10024670|Hepatic impairment|10052254|functional hepatic impairment|C0948807|Hepatic impairment|duplicate| +003164|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver|| +003165|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Malignant melanoma|10025650|Malignant melanoma|10025650|primary malignant melanoma|C0025202|melanoma|| +003166|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Malignant melanoma|10025650|Melanoma|10053571|melanoma|C0025202|melanoma|| +003167|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +003168|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Organ failure|10053159|Organ failure|10053159|organ dysfunction|C0349410|Single organ dysfunction|| +003169|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Photophobia|10034960|Photophobia|10034960|photophobia|C0085636|Photophobia|| +003170|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Photosensitivity reaction|10034972|Photosensitivity|10034966|photosensitivity|C0349506|Photosensitivity of skin|| +003171|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Radiation injury|10037760|Radiation injury|10037760|radiation sensitization|C4021850|Increased sensitivity to ionizing radiation|| +003172|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Rash generalised|10037858|Generalized rash|10049201|generalized rash|C0497365|Rash generalised|| +003173|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Recall phenomenon|10060856|Radiation recall syndrome|10037768|radiation recall|C0520802|Radiation recall syndrome|| +003174|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Skin cancer|10040808|Skin neoplasm malignant|10040895|primary cutaneous malignancies|C0007114|Malignant neoplasm of skin|| +003175|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|dermatologic reactions|C0221743|Skin reaction|| +003176|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Squamous cell carcinoma of head and neck|10060121|Squamous cell carcinoma of head and neck|10060121|non-cutaneous scc of the head and neck|C1168401|Squamous cell carcinoma of the head and neck|| +003177|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Squamous cell carcinoma of skin|10041834|Squamous cell carcinoma of skin|10041834|cuscc|C0553723|Squamous cell carcinoma of skin|| +003178|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Squamous cell carcinoma|10041823|Squamous cell carcinoma|10041823|non-cutaneous squamous cell carcinoma|C0007137|Squamous cell carcinoma|| +003179|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +003180|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Torsade de pointes|10044066|Torsade de pointes|10044066|torsade de pointes|C0040479|Torsades de Pointes|| +003181|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +003182|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|increases in transaminases|C0438717|Transaminases increased|| +003183|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Uveitis|10046851|Uveitis|10046851|uveitis|C0042164|Uveitis|| +003184|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Ventricular arrhythmia|10047281|Ventricular arrhythmia|10047281|ventricular arrhythmias|C0085612|Ventricular arrhythmia|| +003185|38eea320-7e0c-485a-bc30-98c3c45e2763|ZELBORAF|43685-7|WARNINGS AND PRECAUTIONS|Vision blurred|10047513|Blurry vision|10005889|blurry vision|C0344232|Blurred vision|| +003186|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +003187|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34066-1|BOXED WARNINGS|JC virus infection|10023163|JC virus infection|10023163|jc virus infection|C0857836|JC virus infection|| +003188|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34066-1|BOXED WARNINGS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|progressive multifocal leukoencephalopathy|C0023524|Leukoencephalopathy, Progressive Multifocal|| +003189|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +003190|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Acute respiratory distress syndrome|10001052|ARDS|10003083|ards|C0035222|Respiratory Distress Syndrome, Adult|| +003191|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Acute respiratory distress syndrome|10001052|Acute respiratory distress syndrome|10001052|acute respiratory distress syndrome|C0035222|Respiratory Distress Syndrome, Adult|| +003192|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +003193|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +003194|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +003195|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +003196|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Arrhythmia supraventricular|10003130|Arrhythmia supraventricular|10003130|supraventricular arrhythmia|C0428974|Supraventricular arrhythmia|| +003197|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +003198|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +003199|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +003200|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +003201|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +003202|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +003203|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +003204|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +003205|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +003206|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +003207|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +003208|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +003209|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +003210|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Haematotoxicity|10061188|Hematotoxicity|10061196|hematologic toxicities|C0920103|Haematotoxicity|| +003211|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +003212|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +003213|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +003214|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +003215|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +003216|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +003217|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +003218|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Lung infiltration|10025102|Lung infiltration|10025102|interstitial infiltration of the chest|C0235896|Infiltrate of lung|| +003219|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Lymphadenopathy|10025197|Lymphadenopathy|10025197|lymphadenopathy|C0497156|Lymphadenopathy|| +003220|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +003221|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +003222|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +003223|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +003224|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy|10029328|neuropathy|C0442874|Neuropathy|| +003225|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +003226|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Night sweats|10029410|Night sweats|10029410|night sweats|C0028081|Night sweats|| +003227|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +003228|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +003229|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +003230|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +003231|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +003232|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +003233|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paraesthesia|10033775|paraesthesia|C0030554|Paresthesia|| +003234|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Peripheral motor neuropathy|10034580|Peripheral motor neuropathy|10034580|peripheral motor neuropathy|C0235025|Peripheral motor neuropathy|| +003235|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Peripheral sensory neuropathy|10034620|Peripheral sensory neuropathy|10034620|peripheral sensory neuropathy|C0151313|Sensory neuropathy|| +003236|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +003237|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +003238|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Pneumothorax|10035759|Pneumothorax|10035759|pneumothorax|C0032326|Pneumothorax|| +003239|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|pml|C0023524|Leukoencephalopathy, Progressive Multifocal|| +003240|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +003241|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +003242|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Pulmonary toxicity|10061924|Pulmonary toxicity|10061924|pulmonary toxicity|C0919924|Pulmonary toxicity|| +003243|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Pyelonephritis|10037596|Pyelonephritis|10037596|pyelonephritis|C0034186|Pyelonephritis|| +003244|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +003245|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +003246|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Septic shock|10040070|Septic shock|10040070|septic shock|C0036983|Septic Shock|| +003247|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|dermatologic reactions|C0221743|Skin reaction|| +003248|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +003249|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +003250|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +003251|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Toxicity to various agents|10070863|Drug toxicity|10013746|increased toxicity|C0013221|Drug toxicity|| +003252|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +003253|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +003254|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +003255|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +003256|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +003257|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Acute respiratory distress syndrome|10001052|ARDS|10003083|ards|C0035222|Respiratory Distress Syndrome, Adult|| +003258|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Acute respiratory distress syndrome|10001052|Acute respiratory distress syndrome|10001052|acute respiratory distress syndrome|C0035222|Respiratory Distress Syndrome, Adult|| +003259|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +003260|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +003261|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Bacteraemia|10003997|Bacteremia|10003999|bacteremia|C0004610|Bacteremia|| +003262|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevations of bilirubin|C0311468|Increased bilirubin level (finding)|| +003263|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Congenital anomaly|10010356|Congenital anomaly|10010356|fetal malformations|C0000768|Congenital Abnormality||Animal +003264|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +003265|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +003266|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +003267|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Haematotoxicity|10061188|Hematotoxicity|10061196|hematologic toxicities|C0920103|Haematotoxicity|| +003268|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Hepatocellular injury|10019837|Hepatocellular injury|10019837|hepatocellular injury|C0151763|Liver damage|| +003269|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +003270|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +003271|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +003272|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +003273|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|JC virus infection|10023163|JC virus infection|10023163|jc virus infection|C0857836|JC virus infection|| +003274|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +003275|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +003276|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Neuropathy peripheral|10029331|Neuropathy|10029328|neuropathy|C0442874|Neuropathy|| +003277|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +003278|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +003279|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Peripheral motor neuropathy|10034580|Peripheral motor neuropathy|10034580|peripheral motor neuropathy|C0235025|Peripheral motor neuropathy|| +003280|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Peripheral sensory neuropathy|10034620|Peripheral sensory neuropathy|10034620|peripheral neuropathy sensory|C0151313|Sensory neuropathy|| +003281|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +003282|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +003283|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|pml|C0023524|Leukoencephalopathy, Progressive Multifocal|| +003284|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary toxicity|10061924|Pulmonary toxicity|10061924|pulmonary toxicity|C0919924|Pulmonary toxicity|| +003285|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +003286|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Septic shock|10040070|Septic shock|10040070|septic shock|C0036983|Septic Shock|| +003287|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|dermatologic reactions|C0221743|Skin reaction|| +003288|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +003289|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +003290|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|TEN|10043221|ten|C0014518|Toxic Epidermal Necrolysis|| +003291|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +003292|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevations of transaminases|C0438717|Transaminases increased|| +003293|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +003294|3904f8dd-1aef-3490-e48f-bd55f32ed67f|ADCETRIS|43685-7|WARNINGS AND PRECAUTIONS|||||decreased embryo viability|||unmapped|Animal +003295|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Anterior chamber cell|10053781|Anterior chamber cell|10053781|anterior chamber cell|C0423282|Anterior chamber cells|| +003296|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Cataract|10007739|Cataract|10007739|cataract|C0086543|Cataract|| +003297|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Chromatopsia|10008795|Dyschromatopsia|10013892|dyschromatopsia|C0858618|Dyschromatopsia|| +003298|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Conjunctival haemorrhage|10010719|Conjunctival hemorrhage|10010720|conjunctival hemorrhage|C0009760|Conjunctival hemorrhage|| +003299|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Conjunctival hyperaemia|10051625|Conjunctival hyperemia|10054364|conjunctival hyperemia|C1761613|Conjunctival hyperemia|| +003300|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Dry eye|10013774|Dry eye|10013774|dry eye|C0314719|Dryness of eye|| +003301|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Eye pain|10015958|Eye pain|10015958|eye pain|C0151827|Eye pain|| +003302|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|intravitreal injection procedure associated effects|C0151735|Injection site reaction|underspecified| +003303|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Intraocular pressure increased|10022806|Increased intraocular pressure|10021667|increased intraocular pressure|C0234708|Raised intraocular pressure|| +003304|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Iritis|10022955|Iritis|10022955|iritis|C0022081|Iritis|| +003305|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Lens dislocation|10024203|Subluxation of lens|10042408|lens subluxation|C0023316|Lens Subluxation|| +003306|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Macular hole|10051058|Macular hole|10051058|macular hole|C0024441|Macular Holes|| +003307|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Macular oedema|10025415|Macular edema|10054467|macular edema|C0271051|Macular retinal edema|| +003308|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Metamorphopsia|10063341|Metamorphopsia|10063341|metamorphopsia|C0271185|Metamorphopsia|| +003309|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Ocular discomfort|10052143|Ocular discomfort|10052143|ocular discomfort|C0948595|Ocular discomfort|| +003310|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Photophobia|10034960|Photophobia|10034960|photophobia|C0085636|Photophobia|| +003311|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Photopsia|10034962|Photopsia|10034962|photopsia|C0085635|Photopsia|| +003312|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Retinal degeneration|10038845|Retinal degeneration|10038845|retinal degeneration|C0035304|Retinal Degeneration|| +003313|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Retinal oedema|10038886|Retinal edema|10038860|retinal edema|C0242420|Retinal Edema|| +003314|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Retinal tear|10038897|Retinal break|10066422|retinal breaks|C0035321|Retinal Perforations|| +003315|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Retinogram abnormal|10059663|Electroretinogram abnormal|10052533|electroretinographic changes|C0476397|Electroretinogram abnormal|| +003316|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +003317|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Visual acuity reduced|10047531|Vision decreased|10047516|decreased vision|C0558171|Deteriorating vision|| +003318|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Visual acuity reduced|10047531|Visual acuity reduced|10047531|reduced visual acuity|C0234632|Reduced visual acuity|| +003319|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Visual impairment|10047571|Visual impairment|10047571|visual impairment|C3665347|Visual Impairment|| +003320|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Vitreous detachment|10047650|Vitreous detachment|10047650|vitreous detachment|C0042907|Vitreous Detachment|| +003321|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|34084-4|ADVERSE REACTIONS|Vitreous floaters|10047654|Vitreous floaters|10047654|vitreous floaters|C0016242|Vitreous floaters|| +003322|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Chromatopsia|10008795|Dyschromatopsia|10013892|dyschromatopsia|C0858618|Dyschromatopsia|| +003323|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Disease progression|10061818|Disease progression|10061818|progression of the condition|C0242656|Disease Progression|| +003324|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Eye haemorrhage|10015926|Intraocular hemorrhage|10055297|intraocular hemorrhage|C0015402|Eye Hemorrhage|| +003325|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Eye infection intraocular|10054762|Eye infection intraocular|10054762|intraocular infection|C1708554|Intraocular Infection|| +003326|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Eye inflammation|10015943|Eye inflammation|10015943|post-injection intraocular inflammation events|C0042164|Uveitis|duplicate| +003327|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Injection site inflammation|10022078|Injection site inflammation|10022078|post-injection intraocular inflammation events|C0151734|Injection site inflammation|duplicate| +003328|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Injection site reaction|10022095|Injection site reaction|10022095|intravitreal injection procedure associated effects|C0151735|Injection site reaction|underspecified| +003329|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Intraocular pressure increased|10022806|Increased intraocular pressure|10021667|increased intraocular pressure|C0234708|Raised intraocular pressure|| +003330|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Intraocular pressure increased|10022806|Intraocular pressure increased|10022806|increased iop|C0234708|Raised intraocular pressure|| +003331|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Lens dislocation|10024203|Subluxation of lens|10042408|lens subluxation|C0023316|Lens Subluxation|| +003332|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Retinal detachment|10038848|Retinal detachment|10038848|retinal detachment|C0035305|Retinal Detachment|| +003333|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Retinal tear|10038897|Retinal tear (excl detachment)|10038898|retinal tear without detachment|C2062402|Retinal tear without detachment|| +003334|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Retinogram abnormal|10059663|Electroretinogram abnormal|10052533|electroretinographic b-wave amplitude decrease|C3281216|Absent or reduced b-wave on electroretinography|underspecified| +003335|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Visual acuity reduced|10047531|Vision decreased|10047516|decreases in vision|C0558171|Deteriorating vision|| +003336|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Visual acuity tests abnormal|10047534|Best-corrected distance visual acuity decreased|10070552|decrease of best corrected visual acuity|C2938908|Best-corrected distance visual acuity decreased|| +003337|390682b7-72c4-11e1-b0c4-0800200c9a66|JETREA|43685-7|WARNINGS AND PRECAUTIONS|Xanthopsia|10048216|Vision yellow|10047527|yellowish vision|C0221185|Xanthopsia|| +003338|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +003339|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +003340|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +003341|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +003342|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increases in alt|C0151905|Alanine aminotransferase increased|| +003343|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +003344|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +003345|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +003346|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +003347|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increases in ast|C0151904|Aspartate aminotransferase increased|| +003348|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +003349|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Weakness|10047862|weakness|C3714552|Weakness|| +003350|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Atypical pneumonia|10003757|Atypical pneumonia|10003757|atypical pneumonia|C1412002|Atypical pneumonia|| +003351|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +003352|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|bilirubin elevations|C0311468|Increased bilirubin level (finding)|| +003353|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|increased bilirubin|C0311468|Increased bilirubin level (finding)|| +003354|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Blood creatinine abnormal|10005481|Creatinine abnormal NOS|10011359|changes in creatinine levels|C0740471|Creatinine abnormal NOS|| +003355|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|elevated creatinine|C0151578|Creatinine increased|| +003356|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|myelosuppression|C0854467|Myelosuppression|| +003357|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Bone pain|10006002|Bone pain|10006002|bone pain|C0151825|Bone pain|| +003358|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Cardiac failure|10007554|cardiac failure|C0018801|Heart failure|| +003359|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Catheter site pain|10052268|Catheter site pain|10052268|catheter site pain|C0949103|Catheter site pain|| +003360|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +003361|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +003362|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +003363|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +003364|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +003365|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +003366|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +003367|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +003368|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +003369|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +003370|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +003371|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +003372|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +003373|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +003374|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Taste abnormality|10043123|taste disorder|C0039338|Taste Disorders|HLT| +003375|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +003376|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +003377|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +003378|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Extravasation|10015866|Extravasation|10015866|extravasation injury|C1299641|Extravasation injury|| +003379|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +003380|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +003381|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +003382|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Haematology test abnormal|10057755|Hematology test abnormal|10057760|hematologic abnormalities|C0475182|Hematology finding abnormal|| +003383|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Haematotoxicity|10061188|Hematotoxicity|10061196|hematologic toxicities|C0920103|Haematotoxicity|| +003384|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hemoglobin decreased|C0162119|Hemoglobin low|| +003385|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Haemolysis|10018910|Hemolysis|10019491|hemolysis|C0019054|Hemolysis (disorder)|| +003386|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +003387|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Herpes simplex|10019948|Herpes simplex|10019948|herpes simplex|C0019348|Herpes Simplex Infections|| +003388|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +003389|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +003390|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +003391|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +003392|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension worsened|10020799|worsening hypertension|C0235750|Hypertension worsened|| +003393|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Hypertensive crisis|10020802|Hypertensive crisis|10020802|hypertensive crisis|C0020546|Hypertensive crisis|| +003394|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Hyperuricaemia|10020903|Hyperuricemia|10020907|hyperuricemia|C0740394|Hyperuricemia|| +003395|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +003396|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +003397|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +003398|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +003399|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +003400|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +003401|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Infusion site irritation|10065473|Infusion site irritation|10065473|infusion site irritation|C1695897|Infusion site irritation|| +003402|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Infusion site pain|10053483|Infusion site pain|10053483|infusion site pain|C1096035|Infusion site pain|| +003403|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Infusion site phlebitis|10053663|Infusion site phlebitis|10053663|infusion site phlebitis|C1096460|Infusion site phlebitis|| +003404|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Infusion site pruritus|10053664|Infusion site pruritus|10053664|infusion site pruritus|C1096091|Infusion site pruritus|| +003405|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Infusion site reaction|10054996|Infusion site reaction|10054996|infusion site reactions|C1096343|Infusion site reaction|| +003406|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Infusion site swelling|10053505|Infusion site swelling|10053505|infusion site swelling|C1096049|Infusion site swelling|| +003407|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Injection site irritation|10022079|Injection site irritation|10022079|injection site irritation|C0521498|Injection site irritation|| +003408|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +003409|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Injection site phlebitis|10022090|Injection site phlebitis|10022090|injection site phlebitis|C0542149|Injection site phlebitis|| +003410|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|injection site pruritus|C0852995|Injection site pruritus|| +003411|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +003412|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Injection site swelling|10053425|Injection site swelling|10053425|injection site swelling|C0151605|Injection site edema|| +003413|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +003414|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Laryngeal pain|10023848|Pharyngolaryngeal pain|10034844|pharyngolaryngeal pain|C0858635|Pharyngolaryngeal pain|| +003415|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +003416|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Lymphocyte count decreased|10025256|Lymphocyte count decreased|10025256|lymphocytes decreased|C0853986|Lymphocyte count decreased|| +003417|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +003418|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +003419|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Mucosal inflammation|10028116|Mucosal inflammation|10028116|mucosal inflammation|C0333355|Inflammatory disease of mucous membrane|| +003420|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Myelodysplastic syndrome|10028533|Myelodysplastic syndrome|10028533|myelodysplastic syndrome|C3463824|MYELODYSPLASTIC SYNDROME|| +003421|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Nasal congestion|10028735|Nasal congestion|10028735|nasal congestion|C0027424|Nasal congestion (finding)|| +003422|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +003423|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +003424|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +003425|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +003426|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|neutrophils decreased|C0853697|Neutrophil count decreased|| +003427|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Night sweats|10029410|Night sweats|10029410|night sweats|C0028081|Night sweats|| +003428|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +003429|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Oral candidiasis|10030963|Oral candidiasis|10030963|oral candidiasis|C0006849|Oral candidiasis|| +003430|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +003431|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +003432|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelets decreased|10035545|platelets decreased|C0392386|Decreased platelet count|| +003433|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystis jiroveci pneumonia|10064108|pneumocystis jiroveci pneumonia|C1535939|Pneumocystis jiroveci pneumonia|| +003434|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +003435|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +003436|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +003437|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Pulmonary fibrosis|10037383|Pulmonary fibrosis|10037383|pulmonary fibrosis|C0034069|Pulmonary Fibrosis|| +003438|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +003439|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +003440|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +003441|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +003442|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Skin necrosis|10040893|Skin necrosis|10040893|skin necrosis|C0151799|Skin necrosis|| +003443|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +003444|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +003445|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|sjs|C0038325|Stevens-Johnson Syndrome|| +003446|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +003447|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +003448|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +003449|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Toxic epidermal necrolysis|10044223|TEN|10043221|ten|C0014518|Toxic Epidermal Necrolysis|| +003450|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +003451|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +003452|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +003453|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +003454|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +003455|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +003456|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|Leukocyte count decreased|10048552|leukocytes decreased|C0750394|White blood cell count decreased|| +003457|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +003458|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Acute myeloid leukaemia|10000880|Acute myeloid leukemia|10000886|acute myeloid leukemia|C0023467|Leukemia, Myelocytic, Acute|| +003459|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +003460|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +003461|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactoid reaction|10002216|Anaphylactoid reaction|10002216|anaphylactoid reactions|C0340865|Anaphylactoid reaction|| +003462|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|myelosuppression|C0854467|Myelosuppression|| +003463|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Bronchial carcinoma|10006417|Bronchial carcinoma|10006417|bronchial carcinoma|C0007121|Bronchogenic Carcinoma|| +003464|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +003465|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Congenital musculoskeletal anomaly|10062344|Skeletal malformation|10040771|skeletal malformations|C0795693|Skeletal malformation||Animal +003466|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Cytomegalovirus infection|10011831|CMV infection|10009703|infection cmv|C0010823|Cytomegalovirus Infections|| +003467|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +003468|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis bullous|10012441|Rash bullous|10037852|bullous exanthema|C0235819|Rash bullous|| +003469|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +003470|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Extravasation|10015866|Extravasation|10015866|extravasations|C0015376|Extravasation|| +003471|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +003472|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Foetal growth restriction|10070531|Fetal growth restriction|10070532|decreased fetal body weights|C0015934|Fetal Growth Retardation||Animal +003473|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal malformation|10061596|Gastrointestinal malformation|10061596|visceral malformations|C3808677|Visceral malformations||Animal +003474|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +003475|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +003476|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +003477|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Myelodysplastic syndrome|10028533|Myelodysplastic syndrome|10028533|myelodysplastic syndrome|C3463824|MYELODYSPLASTIC SYNDROME|| +003478|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Myeloproliferative disorder|10028576|Myeloproliferative disorder|10028576|myeloproliferative disorders|C0027022|Myeloproliferative disease|| +003479|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignant diseases|C0442867|malignant disease|| +003480|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Neutropenic sepsis|10049151|Neutropenic sepsis|10049151|neutropenic sepsis|C0877153|Neutropenic sepsis|| +003481|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infection|C0029118|Opportunistic Infections|| +003482|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +003483|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +003484|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Precancerous cells present|10049673|Precancerous cells present|10049673|pre-malignant diseases|C0032927|Precancerous Conditions|| +003485|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +003486|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary alveolar haemorrhage|10037313|Pulmonary alveolar hemorrhage|10037314|diffuse alveolar hemorrhage|C0852879|Pulmonary Alveolar Hemorrhage|| +003487|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +003488|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +003489|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +003490|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Septic shock|10040070|Septic shock|10040070|septic shock|C0036983|Septic Shock|| +003491|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +003492|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Skin toxicity|10059516|Skin toxicity|10059516|skin toxicity|C1167791|Skin toxicity|| +003493|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|sjs|C0038325|Stevens-Johnson Syndrome|| +003494|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Swelling|10042674|Swelling|10042674|swelling|C0038999|Swelling|| +003495|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +003496|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|TEN|10043221|ten|C0014518|Toxic Epidermal Necrolysis|| +003497|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +003498|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Toxic skin eruption|10057970|Toxicoderma|10044259|toxic skin reactions|C0521465|Toxicoderma|| +003499|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +003500|39d53698-57fa-7c99-fc5b-f52a55684826|TREANDA|43685-7|WARNINGS AND PRECAUTIONS|||||increase in resorptions|C0015951|Fetal Resorption|unmapped|Animal +003501|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +003502|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +003503|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +003504|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +003505|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +003506|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decrease appetite|C0232462|Decrease in appetite|| +003507|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +003508|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +003509|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +003510|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +003511|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Folliculitis|10016936|Folliculitis|10016936|folliculitis|C0016436|Folliculitis|| +003512|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Frequent bowel movements|10017367|Frequent bowel movements|10017367|frequent bowel movement|C0239978|Increased frequency of defecation|| +003513|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal adverse reactions|C0426576|Gastrointestinal symptom|| +003514|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +003515|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +003516|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +003517|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +003518|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Migraine|10027599|Migraine|10027599|migraine|C0149931|Migraine Disorders|| +003519|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +003520|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +003521|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +003522|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Sinus headache|10040744|Sinus headache|10040744|sinus headache|C0037195|Sinus headache|| +003523|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Tension headache|10043269|Tension headache|10043269|tension headache|C0033893|Tension Headache|| +003524|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Tooth abscess|10044016|Tooth abscess|10044016|tooth abscess|C0518988|Dental abscess|| +003525|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +003526|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +003527|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decrease|10047893|weight decrease|C1262477|Weight decreased|| +003528|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|43685-7|WARNINGS AND PRECAUTIONS|Depressed mood|10012374|Depressed mood|10012374|depressed mood|C0344315|Depressed mood|| +003529|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|43685-7|WARNINGS AND PRECAUTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +003530|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +003531|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +003532|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|43685-7|WARNINGS AND PRECAUTIONS|Suicide attempt|10042464|Attempted suicide|10003728|attempted suicide|C0038663|Suicide attempt|| +003533|3acf6751-827d-11e2-9e96-0800200c9a66|OTEZLA|43685-7|WARNINGS AND PRECAUTIONS|Weight decreased|10047895|Weight decrease|10047893|weight decrease|C1262477|Weight decreased|| +003534|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34066-1|BOXED WARNINGS|Cardiac failure|10007554|Heart failure|10019279|heart failure|C0018801|Heart failure|| +003535|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34066-1|BOXED WARNINGS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +003536|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +003537|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +003538|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +003539|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +003540|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +003541|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Asthenic conditions|10003550|Asthenic conditions|10003550|asthenic conditions|C0852192|Asthenic conditions|HLT| +003542|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Atrial flutter|10003662|Atrial flutter with 1:1 atrioventricular conduction|10076040|atrial flutter with 1:1 atrioventricular conduction|C3888662|Atrial flutter with 1:1 atrioventricular conduction|| +003543|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Atrial flutter|10003662|Atrial flutter|10003662|atrial flutter|C0004239|Atrial Flutter|| +003544|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|increases in creatinine|C0151578|Creatinine increased|| +003545|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +003546|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Cardiac failure aggravated|10007557|worsening heart failure|C0235875|Cardiac failure aggravated|| +003547|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Cardiac failure|10007554|new heart failure|C0018801|Heart failure|| +003548|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Heart failure|10019279|heart failure|C0018801|Heart failure|| +003549|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Dermatitis allergic|10012434|Dermatitis allergic|10012434|dermatitis allergic|C0011615|Dermatitis, Atopic|| +003550|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +003551|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +003552|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +003553|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspeptic signs and symptoms|C0851976|Dyspeptic signs and symptoms|| +003554|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Eczema|10014184|Eczema|10014184|eczema|C0013595|Eczema|| +003555|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|qtc prolonged|C0855333|Electrocardiogram QT corrected interval prolonged|| +003556|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +003557|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal disorder|10017944|gastrointestinal disorders|C0017178|Gastrointestinal Diseases|| +003558|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Hypersensitivity vasculitis|10020764|Leukocytoclastic vasculitis|10024377|leukocytoclastic vasculitis|C2973529|Leukocytoclastic vasculitis|| +003559|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +003560|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +003561|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +003562|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver|| +003563|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +003564|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Photosensitivity reaction|10034972|Photosensitivity reaction|10034972|photosensitivity reaction|C0162830|Dermatitis, Phototoxic|| +003565|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +003566|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +003567|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Pulmonary fibrosis|10037383|Pulmonary fibrosis|10037383|pulmonary fibrosis|C0034069|Pulmonary Fibrosis|| +003568|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Pulmonary toxicity|10061924|Pulmonary toxicity|10061924|pulmonary toxicity|C0919924|Pulmonary toxicity|| +003569|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Rash erythematous|10037855|Rash erythematous|10037855|rashes erythematous|C0234913|Rash erythematous|| +003570|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|rashes generalized|C0497365|Rash generalised|| +003571|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Rash macular|10037867|Rash macular|10037867|rashes macular|C0221201|Macular rash|| +003572|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Rash maculo-papular|10037868|rashes maculo-papular|C0423791|Maculopapular eruption|| +003573|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rashes|C0015230|Exanthema|| +003574|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Vasculitis|10047115|Vasculitis|10047115|vasculitis|C0042384|Vasculitis|| +003575|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +003576|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Acute hepatic failure|10000804|Acute liver failure|10049844|acute liver failure|C0162557|Liver Failure, Acute|| +003577|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +003578|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Acute prerenal failure|10001017|Azotemia prerenal|10003888|pre-renal azotemia|C0741360|azotemia pre renal|| +003579|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|increases in creatinine levels|C0151578|Creatinine increased|| +003580|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|increase in serum creatinine|C0700225|Serum creatinine raised|| +003581|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Cardiac death|10049993|Cardiac death|10049993|cardiovascular death|C0376297|Cardiac Death|| +003582|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Cardiac failure aggravated|10007557|worsening of heart failure|C0235875|Cardiac failure aggravated|| +003583|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Heart failure|10019279|heart failure|C0018801|Heart failure|| +003584|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +003585|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +003586|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|qtc prolongation|C0855333|Electrocardiogram QT corrected interval prolonged|| +003587|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage||Animal +003588|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Hepatocellular injury|10019837|Hepatocellular injury|10019837|hepatocellular liver injury|C0151763|Liver damage|| +003589|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +003590|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +003591|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Hypovolaemia|10021137|Hypovolemia|10021139|hypovolemia|C0546884|Hypovolemia|| +003592|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +003593|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver|| +003594|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +003595|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary fibrosis|10037383|Pulmonary fibrosis|10037383|pulmonary fibrosis|C0034069|Pulmonary Fibrosis|| +003596|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +003597|3bd4006a-8bad-4909-ac6d-b6d84390155c|Multaq|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogen|C0232910|Teratogenesis|| +003598|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +003599|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34066-1|BOXED WARNINGS|Fibrosis|10016642|Fibrosis|10016642|fibrosis|C0016059|Fibrosis|| +003600|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34066-1|BOXED WARNINGS|Nephrogenic systemic fibrosis|10067467|Nephrogenic systemic fibrosis|10067467|nephrogenic systemic fibrosis|C3888044|Nephrogenic Systemic Fibrosis|| +003601|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Anaphylactic shock|10002199|Anaphylactic shock|10002199|anaphylactic shock|C0002792|anaphylaxis|| +003602|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Anaphylactoid reaction|10002216|Anaphylactoid reaction|10002216|anaphylactoid reaction|C0340865|Anaphylactoid reaction|| +003603|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +003604|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|blood pressure increased|C0497247|Increase in blood pressure|| +003605|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +003606|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Burning sensation|10006784|Burning sensation|10006784|burning sensation|C0085624|Burning sensation|| +003607|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +003608|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +003609|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Circulatory collapse|10009192|Circulatory collapse|10009192|circulatory collapse|C0036974|Shock|| +003610|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +003611|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +003612|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Cyanosis|10011703|Cyanosis|10011703|cyanosis|C0010520|Cyanosis|| +003613|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +003614|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +003615|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +003616|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +003617|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +003618|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Eyelid oedema|10015993|Eyelid edema|10015985|eyelid edema|C0162285|Edema of eyelid|| +003619|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Face oedema|10016029|Face edema|10016025|face edema|C0542571|Facial edema|| +003620|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Feeling cold|10016326|Feeling cold|10016326|feeling cold|C0235150|Feeling Cold|| +003621|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Feeling hot|10016334|Feeling hot|10016334|feeling hot|C2939147|Feels hot|| +003622|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +003623|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +003624|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +003625|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +003626|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +003627|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +003628|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +003629|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Laryngeal oedema|10023845|Laryngeal edema|10023838|laryngeal edema|C0023052|Laryngeal Edema|| +003630|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Loss of consciousness|10024855|Loss of consciousness|10024855|loss of consciousness|C0041657|Unconscious State|| +003631|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +003632|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +003633|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Nephrogenic systemic fibrosis|10067467|Nephrogenic systemic fibrosis|10067467|nephrogenic systemic fibrosis|C3888044|Nephrogenic Systemic Fibrosis|| +003634|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Oropharyngeal swelling|10031118|Oropharyngeal swelling|10031118|oropharyngeal swelling|C0853908|Oropharyngeal swelling|| +003635|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Pallor|10033546|Pallor|10033546|pallor|C0030232|Pallor|| +003636|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitation|10033556|palpitation|C0030252|Palpitations|| +003637|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +003638|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Parosmia|10034018|Parosmia|10034018|parosmia|C1510410|Sense of smell altered|| +003639|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Pruritus generalised|10052576|Pruritus generalized|10037092|pruritus generalized|C0475858|Generalized pruritus|| +003640|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +003641|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Pulmonary oedema|10037423|Pulmonary edema|10037375|pulmonary edema|C0034063|Pulmonary Edema|| +003642|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|rash generalized|C0497365|Rash generalised|| +003643|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Rash macular|10037867|Rash macular|10037867|rash macular|C0221201|Macular rash|| +003644|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Rash papular|10037876|Rash papular|10037876|rash papular|C1519353|Skin Papule|| +003645|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Rash pruritic|10037884|Rash pruritic|10037884|rash pruritic|C0033771|Prurigo|| +003646|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +003647|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Respiratory arrest|10038669|Respiratory arrest|10038669|respiratory arrest|C0162297|Respiratory arrest|| +003648|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsion|10010904|convulsion|C0036572|Seizures|| +003649|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Sneezing|10041232|Sneezing|10041232|sneezing|C0037383|Sneezing|| +003650|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +003651|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +003652|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +003653|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute kidney injury|10069339|acute kidney injury|C2609414|Acute kidney injury||DrugClass +003654|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|43685-7|WARNINGS AND PRECAUTIONS|Administration site irritation|10075941|Administration site irritation|10075941|administration irritation|C3888600|Administration site irritation|| +003655|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +003656|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular manifestations|C0476270|Cardiovascular symptoms|| +003657|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|43685-7|WARNINGS AND PRECAUTIONS|Cutaneous symptom|10075531|Cutaneous symptom|10075531|cutaneous manifestations|C0037285|Skin Manifestations|| +003658|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +003659|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|43685-7|WARNINGS AND PRECAUTIONS|Fibrosis|10016642|Fibrosis|10016642|fibrosis|C0016059|Fibrosis|| +003660|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +003661|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|43685-7|WARNINGS AND PRECAUTIONS|Nephrogenic systemic fibrosis|10067467|Nephrogenic systemic fibrosis|10067467|nephrogenic systemic fibrosis|C3888044|Nephrogenic Systemic Fibrosis||DrugClass +003662|3c5101a0-0c7e-4078-8dc3-a57beb9a0e92|Gadavist|43685-7|WARNINGS AND PRECAUTIONS|Respiratory symptom|10075535|Respiratory symptom|10075535|respiratory manifestations|C0037090|Signs and Symptoms, Respiratory|| +003663|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +003664|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +003665|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +003666|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +003667|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Ataxia|10003591|Ataxia|10003591|ataxia|C0004134|Ataxia|| +003668|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Balance disorder|10049848|Balance disorder|10049848|balance disorder|C0575090|Equilibration disorder|| +003669|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +003670|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +003671|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +003672|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +003673|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +003674|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +003675|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress|C3541994|Drug Hypersensitivity Syndrome|| +003676|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug reaction with eosinophilia and systemic symptoms|10073508|drug reaction with eosinophilia and systemic symptoms|C3541994|Drug Hypersensitivity Syndrome|| +003677|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Drug-induced liver injury|10072268|Drug-induced liver injury|10072268|drug induced liver injury|C0860207|Drug-Induced Liver Injury|| +003678|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +003679|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Fall|10016173|Fall|10016173|fall|C0085639|Falls|| +003680|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +003681|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Gait disturbance|10017577|gait disturbance|C0575081|Gait abnormality|| +003682|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +003683|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +003684|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +003685|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +003686|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +003687|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Memory impairment|10027175|Memory impairment|10027175|memory impairment|C0233794|Memory impairment|| +003688|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +003689|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Neurological symptom|10060860|Neurologic reaction|10029290|neurological adverse reactions|C0235030|Neurologic reaction|| +003690|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Nystagmus|10029864|Nystagmus|10029864|nystagmus|C0028738|Nystagmus|| +003691|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +003692|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +003693|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|dermatologic reactions|C0221743|Skin reaction|| +003694|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +003695|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +003696|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +003697|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Thyroid function test abnormal|10043730|Thyroid function test abnormal|10043730|abnormal thyroid function tests|C0476414|Thyroid function tests abnormal|| +003698|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +003699|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infections|C0042029|Urinary tract infection|| +003700|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +003701|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +003702|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Visual impairment|10047571|Visual impairment|10047571|visual impairment|C3665347|Visual Impairment|| +003703|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +003704|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Amnesia|10001949|Amnesia|10001949|amnesia|C0002622|Amnesia|| +003705|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +003706|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +003707|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +003708|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Aphasia|10002948|Aphasia|10002948|aphasia|C0003537|Aphasia|| +003709|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +003710|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Ataxia|10003591|Ataxia|10003591|ataxia|C0004134|Ataxia|| +003711|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Balance disorder|10049848|Balance disorder|10049848|balance disorder|C0575090|Equilibration disorder|| +003712|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevated bilirubin|C0311468|Increased bilirubin level (finding)|| +003713|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|elevations of total bilirubin|C0741494|Elevated total bilirubin|| +003714|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Blood sodium decreased|10005802|Sodium decreased|10041268|decreases in sodium values|C0860871|Sodium decreased|| +003715|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Bradyphrenia|10050012|Slowed thinking|10041049|slowness of thought|C0233633|Thought retardation|| +003716|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Cognitive disorder|10057668|Cognitive function abnormal|10048599|cognitive dysfunction|C0338656|Impaired cognition|| +003717|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicides|C0038661|Suicide|| +003718|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +003719|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Coordination abnormal|10010947|Coordination abnormal|10010947|abnormal coordination|C0520966|Abnormal coordination|| +003720|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Coordination abnormal|10010947|Coordination disturbance|10010949|disturbance in coordination|C0858589|Coordination disturbance|| +003721|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +003722|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +003723|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +003724|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Disorientation|10013395|Disorientation|10013395|disorientation|C0233407|Disorientation|| +003725|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Disturbance in attention|10013496|Disturbance in attention|10013496|disturbance in attention|C0233414|Disturbance of attention|| +003726|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +003727|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress|C3541994|Drug Hypersensitivity Syndrome|| +003728|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug reaction with eosinophilia and systemic symptoms|10073508|drug reaction with eosinophilia and systemic symptoms|C3541994|Drug Hypersensitivity Syndrome|| +003729|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Drug-induced liver injury|10072268|Drug-induced liver injury|10072268|drug induced liver injury|C0860207|Drug-Induced Liver Injury|| +003730|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Eosinophilia|10014950|Eosinophilia|10014950|eosinophilia|C0014457|Eosinophilia|| +003731|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Eye symptom|10075536|Eye symptom|10075536|eye events|C0586406|Eye symptom|| +003732|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Fatigue|10016256|Fatigue|10016256|fatigue-related events|C0015672|Fatigue|| +003733|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Gait disturbance|10017577|Gait disturbance|10017577|disturbance in gait|C0575081|Gait abnormality|| +003734|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Gait disturbance|10017577|Gait instability|10017582|gait instability|C0231686|Gait, Unsteady|| +003735|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Haematology test abnormal|10057755|Hematology test abnormal|10057760|hematological abnormalities|C0475182|Hematology finding abnormal|| +003736|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +003737|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +003738|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Hypersomnia|10020765|Hypersomnia|10020765|hypersomnia|C0917799|Hypersomnia|| +003739|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Hypochloraemia|10020955|Hypochloremia|10020957|hypochloremia|C0085680|Hypochloremia (disorder)|| +003740|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +003741|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Injury|10022116|Injury|10022116|injury|C3263723|Traumatic injury|| +003742|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Laryngeal oedema|10023845|Laryngeal edema|10023838|laryngeal edema|C0023052|Laryngeal Edema|| +003743|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Lethargy|10024264|Lethargy|10024264|lethargy|C0023380|Lethargy|| +003744|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver|| +003745|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Lymphadenopathy|10025197|Lymphadenopathy|10025197|lymphadenopathy|C0497156|Lymphadenopathy|| +003746|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +003747|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Memory impairment|10027175|Memory impairment|10027175|memory impairment|C0233794|Memory impairment|| +003748|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Myocarditis|10028606|Myocarditis|10028606|myocarditis|C0027059|Myocarditis|| +003749|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Myositis|10028653|Myositis|10028653|myositis|C0027121|Myositis|| +003750|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +003751|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Nephritis|10029117|Nephritis|10029117|nephritis|C0027697|Nephritis|| +003752|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Neurological symptom|10060860|Neurologic reaction|10029290|neurological adverse reactions|C0235030|Neurologic reaction|| +003753|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Nystagmus|10029864|Nystagmus|10029864|nystagmus|C0028738|Nystagmus|| +003754|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Psychomotor retardation|10037213|Psychomotor retardation|10037213|psychomotor retardation|C0424230|Motor retardation|| +003755|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +003756|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +003757|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +003758|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +003759|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|dermatologic reactions|C0221743|Skin reaction||DrugClass +003760|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +003761|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Speech disorder|10041466|Speech disorder|10041466|speech disorder|C0037822|Speech Disorders|| +003762|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|sjs|C0038325|Stevens-Johnson Syndrome||DrugClass +003763|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +003764|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thoughts|C0424000|Feeling suicidal (finding)|| +003765|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Thyroxine decreased|10043816|T4 decreased|10043062|decreases in serum t4 total|C1295666|Decreased thyroxine level|| +003766|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Thyroxine free decreased|10055162|Thyroxine free decreased|10055162|decreases in serum t4 free|C0948240|Free thyroxine concentration decreased below normal|| +003767|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|TEN|10043221|ten|C0014518|Toxic Epidermal Necrolysis||DrugClass +003768|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis||DrugClass +003769|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevations in transaminases|C0438717|Transaminases increased|| +003770|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Tri-iodothyronine decreased|10044594|Tri-iodothyronine decreased|10044594|decreases in serum t3 total|C1295669|Decreased triiodothyronine level|| +003771|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Tri-iodothyronine free decreased|10053791|Tri-iodothyronine free decreased|10053791|decreases in serum t3 free|C0861036|Tri-iodothyronine free decreased|| +003772|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +003773|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +003774|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Visual impairment|10047571|Abnormal vision|10000186|visual changes|C0750280|Visual changes|| +003775|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Visual impairment|10047571|Visual impairment|10047571|impaired vision|C3665347|Visual Impairment|| +003776|3d0c9554-eaeb-4694-8089-00133fcadce3|Aptiom|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +003777|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +003778|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis|| +003779|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +003780|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +003781|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +003782|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Clostridium difficile colitis|10009657|Clostridium difficile colitis|10009657|clostridium difficile colitis|C0238106|Clostridium difficile colitis|| +003783|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Clostridium difficile colitis|10009657|Diarrhea, Clostridium difficile|10012734|clostridium difficile -associated diarrhea|C0235952|Clostridium difficile diarrhea|| +003784|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +003785|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Coombs direct test positive|10010933|Coombs direct test positive|10010933|direct coombs' test seroconversion|C0151569|Direct Coombs test positive|| +003786|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +003787|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +003788|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Eosinophilia|10014950|Eosinophilia|10014950|eosinophilia|C0014457|Eosinophilia|| +003789|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +003790|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +003791|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Hyperkalaemia|10020646|Hyperkalemia|10020647|hyperkalemia|C0020461|Hyperkalemia|| +003792|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +003793|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +003794|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +003795|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +003796|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +003797|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +003798|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Phlebitis|10034879|Phlebitis|10034879|phlebitis|C0031542|Phlebitis|| +003799|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +003800|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +003801|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +003802|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsion|10010904|convulsion|C0036572|Seizures|| +003803|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +003804|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|increased transaminases|C0438717|Transaminases increased|| +003805|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +003806|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +003807|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis||DrugClass +003808|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|43685-7|WARNINGS AND PRECAUTIONS|Clostridium difficile colitis|10009657|Diarrhea, Clostridium difficile|10012734|clostridium difficile -associated diarrhea|C0235952|Clostridium difficile diarrhea|| +003809|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|43685-7|WARNINGS AND PRECAUTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +003810|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|43685-7|WARNINGS AND PRECAUTIONS|Coombs direct test positive|10010933|Coombs direct test positive|10010933|direct coombs' test seroconversion|C0151569|Direct Coombs test positive|| +003811|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)||DrugClass +003812|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +003813|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity||DrugClass +003814|3ecde48b-75a2-4beb-9999-369f3f61bb8a|Teflaro|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction||DrugClass +003815|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34066-1|BOXED WARNINGS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +003816|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +003817|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34066-1|BOXED WARNINGS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +003818|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34066-1|BOXED WARNINGS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +003819|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34066-1|BOXED WARNINGS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +003820|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34066-1|BOXED WARNINGS|Dysphagia|10013950|Swallowing difficult|10042645|swallowing difficulties|C0011168|Deglutition Disorders|| +003821|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34066-1|BOXED WARNINGS|Dysphonia|10013952|Dysphonia|10013952|dysphonia|C1527344|Dysphonia|| +003822|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34066-1|BOXED WARNINGS|Dyspnoea|10013968|Difficulty breathing|10012791|breathing difficulties|C0013404|Dyspnea|| +003823|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34066-1|BOXED WARNINGS|Eyelid ptosis|10015995|Ptosis|10037272|ptosis|C0033377|Ptosis|| +003824|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34066-1|BOXED WARNINGS|Muscular weakness|10028372|Generalized muscle weakness|10062572|generalized muscle weakness|C0746674|Generalized muscle weakness|| +003825|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34066-1|BOXED WARNINGS|Urinary incontinence|10046543|Urinary incontinence|10046543|urinary incontinence|C0042024|Urinary Incontinence|| +003826|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34066-1|BOXED WARNINGS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +003827|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34066-1|BOXED WARNINGS|||||distant spread of toxin effect|||unmapped| +003828|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Blepharospasm|10005159|Blepharospasm|10005159|blepharospasm|C0005747|Blepharospasm|| +003829|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Brow ptosis|10059001|Brow ptosis|10059001|brow ptosis|C0423122|Ptosis of eyebrow|| +003830|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Dermatitis allergic|10012434|Allergic dermatitis|10001711|allergic dermatitis|C0011615|Dermatitis, Atopic|| +003831|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +003832|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhoea|10012735|diarrhoea|C0011991|Diarrhea|| +003833|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Discomfort|10013082|Sensation of pressure|10040003|sensation of pressure|C0234215|Sensory Discomfort|| +003834|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Dry eye|10013774|Dry eye|10013774|dry eye|C0314719|Dryness of eye|| +003835|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +003836|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +003837|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +003838|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Difficulty breathing|10012791|breathing difficulties|C0013404|Dyspnea|| +003839|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +003840|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnoea|10013968|dyspnoea|C0013404|Dyspnea|| +003841|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Erythema|10015150|Localized erythema|10024781|localized erythema|C0849913|Localized erythema|| +003842|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Eye disorder|10015916|Eye disorder|10015916|eye disorder|C0015397|Disorder of eye|| +003843|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Eye swelling|10015967|Eye swelling|10015967|eye swelling|C0270996|Eye swelling|| +003844|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Eyelid oedema|10015993|Eyelid edema|10015985|eyelid edema|C0162285|Edema of eyelid|| +003845|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Eyelid ptosis|10015995|Eyelid ptosis|10015995|eyelid ptosis|C0005745|Blepharoptosis|| +003846|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Facial pain|10016059|Facial pain|10016059|facial pain|C0015468|Facial Pain|| +003847|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Facial paresis|10051267|Facial paresis|10051267|facial paresis|C0427055|Facial Paresis|| +003848|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +003849|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +003850|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|localized allergic reactions|C0020517|Hypersensitivity|| +003851|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +003852|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Influenza like illness|10022004|Flu-like symptoms|10016797|flu-like symptoms|C0392171|Influenza-like symptoms|| +003853|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Injection site haematoma|10022066|Injection site hematoma|10055371|injection site hematoma|C0542008|Injection site haematoma|| +003854|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +003855|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reaction|C0151735|Injection site reaction|| +003856|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Injection site swelling|10053425|Injection site swelling|10053425|injection site swelling|C0151605|Injection site edema|| +003857|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Localised oedema|10048961|Localized edema|10062466|localized edema|C0013609|Localized edema|| +003858|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Muscle disorder|10028300|Muscle disorder|10028300|muscle disorder|C0026848|Myopathy|| +003859|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasm|10028333|muscle spasm|C0037763|Spasm|| +003860|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Muscular weakness|10028372|Muscle weakness|10028350|muscle weakness|C0151786|Muscle Weakness|| +003861|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Muscular weakness|10028372|Muscular weakness|10028372|muscular weakness|C0151786|Muscle Weakness|| +003862|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +003863|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +003864|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +003865|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +003866|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Neck pain|10028836|Neck pain|10028836|neck pain|C0007859|Neck Pain|| +003867|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|localized pruritus|C0033774|Pruritus|| +003868|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Rash|10037844|Localized rash|10062705|localized rash|C0497364|Localized rash|| +003869|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Respiratory tract infection|10062352|Respiratory tract infection|10062352|respiratory tract infection|C0035243|Respiratory Tract Infections|| +003870|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|Visual impairment|10047571|Visual impairment|10047571|visual impairment|C3665347|Visual Impairment|| +003871|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|34084-4|ADVERSE REACTIONS|||||spread of effects from toxin|||unmapped| +003872|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis||DrugClass +003873|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Aspiration|10003504|Aspiration|10003504|aspiration|C0700198|Pulmonary aspiration|| +003874|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +003875|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Corneal perforation|10011039|Corneal perforation|10011039|corneal perforation|C0339293|Corneal Perforation|| +003876|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Creutzfeldt-Jakob disease|10011384|CJD|10009217|cjd|C0022336|Creutzfeldt-Jakob disease|| +003877|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Creutzfeldt-Jakob disease|10011384|Creutzfeldt-Jakob disease|10011384|creutzfeldt-jakob disease|C0022336|Creutzfeldt-Jakob disease|| +003878|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +003879|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +003880|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +003881|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +003882|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Dysphagia|10013950|Swallowing difficult|10042645|swallowing difficulties|C0011168|Deglutition Disorders|| +003883|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Dysphonia|10013952|Dysphonia|10013952|dysphonia|C1527344|Dysphonia|| +003884|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Difficulty breathing|10012791|breathing difficulties|C0013404|Dyspnea|| +003885|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea||DrugClass +003886|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Eyelid ptosis|10015995|Ptosis|10037272|ptosis|C0033377|Ptosis|| +003887|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity||DrugClass +003888|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Muscular weakness|10028372|Generalized muscle weakness|10062572|generalized muscle weakness|C0746674|Generalized muscle weakness|| +003889|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Muscular weakness|10028372|Localised muscle weakness|10059002|weaken neck muscles|C4022584|Fatigable weakness of neck muscles|underspecified|DrugClass +003890|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Persistent corneal epithelial defect|10075399|Persistent corneal epithelial defect|10075399|corneal persistent epithelial defect|C3854510|Persistent corneal epithelial defect||DrugClass +003891|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Respiratory failure|10038695|Respiratory failure|10038695|respiratory failure|C1145670|Respiratory Failure||DrugClass +003892|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Respiratory failure|10038695|Respiratory insufficiency|10038701|respiratory compromise|C0035229|Respiratory Insufficiency|| +003893|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Serum sickness|10040400|Serum sickness|10040400|serum sickness|C0036830|Serum Sickness||DrugClass +003894|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Soft tissue swelling|10076991|Soft tissue swelling|10076991|soft tissue edema|C0037580|Soft tissue swelling||DrugClass +003895|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Total lung capacity decreased|10044100|Total lung capacity decreased|10044100|loss of breathing capacity|C0520829|Decreased total lung capacity|| +003896|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Ulcerative keratitis|10064996|Corneal ulceration|10011060|corneal ulceration|C0010043|Corneal Ulcer|| +003897|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Urinary incontinence|10046543|Urinary incontinence|10046543|urinary incontinence|C0042024|Urinary Incontinence|| +003898|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria||DrugClass +003899|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Viral infection|10047461|Viral infection|10047461|transmission of viral diseases|C0042769|Virus Diseases|| +003900|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +003901|3f35d6e0-3450-4abc-a0da-cc7b277e7c6e|Xeomin|43685-7|WARNINGS AND PRECAUTIONS|||||corneal exposure|C1282542|Corneal exposure|unmapped| +003902|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34066-1|BOXED WARNINGS|Cardiac failure|10007554|Heart failure|10019279|heart failure|C0018801|Heart failure|| +003903|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|mortality|C1306577|Death (finding)|| +003904|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34066-1|BOXED WARNINGS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +003905|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34066-1|BOXED WARNINGS|Sudden death|10042434|Sudden death|10042434|sudden death|C0011071|Sudden death|| +003906|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +003907|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Renal failure acute|10038436|renal failure acute|C0022660|Kidney Failure, Acute|| +003908|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Aggression|10001488|Aggression|10001488|aggression|C0001807|Aggressive behavior|| +003909|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Akathisia|10001540|Akathisia|10001540|akathisia|C0392156|Akathisia|| +003910|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Amenorrhoea|10001928|Amenorrhea|10001927|amenorrhea|C0002453|Amenorrhea|| +003911|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Amnesia|10001949|Amnesia|10001949|amnesia|C0002622|Amnesia|| +003912|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +003913|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Anorgasmia|10002652|Anorgasmia|10002652|anorgasmia|C0234022|Orgasm incapacity|| +003914|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Aphthous ulcer|10002959|Aphthous stomatitis|10002958|aphthous stomatitis|C0038363|Aphthous Stomatitis|| +003915|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Arrhythmia|10003119|Arrhythmia|10003119|arrhythmia|C0003811|Cardiac Arrhythmia|| +003916|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +003917|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Asthma|10003553|Asthma|10003553|asthma|C0004096|Asthma|| +003918|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Atrioventricular block|10003671|Atrioventricular block|10003671|atrioventricular block|C0004245|Atrioventricular Block|| +003919|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Blepharitis|10005148|Blepharitis|10005148|blepharitis|C0005741|Blepharitis|| +003920|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Bradykinesia|10006100|Bradykinesia|10006100|bradykinesia|C0233565|Bradykinesia|| +003921|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Breast pain|10006298|Breast pain|10006298|breast pain|C0024902|Mastodynia|| +003922|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Bulimia nervosa|10006550|Bulimia nervosa|10006550|bulimia nervosa|C2267227|Bulimia Nervosa|| +003923|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Cardiac failure acute|10007556|Cardiac failure acute|10007556|cardiac failure acute|C0264714|Acute heart failure|| +003924|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Cardiac failure congestive|10007559|Cardiac failure congestive|10007559|cardiac failure congestive|C0018802|Congestive heart failure|| +003925|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Cardiac failure|10007554|cardiac failure|C0018801|Heart failure|| +003926|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Cataract|10007739|Cataract|10007739|cataract|C0086543|Cataract|| +003927|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Catatonia|10007776|Catatonia|10007776|catatonia|C0007398|Catatonia|| +003928|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Cholelithiasis|10008629|Cholelithiasis|10008629|cholelithiasis|C0008350|Cholelithiasis|| +003929|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +003930|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Conjunctival hyperaemia|10051625|Conjunctival hyperemia|10054364|hyperemia conjunctival|C1761613|Conjunctival hyperemia|| +003931|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Conjunctivitis allergic|10010744|Conjunctivitis allergic|10010744|conjunctivitis allergic|C0009766|Allergic Conjunctivitis|| +003932|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +003933|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +003934|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Delirium|10012218|Delirium|10012218|delirium|C0011206|Delirium|| +003935|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Delusion|10012239|Delusion|10012239|delusion|C0011253|Delusions|| +003936|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +003937|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +003938|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Dry eye|10013774|Dry eye|10013774|dry eye|C0314719|Dryness of eye|| +003939|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +003940|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Dry throat|10013789|Dry throat|10013789|dry throat|C0235234|Pharyngeal dryness|| +003941|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Duodenal ulcer|10013836|Duodenal ulcer|10013836|duodenal ulcer|C0013295|Duodenal Ulcer|| +003942|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Dyskinesia|10013916|Dyskinesia|10013916|dyskinesia|C0013384|Dyskinetic syndrome|| +003943|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Dyspnoea exertional|10013971|Dyspnea exertional|10013966|dyspnea exertional|C0231807|Dyspnea on exertion|| +003944|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +003945|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Dystonia|10013983|Dystonia|10013983|dystonia|C0013421|Dystonia|| +003946|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Dysuria|10013990|Dysuria|10013990|dysuria|C0013428|Dysuria|| +003947|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Ejaculation failure|10014328|Ejaculation failure|10014328|ejaculation failure|C0278106|Anejaculation|| +003948|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Enuresis|10014928|Enuresis|10014928|enuresis|C0014394|Enuresis|| +003949|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +003950|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Erectile dysfunction|10061461|Erectile dysfunction|10061461|erectile dysfunction|C0242350|Erectile dysfunction|| +003951|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Extrapyramidal disorder|10015832|Extrapyramidal disorder|10015832|extrapyramidal disorder|C0015371|Extrapyramidal Disorders|| +003952|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Extrapyramidal disorder|10015832|Extrapyramidal symptoms|10015835|eps-related adverse events|C0234133|Extrapyramidal sign|| +003953|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Eye swelling|10015967|Eye swelling|10015967|eye swelling|C0270996|Eye swelling|| +003954|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Eyelid oedema|10015993|Eyelid edema|10015985|eyelid edema|C0162285|Edema of eyelid|| +003955|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Faecal incontinence|10016092|Fecal incontinence|10016296|fecal incontinence|C0015732|Fecal Incontinence|| +003956|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +003957|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Fluid retention|10016807|Fluid retention|10016807|fluid retention|C0268000|Body fluid retention|| +003958|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Difficulty in walking|10012794|difficulty in walking|C0311394|Difficulty walking|| +003959|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +003960|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Reflux esophagitis|10038262|reflux esophagitis|C0014869|Peptic Esophagitis|| +003961|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Generalised oedema|10018092|Edema generalized|10014223|edema general|C1850534|Edema, generalized|| +003962|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Gynaecomastia|10018800|Gynecomastia|10018801|gynecomastia|C0018418|Gynecomastia|| +003963|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Haematocrit decreased|10018838|Hematocrit decreased|10019423|hematocrit below the extended normal range|C0744727|Hematocrit decreased|| +003964|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hemoglobin decreased|C0162119|Hemoglobin low|| +003965|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Hiatus hernia|10020028|Hiatus hernia|10020028|hiatus hernia|C3489393|Hiatal Hernia|| +003966|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Hostility|10020400|Hostility|10020400|hostility|C0020039|Hostility|| +003967|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Hyperaemia|10020565|Hyperemia|10020619|hyperemia|C0020452|Hyperemia|| +003968|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Hyperchlorhydria|10020601|Hyperchlorhydria|10020601|hyperchlorhydria|C0151713|Hyperchlorhydria|| +003969|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Hyperthermia|10020843|Hyperthermia|10020843|hyperthermia|C0015967|Fever|| +003970|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +003971|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +003972|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +003973|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Impulse-control disorder|10061215|Impulse-control disorder|10061215|impulse-control disorder|C0021122|Disruptive, Impulse Control, and Conduct Disorders|| +003974|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Increased appetite|10021654|Increased appetite|10021654|increased appetite|C0232461|Increased appetite (finding)|| +003975|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Iron deficiency anaemia|10022972|Iron deficiency anemia|10022974|iron deficiency anemia|C0162316|Iron deficiency anemia|| +003976|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Lenticular opacities|10024214|Lenticular opacities|10024214|lenticular opacities|C1510497|Lens Opacities|| +003977|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Lethargy|10024264|Lethargy|10024264|lethargy|C0023380|Lethargy|| +003978|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +003979|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Libido decreased|10024419|Libido decreased|10024419|libido decreased|C0011124|Decreased Libido|| +003980|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Lip ulceration|10024572|Lip ulceration|10024572|lip ulceration|C0267033|Lip ulcer (disorder)|| +003981|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Major depression|10057840|Major depression|10057840|major depression|C1269683|Major Depressive Disorder|| +003982|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Mania|10026749|Mania|10026749|mania|C0338831|Manic|| +003983|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Menorrhagia|10027313|Menorrhagia|10027313|menorrhagia|C0025323|Menorrhagia|| +003984|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Menstruation irregular|10027339|Menstruation irregular|10027339|menstruation irregular|C0156404|Irregular periods|| +003985|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Metrorrhagia|10027514|Metrorrhagia|10027514|metrorrhagia|C0025874|Metrorrhagia|| +003986|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Mood swings|10027951|Mood swings|10027951|mood swings|C0085633|Mood swings|| +003987|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Mouth ulceration|10028034|Mouth ulceration|10028034|mouth ulceration|C0149745|Oral Ulcer|| +003988|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +003989|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Musculoskeletal stiffness|10052904|Musculoskeletal stiffness|10052904|musculoskeletal stiffness|C0948525|Musculoskeletal stiffness|| +003990|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +003991|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Nasal congestion|10028735|Nasal congestion|10028735|nasal congestion|C0027424|Nasal congestion (finding)|| +003992|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Nasal dryness|10028740|Nasal dryness|10028740|nasal dryness|C0231919|Nasal mucosa dry|| +003993|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +003994|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +003995|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Nephrolithiasis|10029148|Nephrolithiasis|10029148|nephrolithiasis|C0392525|Nephrolithiasis|| +003996|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Neutrophil count increased|10029368|Neutrophil count increased|10029368|neutrophil count increased|C0151683|Neutrophilia (finding)|| +003997|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Nystagmus|10029864|Nystagmus|10029864|nystagmus|C0028738|Nystagmus|| +003998|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Obsessive-compulsive disorder|10029898|Obsessive-compulsive disorder|10029898|obsessive-compulsive disorder|C0028768|Obsessive-Compulsive Disorder|| +003999|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +004000|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Oedema|10030095|Pitting edema|10054547|edema pitting|C0333243|Pitting edema|| +004001|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Orthostatic hypotension|10031127|Orthostatic hypotension|10031127|orthostatic hypotension|C0020651|Hypotension, Orthostatic|| +004002|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +004003|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Panic attack|10033664|Panic attack|10033664|panic attack|C0086769|Panic Attacks|| +004004|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +004005|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Paranoia|10033864|Paranoia|10033864|paranoia|C1456784|Paranoia|| +004006|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Parkinsonism|10034010|Parkinsonism|10034010|parkinsonism|C0242422|Parkinsonian Disorders|| +004007|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Pollakiuria|10036018|Pollakiuria|10036018|pollakiuria|C0042023|Increased frequency of micturition|| +004008|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Polydipsia psychogenic|10036069|Polydipsia psychogenic|10036069|polydipsia psychogenic|C0395005|Psychogenic polydipsia|| +004009|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Postmenopausal haemorrhage|10055870|Postmenopausal hemorrhage|10036400|postmenopausal hemorrhage|C0032776|Postmenopausal bleeding|| +004010|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Prostatitis|10036978|Prostatitis|10036978|prostatitis|C0033581|prostatitis|| +004011|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Psychomotor hyperactivity|10037211|Psychomotor hyperactivity|10037211|psychomotor hyperactivity|C3887612|Psychomotor Agitation|| +004012|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +004013|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Restless legs syndrome|10058920|Restless legs syndrome|10058920|restless legs syndrome|C0035258|Restless Legs Syndrome|| +004014|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Restlessness|10038743|Restlessness|10038743|restlessness|C3887611|Restlessness|| +004015|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Retrograde ejaculation|10038967|Retrograde ejaculation|10038967|retrograde ejaculation|C0403673|Retrograde ejaculation|| +004016|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Rhinorrhoea|10039101|Rhinorrhea|10039100|rhinorrhea|C1260880|Rhinorrhea|| +004017|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Salivary hypersecretion|10039424|Salivary hypersecretion|10039424|salivary hypersecretion|C0037036|Sialorrhea|| +004018|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Sinus congestion|10040742|Sinus congestion|10040742|sinus congestion|C0152029|Congestion of nasal sinus|| +004019|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Sleep apnoea syndrome|10040979|Sleep apnea syndrome|10040976|sleep apnea syndrome|C0037315|Sleep Apnea Syndromes|| +004020|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +004021|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +004022|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +004023|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Testicular pain|10043345|Testicular pain|10043345|testicular pain|C0039591|Pain in testicle|| +004024|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Thirst|10043458|Thirst|10043458|thirst|C0039971|Thirst|| +004025|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Tinnitus|10043882|Tinnitus|10043882|tinnitus|C0040264|Tinnitus|| +004026|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Torticollis|10044074|Torticollis|10044074|torticollis|C0040485|Torticollis|| +004027|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +004028|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +004029|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Urinary incontinence|10046543|Urinary incontinence|10046543|urinary incontinence|C0042024|Urinary Incontinence|| +004030|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Urinary retention|10046555|Urinary retention|10046555|urinary retention|C0080274|Urinary Retention|| +004031|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +004032|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +004033|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +004034|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +004035|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +004036|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis||DrugClass +004037|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Amenorrhoea|10001928|Amenorrhea|10001927|amenorrhea|C0002453|Amenorrhea||DrugClass +004038|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Arrhythmia|10003119|Arrhythmia|10003119|arrhythmia|C0003811|Cardiac Arrhythmia|| +004039|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Arrhythmia|10003119|Cardiac dysrhythmias|10007545|cardiac dysrhythmia|C0003811|Cardiac Arrhythmia|| +004040|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Aspiration|10003504|Aspiration|10003504|aspiration|C0700198|Pulmonary aspiration||DrugClass +004041|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Autonomic nervous system imbalance|10003840|Autonomic instability|10049218|autonomic instability|C0262385|Autonomic nervous system imbalance|| +004042|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Biopsy breast abnormal|10004745|Biopsy breast abnormal|10004745|mammary gland proliferative changes|C0740306|Biopsy breast abnormal|underspecified|Animal +004043|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Blood creatine phosphokinase increased|10005470|Creatine phosphokinase increased|10011349|elevated creatine phosphokinase|C0151576|Elevated creatine kinase|| +004044|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Blood gonadotrophin decreased|10005562|Gonadotropins decreased|10018546|suppress hypothalamic gnrh|C4025644|Hypothalamic gonadotropin-releasing hormone (GNRH) deficiency|| +004045|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Blood gonadotrophin decreased|10005562|Pituitary gonadotrophin decreased|10054718|reduced pituitary gonadotropin secretion|C0151676|Pituitary gonadotrophin decreased|| +004046|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure fluctuation|10005746|Blood pressure fluctuation|10005746|irregular blood pressure|C0549405|Blood pressure fluctuation|| +004047|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Blood prolactin increased|10005780|Plasma prolactin increased|10035415|plasma prolactin levels increase|C0857716|Plasma prolactin increased|| +004048|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Blood prolactin increased|10005780|Prolactin increased|10036826|prolactin elevation|C0553731|PRL increased|| +004049|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Blood prolactin increased|10005780|Prolactin levels increased|10036828|elevates prolactin levels|C0747979|Increased prolactin level|| +004050|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Blood prolactin increased|10005780|Serum prolactin increased|10040384|increases in serum prolactin|C0857980|Serum prolactin increased||Animal +004051|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Bone density decreased|10049470|Bone density decreased|10049470|decreased bone density|C0877225|Bone density decreased|| +004052|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular risk|C0850624|cardiovascular risk factor||DrugClass +004053|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Catatonia|10007776|Reaction catatonic|10037940|catatonic signs|C3251821|Catatonic reaction|| +004054|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Cerebrovascular accident|10008190|cerebrovascular accidents|C0038454|Cerebrovascular accident|| +004055|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident||DrugClass +004056|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular disorder|10008196|Cerebrovascular disorder|10008196|cerebrovascular risk|C0007820|Cerebrovascular Disorders||DrugClass +004057|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Cognitive disorder|10057668|Cognitive impairment|10009846|cognitive impairment|C0338656|Impaired cognition|| +004058|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Coma|10010071|Coma|10010071|hyperosmolar coma|C0020457|Hyperglycemic Hyperosmolar Nonketotic Coma|duplicate| +004059|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicide|C0038661|Suicide|| +004060|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatalities|C1306577|Death (finding)|| +004061|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Diabetes mellitus|10012601|Diabetes mellitus|10012601|diabetes mellitus|C0011849|Diabetes Mellitus|| +004062|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +004063|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Dyskinesia|10013916|Movements involuntary|10028041|involuntary, dyskinetic movements|C0427086|Involuntary Movements||DrugClass +004064|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Dyslipidaemia|10058108|Dyslipidemia|10058110|dyslipidemia|C0242339|Dyslipidemias|| +004065|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|qtcf increase|C3828431|QTcF Prolongation|| +004066|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT interval prolonged|10037703|prolongs qt interval|C0151878|Prolonged QT interval|| +004067|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +004068|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Erectile dysfunction|10061461|Impotence|10021550|impotence|C0242350|Erectile dysfunction||DrugClass +004069|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Galactorrhoea|10017600|Galactorrhea|10017592|galactorrhea|C3665358|Galactorrhea||DrugClass +004070|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Gynaecomastia|10018800|Gynecomastia|10018801|gynecomastia|C0018418|Gynecomastia||DrugClass +004071|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Heart rate irregular|10019304|Irregular pulse|10022994|irregular pulse|C0392684|Pulse irregular|| +004072|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +004073|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Hyperhidrosis|10020642|Diaphoresis|10012703|diaphoresis|C0700590|Increased sweating|| +004074|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Hyperosmolar state|10020697|Hyperosmolar state|10020697|hyperosmolar coma|C0020457|Hyperglycemic Hyperosmolar Nonketotic Coma|duplicate| +004075|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Hyperprolactinaemia|10020737|Hyperprolactinemia|10020739|long-standing hyperprolactinemia|C0020514|Hyperprolactinemia|| +004076|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Hyperpyrexia|10020741|Hyperpyrexia|10020741|hyperpyrexia|C0392676|Hyperpyrexia|| +004077|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Hypogonadism|10058359|Gonadal insufficiency|10068037|impairing gonadalsteroidogenesis|C2242620|Gonadal insufficiency|underspecified| +004078|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Hypogonadism|10058359|Hypogonadism|10058359|hypogonadism|C0020619|Hypogonadism|| +004079|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Judgement impaired|10023236|Judgement impaired|10023236|impair judgment|C0233818|Impaired judgement|| +004080|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Ketoacidosis|10023379|Ketoacidosis|10023379|ketoacidosis|C0220982|Ketoacidosis|| +004081|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia||DrugClass +004082|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Lipids abnormal|10024588|Lipids abnormal|10024588|undesirable alterations in lipids|C0549634|Lipids abnormal||DrugClass +004083|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Mental status changes|10048294|Mental status changes|10048294|altered mental status|C0856054|Mental status changes|| +004084|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Metabolic disorder|10058097|Metabolic disorder|10058097|metabolic changes|C0025517|Metabolic Diseases|| +004085|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Motor dysfunction|10061296|Motor dysfunction|10061296|impair motor skills|C1963825|Reduced dexterity|| +004086|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Muscle rigidity|10028330|Muscle rigidity|10028330|muscle rigidity|C0026837|Muscle Rigidity|| +004087|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Myoglobinuria|10028629|Myoglobinuria|10028629|myoglobinuria|C0027080|Myoglobinuria|| +004088|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Neuroleptic malignant syndrome|10029282|NMS|10029435|nms|C0027849|Neuroleptic Malignant Syndrome|| +004089|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Neuroleptic malignant syndrome|10029282|Neuroleptic malignant syndrome|10029282|neuroleptic malignant syndrome|C0027849|Neuroleptic Malignant Syndrome|| +004090|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia||DrugClass +004091|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Oesophageal motility disorder|10072419|Esophageal motility disorder|10072420|esophageal dysmotility|C0014858|Esophageal motility disorders||DrugClass +004092|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Orthostatic hypotension|10031127|Orthostatic hypotension|10031127|orthostatic hypotension|C0020651|Hypotension, Orthostatic|| +004093|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Priapism|10036661|Priapism|10036661|priapism|C0033117|Priapism||DrugClass +004094|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Reproductive toxicity|10074268|Reproductive toxicity|10074268|inhibit reproductive function|C1558153|Adverse Event Associated with Sexual and Reproductive Function|| +004095|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Rhabdomyolysis|10039020|Rhabdomyolysis|10039020|rhabdomyolysis|C0035410|Rhabdomyolysis|| +004096|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +004097|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +004098|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +004099|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Sudden death|10042434|Sudden death|10042434|sudden death|C0011071|Sudden death|| +004100|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +004101|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +004102|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Tardive dyskinesia|10043118|Tardive dyskinesia|10043118|tardive dyskinesia|C0686347|Tardive Dyskinesia|| +004103|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Temperature regulation disorder|10061376|Temperature regulation disorder|10061376|disruption of the body's ability to reduce core body temperature|C0854171|Temperature regulation disorder||DrugClass +004104|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Thinking abnormal|10043431|Thinking abnormal|10043431|impair thinking|C0233632|Disturbance in thinking|| +004105|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Transient ischaemic attack|10044390|Transient ischemic attacks|10044391|transient ischemic attacks|C0007787|Transient Ischemic Attack|| +004106|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|Weight increased|10047899|Weight gain|10047896|body weight gain|C0043094|Weight Gain|| +004107|43452bf8-76e7-47a9-a5d8-41fe84d061f0|FANAPT|43685-7|WARNINGS AND PRECAUTIONS|||||increase cardiovascular risk|C0850624|cardiovascular risk factor|unmapped|DrugClass +004108|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +004109|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +004110|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +004111|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Activated partial thromboplastin time prolonged|10000636|PTT prolonged|10037276|ptt elevations|C0240671|Partial thromboplastin time increased (finding)|| +004112|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Adrenal insufficiency|10001367|Adrenal insufficiency|10001367|adrenal insufficiency|C0001623|Adrenal gland hypofunction|| +004113|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevations in alt|C0151905|Alanine aminotransferase increased|| +004114|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +004115|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +004116|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Amylase increased|10002016|Amylase increased|10002016|elevations in amylase|C0151479|Amylase increased|| +004117|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Amylase increased|10002016|Blood amylase increased|10005328|blood amylase increased|C0852913|Blood amylase increased|| +004118|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +004119|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +004120|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +004121|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +004122|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +004123|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +004124|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevations in bilirubin|C0311468|Increased bilirubin level (finding)|| +004125|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|total bilirubin elevations|C0741494|Elevated total bilirubin|| +004126|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Blood glucose increased|10005557|blood glucose increased|C0595877|Blood glucose increased|| +004127|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Fasting blood glucose increased|10050786|increases in fasting plasma glucose|C0920108|Fasting blood glucose increased|| +004128|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +004129|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Cholelithiasis|10008629|Cholelithiasis|10008629|cholelithiasis|C0008350|Cholelithiasis|| +004130|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +004131|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +004132|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Diabetes mellitus|10012601|Diabetes mellitus|10012601|diabetes mellitus|C0011849|Diabetes Mellitus|| +004133|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Diabetes mellitus|10012601|Diabetes|10012594|diabetes|C0011847|Diabetes|| +004134|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +004135|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +004136|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +004137|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QT prolonged|10014387|electrocardiogram qt prolonged|C0151878|Prolonged QT interval|| +004138|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +004139|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +004140|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|Gamma-glutamyltransferase increased|10017693|gamma-glutamyl transferase increased|C0151662|Gamma-glutamyl transferase raised|| +004141|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal disorder|10017944|gastrointestinal disorders|C0017178|Gastrointestinal Diseases|| +004142|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Glucocorticoid deficiency|10072079|Hypocortisolemia|10075908|hypocortisolism|C1833054|Hypocortisolemia|| +004143|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Glycosylated haemoglobin increased|10018484|Glycosylated hemoglobin increased|10055590|glycosylated hemoglobin increased|C0239940|Glycosylated haemoglobin increased|| +004144|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Glycosylated haemoglobin increased|10018484|HbA1C increased|10052424|increased hba1c|C0239940|Glycosylated haemoglobin increased|| +004145|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Glycosylated haemoglobin increased|10018484|Hemoglobin A1C increased|10051578|increases in hemoglobin a1c|C0239940|Glycosylated haemoglobin increased|| +004146|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +004147|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Hypercholesterolaemia|10020603|Hypercholesterolemia|10020604|hypercholesterolemia|C0020443|Hypercholesterolemia|| +004148|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +004149|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +004150|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +004151|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +004152|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Hypopituitarism|10021067|Pituitary hormone deficiency|10035091|pituitary hormone deficiency|C0857439|Pituitary hormone deficiency|| +004153|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +004154|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +004155|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +004156|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +004157|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Injection site haematoma|10022066|Injection site hematoma|10055371|injection site hematoma|C0542008|Injection site haematoma|| +004158|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Injection site haemorrhage|10022067|Injection site hemorrhage|10022068|injection site hemorrhage|C0151698|Injection site hemorrhage|| +004159|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site local pain|C0151828|Injection site pain|| +004160|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|injection site pruritus|C0852995|Injection site pruritus|| +004161|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +004162|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +004163|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Jaundice|10023126|Jaundice|10023126|jaundice|C0022346|Icterus|| +004164|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Lipase increased|10024574|Lipase increased|10024574|lipase increased|C0549475|Lipase increased|| +004165|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Liver function test abnormal|10024690|Liver function tests raised|10048556|liver test elevations|C0877359|Increased liver function tests|| +004166|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +004167|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +004168|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +004169|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +004170|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +004171|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis||DrugClass +004172|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Prothrombin time prolonged|10037063|PT prolonged|10037262|pt elevations|C0151872|Prothrombin time increased|| +004173|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Prothrombin time prolonged|10037063|Prothrombin time increased|10037061|elevations in pt|C0151872|Prothrombin time increased|| +004174|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Prothrombin time prolonged|10037063|Prothrombin time prolonged|10037063|prothrombin time prolonged|C0151872|Prothrombin time increased|| +004175|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +004176|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Sinus bradycardia|10040741|Sinus bradycardia|10040741|sinus bradycardia|C0085610|Sinus bradycardia|| +004177|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminase elevation|C0438717|Transaminases increased|| +004178|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Type 2 diabetes mellitus|10067585|Type 2 diabetes mellitus|10067585|type 2 diabetes mellitus|C0011860|Diabetes Mellitus, Non-Insulin-Dependent|| +004179|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +004180|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +004181|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Adrenocorticotropic hormone deficiency|10073179|Adrenocorticotropic hormone deficiency|10073179|suppression of adrenocorticotropic hormone secretion|C0342388|Adrenocorticotropic hormone (ACTH) deficiency (disorder)|| +004182|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt level greater than 3 times the upper limit of normal|C0151905|Alanine aminotransferase increased|| +004183|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|elevations in alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +004184|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast level greater than 3 times the upper limit of normal|C0151904|Aspartate aminotransferase increased|| +004185|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevations in bilirubin|C0311468|Increased bilirubin level (finding)|| +004186|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|total bilirubin elevations|C0741494|Elevated total bilirubin|| +004187|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Blood corticotrophin decreased|10005452|ACTH decreased|10000610|suppression of acth secretion|C0238596|Corticotropin low|| +004188|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Blood cortisol decreased|10005457|Cortisol decreased|10011198|decreases in circulating levels of cortisol|C1836623|Decreased circulating cortisol level|| +004189|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Blood glucose increased|10005557|Blood glucose increased|10005557|elevations in blood glucose levels|C0595877|Blood glucose increased|| +004190|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +004191|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Cholelithiasis|10008629|Cholelithiasis|10008629|cholelithiasis|C0008350|Cholelithiasis|| +004192|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Diabetes mellitus|10012601|Diabetes|10012594|diabetes|C0011847|Diabetes|| +004193|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +004194|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Glucocorticoid deficiency|10072079|Hypocortisolemia|10075908|clinical hypocortisolism|C1833054|Hypocortisolemia|| +004195|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Glucose tolerance impaired|10018429|Pre-diabetes|10036481|pre-diabetes|C0362046|Prediabetes syndrome|| +004196|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Hyperglycaemia|10020635|Hyperglycemia drug-induced|10060487|worsening glycemia|C0362086|Drug-induced hyperglycemia|| +004197|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +004198|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Hypopituitarism|10021067|Pituitary hormone deficiency|10035091|inhibition of pituitary hormones|C0857439|Pituitary hormone deficiency|| +004199|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Ketoacidosis|10023379|Ketoacidosis|10023379|ketoacidosis|C0220982|Ketoacidosis|| +004200|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Liver function test abnormal|10024690|Liver function tests raised|10048556|liver test elevations|C0877359|Increased liver function tests|| +004201|442f0d9d-5c7d-4b81-b329-d71be8cf2be2|Signifor|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminase elevation|C0438717|Transaminases increased|| +004202|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +004203|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +004204|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +004205|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Amnesia|10001949|Amnesia|10001949|amnesia|C0002622|Amnesia||DrugClass +004206|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Amnesia|10001949|Memory loss|10027176|memory loss|C0751295|Memory Loss||DrugClass +004207|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +004208|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +004209|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +004210|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|elevated alkaline phosphatase|C0151849|Alkaline phosphatase raised|| +004211|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevated bilirubin|C0311468|Increased bilirubin level (finding)|| +004212|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|Creatine phosphokinase increased|10011349|elevated creatine phosphokinase|C0151576|Elevated creatine kinase|| +004213|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Glucose increased|10018421|elevated glucose|C0860803|Glucose increased|| +004214|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Cognitive disorder|10057668|Cognitive function abnormal|10048599|cognitive issues|C1392786|Cognitive changes||DrugClass +004215|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Cognitive disorder|10057668|Cognitive impairment|10009846|cognitive impairment|C0338656|Impaired cognition||DrugClass +004216|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusion|10010300|confusion|C0009676|Confusion||DrugClass +004217|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +004218|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +004219|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +004220|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +004221|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +004222|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +004223|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Erectile dysfunction|10061461|Erectile dysfunction|10061461|erectile dysfunction|C0242350|Erectile dysfunction|| +004224|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +004225|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +004226|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Hepatic enzyme abnormal|10062685|Liver enzyme abnormal|10024677|liver enzyme abnormalities|C0438237|Liver enzymes abnormal|| +004227|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +004228|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +004229|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +004230|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +004231|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Immune-mediated necrotising myopathy|10072155|Immune-mediated necrotizing myopathy|10072156|immune-mediated necrotizing myopathy|C3267047|Immune-mediated necrotising myopathy||DrugClass +004232|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +004233|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +004234|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +004235|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Jaundice|10023126|Jaundice|10023126|jaundice|C0022346|Icterus|| +004236|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +004237|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Memory impairment|10027175|Forgetfulness|10017060|forgetfulness|C0542476|Forgetful||DrugClass +004238|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Memory impairment|10027175|Memory impairment|10027175|memory impairment|C0233794|Memory impairment||DrugClass +004239|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +004240|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +004241|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Myoglobinuria|10028629|Myoglobinuria|10028629|myoglobinuria|C0027080|Myoglobinuria|| +004242|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Myopathy|10028641|Myopathy|10028641|myopathy|C0026848|Myopathy|| +004243|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Myositis|10028653|Myositis|10028653|myositis|C0027121|Myositis|| +004244|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +004245|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +004246|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +004247|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +004248|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +004249|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Rhabdomyolysis|10039020|Rhabdomyolysis|10039020|rhabdomyolysis|C0035410|Rhabdomyolysis|| +004250|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevated transaminases|C0438717|Transaminases increased|| +004251|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +004252|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Rhabdomyolysis-induced renal failure|10050996|rhabdomyolysis with acute renal failure|C0920244|Rhabdomyolysis-induced renal failure|| +004253|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt >3 times the upper limit of normal|C0151905|Alanine aminotransferase increased|| +004254|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|increases in serum alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +004255|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|Serum glutamic-pyruvic transaminase increased|10040275|increases in serum glutamic-pyruvic transaminase|C3150120|Elevated serum glutamic pyruvic transaminase (SGPT)|| +004256|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increases in serum ast|C0151904|Aspartate aminotransferase increased|| +004257|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|increases in serum aspartate aminotransferase|C0151904|Aspartate aminotransferase increased|| +004258|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|Serum glutamic-oxaloacetic transaminase increased|10040272|increases in serum glutamic-oxaloacetic transaminase|C3150119|Elevated serum glutamic oxaloacetic transaminase (SGOT)|| +004259|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Blood glucose increased|10005557|Glucose increased|10018421|increases in serum glucose levels|C0595931|SERUM GLUCOSE INCREASED|| +004260|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +004261|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Glycosylated haemoglobin increased|10018484|HbA1C increased|10052424|increases in hba1c|C0239940|Glycosylated haemoglobin increased|| +004262|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +004263|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Immune-mediated necrotising myopathy|10072155|Immune-mediated necrotizing myopathy|10072156|immune-mediated necrotizing myopathy|C3267047|Immune-mediated necrotising myopathy||DrugClass +004264|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Myoglobinuria|10028629|Myoglobinuria|10028629|myoglobinuria|C0027080|Myoglobinuria|| +004265|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Myopathy|10028641|Myopathy|10028641|myopathy|C0026848|Myopathy||DrugClass +004266|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Rhabdomyolysis|10039020|Rhabdomyolysis|10039020|rhabdomyolysis|C0035410|Rhabdomyolysis||DrugClass +004267|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Serum transaminase increased|10040421|increases in serum transaminases|C0859350|Serum transaminase increased|| +004268|44dcbf97-99ec-427c-ba50-207e0069d6d2|Livalo|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevations in hepatic transaminases|C1848701|Elevated hepatic transaminases|| +004269|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +004270|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +004271|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reaction|C0002792|anaphylaxis|| +004272|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +004273|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +004274|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +004275|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +004276|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +004277|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +004278|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +004279|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +004280|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +004281|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Eczema|10014184|Eczema|10014184|eczema|C0013595|Eczema|| +004282|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +004283|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +004284|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +004285|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Generalised oedema|10018092|Edema generalized|10014223|edema general|C1850534|Edema, generalized|| +004286|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +004287|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Hypercholesterolaemia|10020603|Hypercholesterolemia|10020604|hypercholesterolemia|C0020443|Hypercholesterolemia|| +004288|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +004289|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Hypertriglyceridaemia|10020869|Hypertriglyceridemia|10020870|hypertriglyceridemia|C0020557|Hypertriglyceridemia|| +004290|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Hyperuricaemia|10020903|Hyperuricemia|10020907|hyperuricemia|C0740394|Hyperuricemia|| +004291|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +004292|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +004293|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion related reactions|C0948715|Infusion related reaction|| +004294|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Localised oedema|10048961|Localized edema|10062466|edema localized|C0013609|Localized edema|| +004295|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Lower respiratory tract infection|10024968|Lower respiratory tract infection|10024968|infections lower respiratory tract|C0149725|Lower respiratory tract infection|| +004296|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +004297|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +004298|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +004299|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremities|C0030196|Pain in limb|| +004300|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +004301|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +004302|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Psoriasis|10037153|Psoriasis|10037153|psoriasis|C0033860|Psoriasis|| +004303|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|rash generalized|C0497365|Rash generalised|| +004304|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Rash maculo-papular|10037868|rash maculo-papular|C0423791|Maculopapular eruption|| +004305|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Rash papular|10037876|Rash papular|10037876|rash popular|C1519353|Skin Papule|typo in the label| +004306|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Rash pruritic|10037884|Rash pruritic|10037884|rash pruritic|C0033771|Prurigo|| +004307|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +004308|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +004309|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Skin hyperpigmentation|10040865|Skin hyperpigmentation|10040865|skin hyperpigmentation|C0162834|Hyperpigmentation|| +004310|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +004311|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +004312|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +004313|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +004314|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|43685-7|WARNINGS AND PRECAUTIONS|C-reactive protein decreased|10049220|C-reactive protein decreased|10049220|suppression of c-reactive protein|C0877451|C-reactive protein decreased|| +004315|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|GI perforation|10018242|gi perforation|C0151664|Gastrointestinal perforation|| +004316|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +004317|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +004318|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion related reactions|C0948715|Infusion related reaction|| +004319|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|43685-7|WARNINGS AND PRECAUTIONS|Symptom masked|10042750|Symptom masked|10042750|mask acute inflammation|C0858996|Symptom masked|| +004320|451f535b-8b6b-4ecf-9f19-d921b72eea39|SYLVANT|43685-7|WARNINGS AND PRECAUTIONS|||||suppression of acute phase reactants|||unmapped| +004321|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +004322|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34066-1|BOXED WARNINGS|Haemorrhage intracranial|10018985|Intracranial hemorrhage|10022763|ich|C0151699|Intracranial Hemorrhages|| +004323|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34066-1|BOXED WARNINGS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +004324|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +004325|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +004326|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +004327|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34084-4|ADVERSE REACTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +004328|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal bleeding|10017936|gastrointestinal bleeding|C0017181|Gastrointestinal Hemorrhage|| +004329|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34084-4|ADVERSE REACTIONS|Haemorrhage intracranial|10018985|Intracranial hemorrhage|10022763|intracranial hemorrhage|C0151699|Intracranial Hemorrhages|| +004330|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeds|C0019080|Hemorrhage|| +004331|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34084-4|ADVERSE REACTIONS|IIIrd nerve disorder|10053644|Oculomotor nerve disorder|10053661|oculomotor disturbances|C1411869|disturbance; oculomotor|| +004332|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34084-4|ADVERSE REACTIONS|Iron deficiency|10022970|Iron deficiency|10022970|iron deficiency|C0240066|Iron deficiency|| +004333|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34084-4|ADVERSE REACTIONS|Rash|10037844|Eruption|10015138|eruptions|C0302295|Eruptions|| +004334|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34084-4|ADVERSE REACTIONS|Rash|10037844|Exanthema|10015587|exanthemas|C0015230|Exanthema|| +004335|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rashes|C0015230|Exanthema|| +004336|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34084-4|ADVERSE REACTIONS|Retinal disorder|10038853|Retinal disorder|10038853|retinal disorder|C0035309|Retinal Diseases|| +004337|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|34084-4|ADVERSE REACTIONS|Retinopathy|10038923|Retinopathy|10038923|retinopathy|C0035309|Retinal Diseases|| +004338|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +004339|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage intracranial|10018985|Intracranial hemorrhage|10022763|ich|C0151699|Intracranial Hemorrhages|| +004340|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +004341|45d79217-53cf-4240-9c43-19ee54a1dc3a|ZONTIVITY|43685-7|WARNINGS AND PRECAUTIONS|Platelet disorder|10035532|Platelet abnormalities|10035511|antiplatelet effect|C0151854|Abnormal platelets|| +004342|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34066-1|BOXED WARNINGS|Medullary thyroid cancer|10027105|Medullary carcinoma of thyroid|10027101|mtc|C0238462|Medullary carcinoma of thyroid|| +004343|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34066-1|BOXED WARNINGS|Thyroid C-cell hyperplasia|10070568|Thyroid C-cell hyperplasia|10070568|thyroid c-cell tumors|C0342190|C-cell hyperplasia of thyroid|duplicate| +004344|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34066-1|BOXED WARNINGS|Thyroid adenoma|10043688|Thyroid adenoma|10043688|thyroid c-cell adenomas|C0151468|Thyroid Gland Follicular Adenoma|duplicate|Animal +004345|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34066-1|BOXED WARNINGS|Thyroid cancer|10066474|Thyroid carcinoma|10043702|thyroid c-cell carcinomas|C0549473|Thyroid carcinoma|duplicate|Animal +004346|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34066-1|BOXED WARNINGS|Thyroid neoplasm|10043744|Thyroid tumor|10066914|thyroid c-cell tumors|C0040136|Thyroid Neoplasm|duplicate| +004347|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +004348|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +004349|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Abdominal pain lower|10000084|Abdominal pain lower|10000084|abdominal pain lower|C0232495|Lower abdominal pain|| +004350|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +004351|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +004352|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Abdominal tenderness|10000097|Abdominal tenderness|10000097|abdominal tenderness|C0232498|Abdominal tenderness|| +004353|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Amylase increased|10002016|Blood pancreatic amylase increased|10053880|increases in pancreatic amylase|C1096509|Blood pancreatic amylase increased|| +004354|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +004355|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Atrioventricular block first degree|10003674|AV block first degree|10003850|first degree av block|C0085614|First degree atrioventricular block|| +004356|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +004357|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +004358|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +004359|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +004360|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Electrocardiogram PR prolongation|10053657|Electrocardiogram PR interval prolonged|10053655|pr interval increase|C0600125|Prolonged PR interval|| +004361|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Eructation|10015137|Eructation|10015137|eructation|C0014724|Eructation|| +004362|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Face oedema|10016029|Face edema|10016025|facial edema|C0542571|Facial edema|| +004363|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Faecal volume increased|10049939|Fecal volume increased|10055509|fecal volume increased|C0919562|Faecal volume increased|| +004364|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +004365|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +004366|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Frequent bowel movements|10017367|Frequent bowel movements|10017367|frequent bowel movements|C0239978|Increased frequency of defecation|| +004367|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal disorder|10017944|gastrointestinal disease|C0017178|Gastrointestinal Diseases|| +004368|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal adverse reactions|C0426576|Gastrointestinal symptom|| +004369|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Gastrointestinal pain|10017999|Gastrointestinal pain|10017999|gastrointestinal pain|C0687713|Gastrointestinal pain|| +004370|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +004371|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Heart rate increased|10019303|Heart rate increased|10019303|increase in hr|C0039231|Tachycardia|| +004372|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +004373|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Systemic allergic reaction|10066472|systemic hypersensitivity|C1736167|Systemic allergic reaction|| +004374|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +004375|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection-site erythema|C0852625|Injection site erythema|| +004376|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Injection site rash|10022094|Injection site rash|10022094|injection-site rash|C0521505|Injection site dermatitis|| +004377|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection-site reactions|C0151735|Injection site reaction|| +004378|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Lip swelling|10024570|Lip swelling|10024570|lip swelling|C0240211|Lip swelling|| +004379|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Lipase increased|10024574|Lipase increased|10024574|increases in lipase|C0549475|Lipase increased|| +004380|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +004381|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +004382|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +004383|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|systemic rash|C0015230|Exanthema|| +004384|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +004385|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Retching|10038776|Retching|10038776|retching|C0232602|Retching|| +004386|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Sinus tachycardia|10040752|Sinus tachycardia|10040752|sinus tachycardia|C0039239|Sinus Tachycardia|| +004387|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Thyroid C-cell hyperplasia|10070568|Thyroid C-cell hyperplasia|10070568|thyroid c-cell tumors|C0342190|C-cell hyperplasia of thyroid|duplicate| +004388|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Thyroid neoplasm|10043744|Thyroid tumor|10066914|thyroid c-cell tumors|C0040136|Thyroid Neoplasm|duplicate| +004389|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +004390|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Vomiting projectile|10047708|Vomiting projectile|10047708|vomiting projectile|C0221151|Projectile vomiting|| +004391|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +004392|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute||DrugClass +004393|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Chronic kidney disease|10064848|Chronic renal failure|10009119|chronic renal failure|C0022661|Kidney Failure, Chronic||DrugClass +004394|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +004395|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +004396|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal adverse reactions|C0426576|Gastrointestinal symptom|| +004397|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +004398|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Systemic allergic reaction|10066472|systemic hypersensitivity|C1736167|Systemic allergic reaction|| +004399|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +004400|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Medullary thyroid cancer|10027105|Medullary carcinoma of thyroid|10027101|mtc|C0238462|Medullary carcinoma of thyroid|| +004401|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +004402|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +004403|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +004404|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Thyroid C-cell hyperplasia|10070568|Thyroid C-cell hyperplasia|10070568|thyroid c-cell carcinomas|C0342190|C-cell hyperplasia of thyroid|duplicate|Animal +004405|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Thyroid adenoma|10043688|Thyroid adenoma|10043688|thyroid c-cell adenomas|C0151468|Thyroid Gland Follicular Adenoma|duplicate|Animal +004406|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Thyroid cancer|10066474|Thyroid carcinoma|10043702|thyroid c-cell carcinomas|C0549473|Thyroid carcinoma|duplicate|Animal +004407|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Thyroid neoplasm|10043744|Thyroid tumor|10066914|thyroid c-cell tumors|C0040136|Thyroid Neoplasm|duplicate| +004408|463050bd-2b1c-40f5-b3c3-0a04bb433309|Trulicity|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +004409|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34066-1|BOXED WARNINGS|Congenital anomaly|10010356|Birth defects|10048305|birth defects|C0000768|Congenital Abnormality||Animal +004410|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)||DrugClass +004411|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34066-1|BOXED WARNINGS|Hepatic failure|10019663|Liver failure|10024678|liver failure|C0085605|Liver Failure||DrugClass +004412|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34066-1|BOXED WARNINGS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +004413|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34066-1|BOXED WARNINGS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver|| +004414|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34066-1|BOXED WARNINGS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenicity|C0232910|Teratogenesis|| +004415|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34066-1|BOXED WARNINGS|Transaminases increased|10054889|Serum transaminase increased|10040421|elevated serum transaminases|C0859350|Serum transaminase increased|| +004416|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|transient acute renal failure|C0585184|Transient acute renal failure|| +004417|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increase in alt|C0151905|Alanine aminotransferase increased|| +004418|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|increase in alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +004419|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +004420|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +004421|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|creatinine values increased|C0151578|Creatinine increased|| +004422|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Blood phosphorus decreased|10049471|Phosphorus low|10050715|serum phosphorus levels 0.3 mmol/l|C0920102|Phosphorus low|| +004423|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|Increased blood pressure|10021655|increased blood pressure|C0497247|Increase in blood pressure|| +004424|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Bone marrow toxicity|10051779|Bone marrow toxicity|10051779|bone marrow effects|C0948168|Bone marrow toxicity|| +004425|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Cardiac death|10049993|Cardiac death|10049993|cardiovascular deaths|C0376297|Cardiac Death|| +004426|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +004427|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +004428|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +004429|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Hyperkalaemia|10020646|Hyperkalemia|10020647|hyperkalemia|C0020461|Hyperkalemia|| +004430|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +004431|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +004432|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Immunosuppression|10062016|Immunosuppression|10062016|immunosuppression|C1373218|Decreased Immunologic Activity [PE]|| +004433|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +004434|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +004435|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +004436|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +004437|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +004438|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +004439|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Respiratory disorder|10038683|Respiratory disorder|10038683|respiratory effects|C0035204|Respiration Disorders|| +004440|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +004441|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Sudden death|10042434|Sudden death|10042434|sudden deaths|C0011071|Sudden death|| +004442|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Urate nephropathy|10046337|Hyperuricemic nephropathy|10020909|acute uric acid nephropathy|C0235419|Hyperuricemic nephropathy|| +004443|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|34084-4|ADVERSE REACTIONS|Urine uric acid decreased|10057139|Urine uric acid decreased|10057139|increases renal uric acid clearance|C0855645|Urine uric acid decreased|| +004444|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis||DrugClass +004445|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt elevation|C0151905|Alanine aminotransferase increased|| +004446|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Aspergillus infection|10074171|Aspergillosis|10003488|aspergillosis|C0004030|Aspergillosis||DrugClass +004447|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|increase blood pressure|C0497247|Increase in blood pressure|| +004448|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Carpal tunnel syndrome|10007697|Carpal tunnel syndrome|10007697|carpal tunnel syndrome|C0007286|Carpal Tunnel Syndrome|| +004449|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Cytomegalovirus hepatitis|10011830|Cytomegalovirus hepatitis|10011830|cytomegalovirus hepatitis reactivation|C0276252|Cytomegalovirus hepatitis|| +004450|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)||DrugClass +004451|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Foetal death|10055690|Fetal death|10016479|fetal death|C0015927|Fetal Death||Animal +004452|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Liver failure|10024678|liver failure|C0085605|Liver Failure||DrugClass +004453|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Hepatic function abnormal|10019670|Hepatic function abnormal|10019670|liver dysfunction|C0086565|Liver Dysfunction||DrugClass +004454|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +004455|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Immunosuppression|10062016|Immunosuppression|10062016|immunosuppression|C1373218|Decreased Immunologic Activity [PE]|| +004456|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection||DrugClass +004457|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial||DrugClass +004458|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Jaundice|10023126|Jaundice|10023126|jaundice|C0022346|Icterus|| +004459|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver||DrugClass +004460|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Lymphocyte count decreased|10025256|Lymphocyte count decreased|10025256|decrease in lymphocytes|C0853986|Lymphocyte count decreased|| +004461|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Lymphocyte count decreased|10025256|Lymphocyte count low|10025259|lymphocyte count <0.8*10 9 /l|C0853986|Lymphocyte count decreased|| +004462|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Lymphoproliferative disorder|10061232|Lymphoproliferative disorder|10061232|lymphoproliferative disorders|C0024314|Lymphoproliferative Disorders|| +004463|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Mononeuropathy|10062203|Mononeuropathy|10062203|mononeuropathy|C0494491|Mononeuropathies|| +004464|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancy|C1306459|Primary malignant neoplasm|| +004465|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +004466|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|decrease in neutrophils|C0853697|Neutrophil count decreased|| +004467|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Neutrophil count decreased|10029366|Neutrophil count low|10029369|neutrophil count < 1.5*10 9 /l|C0853697|Neutrophil count decreased|| +004468|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia||DrugClass +004469|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|decrease in platelet count|C0392386|Decreased platelet count|| +004470|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystis jiroveci pneumonia|10064108|pneumocystis jiroveci pneumonia|C1535939|Pneumocystis jiroveci pneumonia||DrugClass +004471|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia klebsiella|10035717|Klebsiella pneumonia|10023456|klebsiella pneumonia|C0519030|Pneumonia due to Klebsiella pneumoniae|| +004472|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Polyneuropathy|10036105|Polyneuropathy|10036105|polyneuropathy|C0152025|Polyneuropathy|| +004473|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +004474|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome||DrugClass +004475|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenic effects|C0232910|Teratogenesis||Animal +004476|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia||DrugClass +004477|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis||DrugClass +004478|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Serum transaminase increased|10040421|elevated serum transaminases|C0859350|Serum transaminase increased|| +004479|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +004480|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|White blood cell count decreased|10047942|WBC decreased|10056731|decrease in mean wbc count|C0750394|White blood cell count decreased|| +004481|4650d12c-b9c8-4525-b07f-a2d773eca155|Aubagio|43685-7|WARNINGS AND PRECAUTIONS|White blood cell count decreased|10047942|White blood cell count decreased|10047942|decrease in white blood cell count|C0750394|White blood cell count decreased|| +004482|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Abdominal infection|10056519|Abdominal infection|10056519|infections in the abdomen|C1112209|Intraabdominal Infections|| +004483|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +004484|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +004485|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +004486|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Angina pectoris|10002383|Angina pectoris|10002383|angina pectoris|C0002962|Angina Pectoris|| +004487|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +004488|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +004489|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +004490|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Atypical femur fracture|10070884|Atypical femur fracture|10070884|atypical femoral fractures|C3160754|Atypical femur fracture|| +004491|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +004492|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Basal cell carcinoma|10004146|Basal cell carcinoma|10004146|basal cell carcinoma|C0007117|Basal cell carcinoma|| +004493|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Blood calcium decreased|10005395|Serum calcium decreased|10040174|decreases in serum calcium levels|C0595882|Serum calcium decreased|| +004494|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Blood parathyroid hormone increased|10005703|Serum parathyroid hormone increased|10040363|elevation in serum pth|C0857973|Elevated circulating parathyroid hormone (PTH) level|| +004495|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Bone pain|10006002|Bone pain|10006002|bone pain|C0151825|Bone pain|| +004496|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Breast cancer|10006187|Malignant breast neoplasm|10025541|malignancies to the breast|C0006142|Malignant neoplasm of breast|| +004497|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Cataract|10007739|Cataracts|10007771|cataracts|C0086543|Cataract|| +004498|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +004499|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +004500|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Cystitis|10011781|Cystitis|10011781|cystitis|C0010692|Cystitis|| +004501|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +004502|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +004503|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Ear infection|10014011|Ear infection|10014011|infections in the ear|C0699744|Infection of ear|| +004504|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Eczema|10014184|Eczema|10014184|eczema|C0013595|Eczema|| +004505|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Endocarditis|10014665|Endocarditis|10014665|endocarditis|C0014118|Endocarditis|| +004506|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Erysipelas|10015145|Erysipelas|10015145|erysipelas|C0014733|Erysipelas|| +004507|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +004508|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Femur fracture|10016454|Femur fracture subtrochanteric|10053653|atypical subtrochanteric femoral fractures|C0162386|Subtrochanteric Fractures|duplicate| +004509|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Femur fracture|10016454|Femur shaft fracture|10069887|atypical diaphyseal femoral fractures|C0272753|Fracture of shaft of femur|duplicate| +004510|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +004511|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Gastrointestinal carcinoma|10017940|Gastrointestinal neoplasm malignant|10017985|malignancies to the gastrointestinal system|C0151544|Gastrointestinal carcinoma|| +004512|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +004513|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Genital cancer male|10073116|Genital neoplasm malignant male|10018161|malignancies to the reproductive system|C0549404|Genital neoplasm malignant male|duplicate| +004514|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Genital neoplasm malignant female|10018160|Genital neoplasm malignant female|10018160|malignancies to the reproductive system|C0549368|Genital neoplasm malignant female|duplicate| +004515|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +004516|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Hypercholesterolaemia|10020603|Hypercholesterolemia|10020604|hypercholesterolemia|C0020443|Hypercholesterolemia|| +004517|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +004518|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +004519|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +004520|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +004521|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +004522|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +004523|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +004524|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +004525|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +004526|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +004527|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Osteonecrosis of jaw|10064658|Osteonecrosis of jaw|10064658|osteonecrosis of the jaw|C2902031|Osteonecrosis of jaw caused by drug|| +004528|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +004529|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +004530|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Pharyngitis|10034835|Pharyngitis|10034835|pharyngitis|C0031350|Pharyngitis|| +004531|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +004532|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Prostate cancer|10060862|Prostate cancer|10060862|prostate cancers|C0376358|Malignant neoplasm of prostate|| +004533|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +004534|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rashes|C0015230|Exanthema|| +004535|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Sciatica|10039674|Sciatica|10039674|sciatica|C0036396|Sciatica|| +004536|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Skin infection|10040872|Skin infection|10040872|skin infections|C0037278|Skin Diseases, Infectious|| +004537|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|epidermal adverse events|C0221743|Skin reaction|| +004538|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Spinal osteoarthritis|10041591|Spinal osteoarthritis|10041591|spinal osteoarthritis|C0949690|Spondylarthritis|| +004539|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Swelling face|10042682|Facial swelling|10016065|facial swelling|C0151602|Facial swelling|| +004540|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +004541|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|infections in the urinary tract|C0042029|Urinary tract infection|| +004542|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +004543|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +004544|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Abdominal infection|10056519|Abdominal infection|10056519|infections of the abdomen|C1112209|Intraabdominal Infections|| +004545|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +004546|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +004547|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Arthralgia|10003239|Joint pain|10023222|joint pain|C0003862|Arthralgia|| +004548|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Atypical femur fracture|10070884|Atypical femur fracture|10070884|atypical femoral fractures|C3160754|Atypical femur fracture|| +004549|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Atypical fracture|10072395|Atypical fracture|10072395|atypical fractures|C3495700|Atypical fracture|| +004550|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Blood parathyroid hormone increased|10005703|Serum parathyroid hormone increased|10040363|elevations of serum parathyroid hormone|C0857973|Elevated circulating parathyroid hormone (PTH) level|| +004551|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Bone development abnormal|10005954|Bone development abnormal|10005954|suppression of bone remodeling|C0231557|Abnormal bone formation|| +004552|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Bone pain|10006002|Bone pain|10006002|bone pain|C0151825|Bone pain|| +004553|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +004554|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +004555|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Ear infection|10014011|Ear infection|10014011|infections of the ear|C0699744|Infection of ear|| +004556|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Eczema|10014184|Eczema|10014184|eczema|C0013595|Eczema|| +004557|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Endocarditis|10014665|Endocarditis|10014665|endocarditis|C0014118|Endocarditis|| +004558|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Face oedema|10016029|Face edema|10016025|facial edema|C0542571|Facial edema|| +004559|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Femur fracture|10016454|Femur shaft fracture|10069887|fractures in the femoral shaft|C0272753|Fracture of shaft of femur|| +004560|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +004561|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +004562|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +004563|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Impaired healing|10021519|Delayed healing of wound|10012200|delayed fracture healing|C0151692|Impaired wound healing|| +004564|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +004565|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Low turnover osteopathy|10063000|Low turnover bone disease|10062634|suppression of bone turnover|C0231548|Bone turnover rate decreased|| +004566|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Myalgia|10028411|Muscle pain|10028322|muscle pain|C0231528|Myalgia|| +004567|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +004568|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Osteonecrosis of jaw|10064658|Osteonecrosis of jaw|10064658|osteonecrosis of the jaw|C2902031|Osteonecrosis of jaw caused by drug|| +004569|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Pain in extremity|10033425|Pain in thigh|10048973|thigh pain|C0241374|Thigh pain|| +004570|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +004571|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rashes|C0015230|Exanthema|| +004572|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Respiratory tract oedema|10070774|Airway edema|10070778|upper airway edema|C2939065|Airway edema|| +004573|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Skin infection|10040872|Skin infection|10040872|skin infections|C0037278|Skin Diseases, Infectious|| +004574|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|epidermal adverse events|C0221743|Skin reaction|| +004575|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Throat tightness|10043528|Throat tightness|10043528|throat tightness|C0236071|Feeling of throat tightness|| +004576|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|infections of the urinary tract|C0042029|Urinary tract infection|| +004577|49e5afe9-a0c7-40c4-af9f-f287a80c5c88|Prolia|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +004578|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34066-1|BOXED WARNINGS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior||DrugClass +004579|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34066-1|BOXED WARNINGS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thoughts|C0424000|Feeling suicidal (finding)||DrugClass +004580|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Abnormal dreams|10000125|Abnormal dreams|10000125|abnormal dreams|C0234458|Dream disorder|| +004581|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Condition aggravated|10010264|Condition aggravated|10010264|clinical worsening|C0235874|Disease Exacerbation|| +004582|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +004583|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +004584|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +004585|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +004586|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +004587|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +004588|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +004589|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +004590|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Haemorrhagic disorder|10019009|Hemorrhage abnormal|10055261|abnormal bleeding|C1458140|Bleeding tendency|| +004591|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +004592|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Hypomania|10021030|Hypomania|10021030|hypomania|C0241934|Hypomania|| +004593|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +004594|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Mania|10026749|Mania|10026749|mania|C0338831|Manic|| +004595|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +004596|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Pruritus generalised|10052576|Pruritus generalized|10037092|pruritus generalized|C0475858|Generalized pruritus|| +004597|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +004598|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Serotonin syndrome|10040108|Serotonin syndrome|10040108|serotonin syndrome|C0699828|Serotonin Syndrome|| +004599|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Sexual dysfunction|10040477|Sexual dysfunction|10040477|sexual dysfunction|C0549622|Sexual Dysfunction|| +004600|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal tendency|10042461|suicide risk|C0563664|At risk for suicide|| +004601|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +004602|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +004603|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Aggression|10001488|Aggressiveness|10001494|aggressiveness|C0001807|Aggressive behavior||DrugClass +004604|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation||DrugClass +004605|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Akathisia|10001540|Akathisia|10001540|akathisia|C0392156|Akathisia||DrugClass +004606|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Angle closure glaucoma|10002500|Acute angle closure glaucoma|10000673|angle closure attack|C0154946|Acute angle-closure glaucoma|| +004607|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Angle closure glaucoma|10002500|Angle closure glaucoma|10002500|angle closure glaucoma|C0017605|Angle Closure Glaucoma||DrugClass +004608|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety||DrugClass +004609|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Blood sodium decreased|10005802|Serum sodium decreased|10054863|serum sodium lower than 110 mmol/l|C3888023|Blood sodium decreased|| +004610|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicides|C0038661|Suicide|| +004611|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Ecchymosis|10014080|Ecchymosis|10014080|ecchymosis|C0013491|Ecchymosis||DrugClass +004612|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis||DrugClass +004613|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal bleeding|10017936|gastrointestinal bleeding|C0017181|Gastrointestinal Hemorrhage||DrugClass +004614|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Haematoma|10018852|Hematoma|10019428|hematoma|C0018944|Hematoma||DrugClass +004615|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding events|C0019080|Hemorrhage|| +004616|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhages|C0019080|Hemorrhage||DrugClass +004617|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhagic disorder|10019009|Hemorrhage abnormal|10055261|abnormal bleeding|C1458140|Bleeding tendency||DrugClass +004618|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Hostility|10020400|Hostility|10020400|hostility|C0020039|Hostility||DrugClass +004619|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Hypomania|10021030|Hypomania|10021030|hypomania|C0241934|Hypomania||DrugClass +004620|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +004621|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Impulsive behaviour|10021567|Impulsive behavior|10060909|impulsivity|C0021125|Impulsive Behavior||DrugClass +004622|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Inappropriate antidiuretic hormone secretion|10053198|Inappropriate antidiuretic hormone secretion|10053198|syndrome of inappropriate antidiuretic hormone secretion|C0021141|Inappropriate ADH Syndrome|| +004623|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Inappropriate antidiuretic hormone secretion|10053198|SIADH|10040626|siadh|C0021141|Inappropriate ADH Syndrome|| +004624|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness||DrugClass +004625|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood||DrugClass +004626|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Mania|10026749|Mania|10026749|mania|C0338831|Manic||DrugClass +004627|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Mydriasis|10028521|Dilatation pupillary|10013007|pupillary dilation|C0026961|Mydriasis|| +004628|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Panic attack|10033664|Panic attacks|10033665|panic attacks|C0086769|Panic Attacks||DrugClass +004629|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Petechiae|10034754|Petechiae|10034754|petechiae|C0031256|Petechiae||DrugClass +004630|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Restlessness|10038743|Psychomotor restlessness|10037212|psychomotor restlessness|C3887612|Psychomotor Agitation||DrugClass +004631|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Serotonin syndrome|10040108|Serotonin syndrome|10040108|serotonin syndrome|C0699828|Serotonin Syndrome|| +004632|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidality|C3166387|Suicidality|| +004633|4b0700c9-b417-4c3a-b36f-de461e125bd3|Brintellix|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thinking|C0424000|Feeling suicidal (finding)||DrugClass +004634|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +004635|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt values greater than 10 times uln|C0151905|Alanine aminotransferase increased|| +004636|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +004637|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Anaphylactoid reaction|10002216|Anaphylactoid reaction|10002216|anaphylactoid reaction|C0340865|Anaphylactoid reaction|| +004638|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Blood alkaline phosphatase increased|10059570|blood alkaline phosphatase increased|C0852911|Blood alkaline phosphatase increased|| +004639|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +004640|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Clostridium difficile colitis|10009657|Clostridium difficile colitis|10009657|clostridium difficile colitis|C0238106|Clostridium difficile colitis|| +004641|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +004642|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +004643|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Eosinophilia|10014950|Eosinophilia|10014950|eosinophilia|C0014457|Eosinophilia|| +004644|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +004645|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +004646|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Haematochezia|10018836|Hematochezia|10060544|hematochezia|C0018932|Hematochezia|| +004647|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Haemorrhagic anaemia|10052293|Hemorrhagic anemia|10052294|hemorrhagic anemia|C0948824|Anemia due to blood loss|| +004648|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +004649|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +004650|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +004651|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +004652|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|International normalised ratio increased|10022595|International normalized ratio increased|10062459|international normalized ratio increased|C0853225|INR raised|| +004653|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leucopenia|10024283|leucopenia|C0023530|Leukopenia|| +004654|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Melaena|10027141|Melena|10027162|melena|C0025222|Melena|| +004655|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +004656|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +004657|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Oral candidiasis|10030963|Oral candidiasis|10030963|oral candidiasis|C0006849|Oral candidiasis|| +004658|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Petechiae|10034754|Petechiae|10034754|petechiae|C0031256|Petechiae|| +004659|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Phlebitis|10034879|Phlebitis|10034879|phlebitis|C0031542|Phlebitis|| +004660|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +004661|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +004662|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Spontaneous haematoma|10065304|Spontaneous hematoma|10065310|spontaneous hematoma|C1697453|Spontaneous hematomas|| +004663|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +004664|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Thrombocytosis|10043563|Thrombocytosis|10043563|thrombocytosis|C0836924|Thrombocytosis|| +004665|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|hepatic transaminases increased|C1848701|Elevated hepatic transaminases|| +004666|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +004667|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +004668|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Vulvovaginal mycotic infection|10064899|Vulvovaginal mycotic infection|10064899|vulvovaginal mycotic infection|C1609512|Vulvovaginal mycotic infection|| +004669|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|34084-4|ADVERSE REACTIONS|Wound haemorrhage|10051373|Wound hemorrhage|10055360|wound hemorrhage|C0241742|Wound hemorrhage|| +004670|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase abnormal|10001547|Alanine aminotransferase abnormal|10001547|abnormalities in alt|C0855619|Alanine aminotransferase abnormal|| +004671|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt elevation|C0151905|Alanine aminotransferase increased|| +004672|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase elevation|C0151905|Alanine aminotransferase increased|| +004673|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|reactions anaphylactic|C0002792|anaphylaxis|| +004674|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase abnormal|10003477|Aspartate aminotransferase abnormal|10003477|abnormalities in ast|C0855623|Aspartate aminotransferase abnormal|| +004675|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin abnormal|10058477|Bilirubin abnormal|10058482|abnormalities in bilirubin|C1142335|Bilirubin abnormal|| +004676|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Clostridium difficile colitis|10009657|Diarrhea, Clostridium difficile|10012734|cdad|C0235952|Clostridium difficile diarrhea|| +004677|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +004678|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +004679|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +004680|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushed chest|10016822|flushing of the upper body|C0860135|Flushed chest|| +004681|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +004682|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +004683|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +004684|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +004685|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Red man syndrome|10038192|Red man syndrome|10038192|red-man syndrome|C1306792|Red man syndrome|| +004686|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +004687|4b4674d8-4d1e-4728-8465-d42ada33fa5c|DALVANCE|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +004688|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +004689|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Balance disorder|10049848|Balance disorder|10049848|balance disorder|C0575090|Equilibration disorder|| +004690|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|Creatine kinase increased|10011336|elevated creatine kinase|C0151576|Elevated creatine kinase|| +004691|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Breast enlargement|10006242|Breast enlargement|10006242|breast enlargement|C2225524|Macromastia|| +004692|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +004693|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +004694|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Disorientation|10013395|Disorientation|10013395|disorientation|C0233407|Disorientation|| +004695|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +004696|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +004697|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +004698|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Feeling abnormal|10016322|Feeling abnormal|10016322|feeling abnormal|C1443060|Feeling abnormal|| +004699|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Feeling drunk|10016330|Feeling drunk|10016330|feeling drunk|C0522172|Feeling intoxicated|| +004700|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +004701|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Gynaecomastia|10018800|Gynecomastia|10018801|gynecomastia|C0018418|Gynecomastia|| +004702|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +004703|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Increased appetite|10021654|Increased appetite|10021654|increased appetite|C0232461|Increased appetite (finding)|| +004704|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +004705|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +004706|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Lethargy|10024264|Lethargy|10024264|lethargy|C0023380|Lethargy|| +004707|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Libido decreased|10024419|Libido decreased|10024419|libido decreased|C0011124|Decreased Libido|| +004708|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +004709|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +004710|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +004711|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +004712|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +004713|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +004714|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +004715|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Acinar cell carcinoma of pancreas|10073363|Acinar cell carcinoma of pancreas|10073363|pancreatic acinar cell adenoma|C0279661|Acinar cell carcinoma of pancreas||Animal +004716|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Adrenal neoplasm|10061588|Adrenal neoplasm|10061588|tumors adrenal|C0001624|Adrenal Gland Neoplasms|| +004717|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +004718|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Brain neoplasm|10061019|Brain tumor|10006153|tumors worsened brain|C0006118|Brain Neoplasms|| +004719|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Breast cancer|10006187|Breast cancer aggravated|10048406|tumors worsened breast|C0856130|Breast cancer aggravated|| +004720|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Breast neoplasm|10006279|Breast neoplasm|10006279|tumors breast|C1458155|Mammary Neoplasms|| +004721|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicides|C0038661|Suicide|| +004722|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +004723|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +004724|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress|C3541994|Drug Hypersensitivity Syndrome||DrugClass +004725|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug reaction with eosinophilia and systemic symptoms|10073508|drug reaction with eosinophilia and systemic symptoms|C3541994|Drug Hypersensitivity Syndrome||DrugClass +004726|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Endometrial cancer stage 0|10014737|Endometrial carcinoma stage 0|10014748|endometrial carcinoma in situ|C0346191|Carcinoma in situ of endometrium|| +004727|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Eosinophilia|10014950|Eosinophilia|10014950|eosinophilia|C0014457|Eosinophilia|| +004728|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +004729|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Haematology test abnormal|10057755|Hematology test abnormal|10057760|hematological abnormalities|C0475182|Hematology finding abnormal|| +004730|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +004731|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +004732|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Impaired driving ability|10049564|Impaired driving ability|10049564|driving impairment|C0684311|impaired driving|| +004733|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Impaired work ability|10052302|Impaired work ability|10052302|impair ability to operate complex machinery|C0948361|Impaired work ability|| +004734|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Lung neoplasm|10062042|Lung neoplasm|10062042|tumors lung|C0024121|Lung Neoplasms|| +004735|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Lymphadenopathy|10025197|Lymphadenopathy|10025197|lymphadenopathy|C0497156|Lymphadenopathy|| +004736|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Myocarditis|10028606|Myocarditis|10028606|myocarditis|C0027059|Myocarditis|| +004737|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Myositis|10028653|Myositis|10028653|myositis|C0027121|Myositis|| +004738|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm|10028980|Neoplasm|10028980|tumors|C0027651|Neoplasms|| +004739|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Nephritis|10029117|Nephritis|10029117|nephritis|C0027697|Nephritis|| +004740|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Non-Hodgkin's lymphoma|10029547|Non-Hodgkin's lymphoma|10029547|non-hodgkin's lymphoma|C0024305|Lymphoma, Non-Hodgkin|| +004741|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Prostate cancer|10060862|Progression of prostate cancer|10066489|tumors worsened prostate|C1739135|Progression of prostate cancer|| +004742|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +004743|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +004744|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +004745|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +004746|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +004747|4c486fc7-c8c4-4c6c-b30c-366dabaeaadd|Horizant|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +004748|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34066-1|BOXED WARNINGS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behaviors|C1760428|Suicidal behavior||DrugClass +004749|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34066-1|BOXED WARNINGS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thoughts|C0424000|Feeling suicidal (finding)||DrugClass +004750|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +004751|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +004752|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +004753|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +004754|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Abnormal dreams|10000125|Abnormal dreams|10000125|abnormal dreams|C0234458|Dream disorder|| +004755|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Akathisia|10001540|Akathisia|10001540|akathisia|C0392156|Akathisia|| +004756|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Angle closure glaucoma|10002500|Angle closure glaucoma|10002500|angle-closure glaucoma|C0017605|Angle Closure Glaucoma|| +004757|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Anorgasmia|10002652|Anorgasmia|10002652|anorgasmia|C0234022|Orgasm incapacity|| +004758|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +004759|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Cataract|10007739|Cataracts|10007771|cataracts|C0086543|Cataract|| +004760|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +004761|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +004762|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Drug eruption|10013687|Drug eruption|10013687|drug eruption|C0011609|Drug Eruptions|| +004763|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Drug withdrawal syndrome|10013754|Drug withdrawal syndrome|10013754|discontinuation syndrome|C0152128|Drug withdrawal syndrome|| +004764|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Dry eye|10013774|Dry eye|10013774|dry eye|C0314719|Dryness of eye|| +004765|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +004766|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +004767|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Ejaculation disorder|10014326|Ejaculation disorder|10014326|ejaculation disorder|C0235969|Disorder of ejaculation|| +004768|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Erectile dysfunction|10061461|Erectile dysfunction|10061461|erectile dysfunction|C0242350|Erectile dysfunction|| +004769|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +004770|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +004771|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Gastroenteritis|10017888|Gastroenteritis|10017888|gastroenteritis|C0017160|Gastroenteritis|| +004772|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +004773|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Hallucination|10019063|Hallucinations|10019077|hallucinations|C0018524|Hallucinations|| +004774|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +004775|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +004776|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Hypomania|10021030|Hypomania|10021030|hypomania|C0241934|Hypomania|| +004777|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +004778|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Increased appetite|10021654|Increased appetite|10021654|increased appetite|C0232461|Increased appetite (finding)|| +004779|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +004780|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +004781|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Libido decreased|10024419|Libido decreased|10024419|libido decreased|C0011124|Decreased Libido|| +004782|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Mania|10026749|Mania|10026749|mania|C0338831|Manic|| +004783|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Migraine|10027599|Migraine|10027599|migraine|C0149931|Migraine Disorders|| +004784|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +004785|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Night sweats|10029410|Night sweats|10029410|night sweats|C0028081|Night sweats|| +004786|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Orgasm abnormal|10031085|Orgasm abnormal|10031085|abnormal orgasm|C0029261|Orgasmic Disorder|| +004787|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +004788|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Panic attack|10033664|Panic attack|10033664|panic attack|C0086769|Panic Attacks|| +004789|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +004790|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|generalized rash|C0497365|Rash generalised|| +004791|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +004792|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Restless legs syndrome|10058920|Restless legs syndrome|10058920|restless legs syndrome|C0035258|Restless Legs Syndrome|| +004793|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Restlessness|10038743|Restlessness|10038743|restlessness|C3887611|Restlessness|| +004794|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +004795|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +004796|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Serotonin syndrome|10040108|Serotonin syndrome|10040108|serotonin syndrome|C0699828|Serotonin Syndrome|| +004797|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Sexual dysfunction|10040477|Sexual dysfunction|10040477|sexual adverse reactions|C0549622|Sexual Dysfunction|| +004798|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +004799|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behaviors|C1760428|Suicidal behavior|| +004800|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thoughts|C0424000|Feeling suicidal (finding)|| +004801|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Suicide attempt|10042464|Suicide attempt|10042464|suicide attempt|C0038663|Suicide attempt|| +004802|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Tension headache|10043269|Tension headache|10043269|tension headache|C0033893|Tension Headache|| +004803|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +004804|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +004805|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Ventricular extrasystoles|10047289|Ventricular extrasystoles|10047289|ventricular extrasystoles|C0151636|Premature ventricular contractions|| +004806|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +004807|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +004808|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|increased weight|C0043094|Weight Gain|| +004809|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +004810|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Angle closure glaucoma|10002500|Acute angle closure glaucoma|10000673|angle closure attack|C0154946|Acute angle-closure glaucoma|| +004811|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Angle closure glaucoma|10002500|Angle closure glaucoma|10002500|angle closure glaucoma|C0017605|Angle Closure Glaucoma|| +004812|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Autonomic nervous system imbalance|10003840|Autonomic instability|10049218|autonomic instability|C0262385|Autonomic nervous system imbalance|| +004813|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Bipolar I disorder|10004939|Mixed manic depressive episode|10065032|mixed episode|C1608433|Mixed manic depressive episode|| +004814|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Blood sodium decreased|10005802|Serum sodium decreased|10054863|serum sodium lower than 110 mmol/l|C3888023|Blood sodium decreased|| +004815|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Coma|10010071|Coma|10010071|coma|C0009421|Comatose|| +004816|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicides|C0038661|Suicide|| +004817|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Coordination abnormal|10010947|Incoordination|10021649|incoordination|C0520966|Abnormal coordination|| +004818|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Delirium|10012218|Delirium|10012218|delirium|C0011206|Delirium|| +004819|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +004820|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +004821|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Ecchymosis|10014080|Ecchymosis|10014080|ecchymosis|C0013491|Ecchymosis||DrugClass +004822|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis||DrugClass +004823|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +004824|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal symptoms|C0426576|Gastrointestinal symptom|| +004825|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal bleeding|10017936|gastrointestinal bleeding|C0017181|Gastrointestinal Hemorrhage||DrugClass +004826|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Haematoma|10018852|Hematoma|10019428|hematoma|C0018944|Hematoma||DrugClass +004827|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding events|C0019080|Hemorrhage|| +004828|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhages|C0019080|Hemorrhage||DrugClass +004829|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Hallucination|10019063|Hallucinations|10019077|hallucinations|C0018524|Hallucinations|| +004830|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Hyperhidrosis|10020642|Diaphoresis|10012703|diaphoresis|C0700590|Increased sweating|| +004831|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Hyperreflexia|10020745|Hyperreflexia|10020745|hyperreflexia|C0151889|Hyperreflexia|| +004832|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Hyperthermia|10020843|Hyperthermia|10020843|hyperthermia|C0015967|Fever|| +004833|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Hypomania|10021030|Hypomania|10021030|hypomania|C0241934|Hypomania|| +004834|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +004835|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Labile blood pressure|10023533|Labile blood pressure|10023533|labile blood pressure|C0428895|Labile blood pressure|| +004836|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Mania|10026749|Mania|10026749|mania|C0338831|Manic|| +004837|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Mania|10026749|Manic episode|10026778|manic episode|C0349208|Manic episode|| +004838|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Mental status changes|10048294|Mental status changes|10048294|mental status changes|C0856054|Mental status changes|| +004839|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Muscle rigidity|10028330|Rigidity|10039168|rigidity|C0026837|Muscle Rigidity|| +004840|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Mydriasis|10028521|Dilatation pupillary|10013007|pupillary dilation|C0026961|Mydriasis|| +004841|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Myoclonus|10028622|Myoclonus|10028622|myoclonus|C0027066|Myoclonus|| +004842|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +004843|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Neuromyopathy|10029323|Neuromuscular disorder NOS|10029316|neuromuscular symptoms|C0752252|Neuromuscular Manifestations|| +004844|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Petechiae|10034754|Petechiae|10034754|petechiae|C0031256|Petechiae||DrugClass +004845|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +004846|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Serotonin syndrome|10040108|Serotonin syndrome|10040108|serotonin syndrome|C0699828|Serotonin Syndrome|| +004847|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behaviors|C1760428|Suicidal behavior|| +004848|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thoughts|C0424000|Feeling suicidal (finding)|| +004849|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +004850|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +004851|4c55ccfb-c4cf-11df-851a-0800200c9a66|VIIBRYD|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +004852|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34066-1|BOXED WARNINGS|Electrocardiogram QT prolonged|10014387|QT interval prolonged|10037703|prolong the qt interval|C0151878|Prolonged QT interval|| +004853|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34066-1|BOXED WARNINGS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +004854|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34066-1|BOXED WARNINGS|Sudden death|10042434|Sudden death|10042434|sudden death|C0011071|Sudden death|| +004855|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34066-1|BOXED WARNINGS|Torsade de pointes|10044066|Torsades de pointes|10044067|torsades de pointes|C0040479|Torsades de Pointes|| +004856|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +004857|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Accelerated hypertension|10000358|Accelerated hypertension|10000358|accelerated hypertension|C0020540|Malignant Hypertension|| +004858|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Acne|10000496|Acne|10000496|acne|C0702166|Acne|| +004859|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Acute sinusitis|10001076|Acute sinusitis|10001076|acute sinusitis|C0149512|Acute sinusitis|| +004860|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt elevation|C0151905|Alanine aminotransferase increased|| +004861|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +004862|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +004863|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|creatinine increased|C0151578|Creatinine increased|| +004864|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Heart failure|10019279|heart failure|C0018801|Heart failure|| +004865|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Cerebral ischaemia|10008120|Other generalized ischemic cerebrovascular disease|10032087|ischemic cerebrovascular events|C2674239|Cerebrovascular ischemic attacks|| +004866|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +004867|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Corneal disorder|10061453|Corneal disorder|10061453|corneal abnormalities|C1855670|Abnormality of the cornea|| +004868|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Corneal opacity|10011035|Corneal opacity|10011035|corneal opacities|C0010038|Corneal Opacity|| +004869|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +004870|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +004871|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Dermatitis acneiform|10012432|Acneiform dermatitis|10000520|acneiform dermatitis|C0234894|Dermatitis acneiform|| +004872|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Dermatitis acneiform|10012432|Dermatitis acneiform|10012432|dermatitis acneiform|C0234894|Dermatitis acneiform|| +004873|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +004874|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +004875|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +004876|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +004877|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +004878|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QT prolonged|10014387|ecg qt prolonged|C0151878|Prolonged QT interval|| +004879|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +004880|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +004881|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding events|C0019080|Hemorrhage|| +004882|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +004883|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Halo vision|10019099|Halo vision|10019099|halos|C0422974|Sees haloes around lights|| +004884|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +004885|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +004886|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Hypertensive crisis|10020802|Hypertensive crisis|10020802|hypertensive crisis|C0020546|Hypertensive crisis|| +004887|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +004888|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +004889|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +004890|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +004891|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +004892|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Intestinal perforation|10022694|Intestinal perforation|10022694|intestinal perforation|C0021845|Intestinal Perforation|| +004893|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Keratopathy|10023365|Keratopathy|10023365|vortex keratopathies|C0344259|Vortex keratopathy|in version 19| +004894|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Laryngitis|10023874|Laryngitis|10023874|laryngitis|C0023067|Laryngitis|| +004895|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryofetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +004896|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +004897|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Nail disorder|10028694|Nail abnormality NOS|10028684|nail abnormalities|C0853087|Nail abnormality|| +004898|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +004899|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +004900|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +004901|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +004902|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Pharyngitis|10034835|Pharyngitis|10034835|pharyngitis|C0031350|Pharyngitis|| +004903|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Photosensitivity reaction|10034972|Photosensitivity reaction|10034972|photosensitivity reaction|C0162830|Dermatitis, Phototoxic|| +004904|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|reversible posterior leukoencephalopathy syndrome|C3160858|Posterior reversible encephalopathy syndrome|| +004905|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +004906|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +004907|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +004908|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +004909|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +004910|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +004911|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +004912|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +004913|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +004914|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Torsade de pointes|10044066|Torsades de pointes|10044067|torsades de pointes|C0040479|Torsades de Pointes|| +004915|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Tracheitis|10044302|Tracheitis|10044302|tracheitis|C0040584|Tracheitis|| +004916|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infections|C0041912|Upper Respiratory Infections|| +004917|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +004918|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Visual acuity reduced|10047531|Visual acuity decreased|10049061|decreased visual acuity|C0234632|Reduced visual acuity|| +004919|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +004920|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Heart failure|10019279|heart failure|C0018801|Heart failure|| +004921|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Cerebral ischaemia|10008120|Other generalized ischemic cerebrovascular disease|10032087|ischemic cerebrovascular events|C2674239|Cerebrovascular ischemic attacks|| +004922|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +004923|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Developmental delay|10012559|Developmental disturbance|10012563|adverse effects on embryofetal development|C0000768|Congenital Abnormality||Animal +004924|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +004925|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT interval prolonged|10037703|prolong the qt interval|C0151878|Prolonged QT interval|| +004926|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Fertility increased|10016467|Fertility increased female|10016468|adverse effects on female fertility|C0151641|Fertility increased female|duplicate|Animal +004927|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +004928|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +004929|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +004930|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Hypertensive crisis|10020802|Hypertensive crisis|10020802|hypertensive crisis|C0020546|Hypertensive crisis|| +004931|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Infertility female|10021928|Fertility female decreased|10016465|adverse effects on female fertility|C0151639|Decreased fertility in females|duplicate|Animal +004932|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|ild|C0206062|Lung Diseases, Interstitial|| +004933|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|fetotoxic|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk||Animal +004934|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Photosensitivity reaction|10034972|Photosensitivity reaction|10034972|photosensitivity reactions|C0162830|Dermatitis, Phototoxic|| +004935|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +004936|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|rpls|C3160858|Posterior reversible encephalopathy syndrome|| +004937|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +004938|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +004939|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Sudden death|10042434|Sudden death|10042434|sudden death|C0011071|Sudden death|| +004940|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenic|C0232910|Teratogenesis||Animal +004941|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Torsade de pointes|10044066|Torsades de pointes|10044067|torsades de pointes|C0040479|Torsades de Pointes|| +004942|4dc7f0af-77fb-4eec-46b9-dd1c2dcb4525|CAPRELSA|43685-7|WARNINGS AND PRECAUTIONS|Ventricular tachycardia|10047302|Ventricular tachycardia|10047302|ventricular tachycardia|C0042514|Tachycardia, Ventricular|| +004943|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Adrenal insufficiency|10001367|Adrenal cortex insufficiency|10001335|adrenocortical insufficiency|C0405580|Adrenal cortical hypofunction|| +004944|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT high|10075801|high alt|C3888967|ALT high|| +004945|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevated alt|C0151905|Alanine aminotransferase increased|| +004946|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|high alanine aminotransferase|C3888967|ALT high|| +004947|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +004948|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Arrhythmia|10003119|Arrhythmia|10003119|arrhythmias|C0003811|Cardiac Arrhythmia|| +004949|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST high|10075800|high ast|C3888966|AST high|| +004950|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|elevated ast|C0151904|Aspartate aminotransferase increased|| +004951|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|elevated alkaline phosphatase|C0151849|Alkaline phosphatase raised|| +004952|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin total high|10004697|high total bilirubin|C0741494|Elevated total bilirubin|| +004953|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Blood phosphorus decreased|10049471|Phosphorus low|10050715|low serum phosphorus|C0920102|Phosphorus low|| +004954|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Blood potassium decreased|10005724|Potassium decreased|10036443|low potassium|C0860866|Potassium low|| +004955|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Cardiac failure|10007554|cardiac failure|C0018801|Heart failure|| +004956|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Cardio-respiratory arrest|10007617|Cardio-respiratory arrest|10007617|cardiorespiratory arrest|C0600228|Cardiopulmonary Arrest|| +004957|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +004958|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +004959|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +004960|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Contusion|10050584|Contusion|10050584|contusion|C0009938|Contusions|| +004961|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +004962|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|deaths|C1306577|Death (finding)|| +004963|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +004964|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +004965|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +004966|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Fall|10016173|Fall|10016173|falls|C0085639|Falls|| +004967|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +004968|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Fluid retention|10016807|Fluid retention|10016807|fluid retention|C0268000|Body fluid retention|| +004969|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Fracture|10017076|Fracture|10017076|fractures|C0016658|Fracture|| +004970|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Groin pain|10018735|Groin pain|10018735|groin pain|C0239783|Inguinal pain|| +004971|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +004972|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +004973|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +004974|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Hyperaldosteronism|10020571|Hyperaldosteronism|10020571|mineralocorticoid excess|C0020428|Hyperaldosteronism|| +004975|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Hypercholesterolaemia|10020603|Hypercholesterolemia|10020604|hypercholesterolemia|C0020443|Hypercholesterolemia|| +004976|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +004977|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Hypernatraemia|10020679|Hypernatremia|10020680|hypernatremia|C0020488|Hypernatremia|| +004978|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +004979|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Hypertriglyceridaemia|10020869|Hypertriglyceridemia|10020870|hypertriglyceridemia|C0020557|Hypertriglyceridemia|| +004980|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +004981|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +004982|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +004983|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Joint swelling|10023232|Joint swelling|10023232|joint swelling|C0152031|Joint swelling|| +004984|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +004985|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Musculoskeletal discomfort|10053156|Discomfort in joints|10013088|joint discomfort|C0003862|Arthralgia|| +004986|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Musculoskeletal discomfort|10053156|Muscle discomfort|10028299|muscle discomfort|C0231528|Myalgia|| +004987|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +004988|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Myocardial ischaemia|10028600|Myocardial ischemia|10028601|myocardial ischemia|C0151744|Myocardial Ischemia|| +004989|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Myopathy|10028641|Myopathy|10028641|myopathy|C0026848|Myopathy|| +004990|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +004991|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Nocturia|10029446|Nocturia|10029446|nocturia|C0028734|Nocturia|| +004992|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +004993|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|non-infectious pneumonitis|C0264376|Non-infectious pneumonia|| +004994|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Pollakiuria|10036018|Urinary frequency|10046539|urinary frequency|C0042023|Increased frequency of micturition|| +004995|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +004996|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +004997|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Rhabdomyolysis|10039020|Rhabdomyolysis|10039020|rhabdomyolysis|C0035410|Rhabdomyolysis|| +004998|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Sudden death|10042434|Sudden death|10042434|sudden death|C0011071|Sudden death|| +004999|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +005000|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +005001|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +005002|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|43685-7|WARNINGS AND PRECAUTIONS|Adrenal insufficiency|10001367|Adrenal cortex insufficiency|10001335|adrenocortical insufficiency|C0405580|Adrenal cortical hypofunction|| +005003|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|43685-7|WARNINGS AND PRECAUTIONS|Adrenal insufficiency|10001367|Adrenal insufficiency|10001367|adrenal insufficiency|C0001623|Adrenal gland hypofunction|| +005004|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increases|C0151905|Alanine aminotransferase increased|| +005005|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast increases|C0151904|Aspartate aminotransferase increased|| +005006|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|43685-7|WARNINGS AND PRECAUTIONS|Fluid retention|10016807|Fluid retention|10016807|fluid retention|C0268000|Body fluid retention|| +005007|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|43685-7|WARNINGS AND PRECAUTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|liver enzyme increases|C0235996|Elevated liver enzymes|| +005008|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +005009|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|43685-7|WARNINGS AND PRECAUTIONS|Hyperaldosteronism|10020571|Hyperaldosteronism|10020571|mineralocorticoid excess|C0020428|Hyperaldosteronism|| +005010|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|43685-7|WARNINGS AND PRECAUTIONS|Hypercorticoidism|10020610|Hypercorticoidism|10020610|increased mineralocorticoid levels|C0001622|Adrenal Gland Hyperfunction|| +005011|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +005012|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|43685-7|WARNINGS AND PRECAUTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +005013|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|43685-7|WARNINGS AND PRECAUTIONS|Liver function test abnormal|10024690|Liver function tests raised|10048556|liver test elevation|C0877359|Increased liver function tests|| +005014|4e338e89-3cf2-48eb-b6e2-a06c608c6513|Zytiga|43685-7|WARNINGS AND PRECAUTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +005015|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34066-1|BOXED WARNINGS|Foetal damage|10016852|Fetal damage|10054743|injury to the developing fetus|C0456799|Fetal trauma||DrugClass +005016|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34066-1|BOXED WARNINGS|Foetal death|10055690|Fetal death|10016479|death to the developing fetus|C0015927|Fetal Death||DrugClass +005017|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34066-1|BOXED WARNINGS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +005018|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +005019|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +005020|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|increases in serum creatinine|C0700225|Serum creatinine raised|| +005021|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +005022|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +005023|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Dizziness postural|10013578|Dizziness postural|10013578|dizziness postural|C0234987|Postural dizziness|| +005024|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +005025|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +005026|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Haematocrit decreased|10018838|Hematocrit low|10060546|low hematocrit|C0744727|Hematocrit decreased|| +005027|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin low|10055600|low hemoglobin|C0162119|Hemoglobin low|| +005028|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +005029|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +005030|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasm|10028333|muscle spasm|C0037763|Spasm|| +005031|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +005032|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Orthostatic hypotension|10031127|Orthostatic hypotension|10031127|orthostatic hypotension|C0020651|Hypotension, Orthostatic|| +005033|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Platelet count abnormal|10035526|Platelet count abnormal|10035526|abnormal platelet counts|C0580317|Platelet count abnormal|| +005034|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Low platelets|10024922|low platelet counts|C0392386|Decreased platelet count|| +005035|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Platelet count increased|10051608|Platelet count high|10074399|high platelet counts|C0857460|Increased number of platelets|| +005036|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +005037|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +005038|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|Red blood cell count decreased|10038153|RBC decreased|10037926|low rbc counts|C0427457|RBC count low|| +005039|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|White blood cell count abnormal|10047940|White blood cell count abnormal|10047940|abnormal wbc counts|C0580531|White blood cell count abnormal|| +005040|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|WBC decreased|10056731|low wbc counts|C0750394|White blood cell count decreased|| +005041|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|34084-4|ADVERSE REACTIONS|White blood cell count increased|10047943|WBC increased|10056739|high wbc counts|C0750426|White blood cell count increased (lab result)|| +005042|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute||DrugClass +005043|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Azotaemia|10003885|Azotaemia|10003885|progressive azotemia|C0242528|Azotemia|underspecified|DrugClass +005044|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|increases in serum creatinine|C0700225|Serum creatinine raised||DrugClass +005045|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Blood urea increased|10005851|BUN increased|10006576|increases in blood urea nitrogen|C0151539|Blood urea increased||DrugClass +005046|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Congenital anomaly|10010356|Congenital anomaly|10010356|fetal skeletal deformations|C0000768|Congenital Abnormality|| +005047|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Death neonatal|10011912|Death neonatal|10011912|neonatal death|C0410916|Neonatal Death|| +005048|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)||DrugClass +005049|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Foetal death|10055690|Fetal death|10016479|fetal death|C0015927|Fetal Death||DrugClass +005050|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Foetal disorder|10061157|Fetal disorder|10016485|fetal morbidity|C0015929|Fetal Diseases||DrugClass +005051|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension symptomatic|10021105|symptomatic hypotension|C0863113|Hypotension symptomatic|| +005052|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Microcephaly|10027534|Skull hypoplasia|10073498|neonatal skull hypoplasia|C1390484|Skull hypoplasia|| +005053|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Neonatal anuria|10049778|Neonatal anuria|10049778|neonatal anuria|C0877643|Neonatal anuria|| +005054|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Neonatal disorder|10028934|Neonatal disorder|10028934|neonatal adverse effects|C0549411|Neonatal adverse effect|| +005055|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Neonatal hypotension|10049223|Neonatal hypotension|10049223|neonatal hypotension|C0455995|Neonatal hypotension|| +005056|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Oligohydramnios|10030289|Oligohydramnios|10030289|oligohydramnios|C0079924|Oligohydramnios|| +005057|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Oliguria|10030302|Oliguria|10030302|oliguria|C0028961|Oliguria||DrugClass +005058|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary hypoplasia|10037407|Agenesis, hypoplasia, and dysplasia of lung, congenital|10001479|fetal lung hypoplasia|C0265783|Congenital hypoplasia of lung|| +005059|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Renal failure neonatal|10038447|Renal failure neonatal|10038447|neonatal renal failure|C0854351|Renal failure neonatal|| +005060|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Function kidney decreased|10017474|reduces fetal renal function|C0232807|Decreased renal function|underspecified|DrugClass +005061|52b27c75-9f5a-4816-bafd-dace9d7d2063|Edarbi|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Renal function abnormal|10038451|changes in renal function|C0151746|Abnormal renal function|| +005062|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|increased mortality|C1306577|Death (finding)|| +005063|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +005064|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Stomach discomfort|10042101|stomach discomfort|C0235309|Upset stomach|| +005065|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Abdominal pain lower|10000084|Abdominal pain lower|10000084|abdominal pain lower|C0232495|Lower abdominal pain|| +005066|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +005067|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +005068|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Accommodation disorder|10000389|Accommodation disorder|10000389|accommodation disorder|C0152198|Disorder of accommodation|| +005069|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis|| +005070|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Akathisia|10001540|Akathisia|10001540|akathisia|C0392156|Akathisia|| +005071|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt elevations|C0151905|Alanine aminotransferase increased|| +005072|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +005073|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Anger|10002368|Anger|10002368|anger|C0424330|Anger reaction|| +005074|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +005075|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Application site exfoliation|10064578|Application site exfoliation|10064578|application site sloughing|C1610049|Application site exfoliation|| +005076|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Application site exfoliation|10064578|Application site peeling|10065578|application site peeling|C1610049|Application site exfoliation|| +005077|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Application site inflammation|10049042|Application site inflammation|10049042|application site inflammation|C0877126|Application site inflammation|| +005078|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Application site reaction|10003055|Application site reaction|10003055|application site reactions|C0151505|Application site reaction|| +005079|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Application site ulcer|10003059|Application site ulcer|10003059|application site oral ulcers|C0521492|Application site ulcer|duplicate| +005080|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Application site vesicles|10048941|Application site blister|10053414|application site blisters|C0877097|Application site vesicles|| +005081|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +005082|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast increased|C0151904|Aspartate aminotransferase increased|| +005083|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Bipolar I disorder|10004939|Bipolar I disorder|10004939|bipolar i disorder|C0853193|Bipolar I disorder|| +005084|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Blepharospasm|10005159|Blepharospasm|10005159|blepharospasm|C0005747|Blepharospasm|| +005085|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|Creatine kinase increased|10011336|ck elevations|C0151576|Elevated creatine kinase|| +005086|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Blood insulin increased|10005614|Blood insulin increased|10005614|blood insulin increased|C0852795|Blood insulin increased|| +005087|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Blood prolactin decreased|10005779|Prolactin levels decreased|10036827|decrease in prolactin|C0857016|Decreased prolactin level|| +005088|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Blood prolactin increased|10005780|Increased prolactin level|10021675|increases in prolactin levels|C0747979|Increased prolactin level|| +005089|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Blood prolactin increased|10005780|Prolactin increased|10036826|prolactin elevations|C0553731|PRL increased|| +005090|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Blood prolactin increased|10005780|Prolactin levels increased|10036828|increase in prolactin levels|C0747979|Increased prolactin level|| +005091|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Bradykinesia|10006100|Bradykinesia|10006100|bradykinesia|C0233565|Bradykinesia|| +005092|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Bundle branch block|10006578|Bundle branch block|10006578|temporary bundle branch block|C0006384|Bundle-Branch Block|| +005093|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Choking|10008589|Choking|10008589|choking|C0008301|Choking|| +005094|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Cognitive disorder|10057668|Cognitive impairment|10009846|cognitive impairment|C0338656|Impaired cognition|| +005095|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Completed suicide|10010144|Suicide|10042462|suicide|C0038661|Suicide|| +005096|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +005097|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +005098|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +005099|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Depressive symptom|10054089|Depressive symptom|10054089|depressive symptoms|C0086132|Depressive Symptoms|| +005100|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +005101|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +005102|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +005103|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +005104|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +005105|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Dyskinesia|10013916|Dyskinesia|10013916|dyskinesia|C0013384|Dyskinetic syndrome|| +005106|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Dysmenorrhoea|10013935|Dysmenorrhea|10013934|dysmenorrhea|C0013390|Dysmenorrhea|| +005107|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +005108|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +005109|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Swallowing difficult|10042645|swallowing difficulty|C0011168|Deglutition Disorders|| +005110|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Difficulty breathing|10012791|difficulty breathing|C0013404|Dyspnea|| +005111|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +005112|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Dystonia|10013983|Acute dystonia|10066608|acute dystonia|C1735368|Acute dystonia|| +005113|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Dystonia|10013983|Dystonia|10013983|dystonia|C0013421|Dystonia|| +005114|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|QT interval prolonged|10037703|qt interval prolongation|C0151878|Prolonged QT interval|| +005115|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Enuresis|10014928|Enuresis|10014928|enuresis|C0014394|Enuresis|| +005116|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Extrapyramidal disorder|10015832|Extrapyramidal disorder|10015832|extrapyramidal disorder|C0015371|Extrapyramidal Disorders|| +005117|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Extrapyramidal disorder|10015832|Extrapyramidal symptoms|10015835|extrapyramidal symptoms|C0234133|Extrapyramidal sign|| +005118|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Fall|10016173|Fall|10016173|fall|C0085639|Falls|| +005119|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +005120|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Gait disturbance|10017577|gait disturbance|C0575081|Gait abnormality|| +005121|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Galactorrhoea|10017600|Galactorrhea|10017592|galactorrhea|C3665358|Galactorrhea|| +005122|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +005123|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Glossodynia|10018388|Glossodynia|10018388|glossodynia|C0017672|Glossalgia|| +005124|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Haemodynamic instability|10052076|Hemodynamic instability|10058270|hemodynamic effects|C0948268|Hemodynamic instability|| +005125|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +005126|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Heart rate increased|10019303|Heart rate increased|10019303|heart rate increased|C0039231|Tachycardia|| +005127|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Hyperinsulinaemia|10060378|Hyperinsulinemia|10020643|hyperinsulinemia|C0020459|Hyperinsulinism|| +005128|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Hyperkinesia|10020651|Hyperkinesia|10020651|hyperkinesia|C3887506|Hyperkinesia|| +005129|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Hyperprolactinaemia|10020737|Hyperprolactinemia|10020739|hyperprolactinemia|C0020514|Hyperprolactinemia|| +005130|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +005131|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Hypersomnia|10020765|Hypersomnia|10020765|hypersomnia|C0917799|Hypersomnia|| +005132|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +005133|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Hypoaesthesia oral|10057371|Hypoaesthesia oral|10057371|oral hypoesthesia|C0521592|Oral hypoesthesia|| +005134|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +005135|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +005136|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Idiosyncratic drug reaction|10049998|Idiosyncratic drug reaction|10049998|idiosyncratic drug reaction|C0919578|Idiosyncratic drug reaction|| +005137|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Increased appetite|10021654|Increased appetite|10021654|increased appetite|C0232461|Increased appetite (finding)|| +005138|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +005139|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +005140|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Lethargy|10024264|Lethargy|10024264|lethargy|C0023380|Lethargy|| +005141|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +005142|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Masked facies|10026863|Masked facies|10026863|masked facies|C0424448|Mask-like facies|| +005143|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Metabolic disorder|10058097|Metabolic disorder|10058097|metabolic changes|C0025517|Metabolic Diseases|| +005144|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Motor dysfunction|10061296|Motor dysfunction|10061296|motor impairment|C0221163|Motor Disorders|| +005145|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Mouth ulceration|10028034|Oral ulceration|10031027|application site oral ulcers|C0149745|Oral Ulcer|duplicate| +005146|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Muscle contractions involuntary|10028293|Muscle contractions involuntary|10028293|muscle contractions involuntary|C0235086|Involuntary muscle contraction|| +005147|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Muscle rigidity|10028330|Muscle rigidity|10028330|muscle rigidity|C0026837|Muscle Rigidity|| +005148|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Neck cramps|10028828|spasm of the neck muscles|C0795701|Neck cramps|| +005149|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Muscle strain|10050031|Muscle strain|10050031|muscle strain|C0080194|Muscle strain|| +005150|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Muscle twitching|10028347|Muscle twitching|10028347|muscle twitching|C0231530|Muscle twitch|| +005151|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Musculoskeletal stiffness|10052904|Musculoskeletal stiffness|10052904|musculoskeletal stiffness|C0948525|Musculoskeletal stiffness|| +005152|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +005153|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Nasal congestion|10028735|Nasal congestion|10028735|nasal congestion|C0027424|Nasal congestion (finding)|| +005154|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +005155|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Neuroleptic malignant syndrome|10029282|Neuroleptic malignant syndrome|10029282|neuroleptic malignant syndrome|C0027849|Neuroleptic Malignant Syndrome|| +005156|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +005157|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Oculogyric crisis|10030071|Oculogyration|10061552|oculogyration|C1262064|Oculogyration|| +005158|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +005159|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Oral dysaesthesia|10050820|Oral dysesthesia|10054520|oral dysesthesia|C0006430|Burning Mouth Syndrome|| +005160|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Oromandibular dystonia|10067954|Oromandibular dystonia|10067954|oromandibular dystonia|C2242577|Oromandibular dystonia|| +005161|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +005162|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Orthostatic hypotension|10031127|Orthostatic hypotension|10031127|orthostatic hypotension|C0020651|Hypotension, Orthostatic|| +005163|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +005164|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Paraesthesia oral|10057372|Paraesthesia oral|10057372|oral paraesthesia|C0521591|Oral paresthesia|| +005165|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Paraesthesia oral|10057372|Paresthesia oral|10054537|oral paresthesia|C0521591|Oral paresthesia|| +005166|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Parkinsonism|10034010|Parkinsonism|10034010|parkinsonism|C0242422|Parkinsonian Disorders|| +005167|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Pharyngeal dyskinesia|10070912|Pharyngeal dyskinesia|10070912|oropharyngeal muscular dysfunction|C3160763|Pharyngeal dyskinesia|| +005168|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Photosensitivity reaction|10034972|Photosensitivity reaction|10034972|photosensitivity reaction|C0162830|Dermatitis, Phototoxic|| +005169|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Protrusion tongue|10037076|Protrusion tongue|10037076|protrusion tongue|C0241442|Protrusion of tongue|| +005170|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +005171|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Resting tremor|10071390|Resting tremor|10071390|resting tremor|C0234379|Resting Tremor|| +005172|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Salivary hypersecretion|10039424|Salivary hypersecretion|10039424|salivary hypersecretion|C0037036|Sialorrhea|| +005173|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +005174|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +005175|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +005176|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +005177|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Swollen tongue|10042727|Swollen tongue|10042727|swollen tongue|C0236068|Tongue swelling|| +005178|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +005179|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +005180|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Tardive dyskinesia|10043118|Tardive dyskinesia|10043118|tardive dyskinesia|C0686347|Tardive Dyskinesia|| +005181|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Throat tightness|10043528|Throat tightness|10043528|tightness of the throat|C0236071|Feeling of throat tightness|| +005182|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +005183|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Toothache|10044055|Toothache|10044055|toothache|C0040460|Toothache|| +005184|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Torticollis|10044074|Torticollis|10044074|torticollis|C0040485|Torticollis|| +005185|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Serum transaminase increased|10040421|elevations in serum transaminases|C0859350|Serum transaminase increased|| +005186|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|increase in transaminase levels|C0438717|Transaminases increased|| +005187|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +005188|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +005189|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +005190|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|increased weight|C0043094|Weight Gain|| +005191|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|34084-4|ADVERSE REACTIONS|||||prolonged abnormal contractions of muscle groups|||unmapped| +005192|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +005193|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis||DrugClass +005194|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Amenorrhoea|10001928|Amenorrhea|10001927|amenorrhea|C0002453|Amenorrhea||DrugClass +005195|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +005196|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +005197|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Arrhythmia|10003119|Cardiac dysrhythmias|10007545|cardiac dysrhythmia|C0003811|Cardiac Arrhythmia|| +005198|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Aspiration|10003504|Aspiration|10003504|aspiration|C0700198|Pulmonary aspiration||DrugClass +005199|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Autonomic nervous system imbalance|10003840|Autonomic instability|10049218|autonomic instability|C0262385|Autonomic nervous system imbalance|| +005200|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Blood cholesterol increased|10005425|Cholesterol total increased|10008671|total cholesterol elevations|C1522133|Hypercholesterolemia result|| +005201|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Blood creatine phosphokinase increased|10005470|Creatine phosphokinase increased|10011349|elevated creatine phosphokinase|C0151576|Elevated creatine kinase|| +005202|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Blood glucose increased|10005557|Fasting blood glucose increased|10050786|increase of fasting glucose|C0920108|Fasting blood glucose increased|| +005203|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Blood gonadotrophin decreased|10005562|Gonadotropins decreased|10018546|suppress hypothalamic gnrh|C4025644|Hypothalamic gonadotropin-releasing hormone (GNRH) deficiency|| +005204|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Blood gonadotrophin decreased|10005562|Pituitary gonadotrophin decreased|10054718|reduced pituitary gonadotropin secretion|C0151676|Pituitary gonadotrophin decreased|| +005205|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure fluctuation|10005746|Blood pressure fluctuation|10005746|irregular blood pressure|C0549405|Blood pressure fluctuation|| +005206|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Blood prolactin abnormal|10005778|Prolactin abnormal NOS|10036823|abnormal prolactin levels|C4022448|Abnormal prolactin level|| +005207|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Blood prolactin increased|10005780|Prolactin levels increased|10036828|elevate prolactin levels|C0747979|Increased prolactin level|| +005208|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|elevations in triglycerides|C1522137|Hypertriglyceridemia result|| +005209|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Body temperature increased|10005911|Body temperature increased|10005911|body temperature increases|C0015967|Fever|| +005210|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Bone density decreased|10049470|Bone density decreased|10049470|decreased bone density|C0877225|Bone density decreased|| +005211|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +005212|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Heart failure|10019279|heart failure|C0018801|Heart failure|| +005213|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular risk|C0850624|cardiovascular risk factor||DrugClass +005214|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Cerebrovascular accident|10008190|cerebrovascular accidents|C0038454|Cerebrovascular accident||DrugClass +005215|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident||DrugClass +005216|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular disorder|10008196|Cerebrovascular disorder|10008196|cerebrovascular adverse events|C0007820|Cerebrovascular Disorders||DrugClass +005217|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Cognitive disorder|10057668|Cognitive impairment|10009846|cognitive impairment|C0338656|Impaired cognition|| +005218|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Coma|10010071|Coma|10010071|hyperosmolar coma|C0020457|Hyperglycemic Hyperosmolar Nonketotic Coma|duplicate|DrugClass +005219|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicide|C0038661|Suicide|| +005220|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)||DrugClass +005221|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +005222|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Dyskinesia|10013916|Movements involuntary|10028041|involuntary, dyskinetic movements|C0427086|Involuntary Movements||DrugClass +005223|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Dyslipidaemia|10058108|Dyslipidemia|10058110|dyslipidemia|C0242339|Dyslipidemias||DrugClass +005224|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +005225|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +005226|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|increases in qtc interval|C0855333|Electrocardiogram QT corrected interval prolonged|| +005227|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT interval prolonged|10037703|increases in qt interval|C0151878|Prolonged QT interval|| +005228|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +005229|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Erectile dysfunction|10061461|Impotence|10021550|impotence|C0242350|Erectile dysfunction||DrugClass +005230|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Feeling hot|10016334|Feeling hot|10016334|feeling hot|C2939147|Feels hot|| +005231|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Galactorrhoea|10017600|Galactorrhea|10017592|galactorrhea|C3665358|Galactorrhea||DrugClass +005232|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Gynaecomastia|10018800|Gynecomastia|10018801|gynecomastia|C0018418|Gynecomastia||DrugClass +005233|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Haemodynamic instability|10052076|Hemodynamic instability|10058270|hemodynamic effects|C0948268|Hemodynamic instability|| +005234|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Heart rate irregular|10019304|Irregular pulse|10022994|irregular pulse|C0392684|Pulse irregular|| +005235|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia||DrugClass +005236|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Hyperhidrosis|10020642|Diaphoresis|10012703|diaphoresis|C0700590|Increased sweating|| +005237|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Hyperosmolar state|10020697|Hyperosmolar state|10020697|hyperosmolar coma|C0020457|Hyperglycemic Hyperosmolar Nonketotic Coma|duplicate|DrugClass +005238|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Hyperprolactinaemia|10020737|Hyperprolactinemia|10020739|hyperprolactinemia|C0020514|Hyperprolactinemia|| +005239|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Hyperpyrexia|10020741|Hyperpyrexia|10020741|hyperpyrexia|C0392676|Hyperpyrexia|| +005240|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +005241|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Hypersomnia|10020765|Hypersomnia|10020765|hypersomnia|C0917799|Hypersomnia|| +005242|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Hypogonadism|10058359|Gonadal insufficiency|10068037|impairing gonadal steroidogenesis|C2242620|Gonadal insufficiency|underspecified| +005243|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Hypogonadism|10058359|Hypogonadism|10058359|hypogonadism|C0020619|Hypogonadism|| +005244|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +005245|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Ketoacidosis|10023379|Ketoacidosis|10023379|ketoacidosis|C0220982|Ketoacidosis||DrugClass +005246|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia||DrugClass +005247|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Lipids abnormal|10024588|Lipids abnormal|10024588|undesirable alterations in lipids|C0549634|Lipids abnormal||DrugClass +005248|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Mental status changes|10048294|Mental status changes|10048294|altered mental status|C0856054|Mental status changes|| +005249|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Metabolic disorder|10058097|Metabolic disorder|10058097|metabolic changes|C0025517|Metabolic Diseases||DrugClass +005250|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Motor dysfunction|10061296|Motor dysfunction|10061296|motor impairment|C0221163|Motor Disorders|| +005251|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Muscle rigidity|10028330|Muscle rigidity|10028330|muscle rigidity|C0026837|Muscle Rigidity|| +005252|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Myoglobinuria|10028629|Myoglobinuria|10028629|myoglobinuria|C0027080|Myoglobinuria|| +005253|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Neuroleptic malignant syndrome|10029282|NMS|10029435|nms|C0027849|Neuroleptic Malignant Syndrome|| +005254|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Neuroleptic malignant syndrome|10029282|Neuroleptic malignant syndrome|10029282|neuroleptic malignant syndrome|C0027849|Neuroleptic Malignant Syndrome|| +005255|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia||DrugClass +005256|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Oesophageal motility disorder|10072419|Esophageal motility disorder|10072420|esophageal dysmotility|C0014858|Esophageal motility disorders||DrugClass +005257|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Orthostatic hypotension|10031127|Orthostatic hypotension|10031127|orthostatic hypotension|C0020651|Hypotension, Orthostatic|| +005258|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +005259|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +005260|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +005261|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Reproductive toxicity|10074268|Reproductive toxicity|10074268|inhibit reproductive function|C1558153|Adverse Event Associated with Sexual and Reproductive Function|| +005262|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Rhabdomyolysis|10039020|Rhabdomyolysis|10039020|rhabdomyolysis|C0035410|Rhabdomyolysis|| +005263|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +005264|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +005265|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +005266|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Sudden death|10042434|Sudden death|10042434|sudden death|C0011071|Sudden death|| +005267|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Swollen tongue|10042727|Swollen tongue|10042727|swollen tongue|C0236068|Tongue swelling|| +005268|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +005269|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +005270|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Tardive dyskinesia|10043118|Tardive dyskinesia|10043118|tardive dyskinesia|C0686347|Tardive Dyskinesia||DrugClass +005271|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Temperature regulation disorder|10061376|Temperature regulation disorder|10061376|disruption of the body's ability to reduce core body temperature|C0854171|Temperature regulation disorder||DrugClass +005272|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Transient ischaemic attack|10044390|Transient ischemic attacks|10044391|transient ischemic attacks|C0007787|Transient Ischemic Attack||DrugClass +005273|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Transient ischaemic attack|10044390|Transient ischemic attack|10072760|transient ischemic attack|C0007787|Transient Ischemic Attack||DrugClass +005274|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Weight fluctuation|10049040|Weight fluctuation|10049040|changes in body weight|C0005911|Body Weight Changes|| +005275|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Weight increased|10047899|Weight gain|10047896|weight gain|C0043094|Weight Gain||DrugClass +005276|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Weight increased|10047899|Weight increased|10047899|increase in body weight|C0043094|Weight Gain|| +005277|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +005278|5429f134-839f-4ffc-9944-55f51238def8|SAPHRIS|43685-7|WARNINGS AND PRECAUTIONS|||||increase cardiovascular risk|C0850624|cardiovascular risk factor|unmapped|DrugClass +005279|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +005280|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +005281|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +005282|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Balance disorder|10049848|Balance disorder|10049848|balance disorder|C0575090|Equilibration disorder|| +005283|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +005284|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +005285|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +005286|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +005287|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +005288|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +005289|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Laryngeal pain|10023848|Pharyngolaryngeal pain|10034844|pharyngolaryngeal pain|C0858635|Pharyngolaryngeal pain|| +005290|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Multiple sclerosis relapse|10048393|Multiple sclerosis relapse|10048393|multiple sclerosis relapse|C0856120|Multiple sclerosis relapse|| +005291|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +005292|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +005293|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +005294|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +005295|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +005296|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +005297|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema of the throat|C0002994|Angioedema|duplicate| +005298|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +005299|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|43685-7|WARNINGS AND PRECAUTIONS|Pharyngeal oedema|10034829|Throat edema|10043519|angioedema of the throat|C0236024|Edema of pharynx|duplicate| +005300|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|43685-7|WARNINGS AND PRECAUTIONS|Respiratory failure|10038695|Respiratory insufficiency|10038701|respiratory compromise|C0035229|Respiratory Insufficiency|| +005301|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +005302|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|43685-7|WARNINGS AND PRECAUTIONS|Tongue oedema|10043967|Tongue edema|10043955|angioedema of the tongue|C1304201|Angioedema of tongue|duplicate| +005303|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|43685-7|WARNINGS AND PRECAUTIONS|Urinary tract infection|10046571|UTI|10046848|utis|C0042029|Urinary tract infection|| +005304|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|43685-7|WARNINGS AND PRECAUTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infections|C0042029|Urinary tract infection|| +005305|550eb76a-e4a6-4fa1-ad65-c0fd8b0ce783|AMPYRA|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +005306|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34066-1|BOXED WARNINGS|Affective disorder|10001443|Affective disorder|10001443|affective changes|C0525045|Mood Disorders|| +005307|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34066-1|BOXED WARNINGS|Coma|10010071|Coma|10010071|coma|C0009421|Comatose|| +005308|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +005309|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34066-1|BOXED WARNINGS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +005310|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34066-1|BOXED WARNINGS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +005311|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34066-1|BOXED WARNINGS|Lethargy|10024264|Lethargy|10024264|lethargy|C0023380|Lethargy|| +005312|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34066-1|BOXED WARNINGS|Mutism|10028403|Mutism|10028403|mutism|C0026884|Mutism|| +005313|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34066-1|BOXED WARNINGS|Osmotic demyelination syndrome|10069350|Osmotic demyelination syndrome|10069350|osmotic demyelination|C2721559|Osmotic demyelination syndrome|| +005314|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34066-1|BOXED WARNINGS|Quadriparesis|10049680|Spastic quadriparesis|10049707|spastic quadriparesis|C0575059|Spastic tetraparesis|| +005315|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34066-1|BOXED WARNINGS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +005316|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Anaphylactic shock|10002199|Anaphylactic shock|10002199|anaphylactic shock|C0002792|anaphylaxis|| +005317|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +005318|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Cerebrovascular accident|10008190|Cerebrovascular accident|10008190|cerebrovascular accident|C0038454|Cerebrovascular accident|| +005319|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Colitis ischaemic|10009895|Ischemic colitis|10023037|ischemic colitis|C0162529|Colitis, Ischemic|| +005320|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +005321|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|mortality|C1306577|Death (finding)|| +005322|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +005323|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Deep vein thrombosis|10051055|Deep vein thrombosis|10051055|deep vein thrombosis|C0149871|Deep Vein Thrombosis|| +005324|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Diabetic ketoacidosis|10012671|Diabetic ketoacidosis|10012671|diabetic ketoacidosis|C0011880|Diabetic Ketoacidosis|| +005325|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Disseminated intravascular coagulation|10013442|Disseminated intravascular coagulation|10013442|disseminated intravascular coagulation|C0012739|Disseminated Intravascular Coagulation|| +005326|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +005327|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal bleeding|10017936|gastrointestinal bleeding|C0017181|Gastrointestinal Hemorrhage|| +005328|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +005329|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Hypernatraemia|10020679|Hypernatremia|10020680|hypernatremia|C0020488|Hypernatremia|| +005330|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +005331|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Intracardiac thrombus|10048620|Intracardiac thrombus|10048620|intracardiac thrombus|C0876998|Intracardiac thrombus|| +005332|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +005333|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Osmotic demyelination syndrome|10069350|Osmotic demyelination syndrome|10069350|osmotic demyelination syndrome|C2721559|Osmotic demyelination syndrome|| +005334|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Pollakiuria|10036018|Pollakiuria|10036018|pollakiuria|C0042023|Increased frequency of micturition|| +005335|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Polyuria|10036142|Polyuria|10036142|polyuria|C0032617|Polyuria|| +005336|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Prothrombin time prolonged|10037063|Prothrombin time prolonged|10037063|prothrombin time prolonged|C0151872|Prothrombin time increased|| +005337|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +005338|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +005339|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|rash generalized|C0497365|Rash generalised|| +005340|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Respiratory failure|10038695|Respiratory failure|10038695|respiratory failure|C1145670|Respiratory Failure|| +005341|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Rhabdomyolysis|10039020|Rhabdomyolysis|10039020|rhabdomyolysis|C0035410|Rhabdomyolysis|| +005342|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Thirst|10043458|Thirst|10043458|thirst|C0039971|Thirst|| +005343|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Urethral haemorrhage|10049710|Urethral hemorrhage|10055357|urethral hemorrhage|C0241558|Hemorrhage of urethra|| +005344|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Vaginal haemorrhage|10046910|Vaginal hemorrhage|10046912|vaginal hemorrhage|C2979982|Vaginal Hemorrhage|| +005345|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|34084-4|ADVERSE REACTIONS|Ventricular fibrillation|10047290|Ventricular fibrillation|10047290|ventricular fibrillation|C0042510|Ventricular Fibrillation|| +005346|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Affective disorder|10001443|Affective disorder|10001443|affective changes|C0525045|Mood Disorders|| +005347|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt greater than three times the upper limit of normal|C0151905|Alanine aminotransferase increased|| +005348|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Blood potassium increased|10005725|Serum potassium increased|10040379|increased serum potassium|C0553704|Serum potassium increased|| +005349|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Coma|10010071|Coma|10010071|coma|C0009421|Comatose|| +005350|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +005351|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +005352|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +005353|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +005354|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Hypovolaemia|10021137|Hypovolemia|10021139|hypovolemia|C0546884|Hypovolemia|| +005355|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Lethargy|10024264|Lethargy|10024264|lethargy|C0023380|Lethargy|| +005356|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver|| +005357|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Mutism|10028403|Mutism|10028403|mutism|C0026884|Mutism|| +005358|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Osmotic demyelination syndrome|10069350|Osmotic demyelination syndrome|10069350|osmotic demyelination syndrome|C2721559|Osmotic demyelination syndrome|| +005359|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Polyuria|10036142|Diuresis excessive|10013524|aquaresis|C0032617|Polyuria|| +005360|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Quadriparesis|10049680|Spastic quadriparesis|10049707|spastic quadriparesis|C0575059|Spastic tetraparesis|| +005361|5526617c-c7b9-4556-886d-729bbabbc566|SAMSCA|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +005362|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Application site anaesthesia|10003033|Application site anesthesia|10003034|application site anesthesia|C0234943|Application site anesthesia|| +005363|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Application site dermatitis|10003036|Application site dermatitis|10003036|application site dermatitis|C0521495|Application site rash|| +005364|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Application site dryness|10048943|Application site dryness|10048943|application site dryness|C0877098|Application site dryness|| +005365|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Application site erosion|10065577|Application site excoriation|10059006|application site excoriation|C1142498|Application site excoriation|| +005366|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Application site hypoaesthesia|10074585|Application site hypoesthesia|10074589|application site hypoesthesia|C3805045|Application site hypoaesthesia|| +005367|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Application site irritation|10003046|Application site irritation|10003046|application site irritation|C0521490|Application site irritation|| +005368|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Dandruff|10011859|Dandruff|10011859|dandruff|C0221244|Seborrheic dermatitis of scalp|| +005369|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +005370|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Excoriation|10049796|Excoriation|10049796|excoriation|C0015256|Excoriation|| +005371|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Eye irritation|10015946|Eye irritation|10015946|ocular irritation|C0235266|Eye irritation|| +005372|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +005373|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paraesthesia|10033775|paraesthesia|C0030554|Paresthesia|| +005374|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +005375|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Pyoderma|10037632|Pyoderma|10037632|pyoderma|C0034212|Pyoderma|| +005376|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +005377|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Skin exfoliation|10040844|Skin exfoliation|10040844|skin exfoliation|C0237849|Peeling of skin|| +005378|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|34084-4|ADVERSE REACTIONS|Thermal burn|10053615|Thermal burn|10053615|thermal burn|C0701836|Thermal burn|| +005379|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +005380|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|43685-7|WARNINGS AND PRECAUTIONS|Depressed level of consciousness|10012373|Depression central nervous system|10012383|central nervous system depression|C0151559|Central nervous system depression (disorder)|| +005381|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis allergic|10012434|Allergic dermatitis|10001711|allergic dermatitis|C0011615|Dermatitis, Atopic|| +005382|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis contact|10012442|Contact dermatitis|10010790|contact dermatitis|C0011616|Contact Dermatitis|| +005383|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis contact|10012442|Dermatitis irritant contact|10056540|irritant dermatitis|C0162823|Dermatitis, Irritant|| +005384|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Gasping|10017745|gasping respirations|C0425449|Gasping for breath|| +005385|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|43685-7|WARNINGS AND PRECAUTIONS|Eye irritation|10015946|Eye irritation|10015946|eye irritation|C0235266|Eye irritation|| +005386|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|43685-7|WARNINGS AND PRECAUTIONS|Gasping syndrome|10069162|Gasping syndrome|10069162|gasping syndrome|C2609173|Gasping syndrome|| +005387|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension aggravated|10048348|progressive hypotension|C0856090|Hypotension aggravated|| +005388|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|43685-7|WARNINGS AND PRECAUTIONS|Intraventricular haemorrhage|10022840|Intraventricular hemorrhage|10055299|intraventricular hemorrhage|C0240059|Ventricular hemorrhage|| +005389|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|43685-7|WARNINGS AND PRECAUTIONS|Metabolic acidosis|10027417|Metabolic acidosis|10027417|metabolic acidosis|C0220981|Metabolic acidosis|| +005390|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +005391|5754f979-32b7-4406-a3a9-ed36aac6a37a|Ulesfia|43685-7|WARNINGS AND PRECAUTIONS|||||neonatal toxicity|||unmapped| +005392|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +005393|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +005394|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increased|C0151905|Alanine aminotransferase increased|| +005395|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Angina pectoris|10002383|Angina|10002372|angina|C0002962|Angina Pectoris|| +005396|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +005397|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +005398|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +005399|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +005400|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +005401|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Diverticulitis|10013538|Diverticulitis|10013538|diverticulitis|C0012813|Diverticulitis|| +005402|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +005403|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Dry eye|10013774|Dry eyes|10013778|dry eyes|C0314719|Dryness of eye|| +005404|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +005405|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Dry throat|10013789|Dry throat|10013789|dry throat|C0235234|Pharyngeal dryness|| +005406|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +005407|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Dysuria|10013990|Dysuria|10013990|dysuria|C0013428|Dysuria|| +005408|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QT corrected interval prolonged|10014383|qt corrected interval prolongation|C0855333|Electrocardiogram QT corrected interval prolonged|| +005409|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +005410|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Face oedema|10016029|Face edema|10016025|face edema|C0542571|Facial edema|| +005411|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|GGT increased|10056910|ggt increased|C0151662|Gamma-glutamyl transferase raised|| +005412|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Gastroenteritis|10017888|Gastroenteritis|10017888|gastroenteritis|C0017160|Gastroenteritis|| +005413|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +005414|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +005415|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +005416|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Irritable bowel syndrome|10023003|Irritable bowel syndrome|10023003|irritable bowel syndrome|C0022104|Irritable Bowel Syndrome|| +005417|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +005418|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Obstructive airways disorder|10061877|Airways obstruction|10001539|airway obstruction|C0001883|Airway Obstruction|| +005419|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +005420|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +005421|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +005422|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +005423|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +005424|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +005425|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Urinary retention|10046555|Urinary retention|10046555|urinary retention|C0080274|Urinary Retention|| +005426|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +005427|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +005428|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +005429|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema of the larynx|C0002994|Angioedema|duplicate| +005430|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +005431|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|43685-7|WARNINGS AND PRECAUTIONS|Face oedema|10016029|Edema lips & face|10054495|angioedema of the lips|C1304200|Angioedema of lips|duplicate| +005432|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|43685-7|WARNINGS AND PRECAUTIONS|Face oedema|10016029|Face edema|10016025|angioedema of the face|C0743747|FACE ANGIOEDEMA|duplicate| +005433|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|43685-7|WARNINGS AND PRECAUTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +005434|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|43685-7|WARNINGS AND PRECAUTIONS|Laryngeal oedema|10023845|Angioedema of larynx|10002427|angioedema of the larynx|C0023052|Laryngeal Edema|duplicate| +005435|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|43685-7|WARNINGS AND PRECAUTIONS|Nervous system disorder|10029202|Nervous system disorder|10029202|cns anticholinergic effects|C0007682|CNS disorder|| +005436|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|43685-7|WARNINGS AND PRECAUTIONS|Post procedural complication|10058046|Central nervous system complication, not elsewhere classified|10007937|central nervous system effects|C0161815|Central nervous system complication|| +005437|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|43685-7|WARNINGS AND PRECAUTIONS|Respiratory tract oedema|10070774|Airway edema|10070778|upper airway swelling|C2939065|Airway edema|| +005438|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +005439|58a02e8b-93af-45b4-b243-602adbf61699|Toviaz|43685-7|WARNINGS AND PRECAUTIONS|Tongue oedema|10043967|Tongue edema|10043955|angioedema of the tongue|C1304201|Angioedema of tongue|duplicate| +005440|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34066-1|BOXED WARNINGS|Medullary thyroid cancer|10027105|Medullary carcinoma of thyroid|10027101|mtc|C0238462|Medullary carcinoma of thyroid|| +005441|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34066-1|BOXED WARNINGS|Thyroid C-cell hyperplasia|10070568|Thyroid C-cell hyperplasia|10070568|thyroid c-cell tumors|C0342190|C-cell hyperplasia of thyroid|duplicate| +005442|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34066-1|BOXED WARNINGS|Thyroid neoplasm|10043744|Thyroid tumor|10066914|thyroid c-cell tumors|C0040136|Thyroid Neoplasm|duplicate| +005443|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +005444|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +005445|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +005446|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Serum bilirubin increased|10040159|elevated serum bilirubin|C0859062|Serum bilirubin increased|| +005447|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Blood calcitonin increased|10005390|Calcitonin increased|10006943|calcitonin elevations|C0863137|Calcitonin increased|| +005448|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Blood calcitonin increased|10005390|Serum calcitonin increased|10040170|mean serum calcitonin concentrations higher|C0240996|Serum calcitonin increased|| +005449|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Increased serum creatinine|10021678|increased serum creatinine|C0700225|Serum creatinine raised|| +005450|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Blood glucose decreased|10005555|Glucose decreased|10018419|fingerstick glucose <56 mg/dl|C1704381|Glucose decreased|| +005451|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Chronic kidney disease|10064848|Renal failure chronic aggravated|10038445|worsening of chronic renal failure|C0549281|Renal failure chronic aggravated|| +005452|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Colon neoplasm|10061045|Colon neoplasm|10061045|neoplasm colon|C0009375|Colonic Neoplasms|| +005453|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +005454|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +005455|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +005456|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Dermatitis allergic|10012434|Allergic rash|10001717|allergic rash|C0850569|Allergic rash|| +005457|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +005458|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Drug specific antibody present|10013745|Drug specific antibody present|10013745|anti-liraglutide antibody formation|C0853880|Drug specific antibody present|| +005459|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +005460|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal adverse reactions|C0426576|Gastrointestinal symptom|| +005461|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +005462|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Heart rate increased|10019303|Heart rate increased|10019303|increases heart rate|C0039231|Tachycardia|| +005463|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Heart rate increased|10019303|Pulse rate increased|10037490|increase in pulse rate|C0039231|Tachycardia|| +005464|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +005465|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycaemia|10020993|hypoglycemic events|C0020615|Hypoglycemia|| +005466|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +005467|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemic episode|10049635|hypoglycemic episodes|C0745153|Hypoglycaemic episode|| +005468|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +005469|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +005470|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Injection site rash|10022094|Injection site rash|10022094|injection site rash|C0521505|Injection site dermatitis|| +005471|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +005472|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Medullary thyroid cancer|10027105|Medullary carcinoma of thyroid|10027101|medullary thyroid carcinoma|C0238462|Medullary carcinoma of thyroid|| +005473|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Nasopharyngeal cancer|10061306|Malignant nasopharyngeal neoplasm|10025682|neoplasm nasopharyngeal|C0027439|Nasopharyngeal Neoplasms|duplicate| +005474|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Nasopharyngeal neoplasm benign|10028802|Benign nasopharyngeal neoplasm|10004298|neoplasm nasopharyngeal|C0027439|Nasopharyngeal Neoplasms|duplicate| +005475|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +005476|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignant neoplasms|C0006826|Malignant Neoplasms|| +005477|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Neoplasm prostate|10029096|Neoplasm prostate|10029096|neoplasm prostate|C0033578|Prostatic Neoplasms|| +005478|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Pancreatitis acute|10033647|Acute pancreatitis|10000971|acute pancreatitis|C0001339|Acute pancreatitis|| +005479|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Pancreatitis haemorrhagic|10033650|Hemorrhagic pancreatitis|10019607|hemorrhagic pancreatitis|C0267940|Acute hemorrhagic pancreatitis|| +005480|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Pancreatitis necrotising|10033654|Necrotizing pancreatitis|10028891|necrotizing pancreatitis|C0267941|Pancreatitis, Acute Necrotizing|| +005481|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +005482|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Papillary thyroid cancer|10033701|Carcinoma papillary thyroid|10007461|papillary thyroid carcinoma|C0238463|Papillary thyroid carcinoma|| +005483|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Pruritus allergic|10063438|Pruritus allergic|10063438|allergic pruritus|C1504346|Pruritus allergic|| +005484|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +005485|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Thyroid C-cell hyperplasia|10070568|Thyroid C-cell hyperplasia|10070568|thyroid c-cell tumors|C0342190|C-cell hyperplasia of thyroid|duplicate| +005486|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Thyroid neoplasm|10043744|Thyroid tumor|10066914|thyroid c-cell tumors|C0040136|Thyroid Neoplasm|duplicate| +005487|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infections|C0041912|Upper Respiratory Infections|| +005488|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +005489|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +005490|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +005491|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +005492|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema||DrugClass +005493|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Chronic kidney disease|10064848|Renal failure chronic aggravated|10038445|worsening of chronic renal failure|C0549281|Renal failure chronic aggravated|| +005494|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +005495|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +005496|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +005497|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +005498|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +005499|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Medullary thyroid cancer|10027105|Medullary carcinoma of thyroid|10027101|mtc|C0238462|Medullary carcinoma of thyroid|| +005500|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Medullary thyroid cancer|10027105|Medullary thyroid cancer|10027105|malignant thyroid c-cell carcinomas|C0238462|Medullary carcinoma of thyroid||Animal +005501|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +005502|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis acute|10033647|Acute pancreatitis|10000971|acute pancreatitis|C0001339|Acute pancreatitis|| +005503|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis chronic|10033649|Chronic pancreatitis|10009093|chronic pancreatitis|C0149521|Pancreatitis, Chronic|| +005504|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis haemorrhagic|10033650|Hemorrhagic pancreatitis|10019607|hemorrhagic pancreatitis|C0267940|Acute hemorrhagic pancreatitis|| +005505|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis necrotising|10033654|Necrotizing pancreatitis|10028891|necrotizing pancreatitis|C0267941|Pancreatitis, Acute Necrotizing|| +005506|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis necrotising|10033654|Pancreatitis necrotizing|10033655|pancreatitis, with necrosis|C0267941|Pancreatitis, Acute Necrotizing|| +005507|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +005508|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Renal function abnormal|10038451|altered renal function|C0151746|Abnormal renal function|| +005509|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +005510|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Thyroid C-cell hyperplasia|10070568|Thyroid C-cell hyperplasia|10070568|thyroid c-cell adenomas|C0342190|C-cell hyperplasia of thyroid|duplicate|Animal +005511|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Thyroid adenoma|10043688|Thyroid adenoma|10043688|thyroid c-cell adenomas|C0151468|Thyroid Gland Follicular Adenoma|duplicate|Animal +005512|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Thyroid cancer|10066474|Thyroid carcinoma|10043702|thyroid c-cell carcinomas|C0549473|Thyroid carcinoma|duplicate|Animal +005513|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Thyroid neoplasm|10043744|Thyroid tumor|10066914|thyroid c-cell tumors|C0040136|Thyroid Neoplasm|duplicate| +005514|5a9ef4ea-c76a-4d34-a604-27c5b505f5a4|Victoza|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +005515|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Application site infection|10049041|Application site infection|10049041|application site infection|C0521496|Application site infection|| +005516|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Application site irritation|10003046|Application site irritation|10003046|application site irritation|C0521490|Application site irritation|| +005517|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Application site pain|10003051|Application site pain|10003051|application site pain|C0521491|Application site pain|| +005518|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Application site pruritus|10003053|Application site pruritus|10003053|application site pruritus|C0853714|Application site pruritus|| +005519|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Blister|10005191|Vesicles|10047368|skin vesiculation|C3814530|Skin Vesicle|| +005520|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Chemical eye injury|10055116|Chemical conjunctivitis|10055119|chemical conjunctivitis|C0149866|Chemical conjunctivitis|| +005521|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +005522|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Dermatitis contact|10012442|Allergic contact dermatitis|10056265|allergic contact dermatitis|C0162820|Dermatitis, Allergic Contact|| +005523|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Drug eruption|10013687|Drug eruption vesicular|10013694|local skin vesiculation|C0858702|Drug eruption vesicular|duplicate| +005524|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Erythema|10015150|Skin erythema|10040842|local skin erythema|C0041834|Erythema|| +005525|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Eye burns|10015911|Corneal burn|10068161|corneal burn|C0239116|Corneal burn|| +005526|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Eye pain|10015958|Eye pain|10015958|eye pain|C0151827|Eye pain|| +005527|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Eye symptom|10075536|Eye symptom|10075536|ophthalmic adverse reaction|C1557306|Adverse Event Associated with Ocular and Visual Systems|| +005528|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Eyelid oedema|10015993|Eyelid edema|10015985|eyelid edema|C0162285|Edema of eyelid|| +005529|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +005530|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +005531|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +005532|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +005533|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +005534|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Periorbital oedema|10034545|Periorbital edema|10054541|periorbital edema|C0151205|Periorbital edema|| +005535|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Rash pustular|10037888|Pustule|10037578|skin pustulation|C0241157|pustule|| +005536|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Scab|10039509|Crust|10011468|skin crusting|C0423777|Crust on skin|| +005537|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Skin erosion|10040840|Skin erosion|10040840|local skin erosion|C3887524|Skin Erosion|| +005538|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Skin exfoliation|10040844|Flaking skin|10016749|skin flaking|C0237849|Peeling of skin|| +005539|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Skin exfoliation|10040844|Skin peeling|10040908|skin scaling|C0237849|Peeling of skin|| +005540|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Localised skin reaction|10024777|local skin pustulation|C0549452|Localised skin reaction|duplicate| +005541|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|local skin vesiculation|C0080159|Vesicular Skin Diseases|duplicate| +005542|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Skin swelling|10053262|Skin swelling|10053262|local skin swelling|C0281982|Swelling of skin|| +005543|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Skin ulcer|10040943|Skin ulceration|10040947|skin ulceration|C0037299|Skin Ulcer|| +005544|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|34084-4|ADVERSE REACTIONS|Skin ulcer|10040943|Skin ulcer|10040943|local skin ulceration|C0037299|Skin Ulcer|| +005545|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +005546|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Application site erosion|10065577|Application site erosion|10065577|skin reactions in the treated area erosion|C1696574|Application site erosion|| +005547|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Application site erythema|10003041|Application site erythema|10003041|skin reactions in the treated area erythema|C0853700|Application site erythema|| +005548|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Application site pustules|10049044|Application site pustules|10049044|skin reactions in the treated area postulation|C0877128|Application site pustules|| +005549|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Application site scab|10066209|Application site scab|10066209|skin reactions in the treated area crusting|C0948300|Application site scab|| +005550|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Application site swelling|10053424|Application site swelling|10053424|skin reactions in the treated area swelling|C1096001|Application site swelling|| +005551|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Application site ulcer|10003059|Application site ulcer|10003059|skin reactions in the treated area ulceration|C0521492|Application site ulcer|| +005552|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Application site vesicles|10048941|Application site vesicles|10048941|skin reactions in the treated area vesiculation|C0877097|Application site vesicles|| +005553|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Chemical eye injury|10055116|Chemical conjunctivitis|10055119|chemical conjunctivitis|C0149866|Chemical conjunctivitis|| +005554|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis contact|10012442|Allergic contact dermatitis|10056265|allergic contact dermatitis|C0162820|Dermatitis, Allergic Contact|| +005555|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Drug eruption|10013687|Drug eruption vesicular|10013694|local skin vesiculation|C0858702|Drug eruption vesicular|duplicate| +005556|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Eye burns|10015911|Corneal burn|10068161|corneal burn|C0239116|Corneal burn|| +005557|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Eye disorder|10015916|Eye disorder|10015916|eye disorders|C0015397|Disorder of eye|| +005558|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Eye pain|10015958|Eye pain|10015958|eye pain|C0151827|Eye pain|| +005559|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Eyelid oedema|10015993|Eyelid edema|10015985|eyelid edema|C0162285|Edema of eyelid|| +005560|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Eyelid ptosis|10015995|Eyelid ptosis|10015995|eyelid ptosis|C0005745|Blepharoptosis|| +005561|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +005562|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Periorbital oedema|10034545|Periorbital edema|10054541|periorbital edema|C0151205|Periorbital edema|| +005563|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Rash pustular|10037888|Pustule|10037578|local skin pustulation|C0241157|pustule|duplicate| +005564|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Skin erosion|10040840|Skin erosion|10040840|local skin erosion|C3887524|Skin Erosion|| +005565|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Localised skin reaction|10024777|local skin pustulation|C0549452|Localised skin reaction|duplicate| +005566|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|local skin vesiculation|C0080159|Vesicular Skin Diseases|duplicate| +005567|5accc7a5-8209-4680-b0ae-2a6963500419|Picato|43685-7|WARNINGS AND PRECAUTIONS|Skin ulcer|10040943|Skin ulcer|10040943|local skin ulceration|C0037299|Skin Ulcer|| +005568|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34066-1|BOXED WARNINGS|Asthma|10003553|Asthma|10003553|asthma|C0004096|Asthma|| +005569|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +005570|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +005571|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Asthma|10003553|Asthma|10003553|asthma|C0004096|Asthma||DrugClass +005572|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +005573|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +005574|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +005575|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Chronic obstructive pulmonary disease|10009033|COPD exacerbation|10010953|copd exacerbation|C0740304|COPD exacerbation|| +005576|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +005577|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +005578|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)||DrugClass +005579|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +005580|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +005581|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Lung neoplasm malignant|10058467|Lung cancer|10025044|lung cancers|C0242379|Malignant neoplasm of lung|| +005582|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +005583|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +005584|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +005585|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +005586|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +005587|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +005588|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +005589|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Arrhythmia|10003119|Cardiac arrhythmia|10007518|cardiac arrhythmias|C0003811|Cardiac Arrhythmia|| +005590|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Asthma|10003553|Asthma|10003553|asthma|C0004096|Asthma|| +005591|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Blood glucose fluctuation|10049803|Blood glucose fluctuation|10049803|changes in blood glucose|C0877314|Blood glucose fluctuation|| +005592|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Blood glucose increased|10005557|Blood glucose increased|10005557|increases in plasma glucose|C0595877|Blood glucose increased||DrugClass +005593|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Blood potassium decreased|10005724|Serum potassium decreased|10040378|decrease in serum potassium|C0595885|Serum potassium decreased|| +005594|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure diastolic increased|10005739|Blood pressure diastolic increased|10005739|increases in diastolic blood pressure|C0277889|Increased diastolic arterial pressure|| +005595|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure systolic increased|10005760|Blood pressure systolic increased|10005760|increases in systolic blood pressure|C0277884|Increased systolic arterial pressure|| +005596|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Bronchospasm paradoxical|10006486|Paradoxical bronchospasm|10033770|paradoxical bronchospasm|C0236072|Paradoxical bronchospasm|| +005597|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular effects|C0476270|Cardiovascular symptoms|| +005598|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +005599|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Diabetes mellitus|10012601|Diabetes mellitus aggravated|10012603|aggravate pre-existing diabetes mellitus|C0235398|Diabetes mellitus exacerbated||DrugClass +005600|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|prolongation of the qtc interval|C0855333|Electrocardiogram QT corrected interval prolonged||DrugClass +005601|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram ST segment depression|10014391|ST segment depression|10041892|st segment depression|C0520887|ST segment depression (finding)||DrugClass +005602|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram T wave amplitude decreased|10014394|T wave flattening of|10042965|flattening of the t wave|C0429059|Flattened T wave (finding)||DrugClass +005603|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram change|10061116|Change in ECG|10008396|ecg changes|C0855329|Electrocardiographic changes||DrugClass +005604|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Heart rate increased|10019303|Pulse rate increased|10037490|increases in pulse rate|C0039231|Tachycardia|| +005605|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +005606|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Hypoxia|10021143|Hypoxia|10021143|hypoxia|C0242184|Hypoxia|| +005607|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Ketoacidosis|10023379|Ketoacidosis|10023379|aggravate pre-existing ketoacidosis|C0220982|Ketoacidosis||DrugClass +005608|5d9a5433-857e-44ea-b3d6-2a400ca0cef5|Striverdi|43685-7|WARNINGS AND PRECAUTIONS|Type I hypersensitivity|10045240|Immediate hypersensitivity reaction|10021414|immediate hypersensitivity reactions|C0020523|Immediate hypersensitivity|| +005609|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +005610|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +005611|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Acute leukaemia|10000830|Acute leukemia|10000835|acute leukemia|C0085669|Acute leukemia|| +005612|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Acute myeloid leukaemia|10000880|Acute myeloid leukemia|10000886|acute myeloid leukemia|C0023467|Leukemia, Myelocytic, Acute|| +005613|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +005614|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +005615|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +005616|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +005617|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +005618|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|increase in creatinine|C0151578|Creatinine increased|| +005619|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Cerebrovascular accident|10008190|Cerebrovascular accident|10008190|cerebrovascular accident|C0038454|Cerebrovascular accident|| +005620|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Chronic obstructive pulmonary disease|10009033|COPD|10010952|copd|C0024117|Chronic Obstructive Airway Disease|| +005621|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +005622|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +005623|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +005624|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +005625|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +005626|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +005627|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +005628|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +005629|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +005630|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +005631|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +005632|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +005633|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Dysuria|10013990|Dysuria|10013990|dysuria|C0013428|Dysuria|| +005634|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Eczema|10014184|Eczema|10014184|eczema|C0013595|Eczema|| +005635|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +005636|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decrease in hemoglobin|C0162119|Hemoglobin low|| +005637|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +005638|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +005639|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +005640|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +005641|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +005642|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +005643|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Intestinal perforation|10022694|Intestinal perforation|10022694|intestinal perforation|C0021845|Intestinal Perforation|| +005644|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Lethargy|10024264|Lethargy|10024264|lethargy|C0023380|Lethargy|| +005645|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +005646|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Lymphocyte count decreased|10025256|Lymphocyte count decreased|10025256|decrease in lymphocytes|C0853986|Lymphocyte count decreased|| +005647|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +005648|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Mean cell volume increased|10027004|Mean corpuscular volume increased|10051859|mean corpuscular volume elevation|C0302845|MCV - raised|| +005649|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +005650|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +005651|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Myelodysplastic syndrome|10028533|Myelodysplastic syndrome|10028533|myelodysplastic syndrome|C3463824|MYELODYSPLASTIC SYNDROME|| +005652|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +005653|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +005654|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +005655|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +005656|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Absolute neutrophil count decreased|10059234|decrease in absolute neutrophil count|C1168174|Absolute neutrophil count decreased|| +005657|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +005658|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Pharyngitis|10034835|Pharyngitis|10034835|pharyngitis|C0031350|Pharyngitis|| +005659|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelets decreased|10035545|decrease in platelets|C0392386|Decreased platelet count|| +005660|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +005661|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritis|C0033774|Pruritus|| +005662|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +005663|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +005664|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +005665|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +005666|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +005667|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Suture rupture|10048547|Suture rupture|10048547|suture rupture|C0856166|Suture rupture|| +005668|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +005669|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|uri|C0041912|Upper Respiratory Infections|| +005670|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Urinary incontinence|10046543|Urinary incontinence|10046543|urinary incontinence|C0042024|Urinary Incontinence|| +005671|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +005672|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Venous thrombosis|10047249|Venous thrombosis|10047249|venous thrombosis|C0042487|Venous Thrombosis|| +005673|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +005674|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|34084-4|ADVERSE REACTIONS|Vulvovaginal disorder|10047787|Vulvovaginal disorder|10047787|vulvovaginal disorder|C0152008|Vulvovaginal disease|| +005675|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|43685-7|WARNINGS AND PRECAUTIONS|Acute myeloid leukaemia|10000880|AML|10001941|aml|C0023467|Leukemia, Myelocytic, Acute|| +005676|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|43685-7|WARNINGS AND PRECAUTIONS|Acute myeloid leukaemia|10000880|Acute myeloid leukemia|10000886|acute myeloid leukemia|C0023467|Leukemia, Myelocytic, Acute|| +005677|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|43685-7|WARNINGS AND PRECAUTIONS|Acute myeloid leukaemia|10000880|Treatment related acute myeloid leukemia|10066353|cancer-therapy related aml|C1336735|Treatment related acute myeloid leukaemia|| +005678|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +005679|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +005680|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk||Animal +005681|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|43685-7|WARNINGS AND PRECAUTIONS|Myelodysplastic syndrome|10028533|Myelodysplastic syndrome|10028533|mds|C3463824|MYELODYSPLASTIC SYNDROME|| +005682|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +005683|5e31a6a9-864f-4aba-8085-37ee1ddcd499|Lynparza|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenic|C0232910|Teratogenesis||Animal +005684|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +005685|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +005686|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +005687|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +005688|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +005689|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +005690|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|bone marrow suppression|C0854467|Myelosuppression|| +005691|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Cardio-respiratory arrest|10007617|Cardiopulmonary arrest|10007644|cardiopulmonary arrest|C0600228|Cardiopulmonary Arrest|| +005692|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +005693|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +005694|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +005695|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +005696|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +005697|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +005698|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +005699|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +005700|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +005701|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +005702|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Gastrointestinal inflammation|10064147|Gastrointestinal inflammation|10064147|mucosal inflammation of the gastrointestinal tracts|C1535950|Gastrointestinal inflammation|duplicate| +005703|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Genital tract inflammation|10058821|Genital tract inflammation|10058821|mucosal inflammation of the genitourinary tracts|C1142419|Genital tract inflammation|triplicate| +005704|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatic toxicity|C0348754|Toxic liver disease|| +005705|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +005706|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Laryngeal pain|10023848|Pharyngolaryngeal pain|10034844|pharyngolaryngeal pain|C0858635|Pharyngolaryngeal pain|| +005707|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +005708|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Liver function test abnormal|10024690|Liver function test abnormal|10024690|liver function test abnormal|C0151766|Liver function tests abnormal finding|| +005709|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Mucosal inflammation|10028116|Mucosal inflammation NOS|10028117|mucosal inflammation of the gastrointestinal tracts|C0333355|Inflammatory disease of mucous membrane|duplicate| +005710|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Mucosal inflammation|10028116|Mucositis|10028127|mucositis|C0333355|Inflammatory disease of mucous membrane|| +005711|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +005712|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +005713|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Night sweats|10029410|Night sweats|10029410|night sweats|C0028081|Night sweats|| +005714|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +005715|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +005716|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +005717|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Low platelets|10024922|platelets < 10,000/mcl|C0392386|Decreased platelet count|| +005718|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +005719|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +005720|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +005721|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +005722|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|dermatologic reactions|C0221743|Skin reaction|| +005723|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +005724|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +005725|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +005726|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +005727|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminases increased|C0438717|Transaminases increased|| +005728|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +005729|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +005730|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Urinary tract inflammation|10064921|Urinary tract inflammation|10064921|mucosal inflammation of the genitourinary tracts|C1610066|Urinary tract inflammation|triplicate| +005731|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +005732|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +005733|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|bone marrow suppression|C0854467|Myelosuppression|| +005734|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +005735|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Drug level increased|10013722|Drug level increased|10013722|increased exposure|C0151599|Drug level increased|| +005736|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +005737|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatic toxicity|C0348754|Toxic liver disease|| +005738|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Liver function test abnormal|10024690|Liver function tests multiple abnorm|10024694|liver function test abnormalities|C0151766|Liver function tests abnormal finding|| +005739|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryotoxic|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk||Animal +005740|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Mucosal inflammation|10028116|Mucositis|10028127|mucositis|C0333355|Inflammatory disease of mucous membrane|| +005741|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +005742|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Skin exfoliation|10040844|Skin exfoliation|10040844|skin exfoliation|C0237849|Peeling of skin|| +005743|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|dermatologic reactions|C0221743|Skin reaction|| +005744|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Skin ulcer|10040943|Skin ulceration|10040947|skin ulceration|C0037299|Skin Ulcer|| +005745|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +005746|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|TEN|10043221|ten|C0014518|Toxic Epidermal Necrolysis|| +005747|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +005748|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Toxicity to various agents|10070863|Drug toxicity|10013746|increased toxicity|C0013221|Drug toxicity|| +005749|5e4cf15b-bf7b-4b83-863e-e9ef27741a51|Folotyn|43685-7|WARNINGS AND PRECAUTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tls|C0041364|Tumor Lysis Syndrome|| +005750|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34066-1|BOXED WARNINGS|Medullary thyroid cancer|10027105|Medullary carcinoma of thyroid|10027101|medullary thyroid carcinoma|C0238462|Medullary carcinoma of thyroid|| +005751|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34066-1|BOXED WARNINGS|Thyroid C-cell hyperplasia|10070568|Thyroid C-cell hyperplasia|10070568|thyroid c-cell tumors|C0342190|C-cell hyperplasia of thyroid|duplicate| +005752|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34066-1|BOXED WARNINGS|Thyroid cancer stage 0|10070567|C-cell hyperplasia neoplastic|10070572|c-cell tumors|C1709166|Neoplastic C-Cell Hyperplasia||Animal;DrugClass +005753|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34066-1|BOXED WARNINGS|Thyroid neoplasm|10043744|Thyroid tumor|10066914|thyroid c-cell tumors|C0040136|Thyroid Neoplasm|duplicate| +005754|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Distress gastrointestinal|10013491|gastrointestinal complaints|C0548823|Distress gastrointestinal|| +005755|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevation in alt|C0151905|Alanine aminotransferase increased|| +005756|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increase|10001550|alanine aminotransferase increase|C0151905|Alanine aminotransferase increased|| +005757|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Appendicitis|10003011|Appendicitis|10003011|appendicitis|C0003615|Appendicitis|| +005758|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +005759|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +005760|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Atrial flutter|10003662|Atrial flutter|10003662|atrial flutter|C0004239|Atrial Flutter|| +005761|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +005762|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|increase in total bilirubin|C0741494|Elevated total bilirubin|| +005763|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Blood glucose decreased|10005555|Plasma glucose decreased|10035305|plasma glucose concentration <=70 mg/dl|C0860802|Plasma glucose decreased|| +005764|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +005765|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +005766|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +005767|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +005768|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|GGT increased|10056910|increased ggt|C0151662|Gamma-glutamyl transferase raised|| +005769|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal adverse reactions|C0426576|Gastrointestinal symptom|| +005770|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Reaction gastrointestinal|10037947|gi reactions|C0542184|Reaction gastrointestinal|| +005771|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +005772|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Heart rate increased|10019303|Heart rate increased|10019303|increase in heart rate|C0039231|Tachycardia|| +005773|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Hepatocellular injury|10019837|Hepatocellular injury|10019837|hepatocellular injury|C0151763|Liver damage|| +005774|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +005775|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycaemia|10020993|hypoglycemic symptoms|C0020615|Hypoglycemia|| +005776|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +005777|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemic episode|10049635|hypoglycemic episode|C0745153|Hypoglycaemic episode|| +005778|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +005779|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +005780|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Injection site haematoma|10022066|Injection site hematoma|10055371|injection site hematoma|C0542008|Injection site haematoma|| +005781|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Injection site haemorrhage|10022067|Injection site hemorrhage|10022068|injection site hemorrhage|C0151698|Injection site hemorrhage|| +005782|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Injection site hypersensitivity|10022071|Injection site hypersensitivity|10022071|injection site hypersensitivity|C0151726|Injection site hypersensitivity|| +005783|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|injection site pruritus|C0852995|Injection site pruritus|| +005784|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Injection site rash|10022094|Injection site rash|10022094|injection site rash|C0521505|Injection site dermatitis|| +005785|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reaction|C0151735|Injection site reaction|| +005786|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +005787|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Pancreatitis acute|10033647|Acute pancreatitis|10000971|acute pancreatitis|C0001339|Acute pancreatitis|| +005788|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +005789|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +005790|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +005791|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Thyroid C-cell hyperplasia|10070568|Thyroid C-cell hyperplasia|10070568|thyroid c-cell tumors|C0342190|C-cell hyperplasia of thyroid|duplicate| +005792|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Thyroid neoplasm|10043744|Thyroid tumor|10066914|thyroid c-cell tumors|C0040136|Thyroid Neoplasm|duplicate| +005793|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +005794|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +005795|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute||DrugClass +005796|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Chronic kidney disease|10064848|Renal failure chronic aggravated|10038445|worsening of chronic renal failure|C0549281|Renal failure chronic aggravated||DrugClass +005797|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +005798|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +005799|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +005800|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal disorder|10017944|Reaction gastrointestinal|10037947|gastrointestinal reactions|C0542184|Reaction gastrointestinal|| +005801|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +005802|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +005803|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Medullary thyroid cancer|10027105|Medullary carcinoma of thyroid|10027101|mtc|C0238462|Medullary carcinoma of thyroid|| +005804|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +005805|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis acute|10033647|Acute pancreatitis|10000971|acute pancreatitis|C0001339|Acute pancreatitis|| +005806|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +005807|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +005808|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +005809|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Function kidney decreased|10017474|renal function declined|C0232807|Decreased renal function|| +005810|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +005811|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Thyroid C-cell hyperplasia|10070568|Thyroid C-cell hyperplasia|10070568|thyroid c-cell tumors|C0342190|C-cell hyperplasia of thyroid|duplicate| +005812|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Thyroid adenoma|10043688|Thyroid adenoma|10043688|thyroid c-cell adenomas|C0151468|Thyroid Gland Follicular Adenoma|duplicate|Animal;DrugClass +005813|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Thyroid cancer stage 0|10070567|C-cell hyperplasia neoplastic|10070572|c-cell tumors|C1709166|Neoplastic C-Cell Hyperplasia||Animal;DrugClass +005814|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Thyroid cancer|10066474|Thyroid carcinoma|10043702|thyroid c-cell carcinomas|C0549473|Thyroid carcinoma|duplicate|Animal;DrugClass +005815|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Thyroid neoplasm|10043744|Thyroid tumor|10066914|thyroid c-cell tumors|C0040136|Thyroid Neoplasm|duplicate| +005816|5fcad939-76e7-49cf-af94-4e6aef17901f|Tanzeum|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +005817|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34066-1|BOXED WARNINGS|Hepatic failure|10019663|Hepatic decompensation|10076894|hepatic decompensation|C1394798|hepatic; decompensation|| +005818|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +005819|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +005820|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increased|C0151905|Alanine aminotransferase increased|| +005821|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +005822|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +005823|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +005824|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increased ast|C0151904|Aspartate aminotransferase increased|| +005825|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +005826|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +005827|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Blood alkaline phosphatase increased|10059570|blood alkaline phosphatase increased|C0852911|Blood alkaline phosphatase increased|| +005828|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|total bilirubin greater than or equal to 1.5 x uln|C0741494|Elevated total bilirubin|| +005829|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Cataract|10007739|Cataracts|10007771|cataracts|C0086543|Cataract|| +005830|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Cataract|10007739|Cataract|10007739|cataract|C0086543|Cataract|| +005831|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +005832|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Chromosome analysis abnormal|10008817|Chromosome analysis abnormal|10008817|changes in chromosome 7|C0476431|Abnormal Karyotype|underspecified| +005833|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +005834|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Cytogenetic abnormality|10067477|Cytogenetic abnormality|10067477|cytogenetic abnormality|C0008626|Congenital chromosomal disease|| +005835|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +005836|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +005837|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +005838|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +005839|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +005840|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Ecchymosis|10014080|Ecchymosis|10014080|ecchymosis|C0013491|Ecchymosis|| +005841|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Embolism|10061169|Thromboembolic event|10043565|thromboembolic complications|C0040038|Thromboembolism|| +005842|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +005843|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +005844|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhagic reactions|C0019080|Hemorrhage|| +005845|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +005846|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Hepatic failure|10019663|Hepatic decompensation|10076894|hepatic decompensation|C1394798|hepatic; decompensation|| +005847|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +005848|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Hyperbilirubinaemia|10020578|Hyperbilirubinemia|10020582|hyperbilirubinemia|C0020433|Hyperbilirubinemia|| +005849|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Influenza like illness|10022004|Influenza like illness|10022004|influenza-like illness|C0521839|Influenza-like illness|| +005850|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +005851|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +005852|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Liver function test abnormal|10024690|Liver function test abnormal|10024690|hepatobiliary laboratory abnormalities|C0151766|Liver function tests abnormal finding|underspecified| +005853|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Liver function test abnormal|10024690|Liver function tests multiple abnorm|10024694|liver test abnormalities|C0151766|Liver function tests abnormal finding|| +005854|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +005855|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +005856|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +005857|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +005858|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +005859|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +005860|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +005861|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +005862|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +005863|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Pharyngitis|10034835|Pharyngitis|10034835|pharyngitis|C0031350|Pharyngitis|| +005864|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Portal vein thrombosis|10036206|Portal vein thrombosis|10036206|portal vein thromboses|C0155773|Portal vein thrombosis|| +005865|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +005866|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +005867|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +005868|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +005869|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Rhinorrhoea|10039101|Rhinorrhea|10039100|rhinorrhea|C1260880|Rhinorrhea|| +005870|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Thrombosis|10043607|Thrombosis|10043607|thrombotic complications|C0040053|Thrombosis|| +005871|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Thrombotic microangiopathy|10043645|Thrombotic microangiopathy|10043645|thrombotic microangiopathy|C2717961|Thrombotic Microangiopathies|| +005872|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Toothache|10044055|Toothache|10044055|toothache|C0040460|Toothache|| +005873|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminases increased|C0438717|Transaminases increased|| +005874|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +005875|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +005876|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Vitamin D deficiency|10047626|Vitamin D deficiency|10047626|vitamin d deficiency|C0042870|Vitamin D Deficiency|| +005877|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +005878|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +005879|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Arterial thrombosis|10003178|Arterial thrombosis|10003178|thrombotic arterial events|C0151942|Arterial thrombosis|| +005880|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Ascites|10003445|Ascites|10003445|ascites|C0003962|Ascites|| +005881|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Cataract|10007739|Cataracts|10007771|cataracts|C0086543|Cataract||Animal +005882|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +005883|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|thromboembolic venous events|C1861172|Venous Thromboembolism|| +005884|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Embolism|10061169|Thromboembolic event|10043565|thromboembolic complications|C0040038|Thromboembolism|| +005885|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Encephalopathy|10014625|Encephalopathy|10014625|encephalopathy|C0085584|Encephalopathies|| +005886|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|liver enzyme elevations|C0235996|Elevated liver enzymes|| +005887|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic decompensation|10076894|hepatic decompensation|C1394798|hepatic; decompensation|| +005888|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Hepatic vein thrombosis|10019713|Hepatic vein thrombosis|10019713|thrombotic events of the portal venous system|C0019154|Hepatic Vein Thrombosis|| +005889|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +005890|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Hyperbilirubinaemia|10020578|Indirect hyperbilirubinemia|10075817|indirect hyperbilirubinemia|C0268306|Unconjugated hyperbilirubinemia|| +005891|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +005892|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Platelet count increased|10051608|Platelet count increased|10051608|increases in platelet counts|C0857460|Increased number of platelets|| +005893|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Portal vein thrombosis|10036206|Portal vein thrombosis|10036206|pvt|C0155773|Portal vein thrombosis|| +005894|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Thrombosis|10043607|Thrombosis|10043607|thrombotic complications|C0040053|Thrombosis|| +005895|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Venous thrombosis|10047249|Venous thrombosis|10047249|thrombotic venous events|C0042487|Venous Thrombosis|| +005896|616224ff-a925-4b38-9ca2-00fbf669380f|PROMACTA|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +005897|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +005898|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34066-1|BOXED WARNINGS|Fibrosis|10016642|Fibrosis|10016642|fibrosis|C0016059|Fibrosis|| +005899|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34066-1|BOXED WARNINGS|Nephrogenic systemic fibrosis|10067467|Nephrogenic systemic fibrosis|10067467|nephrogenic systemic fibrosis|C3888044|Nephrogenic Systemic Fibrosis|| +005900|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +005901|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Akathisia|10001540|Akathisia|10001540|akathisia|C0392156|Akathisia|| +005902|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Anaphylactic shock|10002199|Anaphylactic shock|10002199|anaphylacticshock|C0002792|anaphylaxis|| +005903|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +005904|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Serum bilirubin increased|10040159|elevation of serum bilirubin|C0859062|Serum bilirubin increased|| +005905|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Blood iron increased|10005620|Serum iron increased|10040310|elevation of serum iron|C0151900|Serum iron raised|| +005906|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|blood pressure increased|C0497247|Increase in blood pressure|| +005907|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Bundle branch block|10006578|Bundle branch block|10006578|bundle branch block|C0006384|Bundle-Branch Block|| +005908|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +005909|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +005910|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +005911|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +005912|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Discomfort|10013082|Discomfort|10013082|discomfort|C0234215|Sensory Discomfort|| +005913|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +005914|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +005915|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +005916|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +005917|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Eye pruritus|10052140|Eye pruritus|10052140|pruritus eye|C0022281|Itching of eye|| +005918|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Face oedema|10016029|Face edema|10016025|face edema|C0542571|Facial edema|| +005919|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +005920|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Feeling abnormal|10016322|Feeling abnormal|10016322|feeling abnormal|C1443060|Feeling abnormal|| +005921|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Feeling hot|10016334|Feeling hot|10016334|feeling hot|C2939147|Feels hot|| +005922|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +005923|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +005924|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +005925|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +005926|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +005927|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +005928|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Injection site coldness|10050082|Injection site coldness|10050082|injection site coldness|C0919593|Injection site coldness|| +005929|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Injection site extravasation|10022062|Injection site extravasation|10022062|injection site extravasation|C0521500|Injection site extravasation|| +005930|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Injection site irritation|10022079|Injection site irritation|10022079|injection site irritation|C0521498|Injection site irritation|| +005931|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site burning|10022053|injection site burning|C0521503|Injection site burning|| +005932|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +005933|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +005934|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Laryngeal oedema|10023845|Laryngeal edema|10023838|pharyngolaryngeal edema|C0023052|Laryngeal Edema|duplicate| +005935|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +005936|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +005937|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Nephrogenic systemic fibrosis|10067467|Nephrogenic systemic fibrosis|10067467|nephrogenic systemic fibrosis|C3888044|Nephrogenic Systemic Fibrosis|| +005938|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Oral discomfort|10030973|Oral discomfort|10030973|oral discomfort|C0399459|Discomfort in mouth|| +005939|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Pallor|10033546|Pallor|10033546|pallor|C0030232|Pallor|| +005940|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitation|10033556|palpitation|C0030252|Palpitations|| +005941|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +005942|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Parosmia|10034018|Parosmia|10034018|parosmia|C1510410|Sense of smell altered|| +005943|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Pharyngeal oedema|10034829|Pharyngeal edema|10054544|pharyngolaryngeal edema|C0236024|Edema of pharynx|duplicate| +005944|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Pruritus generalised|10052576|Pruritus generalized|10037092|pruritus generalized|C0475858|Generalized pruritus|| +005945|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Maculopapular rash|10025424|maculopapular rash|C0423791|Maculopapular eruption|| +005946|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +005947|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Respiratory disorder|10038683|Respiratory disorder|10038683|respiratory disorders|C0035204|Respiration Disorders|| +005948|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Respiratory distress|10038687|Respiratory distress|10038687|respiratory distress|C0476273|Respiratory distress|| +005949|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Restlessness|10038743|Restlessness|10038743|restlessness|C3887611|Restlessness|| +005950|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +005951|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Salivary hypersecretion|10039424|Salivary hypersecretion|10039424|salivary hypersecretion|C0037036|Sialorrhea|| +005952|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Sneezing|10041232|Sneezing|10041232|sneezing|C0037383|Sneezing|| +005953|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +005954|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +005955|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +005956|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +005957|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +005958|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute kidney injury|10069339|acute kidney injury|C2609414|Acute kidney injury|| +005959|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +005960|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactoid reaction|10002216|Anaphylactoid reaction|10002216|anaphylactoid reactions|C0340865|Anaphylactoid reaction|| +005961|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular manifestations|C0476270|Cardiovascular symptoms|| +005962|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|43685-7|WARNINGS AND PRECAUTIONS|Cutaneous symptom|10075531|Cutaneous symptom|10075531|cutaneous manifestations|C0037285|Skin Manifestations|| +005963|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +005964|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|43685-7|WARNINGS AND PRECAUTIONS|Fibrosis|10016642|Fibrosis|10016642|fibrosis|C0016059|Fibrosis|| +005965|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +005966|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|43685-7|WARNINGS AND PRECAUTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site local tissue reactions|C0151735|Injection site reaction|duplicate| +005967|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|43685-7|WARNINGS AND PRECAUTIONS|Local reaction|10024769|Local reaction|10024769|injection site local tissue reactions|C0853813|Local reaction|duplicate| +005968|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|43685-7|WARNINGS AND PRECAUTIONS|Nephrogenic systemic fibrosis|10067467|Nephrogenic systemic fibrosis|10067467|nsf|C3888044|Nephrogenic Systemic Fibrosis|| +005969|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|43685-7|WARNINGS AND PRECAUTIONS|Respiratory symptom|10075535|Respiratory symptom|10075535|respiratory manifestations|C0037090|Signs and Symptoms, Respiratory|| +005970|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|43685-7|WARNINGS AND PRECAUTIONS|Shock|10040560|Shock|10040560|shock|C0036974|Shock|| +005971|6218b1e1-cbc3-4c14-bec7-528ac163a561|EOVIST|43685-7|WARNINGS AND PRECAUTIONS|Type IV hypersensitivity reaction|10053613|Delayed type hypersensitivity|10012210|hypersensitivity delayed reactions|C0020522|Delayed Hypersensitivity|| +005972|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +005973|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Upper abdominal pain|10046272|upper abdominal pain|C0232492|Upper abdominal pain|| +005974|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +005975|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Abnormal dreams|10000125|Abnormal dreams|10000125|abnormal dreams|C0234458|Dream disorder|| +005976|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Alanine aminotransferase abnormal|10001547|Alanine aminotransferase abnormal|10001547|alt abnormalities|C0855619|Alanine aminotransferase abnormal|| +005977|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevated alt|C0151905|Alanine aminotransferase increased|| +005978|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase abnormal|10003477|Aspartate aminotransferase abnormal|10003477|ast abnormalities|C0855623|Aspartate aminotransferase abnormal|| +005979|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|elevated total bilirubin|C0741494|Elevated total bilirubin|| +005980|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Blood cholesterol increased|10005425|Cholesterol levels raised|10008663|elevated cholesterol|C1522133|Hypercholesterolemia result|| +005981|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|Creatine kinase increased|10011336|elevated creatine kinase|C0151576|Elevated creatine kinase|| +005982|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|creatinine increases|C0151578|Creatinine increased|| +005983|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|increase serum creatinine|C0700225|Serum creatinine raised|| +005984|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Completed suicide|10010144|Completed suicide|10010144|suicidal completion|C0852733|Completed Suicide|| +005985|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +005986|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +005987|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +005988|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Drug eruption|10013687|Drug eruption|10013687|drug eruption|C0011609|Drug Eruptions|| +005989|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Fat redistribution|10048474|Fat redistribution|10048474|fat redistribution|C0856151|Fat redistribution|| +005990|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +005991|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +005992|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +005993|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|liver chemistry elevations|C0235996|Elevated liver enzymes|| +005994|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +005995|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +005996|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +005997|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Immune reconstitution inflammatory syndrome|10065042|Immune reconstitution syndrome|10054014|immune reconstitution syndrome|C1096197|Immune reconstitution syndrome|| +005998|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +005999|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Lipase increased|10024574|Lipase increased|10024574|elevated lipase|C1963823|Hyperlipasaemia|| +006000|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Myositis|10028653|Myositis|10028653|myositis|C0027121|Myositis|| +006001|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006002|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +006003|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +006004|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|rash generalized|C0497365|Rash generalised|| +006005|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Rash macular|10037867|Rash macular|10037867|rash macular|C0221201|Macular rash|| +006006|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Rash maculo-papular|10037868|rash maculo-papular|C0423791|Maculopapular eruption|| +006007|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Rash pruritic|10037884|Rash pruritic|10037884|rash pruritic|C0033771|Prurigo|| +006008|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +006009|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +006010|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +006011|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +006012|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Suicide attempt|10042464|Suicide attempt|10042464|suicidal attempt|C0038663|Suicide attempt|| +006013|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +006014|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +006015|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune disorder|10061664|Autoimmune disorder|10061664|autoimmune disorders|C0004364|Autoimmune Diseases|| +006016|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Basedow's disease|10004161|Graves' disease|10018706|graves' disease|C0018213|Graves Disease|| +006017|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Body fat disorder|10055164|Body fat disorder|10055164|accumulation of body fat|C1096393|Body fat disorder||DrugClass +006018|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Breast enlargement|10006242|Breast enlargement|10006242|breast enlargement|C2225524|Macromastia||DrugClass +006019|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Central obesity|10065941|Central obesity|10065941|central obesity|C0311277|Obesity, Abdominal||DrugClass +006020|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Cushingoid|10011655|Cushingoid facies|10011656|cushingoid appearance|C0742929|CUSHINGOID APPEARANCE||DrugClass +006021|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Cytomegalovirus infection|10011831|Cytomegalovirus infection|10011831|cytomegalovirus|C0010823|Cytomegalovirus Infections|| +006022|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Facial wasting|10056866|Facial wasting|10056866|facial wasting|C1112303|Facial wasting||DrugClass +006023|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Fat redistribution|10048474|Fat redistribution|10048474|redistribution of body fat|C0856151|Fat redistribution||DrugClass +006024|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Guillain-Barre syndrome|10018767|Guillain-Barre syndrome|10018767|guillain-barre syndrome|C0018378|Guillain-Barre Syndrome|| +006025|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis B|10019731|Hepatitis B reactivation|10058827|hepatitis b reactivation|C1142420|Hepatitis B reactivation|| +006026|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +006027|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +006028|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Immune reconstitution inflammatory syndrome|10065042|Immune reconstitution syndrome|10054014|immune reconstitution syndrome|C1096197|Immune reconstitution syndrome||DrugClass +006029|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Inflammation|10061218|Inflammatory reaction|10021995|inflammatory response|C1155266|inflammatory response|| +006030|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Lipoatrophy|10024604|Fat atrophy NOS|10016242|body fat peripheral wasting|C0333650|Adipose Tissue Atrophy||DrugClass +006031|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Lipohypertrophy|10062315|Buffalo hump|10006539|dorsocervical fat enlargement|C0520573|Buffalo hump||DrugClass +006032|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver|| +006033|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Mycobacterium avium complex infection|10058806|Infection mycobacterium avium|10021840|mycobacterium avium infection|C1411980|Mycobacterium avium infection|| +006034|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|residual opportunistic infections|C0029118|Opportunistic Infections|| +006035|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Organ failure|10053159|Organ failure|10053159|organ dysfunction|C0349410|Single organ dysfunction|| +006036|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystis jirovecii pneumonia|10073755|pneumocystis jirovecii pneumonia|C1535939|Pneumocystis jiroveci pneumonia|| +006037|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Polymyositis|10036102|Polymyositis|10036102|polymyositis|C0085655|Polymyositis|| +006038|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +006039|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevations in transaminases|C0438717|Transaminases increased|| +006040|63df5af3-b8ac-4e76-9830-2dbb340af922|Tivicay|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +006041|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal bloating|10048746|abdominal bloating|C1291077|Abdominal bloating|| +006042|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +006043|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal cramps|10000057|abdominal cramping|C0000729|Abdominal Cramps|| +006044|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +006045|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Aphthous ulcer|10002959|Aphthous ulcer|10002959|aphthoid ileal ulcers|C1959869|Aphthous ulceration of skin and/or mucous membrane (disorder)|duplicate| +006046|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Blood calcium decreased|10005395|Calcium low|10006973|calcium low|C0860967|Calcium low|| +006047|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Blood chloride decreased|10005419|Chloride low|10008578|chloride low|C0860861|Cl- decreased|| +006048|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine high|10011367|creatinine high|C0151578|Creatinine increased|| +006049|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Blood magnesium increased|10005655|Magnesium high|10025434|magnesium high|C0240292|Mg++ increased|| +006050|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Blood potassium decreased|10005724|Potassium low|10036452|potassium low|C0860866|Potassium low|| +006051|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Blood sodium decreased|10005802|Sodium low|10041274|sodium low|C0860871|Sodium decreased|| +006052|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Colitis ischaemic|10009895|Ischemic colitis|10023037|ischemic colitis|C0162529|Colitis, Ischemic|| +006053|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +006054|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Watery diarrhea|10055422|watery diarrhea|C0239182|Watery diarrhoea|| +006055|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Electrolyte imbalance|10014418|Electrolyte abnormality|10014410|abnormal electrolyte shifts|C0151613|Electrolytes abnormal|| +006056|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Faecal incontinence|10016092|Fecal incontinence|10016296|fecal incontinence|C0015732|Fecal Incontinence|| +006057|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Generalised tonic-clonic seizure|10018100|Generalised tonic-clonic seizure|10018100|generalized tonic-clonic seizures|C0494475|Tonic - clonic seizures|| +006058|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Glomerular filtration rate decreased|10018358|Glomerular filtration rate low|10018360|egfr low|C0853068|Decreased glomerular filtration rate|| +006059|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +006060|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Hypermagnesaemia|10020669|Hypermagnesemia|10020670|hypermagnesemia|C0151714|Hypermagnesemia|| +006061|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +006062|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +006063|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +006064|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Ileal ulcer|10021309|Ileal ulcer|10021309|aphthoid ileal ulcers|C0520564|Ileal ulcer|duplicate| +006065|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006066|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Proctalgia|10036772|Proctalgia|10036772|proctalgia|C0034886|Rectal pain|| +006067|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Purpura|10037549|Purpura|10037549|purpura|C0034150|Purpura|| +006068|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +006069|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +006070|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +006071|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Aphthous ulcer|10002959|Aphthous ulcer|10002959|colonic mucosal aphthous ulcerations|C1959869|Aphthous ulceration of skin and/or mucous membrane (disorder)|duplicate|DrugClass +006072|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Arrhythmia|10003119|Arrhythmia|10003119|arrhythmia|C0003811|Cardiac Arrhythmia|| +006073|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Blood magnesium increased|10005655|Plasma magnesium increased|10035363|accumulation of magnesium in plasma|C0858143|Plasma magnesium increased|| +006074|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Blood osmolarity decreased|10005696|Serum osmolality decreased|10040358|low serum osmolality|C0857433|Serum osmolality decreased|| +006075|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure fluctuation|10005746|Change in blood pressure|10008393|changes in blood pressure|C1268766|Blood pressure alteration (finding)|| +006076|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Colitis ischaemic|10009895|Ischemic colitis|10023037|ischemic colitis|C0162529|Colitis, Ischemic|| +006077|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +006078|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Electrolyte imbalance|10014418|Electrolyte abnormality|10014410|electrolyte abnormalities|C0151613|Electrolytes abnormal|| +006079|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Electrolyte imbalance|10014418|Electrolyte disturbance|10014417|electrolyte disturbances|C1704431|Disorder of electrolytes|| +006080|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Fluid imbalance|10051283|Fluid imbalance|10051283|fluid abnormalities|C2364164|Fluid imbalance|| +006081|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Generalised tonic-clonic seizure|10018100|Generalised tonic-clonic seizure|10018100|generalized tonic-clonic seizures|C0494475|Tonic - clonic seizures||DrugClass +006082|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Heart rate abnormal|10019300|Heart rate abnormal|10019300|changes in heart rate|C0232189|Alteration in heart rate (finding)|| +006083|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +006084|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +006085|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +006086|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +006087|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Large intestinal ulcer|10023799|Colonic ulcer|10010006|colonic mucosal aphthous ulcerations|C0267491|Ulceration of colon|duplicate|DrugClass +006088|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Mucosal ulceration|10028124|Mucosal ulceration|10028124|mucosal ulcerations|C0236053|Mucosal ulcer|| +006089|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006090|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Nervous system disorder|10029202|Nervous system disorder|10029202|neurologic abnormalities|C0027854|Neurologic Manifestations|| +006091|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Orthostatic intolerance|10063927|Orthostatic dysregulation|10071278|orthostatic changes|C3203485|Orthostatic dysregulation|| +006092|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +006093|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Renal injury|10061481|Renal injury|10061481|renal injury|C0160420|Injury of kidney|| +006094|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +006095|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizure|10039906|seizure|C0036572|Seizures|| +006096|63e9aeed-31a5-4f22-b3eb-987d38b966f6|PREPOPIK|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +006097|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +006098|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|elevations of alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +006099|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Albumin urine present|10001582|Albumin urine present|10001582|albumin urine present|C0564622|Urine microalbumin positive|| +006100|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +006101|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +006102|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|elevations of aspartate aminotransferase|C0151904|Aspartate aminotransferase increased|| +006103|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +006104|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +006105|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Eosinophil count increased|10014945|Eosinophil count increased|10014945|increase in mean eosinophil counts|C2240374|Eosinophil count raised (finding)|| +006106|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +006107|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +006108|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal events|C0426576|Gastrointestinal symptom|| +006109|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +006110|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006111|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|progressive multifocal leukoencephalopathy|C0023524|Leukoencephalopathy, Progressive Multifocal|| +006112|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +006113|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +006114|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevated hepatic transaminases|C1848701|Elevated hepatic transaminases|| +006115|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +006116|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +006117|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +006118|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Burning sensation|10006784|Burning sensation|10006784|burning sensation|C0085624|Burning sensation|| +006119|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +006120|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Difficulty breathing|10012791|difficulty breathing|C0013404|Dyspnea|| +006121|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Erythema|10015150|Redness|10038198|redness|C0332575|Redness|| +006122|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Feeling hot|10016334|Warmth|10047824|warmth|C0549386|Sensation of warmth|| +006123|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +006124|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +006125|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Lymphocyte count decreased|10025256|Lymphocyte count decreased|10025256|decrease lymphocyte counts|C0853986|Lymphocyte count decreased|| +006126|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Lymphocyte count decreased|10025256|Lymphocyte count low|10025259|lymphocyte counts <0.5x10 9 /l|C0853986|Lymphocyte count decreased|| +006127|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Lymphopenia|10025327|Lymphopenia|10025327|prolonged lymphopenia|C0024312|Lymphopenia|underspecified| +006128|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Pharyngeal oedema|10034829|Throat swelling|10043525|swelling of the throat|C0559687|Congestion of throat|| +006129|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|progressive multifocal leukoencephalopathy|C0023524|Leukoencephalopathy, Progressive Multifocal|| +006130|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Itching|10023084|itching|C0033774|Pruritus|| +006131|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Swollen tongue|10042727|Swelling of tongue|10042706|swelling of the tongue|C0236068|Tongue swelling|| +006132|665d7e74-036c-5f68-5b67-ab84b9b49151|Tecfidera|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +006133|6681aa14-5ae3-4143-9d58-c2d92a143c03|Kit|34084-4|ADVERSE REACTIONS|Injection site irritation|10022079|Injection site irritation|10022079|injection site irritation|C0521498|Injection site irritation|| +006134|6681aa14-5ae3-4143-9d58-c2d92a143c03|Kit|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +006135|6681aa14-5ae3-4143-9d58-c2d92a143c03|Kit|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Pain injection site|10033453|pain injection site|C0151828|Injection site pain|| +006136|6681aa14-5ae3-4143-9d58-c2d92a143c03|Kit|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +006137|6681aa14-5ae3-4143-9d58-c2d92a143c03|Kit|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +006138|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +006139|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +006140|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Adenocarcinoma|10001141|Adenocarcinoma|10001141|metastatic adenocarcinoma|C0334277|Adenocarcinoma, metastatic|| +006141|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Appetite disorder|10060961|Appetite disorder|10060961|appetite disorders|C0003621|Appetite Disorders|| +006142|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Biliary tract disorder|10061008|Biliary tract disease|10004676|biliary disease|C0005424|Biliary Tract Diseases|| +006143|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Cardiac failure congestive|10007559|Congestive heart failure|10010684|congestive heart failure|C0018802|Congestive heart failure|| +006144|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Cholecystitis acute|10008614|Acute cholecystitis|10000691|acute cholecystitis|C0149520|Acute Cholecystitis|| +006145|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Cholecystitis|10008612|Cholecystitis|10008612|cholecystitis|C0008325|Cholecystitis|| +006146|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Cholelithiasis|10008629|Cholelithiasis|10008629|new-onset cholelithiasis|C0008350|Cholelithiasis|| +006147|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Cholestasis|10008635|Cholestasis|10008635|cholestasis|C0008370|Cholestasis|| +006148|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Colon adenoma|10048832|Colonic villous adenoma|10056604|colorectal villous adenomas|C1333119|Colorectal Villous Adenoma|duplicate| +006149|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Coma|10010071|Coma|10010071|coma|C0009421|Comatose|| +006150|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +006151|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Device occlusion|10064685|Biliary stent occlusion|10049945|obstructed biliary stent|C0401001|Obstruction of biliary stent|| +006152|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Drug cross-reactivity|10076743|Drug cross-reactivity|10076743|antibodies cross-reactive to native glucagon-like peptide|C4049218||underspecified| +006153|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Duodenal polyp|10013833|Duodenal polyp|10013833|duodenal polyp|C0347266|Polyp of duodenum|| +006154|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +006155|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Fluid overload|10016803|Fluid overload|10016803|fluid overload|C0546817|Fluid overload|| +006156|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Gallbladder disorder|10017626|Gallbladder disease|10017641|gallbladder disease|C0016977|Gall Bladder Diseases|| +006157|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Gallbladder perforation|10017639|Gallbladder perforation|10017639|gallbladder perforation|C0156215|Perforation of gallbladder|| +006158|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Gastric polyps|10017817|Gastric polyps|10017817|polyps of the g.i. tract|C0744333|GASTROINTESTINAL POLYPS|duplicate| +006159|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Gastrointestinal obstruction|10061974|Gastrointestinal obstruction|10061974|gastrointestinal recurrence of obstruction|C0236124|Gastrointestinal obstruction|| +006160|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Gastrointestinal stoma complication|10065718|Gastrointestinal stoma complication|10065718|gastrointestinal stoma complication|C1696157|Gastrointestinal stoma complication|| +006161|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headaches|C0018681|Headache|| +006162|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +006163|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reaction|C0151735|Injection site reaction|| +006164|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Intestinal obstruction|10022687|Intestinal obstruction|10022687|intestinal obstruction|C0021843|Intestinal Obstruction|| +006165|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Intestinal polyp|10048616|Intestinal polyp|10048616|polyps of the g.i. tract|C0744333|GASTROINTESTINAL POLYPS|duplicate| +006166|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Intestinal stenosis|10022699|Intestinal stenosis|10022699|intestinal stenosis|C0267465|Stenosis of intestine|| +006167|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Large intestine polyp|10051589|Colorectal hyperplastic polyp|10056592|intestinal polyps hyperplastic sigmoidal|C1112501|Colorectal hyperplastic polyp|| +006168|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Mental impairment|10027374|Mental function decreased|10027372|deterioration in mental status|C0542088|Mental function decreased|| +006169|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006170|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancy|C1306459|Primary malignant neoplasm|| +006171|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Non-small cell lung cancer|10061873|Non-small cell lung cancer|10061873|lung cancers non-small cell|C0007131|Non-Small Cell Lung Carcinoma|| +006172|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Pancreatic disorder|10033616|Pancreatic disorder|10033616|pancreatic disease|C0030286|Pancreatic Diseases|| +006173|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Pancreatic pseudocyst|10033635|Pancreatic pseudocyst|10033635|pancreatic pseudocyst|C0030299|Pancreatic Pseudocyst|| +006174|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Pancreatitis acute|10033647|Acute pancreatitis|10000971|acute pancreatitis|C0001339|Acute pancreatitis|| +006175|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Pancreatitis chronic|10033649|Chronic pancreatitis|10009093|chronic pancreatitis|C0149521|Pancreatitis, Chronic|| +006176|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Polyp|10061529|Hyperplastic polyp|10073705|hyperplastic polyp|C0333983|Hyperplastic Polyp|| +006177|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Rectal adenoma|10048829|Rectal villous adenoma|10056591|colorectal villous adenomas|C1333119|Colorectal Villous Adenoma|duplicate| +006178|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Skin haemorrhage|10064265|Skin hemorrhage|10064266|skin hemorrhage|C0852361|Skin hemorrhages|| +006179|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Sleep disorder|10040984|Sleep disturbance|10040995|sleep disturbances|C0037317|Sleep disturbances|| +006180|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Squamous cell carcinoma of lung|10041826|Squamous cell carcinoma of lung|10041826|lung cancers squamous|C0149782|Squamous cell carcinoma of lung|| +006181|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +006182|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +006183|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|43685-7|WARNINGS AND PRECAUTIONS|Benign neoplasm|10060999|Benign neoplasm|10060999|benign tumor|C0086692|Benign Neoplasm||Animal +006184|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|43685-7|WARNINGS AND PRECAUTIONS|Biliary tract disorder|10061008|Biliary tract disease|10004676|biliary disease|C0005424|Biliary Tract Diseases|| +006185|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure congestive|10007559|Congestive heart failure|10010684|congestive heart failure|C0018802|Congestive heart failure|| +006186|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|43685-7|WARNINGS AND PRECAUTIONS|Cholangitis|10008604|Cholangitis|10008604|cholangitis|C0008311|Cholangitis|| +006187|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|43685-7|WARNINGS AND PRECAUTIONS|Cholecystitis|10008612|Cholecystitis|10008612|cholecystitis|C0008325|Cholecystitis|| +006188|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|43685-7|WARNINGS AND PRECAUTIONS|Cholelithiasis|10008629|Cholelithiasis|10008629|cholelithiasis|C0008350|Cholelithiasis|| +006189|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|43685-7|WARNINGS AND PRECAUTIONS|Fluid overload|10016803|Fluid overload|10016803|fluid overload|C0546817|Fluid overload|| +006190|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|43685-7|WARNINGS AND PRECAUTIONS|Hyperplasia|10020718|Hyperplasia|10020718|hyperplastic changes|C0020507|Hyperplasia||Animal +006191|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|43685-7|WARNINGS AND PRECAUTIONS|Intestinal obstruction|10022687|Intestinal obstruction|10022687|intestinal obstruction|C0021843|Intestinal Obstruction|| +006192|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|43685-7|WARNINGS AND PRECAUTIONS|Large intestine polyp|10051589|Polyp colorectal|10048646|colorectal polyps|C0949059|Polyp of large intestine|| +006193|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|43685-7|WARNINGS AND PRECAUTIONS|Mental status changes|10048294|Mental status changes|10048294|altered mental status|C0856054|Mental status changes|| +006194|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm|10028980|Neoplasm|10028980|neoplasia|C0027651|Neoplasms||Animal +006195|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|43685-7|WARNINGS AND PRECAUTIONS|Pancreatic disorder|10033616|Pancreatic disorder|10033616|pancreatic disease|C0030286|Pancreatic Diseases|| +006196|66b69c1e-b25c-44d3-b5ff-1c1de9a516fa|Gattex|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +006197|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +006198|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +006199|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|Blood creatine phosphokinase increased|10005470|blood creatine phosphokinase increased|C0853034|Blood creatine phosphokinase increased|| +006200|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Carpal tunnel syndrome|10007697|Carpal tunnel syndrome|10007697|carpal tunnel syndrome|C0007286|Carpal Tunnel Syndrome|| +006201|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +006202|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +006203|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Diabetes mellitus|10012601|Diabetes|10012594|diabetes|C0011847|Diabetes|| +006204|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Drug cross-reactivity|10076743|Drug cross-reactivity|10076743|cross-reactivity to endogenous growth hormone-releasing hormone|C4049218||underspecified| +006205|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +006206|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Glycosylated haemoglobin increased|10018484|HbA1C increased|10052424|hba1c >= 6.5%|C0239940|Glycosylated haemoglobin increased|| +006207|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +006208|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +006209|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +006210|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +006211|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +006212|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +006213|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +006214|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Injection site haemorrhage|10022067|Injection site hemorrhage|10022068|injection site hemorrhage|C0151698|Injection site hemorrhage|| +006215|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Injection site irritation|10022079|Injection site irritation|10022079|injection site irritation|C0521498|Injection site irritation|| +006216|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +006217|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|injection site pruritus|C0852995|Injection site pruritus|| +006218|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Injection site rash|10022094|Injection site rash|10022094|injection site rash|C0521505|Injection site dermatitis|| +006219|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reaction|C0151735|Injection site reaction|| +006220|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Injection site swelling|10053425|Injection site swelling|10053425|injection site swelling|C0151605|Injection site edema|| +006221|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Injection site urticaria|10022107|Injection site urticaria|10022107|injection site urticaria|C0392196|Injection site urticaria|| +006222|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +006223|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Joint stiffness|10023230|Joint stiffness|10023230|joint stiffness|C0162298|Joint stiffness|| +006224|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Joint swelling|10023232|Joint swelling|10023232|joint swelling|C0152031|Joint swelling|| +006225|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +006226|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Muscle strain|10050031|Muscle strain|10050031|muscle strain|C0080194|Muscle strain|| +006227|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +006228|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Musculoskeletal stiffness|10052904|Musculoskeletal stiffness|10052904|musculoskeletal stiffness|C0948525|Musculoskeletal stiffness|| +006229|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +006230|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006231|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|neuropathy peripheral|C0031117|Peripheral Neuropathy|| +006232|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Night sweats|10029410|Night sweats|10029410|night sweats|C0028081|Night sweats|| +006233|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +006234|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +006235|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +006236|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +006237|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +006238|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +006239|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +006240|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +006241|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +006242|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +006243|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +006244|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Carpal tunnel syndrome|10007697|Carpal tunnel syndrome|10007697|carpal tunnel syndrome|C0007286|Carpal Tunnel Syndrome|| +006245|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Diabetes mellitus|10012601|Diabetes mellitus|10012601|developing diabetes|C0743128|DIABETES MELLITUS NOS NEW ONSET|| +006246|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +006247|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Fluid retention|10016807|Fluid retention|10016807|fluid retention|C0268000|Body fluid retention|| +006248|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +006249|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Glucose tolerance impaired|10018429|Glucose intolerance|10052426|glucose intolerance|C0271650|Impaired glucose tolerance|| +006250|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Glycosylated haemoglobin increased|10018484|HbA1C increased|10052424|hba1c >= 6.5%|C0239940|Glycosylated haemoglobin increased|| +006251|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +006252|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Injection site bruising|10022052|Injection site bruising|10022052|injection site bruising|C0521508|Injection site bruising|| +006253|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +006254|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Injection site irritation|10022079|Injection site irritation|10022079|injection site irritation|C0521498|Injection site irritation|| +006255|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +006256|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|injection site pruritus|C0852995|Injection site pruritus|| +006257|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +006258|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Insulin-like growth factor increased|10059596|Elevated insulin-like growth factor I|10052165|igf-1 levels greater than sds >3|C0948794|Elevated insulin-like growth factor I|| +006259|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Muscle rigidity|10028330|Rigidity bodily|10039169|increased tissue turgor|C0858571|Rigidity bodily|| +006260|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Musculoskeletal discomfort|10053156|Musculoskeletal discomfort|10053156|musculoskeletal discomfort|C0948594|Musculoskeletal discomfort|| +006261|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +006262|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +006263|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +006264|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +006265|67d362c1-078c-11e4-9191-0800200c9a66|Egrifta|43685-7|WARNINGS AND PRECAUTIONS|||||acute critical illness|C0010340|Critical Illness|unmapped| +006266|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +006267|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +006268|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Acne|10000496|Acne|10000496|acne|C0702166|Acne|| +006269|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|increased alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +006270|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +006271|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +006272|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|increased aspartate aminotransferase|C0151904|Aspartate aminotransferase increased|| +006273|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +006274|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Bilirubin conjugated increased|10004685|Bilirubin conjugated increased|10004685|increased conjugated bilirubin|C0855625|Bilirubin conjugated increased|| +006275|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|increased bilirubin|C0311468|Increased bilirubin level (finding)|| +006276|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Blood bilirubin unconjugated increased|10005370|Blood bilirubin unconjugated increased|10005370|increased unconjugated blood bilirubin|C0854134|Blood bilirubin unconjugated increased|| +006277|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +006278|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +006279|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +006280|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +006281|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +006282|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +006283|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +006284|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +006285|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +006286|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Gastroenteritis|10017888|Gastroenteritis|10017888|gastroenteritis|C0017160|Gastroenteritis|| +006287|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Giardiasis|10018262|Giardiasis|10018262|giardiasis|C0017536|Giardiasis|| +006288|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Haemorrhoids|10019022|Hemorrhoids|10019611|hemorrhoids|C0019112|Hemorrhoids|| +006289|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +006290|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +006291|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +006292|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006293|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Nephrolithiasis|10029148|Nephrolithiasis|10029148|nephrolithiasis|C0392525|Nephrolithiasis|| +006294|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +006295|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Pollakiuria|10036018|Pollakiuria|10036018|pollakiuria|C0042023|Increased frequency of micturition|| +006296|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Procedural pain|10064882|Procedural pain|10064882|procedural pain|C1619712|Procedural pain|| +006297|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Seasonal allergy|10048908|Seasonal allergy|10048908|seasonal allergy|C0018621|Hay fever|| +006298|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +006299|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +006300|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +006301|684ca8ce-2583-4c2d-a283-8a16fc63f8f8|FULYZAQ|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|White blood cell count decreased|10047942|decreased white blood cell count|C0750394|White blood cell count decreased|| +006302|68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6|Bepreve|34084-4|ADVERSE REACTIONS|Eye irritation|10015946|Eye irritation|10015946|eye irritation|C0235266|Eye irritation|| +006303|68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6|Bepreve|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +006304|68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6|Bepreve|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +006305|68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6|Bepreve|34084-4|ADVERSE REACTIONS|Lip swelling|10024570|Swelling of lips|10042703|swelling of lips|C0240211|Lip swelling|| +006306|68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6|Bepreve|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +006307|68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6|Bepreve|34084-4|ADVERSE REACTIONS|Pharyngeal oedema|10034829|Throat swelling|10043525|swelling of throat|C0559687|Congestion of throat|| +006308|68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6|Bepreve|34084-4|ADVERSE REACTIONS|Product taste abnormal|10069227|Medication after taste|10067060|taste following instillation|C1868941|Medication after taste|| +006309|68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6|Bepreve|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Itching|10023084|itching|C0033774|Pruritus|| +006310|68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6|Bepreve|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|body rash|C0015230|Exanthema|| +006311|68bbf6a0-c4b5-47c1-8a1c-08220fbdbce6|Bepreve|34084-4|ADVERSE REACTIONS|Swollen tongue|10042727|Swelling of tongue|10042706|swelling of tongue|C0236068|Tongue swelling|| +006312|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +006313|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Abnormal dreams|10000125|Abnormal dreams|10000125|abnormal dreams|C0234458|Dream disorder|| +006314|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +006315|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Alanine aminotransferase abnormal|10001547|Alanine aminotransferase abnormal|10001547|alt abnormalities|C0855619|Alanine aminotransferase abnormal|| +006316|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Amnesia|10001949|Amnesia|10001949|amnesia|C0002622|Amnesia|| +006317|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Angina pectoris|10002383|Angina pectoris|10002383|angina pectoris|C0002962|Angina Pectoris|| +006318|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioneurotic edema|10002471|angioneurotic edema|C0002994|Angioedema|| +006319|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +006320|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase abnormal|10003477|Aspartate aminotransferase abnormal|10003477|abnormalities of ast|C0855623|Aspartate aminotransferase abnormal|| +006321|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +006322|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Blood bilirubin abnormal|10058477|Bilirubin total abnormal|10071561|abnormalities of total bilirubin|C3203647|Bilirubin total abnormal|| +006323|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Glucose increased|10018421|elevated glucose levels|C0860803|Glucose increased|| +006324|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +006325|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +006326|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +006327|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +006328|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +006329|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Diabetes mellitus|10012601|Diabetes mellitus|10012601|diabetes mellitus|C0011849|Diabetes Mellitus|| +006330|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +006331|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Disorientation|10013395|Disorientation|10013395|disorientation|C0233407|Disorientation|| +006332|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Disturbance in attention|10013496|Disturbance in attention|10013496|disturbance in attention|C0233414|Disturbance of attention|| +006333|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Drug hypersensitivity|10013700|Drug hypersensitivity|10013700|drug hypersensitivity|C0013182|Drug Allergy|| +006334|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress|C3541994|Drug Hypersensitivity Syndrome|| +006335|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +006336|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +006337|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Dyslipidaemia|10058108|Dyslipidemia|10058110|dyslipidemia|C0242339|Dyslipidemias|| +006338|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Dyspnoea exertional|10013971|Exertional dyspnea|10055548|exertional dyspnea|C0231807|Dyspnea on exertion|| +006339|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Erythema multiforme|10015218|Erythema multiforme|10015218|erythema multiforme|C0014742|Erythema Multiforme|| +006340|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +006341|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +006342|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +006343|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Gynaecomastia|10018800|Gynecomastia|10018801|gynecomastia|C0018418|Gynecomastia|| +006344|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Haematemesis|10018830|Hematemesis|10019418|hematemesis|C0018926|Hematemesis|| +006345|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decreased hemoglobin|C0162119|Hemoglobin low|| +006346|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Haemolytic anaemia|10018916|Hemolytic anemia|10019493|hemolytic anemia|C0002878|Anemia, Hemolytic|| +006347|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Haemorrhagic stroke|10019016|Haemorrhagic stroke|10019016|haemorrhagic stroke|C0553692|Brain hemorrhage|| +006348|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +006349|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Hepatic steatosis|10019708|Hepatic steatosis|10019708|hepatic steatosis|C2711227|Steatohepatitis|| +006350|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Cytolytic hepatitis|10050904|cytolytic hepatitis|C0919823|Cytolytic hepatitis|| +006351|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +006352|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Hepatomegaly|10019842|Hepatomegaly|10019842|hepatomegaly|C0019209|Hepatomegaly|| +006353|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +006354|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +006355|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +006356|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Hypersomnia|10020765|Hypersomnia|10020765|hypersomnia|C0917799|Hypersomnia|| +006357|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +006358|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Immune reconstitution inflammatory syndrome|10065042|Immune reconstitution syndrome|10054014|immune reconstitution syndrome|C1096197|Immune reconstitution syndrome|| +006359|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Lipodystrophy acquired|10049287|Lipodystrophy acquired|10049287|acquired lipodystrophy|C0877192|Lipodystrophy acquired|| +006360|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Lipohypertrophy|10062315|Lipohypertrophy|10062315|lipohypertrophy|C1262113|Lipohypertrophy|| +006361|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +006362|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Nervousness|10029216|Nervousness|10029216|nervousness|C0027769|Nervousness|| +006363|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +006364|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Night sweats|10029410|Night sweats|10029410|night sweats|C0028081|Night sweats|| +006365|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Nightmare|10029412|Nightmares|10029414|nightmares|C0028084|Nightmares|| +006366|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +006367|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paraesthesia|10033775|paraesthesia|C0030554|Paresthesia|| +006368|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Prurigo|10037083|Prurigo|10037083|prurigo|C0033771|Prurigo|| +006369|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Rash macular|10037867|Rash macular|10037867|rash macular|C0221201|Macular rash|| +006370|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Rash papular|10037876|Rash papular|10037876|rash papular|C1519353|Skin Papule|| +006371|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema||DrugClass +006372|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Retching|10038776|Retching|10038776|retching|C0232602|Retching|| +006373|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Rhabdomyolysis|10039020|Rhabdomyolysis|10039020|rhabdomyolysis|C0035410|Rhabdomyolysis|| +006374|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsion|10010904|convulsion|C0036572|Seizures|| +006375|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +006376|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Sleep disorder|10040984|Sleep disorder|10040984|sleep disorders|C0851578|Sleep Disorders|| +006377|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Sluggishness|10041052|Sluggishness|10041052|sluggishness|C0920289|Sluggishness|| +006378|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +006379|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +006380|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +006381|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Swelling face|10042682|Swelling face|10042682|swelling face|C0151602|Facial swelling|| +006382|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +006383|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +006384|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +006385|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +006386|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +006387|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune disorder|10061664|Autoimmune disorder|10061664|autoimmune disorders|C0004364|Autoimmune Diseases|| +006388|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Basedow's disease|10004161|Graves' disease|10018706|graves' disease|C0018213|Graves Disease|| +006389|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Body fat disorder|10055164|Body fat disorder|10055164|accumulation of body fat|C1096393|Body fat disorder|| +006390|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Breast enlargement|10006242|Breast enlargement|10006242|breast enlargement|C2225524|Macromastia|| +006391|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Central obesity|10065941|Central obesity|10065941|central obesity|C0311277|Obesity, Abdominal|| +006392|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Cushingoid|10011655|Cushingoid facies|10011656|cushingoid appearance|C0742929|CUSHINGOID APPEARANCE|| +006393|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Cytomegalovirus infection|10011831|Cytomegalovirus infection|10011831|cytomegalovirus|C0010823|Cytomegalovirus Infections|| +006394|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +006395|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress|C3541994|Drug Hypersensitivity Syndrome|| +006396|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug rash with eosinophilia and systemic symptoms|10058919|drug rash with eosinophilia and systemic symptoms|C3541994|Drug Hypersensitivity Syndrome|| +006397|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Erythema multiforme|10015218|Erythema multiforme|10015218|erythema multiforme|C0014742|Erythema Multiforme|| +006398|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Facial wasting|10056866|Facial wasting|10056866|facial wasting|C1112303|Facial wasting|| +006399|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Fat redistribution|10048474|Fat redistribution|10048474|redistribution of body fat|C0856151|Fat redistribution|| +006400|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Guillain-Barre syndrome|10018767|Guillain-Barre syndrome|10018767|guillain-barre syndrome|C0018378|Guillain-Barre Syndrome|| +006401|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +006402|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +006403|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Immune reconstitution inflammatory syndrome|10065042|Immune reconstitution syndrome|10054014|immune reconstitution syndrome|C1096197|Immune reconstitution syndrome||DrugClass +006404|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Inflammation|10061218|Inflammatory reaction|10021995|inflammatory response|C1155266|inflammatory response|| +006405|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Lipoatrophy|10024604|Fat atrophy NOS|10016242|body fat peripheral wasting|C0333650|Adipose Tissue Atrophy|| +006406|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Lipohypertrophy|10062315|Buffalo hump|10006539|dorsocervical fat enlargement|C0520573|Buffalo hump|| +006407|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Mycobacterium avium complex infection|10058806|Infection mycobacterium avium|10021840|mycobacterium avium infection|C1411980|Mycobacterium avium infection|| +006408|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +006409|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Organ failure|10053159|Organ failure|10053159|organ dysfunction|C0349410|Single organ dysfunction|| +006410|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystis jiroveci pneumonia|10064108|pneumocystis jiroveci pneumonia|C1535939|Pneumocystis jiroveci pneumonia|| +006411|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystis jirovecii pneumonia|10073755|pcp|C1535939|Pneumocystis jiroveci pneumonia|| +006412|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Polymyositis|10036102|Polymyositis|10036102|polymyositis|C0085655|Polymyositis|| +006413|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +006414|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +006415|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +006416|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +006417|6a9cbc29-9f15-4b24-8d86-206b82887f3d|Intelence|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +006418|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +006419|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt elevations|C0151905|Alanine aminotransferase increased|| +006420|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Anal abscess|10048946|Anal abscess|10048946|anal abscess|C0281778|Anal abscess|| +006421|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +006422|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +006423|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast elevations|C0151904|Aspartate aminotransferase increased|| +006424|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|B-cell lymphoma|10003899|B-cell lymphoma|10003899|b-cell lymphoma|C0079731|B-Cell Lymphomas|| +006425|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +006426|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Bacterial sepsis|10053840|Bacterial sepsis|10053840|bacterial sepsis|C0684256|Bacterial sepsis|| +006427|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevated bilirubin|C0311468|Increased bilirubin level (finding)|| +006428|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|Increased blood pressure|10021655|increased blood pressure|C0497247|Increase in blood pressure|| +006429|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Breast cancer|10006187|Breast cancer|10006187|breast cancer|C0006142|Malignant neoplasm of breast|| +006430|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +006431|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +006432|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Carcinoid tumour of the appendix|10007277|Carcinoid tumor of the appendix|10007272|carcinoid tumor of the appendix|C0334298|Carcinoid tumor of appendix|| +006433|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Colon cancer|10009944|Colon cancer|10009944|colon cancer|C0007102|Malignant tumor of colon|| +006434|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +006435|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Cytomegalovirus colitis|10048983|Cytomegalovirus colitis|10048983|cytomegaloviral colitis|C0341335|Cytomegaloviral colitis|| +006436|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +006437|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +006438|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +006439|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +006440|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +006441|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +006442|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Giardiasis|10018262|Giardiasis|10018262|giardiasis|C0017536|Giardiasis|| +006443|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +006444|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Heart rate increased|10019303|Heart rate increased|10019303|increased heart rate|C0039231|Tachycardia|| +006445|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Hepatic cancer|10073069|Malignant hepatic neoplasm|10025572|malignant hepatic neoplasm|C0345904|Malignant neoplasm of liver|| +006446|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +006447|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +006448|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +006449|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +006450|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +006451|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver|| +006452|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Lung neoplasm malignant|10058467|Lung carcinoma|10025064|lung cancer of primary neuroendocrine carcinoma|C2200127|neuroendocrine carcinoma of lung|duplicate| +006453|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Lung neoplasm malignant|10058467|Lung neoplasm malignant|10058467|malignant lung neoplasm|C0242379|Malignant neoplasm of lung|| +006454|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +006455|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Malignant melanoma|10025650|Malignant melanoma|10025650|malignant melanoma|C0025202|melanoma|| +006456|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Meningitis listeria|10027248|Meningitis listeria|10027248|listeria meningitis|C0025293|Meningitis, Listeria|| +006457|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +006458|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006459|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +006460|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Neuroendocrine carcinoma|10057270|Neuroendocrine carcinoma|10057270|lung cancer of primary neuroendocrine carcinoma|C2200127|neuroendocrine carcinoma of lung|duplicate| +006461|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +006462|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremities|C0030196|Pain in limb|| +006463|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|progressive multifocal leukoencephalopathy|C0023524|Leukoencephalopathy, Progressive Multifocal|| +006464|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +006465|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Pulmonary tuberculosis|10037440|Pulmonary tuberculosis|10037440|pulmonary tuberculosis|C0041327|Tuberculosis, Pulmonary|| +006466|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Pulmonary tuberculosis|10037440|Unspecified pulmonary tuberculosis|10046123|latent pulmonary tuberculosis|C0041327|Tuberculosis, Pulmonary|| +006467|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +006468|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +006469|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Renal cancer|10038389|Renal cancer|10038389|renal cancer|C0740457|Malignant neoplasm of kidney|| +006470|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Salmonella sepsis|10058878|Salmonella sepsis|10058878|salmonella sepsis|C0152486|Salmonella sepsis|| +006471|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +006472|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Septic shock|10040070|Septic shock|10040070|septic shock|C0036983|Septic Shock|| +006473|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +006474|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Squamous cell carcinoma|10041823|Squamous cell carcinoma|10041823|squamous cell carcinoma|C0007137|Squamous cell carcinoma|| +006475|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevated transaminases|C0438717|Transaminases increased|| +006476|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Transitional cell carcinoma|10044412|Transitional cell carcinoma|10044412|transitional cell carcinoma|C0007138|Carcinoma, Transitional Cell|| +006477|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +006478|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +006479|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +006480|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +006481|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Vaccination failure|10046862|Vaccine response impaired|10069943|lower anti-cholera titers|C2747937|Vaccine response impaired|| +006482|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +006483|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Anal abscess|10048946|Anal abscess|10048946|anal abscess|C0281778|Anal abscess|| +006484|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis||DrugClass +006485|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevations of bilirubin|C0311468|Increased bilirubin level (finding)|| +006486|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure increased|10005750|Increased blood pressure|10021655|increased blood pressure|C0497247|Increase in blood pressure|| +006487|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +006488|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Central nervous system infection|10061036|Central nervous system infection|10061036|opportunistic infection of the central nervous system|C0007684|Central Nervous System Infection|duplicate| +006489|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Cytomegalovirus colitis|10048983|Cytomegalovirus colitis|10048983|cytomegaloviral colitis|C0341335|Cytomegaloviral colitis|| +006490|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +006491|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +006492|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +006493|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Giardiasis|10018262|Giardiasis|10018262|giardiasis|C0017536|Giardiasis|| +006494|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Heart rate increased|10019303|Heart rate increased|10019303|increased heart rate|C0039231|Tachycardia|| +006495|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +006496|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity||DrugClass +006497|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +006498|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Meningitis listeria|10027248|Meningitis listeria|10027248|listeria meningitis|C0025293|Meningitis, Listeria|| +006499|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Nasal mucosal disorder|10061305|Nasal mucosal disorder|10061305|infections nasal mucosa|C0919894|Nasal mucosal disorder|duplicate| +006500|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +006501|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infection of the central nervous system|C0029118|Opportunistic Infections|duplicate| +006502|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|progressive multifocal leukoencephalopathy|C0023524|Leukoencephalopathy, Progressive Multifocal||DrugClass +006503|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +006504|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Rhinitis|10039083|Rhinitis|10039083|infections nasal mucosa|C0555970|Nasal infection|duplicate| +006505|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Salmonella sepsis|10058878|Salmonella sepsis|10058878|salmonella sepsis|C0152486|Salmonella sepsis|| +006506|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +006507|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevations of transaminase|C0438717|Transaminases increased|| +006508|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +006509|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Upper respiratory tract infection|10046306|Infection upper respiratory|10021871|infections upper respiratory|C0041912|Upper Respiratory Infections|| +006510|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +006511|6e94621c-1a95-4af9-98d1-52b9e6f1949c|Entyvio|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +006512|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +006513|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +006514|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Renal failure acute|10038436|renal failure acute|C0022660|Kidney Failure, Acute|| +006515|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increased|C0151905|Alanine aminotransferase increased|| +006516|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +006517|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Angina pectoris|10002383|Angina pectoris|10002383|angina pectoris|C0002962|Angina Pectoris|| +006518|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +006519|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast increased|C0151904|Aspartate aminotransferase increased|| +006520|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +006521|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase serum increased|10001679|increased serum alkaline phosphatase|C0750857|Alkaline phosphatase serum increased|| +006522|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Candida infection|10074170|Candidiasis|10007152|candidiasis|C0006840|Candidiasis|| +006523|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Clostridium difficile colitis|10009657|Diarrhea, Clostridium difficile|10012734|clostridium difficile -associated diarrhea|C0235952|Clostridium difficile diarrhea|| +006524|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +006525|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Coombs test positive|10061090|Coombs test positive|10061090|positive coombs test|C0239113|Coombs test positive|| +006526|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +006527|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +006528|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +006529|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +006530|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +006531|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +006532|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|Gamma glutamyl transpeptidase increased|10017668|increased serum gamma-glutamyl transpeptidase|C0151662|Gamma-glutamyl transferase raised|| +006533|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +006534|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +006535|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +006536|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +006537|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +006538|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +006539|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +006540|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +006541|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Ileus paralytic|10021333|Ileus paralytic|10021333|ileus paralytic|C0030446|Paralytic Ileus|| +006542|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Ileus|10021328|Ileus|10021328|ileus|C1258215|Ileus|| +006543|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection aggravated NOS|10021792|worsening infection|C0235737|Infection aggravated NOS|| +006544|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|complications of infection|C1556682|Adverse Event Associated with Infection|| +006545|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Infusion site reaction|10054996|Infusion site reaction|10054996|infusion site reactions|C1096343|Infusion site reaction|| +006546|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +006547|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Ischaemic stroke|10061256|Ischemic stroke|10055221|ischemic stroke|C0948008|Ischemic stroke|| +006548|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006549|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Oral infection|10048685|Oral infection|10048685|oropharyngeal infection|C0555971|Oral infection|| +006550|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +006551|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +006552|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +006553|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +006554|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +006555|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Thrombocytosis|10043563|Thrombocytosis|10043563|thrombocytosis|C0836924|Thrombocytosis|| +006556|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Urinary tract infection fungal|10049059|Urinary tract infection fungal|10049059|fungal urinary tract infection|C0877131|Urinary tract infection fungal|| +006557|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +006558|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Venous thrombosis|10047249|Venous thrombosis|10047249|venous thrombosis|C0042487|Venous Thrombosis|| +006559|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +006560|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis||DrugClass +006561|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|43685-7|WARNINGS AND PRECAUTIONS|Clostridium difficile colitis|10009657|Diarrhea, Clostridium difficile|10012734|cdad|C0235952|Clostridium difficile diarrhea|| +006562|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|43685-7|WARNINGS AND PRECAUTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +006563|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)||DrugClass +006564|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +006565|70ac1d90-eff3-4f0b-9f46-5846c571b32f|ZERBAXA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity||DrugClass +006566|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34066-1|BOXED WARNINGS|Abnormal behaviour|10061422|Behavior abnormal|10004203|behavioral adverse reactions|C0233514|Abnormal behavior|| +006567|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34066-1|BOXED WARNINGS|Aggression|10001488|Aggression|10001488|aggression|C0001807|Aggressive behavior|| +006568|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34066-1|BOXED WARNINGS|Anger|10002368|Anger|10002368|anger|C0424330|Anger reaction|| +006569|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34066-1|BOXED WARNINGS|Homicidal ideation|10049666|Homicidal ideation|10049666|homicidal ideation|C0455204|Homicidal thoughts|| +006570|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34066-1|BOXED WARNINGS|Hostility|10020400|Hostility|10020400|hostility|C0020039|Hostility|| +006571|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34066-1|BOXED WARNINGS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +006572|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34066-1|BOXED WARNINGS|Psychiatric symptom|10061472|Psychiatric symptom|10061472|psychiatric adverse reactions|C0233401|Psychiatric symptom|| +006573|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +006574|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Abnormal behaviour|10061422|Behavior abnormal|10004203|behavioral reactions|C0233514|Abnormal behavior|| +006575|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Aggression|10001488|Aggression|10001488|aggression|C0001807|Aggressive behavior|| +006576|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Anger|10002368|Anger|10002368|anger|C0424330|Anger reaction|| +006577|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +006578|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +006579|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +006580|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Ataxia|10003591|Ataxia|10003591|ataxia|C0004134|Ataxia|| +006581|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +006582|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Balance disorder|10049848|Balance disorder|10049848|balance disorder|C0575090|Equilibration disorder|| +006583|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|increases in triglycerides|C1522137|Hypertriglyceridemia result|| +006584|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +006585|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +006586|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Contusion|10050584|Contusion|10050584|contusion|C0009938|Contusions|| +006587|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Coordination abnormal|10010947|Coordination abnormal|10010947|coordination abnormal|C0520966|Abnormal coordination|| +006588|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +006589|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +006590|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +006591|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress|C3541994|Drug Hypersensitivity Syndrome|| +006592|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug reaction with eosinophilia and systemic symptoms|10073508|drug reaction with eosinophilia and systemic symptoms|C3541994|Drug Hypersensitivity Syndrome|| +006593|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +006594|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Euphoric mood|10015535|Euphoric mood|10015535|euphoric mood|C0235146|Euphoric mood|| +006595|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Fall|10016173|Fall|10016173|falls|C0085639|Falls|| +006596|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +006597|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Gait disturbance|10017577|gait disturbance|C0575081|Gait abnormality|| +006598|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Head injury|10019196|Head injury|10019196|head injury|C0018674|Craniocerebral Trauma|| +006599|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +006600|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Hypersomnia|10020765|Hypersomnia|10020765|hypersomnia|C0917799|Hypersomnia|| +006601|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoaesthesia|10020937|hypoaesthesia|C0020580|Hypesthesia|| +006602|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +006603|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +006604|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Laceration|10023572|Skin laceration|10058818|skin laceration|C0558401|Skin laceration|| +006605|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Ligament sprain|10024453|Ligament sprain|10024453|ligament sprain|C0435002|Sprain of ligament|| +006606|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Limb injury|10061225|Limb injury|10061225|limb injury|C0743668|Limb injury|| +006607|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Memory impairment|10027175|Memory impairment|10027175|memory impairment|C0233794|Memory impairment|| +006608|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Mood altered|10027940|Mood altered|10027940|mood altered|C0085633|Mood swings|| +006609|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +006610|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +006611|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006612|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +006613|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +006614|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +006615|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paraesthesia|10033775|paraesthesia|C0030554|Paresthesia|| +006616|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Psychiatric symptom|10061472|Psychiatric symptom|10061472|psychiatric reactions|C0233401|Psychiatric symptom|| +006617|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +006618|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +006619|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +006620|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +006621|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +006622|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +006623|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +006624|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +006625|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +006626|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight gain|10047896|gained kg|C0043094|Weight Gain|| +006627|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|increases in weight|C0043094|Weight Gain|| +006628|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Abnormal behaviour|10061422|Behavior abnormal|10004203|behavioral events|C0233514|Abnormal behavior|| +006629|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Affect lability|10054196|Affect lability|10054196|affect lability|C0233472|Labile affect|| +006630|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Aggression|10001488|Aggression|10001488|aggression|C0001807|Aggressive behavior|| +006631|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Aggression|10001488|Aggressive reaction|10001493|aggression-related adverse reactions|C1457883|Aggressive reaction|| +006632|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +006633|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Anger|10002368|Anger|10002368|anger|C0424330|Anger reaction|| +006634|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +006635|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +006636|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Ataxia|10003591|Ataxia|10003591|ataxia|C0004134|Ataxia|| +006637|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Balance disorder|10049848|Balance disorder|10049848|balance disorder|C0575090|Equilibration disorder|| +006638|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Belligerence|10004224|Reaction belligerent|10037938|belligerence|C0542181|Reaction belligerent|| +006639|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicides|C0038661|Suicide|| +006640|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +006641|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Coordination abnormal|10010947|Coordination abnormal|10010947|abnormal coordination|C0520966|Abnormal coordination|| +006642|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Coordination abnormal|10010947|Coordination disturbance|10010949|disturbance in coordination|C0858589|Coordination disturbance|| +006643|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Delusion|10012239|Delusion|10012239|delusion|C0011253|Delusions|| +006644|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Disorientation|10013395|Disorientation|10013395|disorientation|C0233407|Disorientation|| +006645|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +006646|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Euphoric mood|10015535|Euphoric mood|10015535|euphoric mood|C0235146|Euphoric mood|| +006647|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Fall|10016173|Fall|10016173|falls|C0085639|Falls|| +006648|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Fatigue|10016256|Fatigue|10016256|fatigue-related events|C0015672|Fatigue|| +006649|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Fracture|10017076|Fracture bone|10017077|bone fracture|C0016658|Fracture|| +006650|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Gait disturbance|10017577|Gait disturbance|10017577|disturbance in gait|C0575081|Gait abnormality|| +006651|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Head injury|10019196|Head injury|10019196|head injuries|C0018674|Craniocerebral Trauma|| +006652|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Homicidal ideation|10049666|Homicidal ideation|10049666|homicidal ideation|C0455204|Homicidal thoughts|| +006653|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Hostility|10020400|Hostility|10020400|hostility related adverse reactions|C0020039|Hostility|| +006654|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Injury|10022116|Injury|10022116|injuries|C3263723|Traumatic injury|| +006655|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +006656|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Lethargy|10024264|Lethargy|10024264|lethargy|C0023380|Lethargy|| +006657|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Mental disorder|10061284|Psychiatric disorder NOS|10037174|worsening of pre-existing psychiatric conditions|C0004936|Mental disorders|| +006658|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Mental status changes|10048294|Mental status changes|10048294|mental status changes|C0856054|Mental status changes|| +006659|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Mood altered|10027940|Mood altered|10027940|worsened mood|C2939186|Disturbance in mood|| +006660|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Neurological symptom|10060860|Neurologic symptoms|10029291|neurologic effects|C0235031|Neurologic Symptoms|| +006661|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Neuropsychiatric syndrome|10071323|Neuropsychiatric syndrome|10071323|neuropsychiatric events|C3534763|One or more neuropsychiatric symptoms|| +006662|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Paranoia|10033864|Paranoia|10033864|paranoia|C1456784|Paranoia|| +006663|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Physical assault|10034983|Physical assault|10034983|physical assault|C0740319|Physical assault|| +006664|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Psychiatric symptom|10061472|Psychiatric symptom|10061472|psychiatric events|C0233401|Psychiatric symptom|| +006665|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +006666|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +006667|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thoughts|C0424000|Feeling suicidal (finding)|| +006668|71cf3309-e182-473c-8b0b-280cabd0e122|Fycompa|43685-7|WARNINGS AND PRECAUTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +006669|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Abnormal behaviour|10061422|Behavior abnormal|10004203|impairment in behavior|C0233514|Abnormal behavior|| +006670|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Altered state of consciousness|10001854|Consciousness abnormal|10010765|impairment in consciousness|C0234428|Disturbance of consciousness|| +006671|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +006672|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +006673|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +006674|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Balanitis candida|10004074|Balanitis candida|10004074|balanitis candida|C0276684|Candidal balanitis|| +006675|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Balanoposthitis infective|10067741|Balanoposthitis infective|10067741|balanoposthitis infective|C1963830|Balanoposthitis infective|| +006676|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Balanoposthitis|10004078|Balanitis|10004073|balanitis|C0004690|Balanitis|| +006677|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Balanoposthitis|10004078|Balanoposthitis|10004078|balanoposthitis|C0004691|Balanoposthitis|| +006678|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Balanoposthitis|10004078|Posthitis|10036379|posthitis|C0235640|Posthitis|| +006679|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Bladder cancer|10005003|Bladder cancer|10005003|bladder cancer|C0005684|Malignant neoplasm of urinary bladder|| +006680|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Blood cholesterol abnormal|10005423|Cholesterol total abnormal NOS|10008669|changes for total cholesterol|C0860919|Cholesterol total abnormal NOS|| +006681|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Blood creatinine increased|10005483|blood creatinine increase|C0235431|Blood creatinine increased|| +006682|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|increases in serum creatinine|C0700225|Serum creatinine raised|| +006683|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Blood glucose decreased|10005555|Blood glucose decreased|10005555|capillary glucose measurement <63 mg/dl|C0595883|Blood glucose decreased|| +006684|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Blood glucose decreased|10005555|Plasma glucose decreased|10035305|plasma glucose measurement <63 mg/dl|C0860802|Plasma glucose decreased|| +006685|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Blood phosphorus increased|10050196|Blood phosphorus increased|10050196|increases in mean serum phosphorus levels|C0919625|Blood phosphorus increased|| +006686|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +006687|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Cystitis|10011781|Cystitis|10011781|cystitis|C0010692|Cystitis|| +006688|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +006689|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Dyslipidaemia|10058108|Dyslipidemia|10058110|dyslipidemia|C0242339|Dyslipidemias|| +006690|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Dysuria|10013990|Dysuria|10013990|discomfort with urination|C0013428|Dysuria|| +006691|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Escherichia urinary tract infection|10052238|Escherichia urinary tract infection|10052238|escherichia urinary tract infection|C0948344|Escherichia urinary tract infection|| +006692|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Fracture|10017076|Fracture bone|10017077|bone fractures|C0016658|Fracture|| +006693|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Fracture|10017076|Fracture|10017076|fractures|C0016658|Fracture|| +006694|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Genital candidiasis|10018143|Genital candidiasis|10018143|genital candidiasis|C0343863|Candida infection of genital region|| +006695|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Genital infection female|10061977|Genital infection female|10061977|genital mycotic infections females|C0729565|Female genital infection|duplicate| +006696|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Genital infection fungal|10061180|Genital infection fungal|10061180|genital mycotic infections|C0740330|Genital infection fungal|| +006697|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Genital infection male|10062521|Genital infection male|10062521|genital mycotic infections males|C0564768|Male genital infection|duplicate| +006698|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Genital infection|10048461|Genital infection|10048461|genital infection|C0729552|Genital infection|| +006699|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Genitourinary tract infection|10061182|Genitourinary tract infection|10061182|genitourinary tract infection|C1279247|Genitourinary tract infection|| +006700|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Glomerular filtration rate decreased|10018358|GFR decreased|10018214|decreases in egfr|C0853068|Decreased glomerular filtration rate|| +006701|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Haematocrit abnormal|10049221|Hematocrit abnormal|10057763|changes in hematocrit|C0877168|Haematocrit abnormal|| +006702|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Haematocrit increased|10018840|Hematocrit increased|10019424|increases in mean hematocrit values|C0239935|Hematocrit increased|| +006703|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Hyperphosphataemia|10020711|Hyperphosphatemia|10020712|hyperphosphatemia|C0085681|Hyperphosphatemia (disorder)|| +006704|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +006705|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +006706|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +006707|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +006708|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Hypovolaemia|10021137|Hypovolemia|10021139|hypovolemia|C0546884|Hypovolemia|| +006709|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Hypovolaemia|10021137|Intravascular depletion|10074191|reductions in intravascular volume|C0750310|Intravascular depletion|| +006710|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Hypovolaemia|10021137|Volume depletion|10047691|volume depletion|C0546884|Hypovolemia|| +006711|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +006712|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +006713|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Kidney infection|10023424|Kidney infection|10023424|kidney infection|C0021313|Infection of kidney|| +006714|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Lipids abnormal|10024588|Lipids abnormal|10024588|changes in mean lipid values|C0549634|Lipids abnormal|| +006715|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Low density lipoprotein abnormal|10024901|Low density lipoprotein abnormal|10024901|changes for ldl cholesterol|C0853611|Low density lipoprotein abnormal|| +006716|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Low density lipoprotein increased|10024910|LDL cholesterol increased|10024055|increases in low-density lipoprotein cholesterol|C0549399|Low density lipoprotein increased|| +006717|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +006718|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006719|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Orthostatic hypotension|10031127|Orthostatic hypotension|10031127|orthostatic hypotension|C0020651|Hypotension, Orthostatic|| +006720|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +006721|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Penile infection|10061912|Penile infection|10061912|penile infection|C0581395|Infection of penis|| +006722|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Pollakiuria|10036018|Micturition frequency increased|10071065|increased urination|C0042023|Increased frequency of micturition|| +006723|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Pollakiuria|10036018|Pollakiuria|10036018|pollakiuria|C0042023|Increased frequency of micturition|| +006724|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Polyuria|10036142|Diuresis|10013523|osmotic diuresis|C0032617|Polyuria|underspecified| +006725|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Polyuria|10036142|Polyuria|10036142|polyuria|C0032617|Polyuria|| +006726|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Prostatitis|10036978|Prostatitis|10036978|prostatitis|C0033581|prostatitis|| +006727|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Pyelonephritis|10037596|Pyelonephritis|10037596|pyelonephritis|C0034186|Pyelonephritis|| +006728|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +006729|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Impaired renal function|10021523|impairment in renal function|C1565489|Renal Insufficiency|| +006730|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal function disorder|10038455|renal-related adverse reactions|C1557806|Adverse Event Associated with the Kidney and Genitourinary System|| +006731|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|cutaneous adverse reactions|C0221743|Skin reaction|| +006732|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Trigonitis|10044668|Trigonitis|10044668|trigonitis|C1261278|Trigonitis|| +006733|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Urethritis|10046480|Urethritis|10046480|urethritis|C0041976|Urethritis|| +006734|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infections|C0042029|Urinary tract infection|| +006735|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Urine output increased|10059896|Urine output increased|10059896|urine output increased|C1167965|Urine output increased|| +006736|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +006737|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Vaginal infection|10046914|Vaginal infection|10046914|vaginal infection|C0404521|Infective vaginitis|| +006738|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Vaginitis bacterial|10062167|Vaginitis bacterial|10062167|vaginitis bacterial|C0085166|Bacterial Vaginosis|| +006739|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Vulval abscess|10047732|Vulval abscess|10047732|vulval abscess|C0262666|Abscess of vulva|| +006740|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Vulvitis|10047780|Vulvitis|10047780|vulvitis|C0042996|Vulvitis|| +006741|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Vulvovaginal candidiasis|10047784|Vulvovaginal candidiasis|10047784|vulvovaginal candidiasis|C0700345|Candidiasis, Vulvovaginal|| +006742|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Vulvovaginal mycotic infection|10064899|Vulvovaginal mycotic infection|10064899|vulvovaginal mycotic infection|C1609512|Vulvovaginal mycotic infection|| +006743|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|34084-4|ADVERSE REACTIONS|Vulvovaginitis|10047794|Vulvovaginitis|10047794|vulvovaginitis|C0042998|Vulvovaginitis|| +006744|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|43685-7|WARNINGS AND PRECAUTIONS|Bladder cancer|10005003|Bladder cancer|10005003|bladder cancer|C0005684|Malignant neoplasm of urinary bladder|| +006745|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|43685-7|WARNINGS AND PRECAUTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|increases serum creatinine|C0700225|Serum creatinine raised|| +006746|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|43685-7|WARNINGS AND PRECAUTIONS|Genital infection fungal|10061180|Genital infection fungal|10061180|genital mycotic infections|C0740330|Genital infection fungal|| +006747|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|43685-7|WARNINGS AND PRECAUTIONS|Glomerular filtration rate decreased|10018358|GFR decreased|10018214|decreases egfr|C0853068|Decreased glomerular filtration rate|| +006748|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|43685-7|WARNINGS AND PRECAUTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +006749|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension symptomatic|10021105|symptomatic hypotension|C0863113|Hypotension symptomatic|| +006750|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +006751|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|43685-7|WARNINGS AND PRECAUTIONS|Hypovolaemia|10021137|Intravascular depletion|10074191|intravascular volume contraction|C0750310|Intravascular depletion|| +006752|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|43685-7|WARNINGS AND PRECAUTIONS|Low density lipoprotein increased|10024910|LDL cholesterol increased|10024055|increases in ldl-c|C0549399|Low density lipoprotein increased|| +006753|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Impaired renal function|10021523|impairment in renal function|C1565489|Renal Insufficiency|| +006754|72ad22ae-efe6-4cd6-a302-98aaee423d69|FARXIGA|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Renal function abnormal|10038451|adverse renal function|C0151746|Abnormal renal function|| +006755|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34066-1|BOXED WARNINGS|Acute hepatitis B|10059193|Acute hepatitis B|10059193|acute exacerbations of hepatitis b|C0276609|Acute type B viral hepatitis|| +006756|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +006757|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34066-1|BOXED WARNINGS|Hepatic steatosis|10019708|Hepatic steatosis|10019708|steatosis|C2711227|Steatohepatitis|| +006758|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34066-1|BOXED WARNINGS|Hepatomegaly|10019842|Hepatomegaly|10019842|hepatomegaly|C0019209|Hepatomegaly|| +006759|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34066-1|BOXED WARNINGS|Lactic acidosis|10023676|Lactic acidosis|10023676|lactic acidosis|C0001125|Acidosis, Lactic|| +006760|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +006761|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Abnormal dreams|10000125|Abnormal dreams|10000125|abnormal dreams|C0234458|Dream disorder|| +006762|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Acute hepatitis B|10059193|Acute hepatitis B|10059193|acute exacerbations of hepatitis b|C0276609|Acute type B viral hepatitis|| +006763|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +006764|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Alanine aminotransferase abnormal|10001547|Alanine aminotransferase abnormal|10001547|abnormalities of alt|C0855619|Alanine aminotransferase abnormal|| +006765|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt >3.0 * uln|C0151905|Alanine aminotransferase increased|| +006766|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Amylase increased|10002016|Amylase increased|10002016|amylase >2.0 * uln|C0151479|Amylase increased|| +006767|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +006768|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +006769|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +006770|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast >5.0 * uln|C0151904|Aspartate aminotransferase increased|| +006771|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +006772|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +006773|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase abnormal|10059571|Blood alkaline phosphatase abnormal|10059571|abnormalities of alkaline phosphatase|C0877171|Blood alkaline phosphatase abnormal|| +006774|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Blood bilirubin abnormal|10058477|Bilirubin abnormal|10058482|abnormalities of bilirubin|C1142335|Bilirubin abnormal|| +006775|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Blood cholesterol abnormal|10005423|Blood cholesterol abnormal|10005423|abnormalities of fasting cholesterol|C0853595|Blood cholesterol abnormal|| +006776|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|Creatine kinase increased|10011336|creatine kinase >= 10.0 * uln|C0151576|Elevated creatine kinase|| +006777|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|increased creatinine|C0151578|Creatinine increased|| +006778|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Raised serum creatinine|10037825|elevations in serum creatinine|C0700225|Serum creatinine raised|| +006779|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|increase serum creatinine|C0700225|Serum creatinine raised|| +006780|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Blood glucose abnormal|10005554|Serum glucose abnormal|10040267|abnormalities of serum glucose|C0856424|Serum glucose abnormal|| +006781|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Blood triglycerides abnormal|10005837|Triglycerides abnormal|10044661|abnormalities of fasting triglycerides|C0860922|Triglycerides abnormal NOS|| +006782|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Bone density decreased|10049470|Bone density decreased|10049470|decreases in bmd|C0877225|Bone density decreased|| +006783|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Bone disorder|10005956|Bone disorder NOS|10005958|bone effects|C0005940|Bone Diseases|| +006784|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Bone pain|10006002|Bone pain|10006002|bone pain|C0151825|Bone pain|| +006785|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough increased|10011228|increased cough|C0574067|Increasing frequency of cough|| +006786|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Creatinine renal clearance decreased|10011372|Creatinine clearance estimation decreased|10061436|decreases in estimated creatinine clearance|C1262229|Creatinine clearance estimation decreased|| +006787|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +006788|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +006789|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +006790|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +006791|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +006792|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Fanconi syndrome|10016219|Fanconi syndrome|10016219|fanconi syndrome|C0015624|Fanconi Syndrome|| +006793|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +006794|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +006795|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Fracture|10017076|Fracture bone|10017077|bone fractures|C0016658|Fracture|| +006796|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Fracture|10017076|Fracture|10017076|fractures|C0016658|Fracture|| +006797|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|Gamma GT increased|10017670|increased gamma gt|C0151662|Gamma-glutamyl transferase raised|| +006798|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Glycosuria|10018473|Glycosuria|10018473|abnormalities of glycosuria|C0017979|Glycosuria|| +006799|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +006800|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +006801|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|increased liver enzymes|C0235996|Elevated liver enzymes|| +006802|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Hepatic steatosis|10019708|Hepatic steatosis|10019708|steatosis|C2711227|Steatohepatitis|| +006803|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +006804|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Hepatomegaly|10019842|Hepatomegaly|10019842|hepatomegaly|C0019209|Hepatomegaly|| +006805|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reaction|C0020517|Hypersensitivity|| +006806|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +006807|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +006808|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Immune reconstitution inflammatory syndrome|10065042|Immune reconstitution syndrome|10054014|immune reconstitution syndrome|C1096197|Immune reconstitution syndrome|| +006809|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +006810|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Jaundice|10023126|Jaundice|10023126|jaundice|C0022346|Icterus|| +006811|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Lactic acidosis|10023676|Lactic acidosis|10023676|lactic acidosis|C0001125|Acidosis, Lactic|| +006812|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Muscular weakness|10028372|Muscular weakness|10028372|muscular weakness|C0151786|Muscle Weakness|| +006813|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +006814|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Myopathy|10028641|Myopathy|10028641|myopathy|C0026848|Myopathy|| +006815|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +006816|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006817|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Nephrogenic diabetes insipidus|10029147|Nephrogenic diabetes insipidus|10029147|nephrogenic diabetes insipidus|C0162283|Nephrogenic Diabetes Insipidus|| +006818|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +006819|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Peripheral neuritis|10034593|peripheral neuritis|C0027813|Neuritis|| +006820|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Neutrophil count abnormal|10061313|Blood neutrophils abnormal|10005675|abnormalities of neutrophils|C0860747|Blood neutrophils abnormal|| +006821|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Ocular icterus|10058117|Ocular icterus|10058117|ocular icterus|C1141938|Ocular icterus|| +006822|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Osteomalacia|10031250|Osteomalacia|10031250|osteomalacia|C0029442|Osteomalacia|| +006823|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +006824|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +006825|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +006826|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +006827|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Polyuria|10036142|Polyuria|10036142|polyuria|C0032617|Polyuria|| +006828|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +006829|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +006830|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +006831|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Red blood cells urine|10050676|RBC urine|10037929|urine rbc|C0221752|Hematuria present|| +006832|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +006833|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal insufficiency|10038474|renal insufficiency|C1565489|Renal Insufficiency|| +006834|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal function disorder|10038455|renal adverse reactions|C1557806|Adverse Event Associated with the Kidney and Genitourinary System|| +006835|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal impairment|10062237|new onset renal impairment|C1565489|Renal Insufficiency|| +006836|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Renal tubular disorder|10038537|Proximal renal tubular dysfunction|10037081|proximal renal tubulopathy|C1839603|Proximal tubulopathy|| +006837|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Renal tubular necrosis|10038540|Acute tubular necrosis|10001099|acute tubular necrosis|C0022672|Acute Kidney Tubular Necrosis|| +006838|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Rhabdomyolysis|10039020|Rhabdomyolysis|10039020|rhabdomyolysis|C0035410|Rhabdomyolysis|| +006839|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +006840|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +006841|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Skin discolouration|10040829|Skin discoloration|10040828|skin discoloration|C0151907|Discoloration of skin|| +006842|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Skin hyperpigmentation|10040865|Skin hyperpigmentation|10040865|hyperpigmentation on the palms|C0744580|HAND SKIN HYPERPIGMENTATION|underspecified| +006843|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +006844|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +006845|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Suicide attempt|10042464|Suicide attempt|10042464|suicide attempt|C0038663|Suicide attempt|| +006846|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Tubulointerstitial nephritis|10048302|Interstitial nephritis acute|10022614|interstitial nephritis acute|C0149937|Acute interstitial nephritis|| +006847|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Tubulointerstitial nephritis|10048302|Nephritis interstitial|10029134|interstitial nephritis|C0027707|Nephritis, Interstitial|| +006848|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +006849|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +006850|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +006851|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgias|C0003862|Arthralgia|| +006852|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune disorder|10061664|Autoimmune disorder|10061664|autoimmune disorders|C0004364|Autoimmune Diseases|| +006853|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Basedow's disease|10004161|Graves' disease|10018706|graves' disease|C0018213|Graves Disease|| +006854|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|increases in serum creatinine|C0700225|Serum creatinine raised|| +006855|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Body fat disorder|10055164|Body fat disorder|10055164|accumulation of body fat|C1096393|Body fat disorder|| +006856|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Bone density decreased|10049470|Bone density decreased|10049470|decreases in bmd|C0877225|Bone density decreased|| +006857|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Bone pain|10006002|Bone pain|10006002|bone pain|C0151825|Bone pain|| +006858|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Breast enlargement|10006242|Breast enlargement|10006242|breast enlargement|C2225524|Macromastia|| +006859|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Central obesity|10065941|Central obesity|10065941|central obesity|C0311277|Obesity, Abdominal|| +006860|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Creatinine renal clearance decreased|10011372|Creatinine clearance estimation decreased|10061436|declines in estimated creatinine clearance|C1262229|Creatinine clearance estimation decreased|| +006861|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Cushingoid|10011655|Cushingoid facies|10011656|cushingoid appearance|C0742929|CUSHINGOID APPEARANCE|| +006862|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Cytomegalovirus infection|10011831|Cytomegalovirus infection|10011831|cytomegalovirus|C0010823|Cytomegalovirus Infections|| +006863|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +006864|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Facial wasting|10056866|Facial wasting|10056866|facial wasting|C1112303|Facial wasting|| +006865|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Fanconi syndrome|10016219|Fanconi syndrome|10016219|fanconi syndrome|C0015624|Fanconi Syndrome|| +006866|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Fat redistribution|10048474|Fat redistribution|10048474|redistribution of body fat|C0856151|Fat redistribution|| +006867|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Fracture|10017076|Fracture|10017076|fractures|C0016658|Fracture|| +006868|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Guillain-Barre syndrome|10018767|Guillain-Barre syndrome|10018767|guillain-barre syndrome|C0018378|Guillain-Barre Syndrome|| +006869|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic decompensation|10076894|liver decompensation|C0085605|Liver Failure|| +006870|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Liver failure|10024678|liver failure|C0085605|Liver Failure|| +006871|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Hepatic steatosis|10019708|Hepatic steatosis|10019708|steatosis|C2711227|Steatohepatitis|| +006872|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis B|10019731|Hepatitis B aggravated|10066627|exacerbations of hepatitis b|C1739145|Hepatitis B aggravated|| +006873|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Hepatomegaly|10019842|Hepatomegaly|10019842|hepatomegaly|C0019209|Hepatomegaly|| +006874|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|High turnover osteopathy|10062624|High turnover bone disease|10062633|increased bone turnover|C1262307|High turnover bone disease|| +006875|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +006876|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Immune reconstitution inflammatory syndrome|10065042|Immune reconstitution syndrome|10054014|immune reconstitution syndrome|C1096197|Immune reconstitution syndrome|| +006877|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Lactic acidosis|10023676|Lactic acidosis|10023676|lactic acidosis|C0001125|Acidosis, Lactic|| +006878|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Lipoatrophy|10024604|Fat atrophy NOS|10016242|body fat peripheral wasting|C0333650|Adipose Tissue Atrophy|| +006879|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Lipohypertrophy|10062315|Buffalo hump|10006539|dorsocervical fat enlargement|C0520573|Buffalo hump|| +006880|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Muscular weakness|10028372|Weakness muscle|10047867|weakness muscle|C0151786|Muscle Weakness|| +006881|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Myalgia|10028411|Muscle pain|10028322|muscle pain|C0231528|Myalgia|| +006882|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Mycobacterium avium complex infection|10058806|Infection mycobacterium avium|10021840|mycobacterium avium infection|C1411980|Mycobacterium avium infection|| +006883|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|residual opportunistic infections|C0029118|Opportunistic Infections|| +006884|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Osteomalacia|10031250|Osteomalacia|10031250|osteomalacia|C0029442|Osteomalacia|| +006885|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremities|C0030196|Pain in limb|| +006886|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystis jirovecii pneumonia|10073755|pcp|C1535939|Pneumocystis jiroveci pneumonia|| +006887|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Polymyositis|10036102|Polymyositis|10036102|polymyositis|C0085655|Polymyositis|| +006888|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Renal function disorder|10038455|renal adverse reaction|C1557806|Adverse Event Associated with the Kidney and Genitourinary System|| +006889|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +006890|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Renal tubular disorder|10038537|Proximal renal tubular dysfunction|10037081|proximal renal tubular dysfunction|C0015624|Fanconi Syndrome|| +006891|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Renal tubular disorder|10038537|Renal tubular dysfunction|10050335|renal tubular injury|C0151747|Renal tubular disorder|underspecified| +006892|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +006893|74ae2a93-b267-444c-8f0f-a2a6522260ee|Stribild|43685-7|WARNINGS AND PRECAUTIONS|||||increases in biochemical markers of bone metabolism|||unmapped| +006894|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +006895|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Asthenopia|10003552|Asthenopia|10003552|asthenopia|C0004095|Asthenopia|| +006896|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Clostridium difficile colitis|10009657|Clostridium difficile colitis|10009657|clostridium difficile colitis|C0238106|Clostridium difficile colitis|| +006897|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +006898|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +006899|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +006900|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Drug hypersensitivity|10013700|Drug hypersensitivity|10013700|drug hypersensitivity|C0013182|Drug Allergy|| +006901|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +006902|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Haematology test abnormal|10057755|Hematology test abnormal|10057760|effect on hematologic parameters|C1112712|Haematology test abnormal|| +006903|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin low|10055600|hemoglobin <10.1 g/dl|C0162119|Hemoglobin low|| +006904|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +006905|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +006906|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +006907|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +006908|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +006909|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006910|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy||DrugClass +006911|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Absolute neutrophil count decreased|10059234|absolute neutrophil count <0.8 * 10 3 /mm 3|C1168174|Absolute neutrophil count decreased|| +006912|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Optic nerve disorder|10061322|Optic nerve disorder|10061322|optic nerve disorders|C0029132|Disorder of the optic nerve|| +006913|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Optic neuropathy|10061323|Optic neuropathy|10061323|optic neuropathy|C3887709|Optic Neuropathy||DrugClass +006914|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Oral candidiasis|10030963|Oral candidiasis|10030963|oral candidiasis|C0006849|Oral candidiasis|| +006915|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +006916|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +006917|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Low platelets|10024922|platelet count <112 * 10 3 /mm 3|C0392386|Decreased platelet count|| +006918|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +006919|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +006920|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|hepatic transaminases increased|C1848701|Elevated hepatic transaminases|| +006921|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +006922|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|VIIth nerve paralysis|10050040|VIIth nerve paralysis|10050040|vii th nerve paralysis|C0919980|VIIth nerve paralysis|| +006923|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +006924|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Visual impairment|10047571|Visual impairment|10047571|visual impairment|C3665347|Visual Impairment|| +006925|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Vitreous floaters|10047654|Vitreous floaters|10047654|vitreous floaters|C0016242|Vitreous floaters|| +006926|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +006927|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|Vulvovaginal mycotic infection|10064899|Vulvovaginal mycotic infection|10064899|vulvovaginal mycotic infection|C1609512|Vulvovaginal mycotic infection|| +006928|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|White blood cell count decreased|10047942|white blood cell count decreased|C0750394|White blood cell count decreased|| +006929|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|43685-7|WARNINGS AND PRECAUTIONS|Clostridium difficile colitis|10009657|Diarrhea, Clostridium difficile|10012734|clostridium difficile -associated diarrhea|C0235952|Clostridium difficile diarrhea|| +006930|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|43685-7|WARNINGS AND PRECAUTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +006931|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +006932|75672079-589f-451a-bdbf-eaebcfcc80a9|SIVEXTRO|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +006933|77a67dc6-35d3-48ff-9d18-292d4d442f70|Entereg|34066-1|BOXED WARNINGS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +006934|77a67dc6-35d3-48ff-9d18-292d4d442f70|Entereg|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +006935|77a67dc6-35d3-48ff-9d18-292d4d442f70|Entereg|43685-7|WARNINGS AND PRECAUTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +006936|77a67dc6-35d3-48ff-9d18-292d4d442f70|Entereg|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +006937|77a67dc6-35d3-48ff-9d18-292d4d442f70|Entereg|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal tract irritation|10070840|Gastrointestinal tract irritation|10070840|increased sensitivity to the gastrointestinal tract|C2697368|Gastrointestinal irritation|| +006938|77a67dc6-35d3-48ff-9d18-292d4d442f70|Entereg|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarctions|C0027051|Myocardial Infarction|| +006939|77a67dc6-35d3-48ff-9d18-292d4d442f70|Entereg|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006940|77a67dc6-35d3-48ff-9d18-292d4d442f70|Entereg|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +006941|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +006942|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Abscess|10000269|Abscess|10000269|abscess|C0000833|Abscess|| +006943|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +006944|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +006945|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +006946|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +006947|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +006948|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +006949|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +006950|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +006951|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Asthma|10003553|Asthma|10003553|asthma|C0004096|Asthma|| +006952|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Ataxia|10003591|Ataxia|10003591|ataxia|C0004134|Ataxia|| +006953|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +006954|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +006955|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +006956|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Clonus|10009346|Clonus|10009346|clonus|C0009024|Clonus|| +006957|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +006958|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +006959|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +006960|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +006961|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Dermatitis bullous|10012441|Bullous eruption|10006559|bullous eruption|C0235818|Bullous eruption|| +006962|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Dermatitis|10012431|Acrodermatitis|10000593|acrodermatitis|C0001197|Acrodermatitis|| +006963|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +006964|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +006965|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +006966|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +006967|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Ear infection|10014011|Ear infection|10014011|ear infection|C0699744|Infection of ear|| +006968|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Eosinophilia|10014950|Eosinophilia|10014950|eosinophilia|C0014457|Eosinophilia|| +006969|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +006970|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Fine motor delay|10066088|Fine motor delay|10066088|fine motor delay|C1735324|Fine motor delay|| +006971|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Gait disturbance|10017577|gait disturbance|C0575081|Gait abnormality|| +006972|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Gastroenteritis|10017888|Gastroenteritis|10017888|gastroenteritis|C0017160|Gastroenteritis|| +006973|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Haematocrit decreased|10018838|Hematocrit decreased|10019423|hematocrit decreased|C0744727|Hematocrit decreased|| +006974|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +006975|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +006976|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Helminthic infection|10061201|Helminthic infection|10061201|helminthic infection|C0018889|Helminthiasis|| +006977|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Hepatomegaly|10019842|Hepatomegaly|10019842|hepatomegaly|C0019209|Hepatomegaly|| +006978|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Hookworm infection|10020376|Hookworm infection|10020376|hookworm infection|C0019911|Hookworm Infections|| +006979|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Hyperreflexia|10020745|Hyperreflexia|10020745|hyperreflexia|C0151889|Hyperreflexia|| +006980|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +006981|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +006982|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +006983|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Impetigo|10021531|Impetigo|10021531|impetigo|C0021099|Impetigo|| +006984|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +006985|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +006986|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Laryngeal pain|10023848|Pharyngolaryngeal pain|10034844|pharyngo-laryngeal pain|C0858635|Pharyngolaryngeal pain|| +006987|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Lower respiratory tract infection|10024968|Lower respiratory tract infection|10024968|lower respiratory tract infection|C0149725|Lower respiratory tract infection|| +006988|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Lymphocyte morphology abnormal|10062047|Lymphocyte morphology abnormal|10062047|lymphocyte morphology abnormal|C0853115|Lymphocyte morphology abnormal|| +006989|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +006990|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Malaria|10025487|Malaria|10025487|malaria|C0024530|Malaria|| +006991|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Mood swings|10027951|Mood swings|10027951|mood swings|C0085633|Mood swings|| +006992|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +006993|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +006994|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +006995|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Nystagmus|10029864|Nystagmus|10029864|nystagmus|C0028738|Nystagmus|| +006996|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Oral herpes|10067152|Oral herpes|10067152|oral herpes|C0341012|Oral herpes simplex infection|| +006997|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +006998|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Peptic ulcer|10034341|Peptic ulcer|10034341|peptic ulcer|C0030920|Peptic Ulcer|| +006999|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Plasmodium falciparum infection|10035500|Plasmodium falciparum infection|10035500|plasmodium falciparum infection|C0858318|Plasmodium falciparum infection|| +007000|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|platelet count decreased|C0392386|Decreased platelet count|| +007001|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Platelet count increased|10051608|Platelet count increased|10051608|platelet count increased|C0857460|Increased number of platelets|| +007002|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +007003|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +007004|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +007005|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +007006|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +007007|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Respiratory tract infection|10062352|Respiratory tract infection|10062352|respiratory tract infection|C0035243|Respiratory Tract Infections|| +007008|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +007009|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +007010|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Sleep disorder|10040984|Sleep disorder|10040984|sleep disorder|C0851578|Sleep Disorders|| +007011|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Splenomegaly|10041660|Splenomegaly|10041660|splenomegaly|C0038002|Splenomegaly|| +007012|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Subcutaneous abscess|10042343|Subcutaneous abscess|10042343|subcutaneous abscess|C0241266|Subcutaneous Abscess|| +007013|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Tinnitus|10043882|Tinnitus|10043882|tinnitus|C0040264|Tinnitus|| +007014|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +007015|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +007016|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +007017|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +007018|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +007019|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +007020|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|White blood cell count decreased|10047942|white blood cell count decreased|C0750394|White blood cell count decreased|| +007021|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|34084-4|ADVERSE REACTIONS|White blood cell count increased|10047943|White blood cell count increased|10047943|white blood cell count increased|C0750426|White blood cell count increased (lab result)|| +007022|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT interval prolonged|10037703|prolongation of the qt interval|C0151878|Prolonged QT interval|| +007023|7866ec19-dfac-47d4-a53f-511a12643cbf|COARTEM|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +007024|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +007025|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34066-1|BOXED WARNINGS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +007026|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +007027|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +007028|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +007029|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +007030|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +007031|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +007032|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Cardiac tamponade|10007610|Pericardial tamponade|10053565|pericardial tamponade|C0007177|Cardiac Tamponade|| +007033|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Colon cancer|10009944|Malignant neoplasm of colon|10025848|malignancies colon|C0007102|Malignant tumor of colon|| +007034|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Colorectal cancer|10061451|Colorectal cancer|10061451|colorectal malignancies|C1527249|Colorectal Cancer|| +007035|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +007036|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +007037|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +007038|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +007039|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +007040|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +007041|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +007042|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|GI bleed|10018230|gi bleed|C0017181|Gastrointestinal Hemorrhage|| +007043|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +007044|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Haemoptysis|10018964|Hemoptysis|10019523|hemoptysis|C0019079|Hemoptysis|| +007045|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Haemorrhage intracranial|10018985|Intracranial hemorrhage|10022763|ich|C0151699|Intracranial Hemorrhages|| +007046|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +007047|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhagic events|C0019080|Hemorrhage|| +007048|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +007049|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Hepatic function abnormal|10019670|Hepatic function abnormal|10019670|abnormal hepatic function|C0086565|Liver Dysfunction|| +007050|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Hypercholesterolaemia|10020603|Hypercholesterolemia|10020604|hypercholesterolemia|C0020443|Hypercholesterolemia|| +007051|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Hyperlipidaemia|10062060|Hyperlipidemia|10020667|hyperlipidemia|C0020473|Hyperlipidemia|| +007052|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +007053|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +007054|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +007055|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +007056|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +007057|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Lung neoplasm malignant|10058467|Lung neoplasm malignant|10058467|malignancies lung|C0242379|Malignant neoplasm of lung|| +007058|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +007059|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +007060|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Non-cardiac chest pain|10062501|Non-cardiac chest pain|10062501|non-cardiac chest pain|C0476281|Non-cardiac chest pain|| +007061|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +007062|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +007063|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Pericardial effusion|10034474|Pericardial effusion|10034474|pericardial effusion|C0031039|Pericardial effusion|| +007064|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Pericardial haemorrhage|10034476|Pericardial bleeding|10071860|pericardial hemorrhage|C0019064|Hemopericardium|| +007065|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Post procedural haemorrhage|10051077|Post procedural hemorrhage|10055320|post-procedural hemorrhage|C0919874|Post procedural hemorrhage|| +007066|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +007067|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +007068|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Retroperitoneal haemorrhage|10038980|Retroperitoneal hemorrhage|10038981|retroperitoneal hemorrhage|C0151705|Retroperitoneal hemorrhage|| +007069|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Subcutaneous haematoma|10042345|Subcutaneous hematoma|10042346|subcutaneous hematoma|C0520532|Subcutaneous hematoma|| +007070|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +007071|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|Thrombotic thrombocytopenic purpura|10043648|Thrombotic thrombocytopenic purpura|10043648|thrombotic thrombocytopenic purpura|C0034155|Purpura, Thrombotic Thrombocytopenic|| +007072|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|WBC decreased|10056731|<4 x 109 wbc/l|C0750394|White blood cell count decreased|| +007073|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +007074|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|43685-7|WARNINGS AND PRECAUTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|fall in hemoglobin|C0162119|Hemoglobin low|| +007075|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage intracranial|10018985|Intracranial hemorrhage|10022763|intracranial hemorrhage|C0151699|Intracranial Hemorrhages|| +007076|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +007077|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +007078|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|43685-7|WARNINGS AND PRECAUTIONS|Post procedural haemorrhage|10051077|Post procedural bleeding|10051014|cabg-related bleeding|C0919874|Post procedural hemorrhage|| +007079|78d7f193-583d-4dca-9d3c-6af81fbae2f4|Effient|43685-7|WARNINGS AND PRECAUTIONS|Thrombotic thrombocytopenic purpura|10043648|Thrombotic thrombocytopenic purpura|10043648|ttp|C0034155|Purpura, Thrombotic Thrombocytopenic|| +007080|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +007081|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +007082|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +007083|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +007084|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +007085|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +007086|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +007087|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +007088|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +007089|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +007090|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +007091|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +007092|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +007093|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +007094|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +007095|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +007096|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Lung neoplasm malignant|10058467|Lung cancer|10025044|lung cancer|C0242379|Malignant neoplasm of lung|| +007097|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +007098|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +007099|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Pancreatitis acute|10033647|Acute pancreatitis|10000971|acute pancreatitis|C0001339|Acute pancreatitis|| +007100|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Prostate cancer|10060862|Prostate cancer|10060862|prostate cancer|C0376358|Malignant neoplasm of prostate|| +007101|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Psychiatric symptom|10061472|Psychiatric symptom|10061472|psychiatric events|C0233401|Psychiatric symptom|| +007102|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +007103|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +007104|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +007105|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidality|C3166387|Suicidality|| +007106|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +007107|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +007108|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +007109|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +007110|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +007111|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decrease|10047893|weight decrease|C1262477|Weight decreased|| +007112|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|43685-7|WARNINGS AND PRECAUTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +007113|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Completed suicide|10010144|completed suicide|C0852733|Completed Suicide|| +007114|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|43685-7|WARNINGS AND PRECAUTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +007115|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|43685-7|WARNINGS AND PRECAUTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +007116|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|43685-7|WARNINGS AND PRECAUTIONS|Psychiatric symptom|10061472|Psychiatric symptom|10061472|psychiatric adverse reactions|C0233401|Psychiatric symptom|| +007117|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +007118|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +007119|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|43685-7|WARNINGS AND PRECAUTIONS|Suicide attempt|10042464|Suicide attempt|10042464|suicide attempts|C0038663|Suicide attempt|| +007120|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|43685-7|WARNINGS AND PRECAUTIONS|Weight decreased|10047895|Weight decrease|10047893|weight decrease|C1262477|Weight decreased|| +007121|7ac9cc61-b860-478a-92bf-8a54c89f5b32|Daliresp|43685-7|WARNINGS AND PRECAUTIONS|Weight decreased|10047895|Weight loss|10047900|weight loss|C1262477|Weight decreased|| +007122|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34066-1|BOXED WARNINGS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +007123|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +007124|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +007125|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +007126|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +007127|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +007128|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +007129|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +007130|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +007131|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +007132|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +007133|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux|10017924|gastroesophageal reflux|C0017168|Gastroesophageal reflux disease|| +007134|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +007135|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +007136|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +007137|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +007138|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Nasal congestion|10028735|Nasal congestion|10028735|nasal congestion|C0027424|Nasal congestion (finding)|| +007139|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +007140|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +007141|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +007142|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +007143|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure decreased|10005734|Blood pressure decreased|10005734|reduces blood pressure|C0020649|Hypotension|| +007144|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|worsen the cardiovascular status|C0476270|Cardiovascular symptoms||DrugClass +007145|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|43685-7|WARNINGS AND PRECAUTIONS|Catheter site haemorrhage|10051099|Catheter site hemorrhage|10052266|catheter site hemorrhage|C0920166|Catheter site bleeding|| +007146|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal outcome|C0206277|Fatal Outcome|| +007147|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +007148|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|43685-7|WARNINGS AND PRECAUTIONS|Haematemesis|10018830|Hematemesis|10019418|hematemesis|C0018926|Hematemesis|| +007149|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|43685-7|WARNINGS AND PRECAUTIONS|Haemoptysis|10018964|Hemoptysis|10019523|hemoptysis|C0019079|Hemoptysis|| +007150|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +007151|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhagic events|C0019080|Hemorrhage|| +007152|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension symptomatic|10021105|symptomatic hypotension|C0863113|Hypotension symptomatic|| +007153|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|43685-7|WARNINGS AND PRECAUTIONS|Intra-abdominal haemorrhage|10061249|Intra-abdominal hemorrhage|10055291|intra-abdominal hemorrhage|C0236178|Intraabdominal hemorrhage|| +007154|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary oedema|10037423|Pulmonary edema|10037375|pulmonary edema|C0034063|Pulmonary Edema|| +007155|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|43685-7|WARNINGS AND PRECAUTIONS|Subdural haematoma|10042361|Subdural hematoma|10042380|subdural hematoma|C0018946|Hematoma, Subdural|| +007156|7b57509a-3d5d-41d4-8fed-1471e26372a3|Adempas|43685-7|WARNINGS AND PRECAUTIONS|Vaginal haemorrhage|10046910|Vaginal hemorrhage|10046912|vaginal hemorrhage|C2979982|Vaginal Hemorrhage|| +007157|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34066-1|BOXED WARNINGS|Cardio-respiratory distress|10049874|Cardio-respiratory distress|10049874|cardiopulmonary reactions|C0877339|Cardio-respiratory distress|| +007158|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatalities|C1306577|Death (finding)|| +007159|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Anaphylactic shock|10002199|Anaphylactic shock|10002199|anaphylactic shock|C0002792|anaphylaxis|| +007160|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Anaphylactoid reaction|10002216|Anaphylactoid reaction|10002216|anaphylactoid reactions|C0340865|Anaphylactoid reaction|| +007161|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Arrhythmia|10003119|Arrhythmia|10003119|arrhythmias|C0003811|Cardiac Arrhythmia|| +007162|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Cardio-respiratory distress|10049874|Cardio-respiratory distress|10049874|cardiopulmonary reactions|C0877339|Cardio-respiratory distress|| +007163|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +007164|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +007165|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatalities|C1306577|Death (finding)|| +007166|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Dermatitis allergic|10012434|Allergic rash|10001717|hypersensitivity-type rash|C0850569|Allergic rash|| +007167|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +007168|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Feeling hot|10016334|Feeling hot|10016334|feeling hot|C2939147|Feels hot|| +007169|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +007170|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +007171|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertensive episodes|10020805|hypertensive episodes|C0520539|Hypertensive episode|| +007172|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +007173|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Injection site warmth|10022112|Injection site warmth|10022112|injection site warmth|C0858934|Injection site warmth|| +007174|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +007175|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|34084-4|ADVERSE REACTIONS|Presyncope|10036653|Near syncope|10066203|near syncope symptoms|C0700200|Presyncope|| +007176|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic shock|10002199|Anaphylactic shock|10002199|anaphylactic shock|C0002792|anaphylaxis|| +007177|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactoid reaction|10002216|Anaphylactoid reaction|10002216|anaphylactoid reactions|C0340865|Anaphylactoid reaction|| +007178|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Arrhythmia|10003119|Arrhythmia|10003119|symptomatic arrhythmias|C0003811|Cardiac Arrhythmia||DrugClass +007179|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation||DrugClass +007180|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia||DrugClass +007181|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest||DrugClass +007182|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Cardio-respiratory distress|10049874|Cardio-respiratory distress|10049874|cardiopulmonary reactions|C0877339|Cardio-respiratory distress|| +007183|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain||DrugClass +007184|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatalities|C1306577|Death (finding)|| +007185|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea||DrugClass +007186|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Erythema|10015150|Skin erythema|10040842|skin erythema|C0041834|Erythema|| +007187|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +007188|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease||DrugClass +007189|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension||DrugClass +007190|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Hypoxia|10021143|Hypoxia|10021143|hypoxia|C0242184|Hypoxia||DrugClass +007191|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Ischaemia|10061255|Ischemia|10054438|tissue ischemia|C0022116|Ischemia|| +007192|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Loss of consciousness|10024855|Loss of consciousness|10024855|loss of consciousness|C0041657|Unconscious State||DrugClass +007193|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +007194|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Respiratory arrest|10038669|Respiratory arrest|10038669|respiratory arrest|C0162297|Respiratory arrest||DrugClass +007195|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Respiratory distress|10038687|Respiratory distress|10038687|respiratory distress|C0476273|Respiratory distress||DrugClass +007196|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Convulsions|10010914|convulsions|C0036572|Seizures||DrugClass +007197|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Shock|10040560|Shock|10040560|shock|C0036974|Shock||DrugClass +007198|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Stridor|10042241|Stridor|10042241|stridor|C0038450|Stridor||DrugClass +007199|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Supraventricular tachycardia|10042604|Supraventricular tachycardia|10042604|supraventricular tachycardia|C0039240|Supraventricular tachycardia||DrugClass +007200|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope||DrugClass +007201|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia||DrugClass +007202|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Throat tightness|10043528|Throat tightness|10043528|throat tightness|C0236071|Feeling of throat tightness|| +007203|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +007204|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Vascular occlusion|10053648|Vascular occlusion|10053648|occlusion of the microcirculation|C1096458|Vascular occlusion|underspecified| +007205|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Ventricular arrhythmia|10047281|Ventricular arrhythmia|10047281|ventricular arrhythmias|C0085612|Ventricular arrhythmia|| +007206|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Ventricular fibrillation|10047290|Ventricular fibrillation|10047290|ventricular fibrillation|C0042510|Ventricular Fibrillation||DrugClass +007207|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Ventricular tachycardia|10047302|Ventricular tachycardia|10047302|ventricular tachycardia|C0042514|Tachycardia, Ventricular||DrugClass +007208|7c679424-c3f7-ed02-892f-20ca0d775089|LumaSon|43685-7|WARNINGS AND PRECAUTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing||DrugClass +007209|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +007210|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +007211|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Blood glucose decreased|10005555|Blood sugar decreased|10005808|blood sugar less than or equal to 65 mg/dl|C0595883|Blood glucose decreased|| +007212|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Blood prolactin increased|10005780|Prolactin increased|10036826|prolactin elevation|C0553731|PRL increased|| +007213|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Cardiac valve disease|10061406|Cardiac valve disease|10061406|valvulopathy|C0018824|Heart valve disease|| +007214|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Cataract|10007739|Cataract|10007739|cataract|C0086543|Cataract|| +007215|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +007216|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Cognitive disorder|10057668|Cognitive impairment|10009846|cognitive impairment|C0338656|Impaired cognition|| +007217|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +007218|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusion|10010300|confusion|C0009676|Confusion|| +007219|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Conjunctival irritation|10010725|Conjunctival irritation|10010725|conjunctival irritations|C0239093|Conjunctival irritation|| +007220|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis infective|10010742|conjunctival infections|C0497209|Infective conjunctivitis|| +007221|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctival inflammations|C0009763|Conjunctivitis|| +007222|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +007223|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +007224|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +007225|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +007226|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Diabetes mellitus|10012601|Worsening of diabetes|10048027|worsening of diabetes mellitus|C0857483|Worsening of diabetes|| +007227|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +007228|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Disorientation|10013395|Disorientation|10013395|disorientation|C0233407|Disorientation|| +007229|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Disturbance in attention|10013496|Attention concentration difficulty|10003729|difficulty concentration|C0858899|Attention concentration difficulty|| +007230|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +007231|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Dry eye|10013774|Dry eye|10013774|dry eye|C0314719|Dryness of eye|| +007232|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +007233|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Euphoric mood|10015535|Euphoria|10015533|euphoria|C0235146|Euphoric mood|| +007234|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Euphoric mood|10015535|Euphoric mood|10015535|euphoric mood|C0235146|Euphoric mood|| +007235|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Eye disorder|10015916|Eye disorder|10015916|eye disorder|C0015397|Disorder of eye|| +007236|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +007237|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Gastroenteritis|10017888|Gastroenteritis|10017888|gastroenteritis|C0017160|Gastroenteritis|| +007238|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Haematology test abnormal|10057755|Hematology test abnormal|10057760|hematological changes|C1112712|Haematology test abnormal|| +007239|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin low|10055600|hemoglobin below the lower limit of normal|C0162119|Hemoglobin low|| +007240|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +007241|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Heart rate decreased|10019301|Heart rate decreased|10019301|heart rate decreases|C2230138|Pulse slow (finding)|| +007242|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Heart valve incompetence|10067660|Heart valve regurgitation|10067673|valvular regurgitation|C0264879|Heart valve regurgitation|| +007243|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +007244|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +007245|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +007246|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +007247|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Lymphocyte count decreased|10025256|Lymphocyte count low|10025259|lymphocyte counts below the lower limit of normal|C0853986|Lymphocyte count decreased|| +007248|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Memory impairment|10027175|Memory disturbance|10027172|difficulty with memory|C0233794|Memory impairment|| +007249|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Mental disorder|10061284|Mental disorder|10061284|psychiatric disorders|C0004936|Mental disorders|| +007250|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Mood altered|10027940|Mood change|10027941|mood events|C0085633|Mood swings|| +007251|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +007252|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +007253|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +007254|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +007255|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Neuroleptic malignant syndrome|10029282|NMS|10029435|nms-like reactions|C0027849|Neuroleptic Malignant Syndrome|| +007256|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count low|10029369|neutrophil counts low|C0853697|Neutrophil count decreased|| +007257|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Ocular sensation disorders|10030063|Ocular sensation disorders|10030063|ocular sensation disorders|C0851704|Ocular sensation disorders|HLT| +007258|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +007259|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +007260|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Rash|10037844|Skin rash|10040913|skin rash|C0015230|Exanthema|| +007261|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Seasonal allergy|10048908|Seasonal allergy|10048908|seasonal allergy|C0018621|Hay fever|| +007262|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Serotonin syndrome|10040108|Serotonin syndrome|10040108|serotonin syndrome|C0699828|Serotonin Syndrome|| +007263|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Serum serotonin increased|10049529|Serum serotonin increased|10049529|serotonergic excess|C0877243|Increased serum serotonin|| +007264|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Sinus congestion|10040742|Sinus congestion|10040742|sinus congestion|C0152029|Congestion of nasal sinus|| +007265|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Stress|10042209|Stress|10042209|stress|C0038435|Stress|| +007266|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +007267|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Toothache|10044055|Toothache|10044055|toothache|C0040460|Toothache|| +007268|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +007269|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +007270|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +007271|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +007272|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Vision disorders|10047518|Vision disorders|10047518|visual disorders|C0042790|Vision Disorders|HLGT| +007273|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Visual impairment|10047571|Visual impairment|10047571|visual impairment|C3665347|Visual Impairment|| +007274|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +007275|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +007276|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Aortic valve incompetence|10002915|Aortic regurgitation|10002904|aortic regurgitation|C0003504|Aortic Valve Insufficiency|| +007277|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Blood prolactin increased|10005780|Prolactin increased|10036826|elevations of prolactin|C0553731|PRL increased|| +007278|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Blood prolactin increased|10005780|Prolactin levels increased|10036828|elevates prolactin levels|C0747979|Increased prolactin level|| +007279|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +007280|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Cardiac valve disease|10061406|Cardiac valve disease|10061406|valvular heart disease|C0018824|Heart valve disease|| +007281|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Confusional state|10010305|Confusion|10010300|confusion|C0009676|Confusion|| +007282|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Dissociation|10013457|Dissociation|10013457|dissociation|C0086168|Dissociation|| +007283|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Disturbance in attention|10013496|Attention impaired|10003738|impairments in attention|C0238707|Impairment of attention|| +007284|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Disturbance in attention|10013496|Disturbance in attention|10013496|disturbances in attention|C0233414|Disturbance of attention|| +007285|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Erection increased|10015120|Erection prolonged|10068039|painful erections greater than 6 hours|C2242621|Erection prolonged|duplicate|DrugClass +007286|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Euphoric mood|10015535|Euphoria|10015533|euphoria|C0235146|Euphoric mood|| +007287|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +007288|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Haematocrit decreased|10018838|Hematocrit decreased|10019423|decreases hematocrit|C0744727|Hematocrit decreased|| +007289|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decreases in hemoglobin|C0162119|Hemoglobin low|| +007290|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Hallucination|10019063|Hallucination|10019063|hallucination|C0018524|Hallucinations|| +007291|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Heart rate abnormal|10019300|Heart rate abnormal|10019300|mean change in heart rate -1.2 beats per minute|C0232189|Alteration in heart rate (finding)|| +007292|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Heart rate decreased|10019301|Heart rate decreased|10019301|hr less than 50 bpm|C2230138|Pulse slow (finding)|| +007293|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Heart valve incompetence|10067660|Heart valve regurgitation|10067673|valvular regurgitation|C0264879|Heart valve regurgitation|| +007294|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +007295|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +007296|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +007297|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Memory impairment|10027175|Memory disturbance|10027172|disturbances memory|C0233794|Memory impairment|| +007298|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Memory impairment|10027175|Memory impairment|10027175|impairments memory|C0233794|Memory impairment|| +007299|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Mental disorder|10061284|Mental disorder|10061284|psychiatric disorders|C0004936|Mental disorders|| +007300|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Mitral valve incompetence|10027727|Mitral regurgitation|10027718|mitral regurgitation|C0026266|Mitral Valve Insufficiency|| +007301|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Neuroleptic malignant syndrome|10029282|NMS|10029435|nms like reactions|C0027849|Neuroleptic Malignant Syndrome||DrugClass +007302|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Neuroleptic malignant syndrome|10029282|Neuroleptic malignant syndrome|10029282|neuroleptic malignant syndrome like reactions|C0027849|Neuroleptic Malignant Syndrome||DrugClass +007303|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +007304|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Painful erection|10056303|Painful erection|10056303|painful erections greater than 6 hours|C0233973|Painful penile erection|duplicate|DrugClass +007305|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Priapism|10036661|Priapism|10036661|priapism|C0033117|Priapism||DrugClass +007306|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Prolactinoma|10036832|Prolactinoma|10036832|prolactinoma|C0033375|Prolactinoma|| +007307|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary hypertension|10037400|Pulmonary hypertension|10037400|pulmonary hypertension|C0020542|Pulmonary Hypertension|| +007308|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Red blood cell count decreased|10038153|Red blood cell count decreased|10038153|decreases in red blood cell count|C0427457|RBC count low|| +007309|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Serotonin syndrome|10040108|Serotonin syndrome|10040108|serotonin syndrome|C0699828|Serotonin Syndrome||DrugClass +007310|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +007311|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|White blood cell count decreased|10047942|Decreased white cell count|10011982|decreased white cell count|C0750394|White blood cell count decreased|| +007312|7cbbb12f-760d-487d-b789-ae2d52a3e01f|Belviq|43685-7|WARNINGS AND PRECAUTIONS|White blood cell count decreased|10047942|White blood cell count decreased|10047942|decreases in white blood cell count|C0750394|White blood cell count decreased|| +007313|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Abdominal abscess|10060921|Intra-abdominal abscess|10059621|intra-abdominal abscess|C0243001|Abdominal Abscess|| +007314|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +007315|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +007316|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Adenovirus infection|10060931|Adenovirus infection|10060931|adenovirus|C0001486|Adenovirus Infections|| +007317|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT high|10075801|high alt|C3888967|ALT high|| +007318|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST high|10075800|high ast|C3888966|AST high|| +007319|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Serum bilirubin increased|10040159|elevations of serum bilirubin|C0859062|Serum bilirubin increased|| +007320|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +007321|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +007322|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Gastroenteritis|10017888|Gastroenteritis|10017888|gastroenteritis|C0017160|Gastroenteritis|| +007323|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +007324|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +007325|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +007326|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +007327|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +007328|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Local reaction|10024769|Local reaction|10024769|local tolerability reaction|C0853813|Local reaction|| +007329|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Lymph node abscess|10050167|Lymph node abscess|10050167|lymph node abscess|C0272396|Lymph node abscess|| +007330|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Measles|10027011|Measles|10027011|measles|C0025007|Measles|| +007331|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +007332|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +007333|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +007334|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Absolute neutrophil count decreased|10059234|decreases in absolute neutrophil count|C1168174|Absolute neutrophil count decreased|| +007335|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|decreased neutrophils|C0853697|Neutrophil count decreased|| +007336|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +007337|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Otitis media|10033078|Otitis media|10033078|otitis media|C0029882|Otitis Media|| +007338|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Pharyngitis|10034835|Pharyngitis|10034835|pharyngitis|C0031350|Pharyngitis|| +007339|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|decreases in platelet counts|C0392386|Decreased platelet count|| +007340|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelets decreased|10035545|decreased platelets|C0392386|Decreased platelet count|| +007341|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +007342|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +007343|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +007344|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +007345|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Tonsillitis|10044008|Tonsillitis|10044008|tonsillitis|C0040425|Tonsillitis|| +007346|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevations of transaminases|C0438717|Transaminases increased|| +007347|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|infections of the upper respiratory tract|C0041912|Upper Respiratory Infections|| +007348|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +007349|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Varicella|10046980|Varicella|10046980|varicella|C0008049|Chickenpox|| +007350|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +007351|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Viral infection|10047461|Viral infection|10047461|viral infection|C0042769|Virus Diseases|| +007352|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Viral upper respiratory tract infection|10047482|Viral upper respiratory tract infection|10047482|viral upper respiratory tract infection|C0339916|Viral upper respiratory tract infection|| +007353|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +007354|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|WBC decreased|10056731|decreased wbc|C0750394|White blood cell count decreased|| +007355|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|White blood cell count decreased|10047942|decreased white blood cells|C0750394|White blood cell count decreased|| +007356|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|43685-7|WARNINGS AND PRECAUTIONS|Aspergillus infection|10074171|Aspergillosis|10003488|aspergillosis|C0004030|Aspergillosis|| +007357|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|43685-7|WARNINGS AND PRECAUTIONS|Atypical mycobacterial infection|10061663|Atypical mycobacterial infection|10061663|atypical mycobacterial infections|C0026919|Mycobacterium Infections, Nontuberculous|| +007358|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|43685-7|WARNINGS AND PRECAUTIONS|Cytomegalovirus infection|10011831|Cytomegalovirus infection|10011831|infections cytomegalovirus|C0010823|Cytomegalovirus Infections|| +007359|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|43685-7|WARNINGS AND PRECAUTIONS|Decreased immune responsiveness|10011968|Decreased immune responsiveness|10011968|interfere with normal immune response|C0863087|Decreased immune responsiveness|| +007360|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|43685-7|WARNINGS AND PRECAUTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +007361|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|43685-7|WARNINGS AND PRECAUTIONS|Histiocytosis haematophagic|10048595|Macrophage activation syndrome|10053867|mas|C1096155|Macrophage Activation Syndrome|| +007362|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +007363|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +007364|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +007365|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +007366|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis reactivated|10045025|reactivation of tuberculosis|C0275965|Reactivation tuberculosis|| +007367|7d271f3b-e4f9-4d80-8dcf-28d49123f80e|Ilaris|43685-7|WARNINGS AND PRECAUTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|infections of the upper respiratory tract|C0041912|Upper Respiratory Infections|| +007368|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Abnormal behaviour|10061422|Behavior abnormal|10004203|abnormal behavior|C0233514|Abnormal behavior|| +007369|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase > 2.5 * uln|C0151905|Alanine aminotransferase increased|| +007370|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast increased|C0151904|Aspartate aminotransferase increased|| +007371|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|Creatine phosphokinase increased|10011349|creatine phosphokinase >= 6.0 * uln|C0151576|Elevated creatine kinase|| +007372|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Glucose increased|10018421|serum glucose > 160 mg/dl|C0595931|SERUM GLUCOSE INCREASED|| +007373|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +007374|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Dermatitis exfoliative|10012455|Exfoliative dermatitis|10015665|exfoliative dermatitis|C0011606|Exfoliative dermatitis|| +007375|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +007376|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Hallucination|10019063|Hallucination|10019063|hallucination|C0018524|Hallucinations|| +007377|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +007378|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +007379|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +007380|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Neuropsychiatric syndrome|10071323|Neuropsychiatric syndrome|10071323|neuropsychiatric events|C3534763|One or more neuropsychiatric symptoms|| +007381|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count low|10029369|neutrophils < 1.000 *10 9 /l|C0853697|Neutrophil count decreased|| +007382|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +007383|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +007384|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +007385|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|43685-7|WARNINGS AND PRECAUTIONS|Abnormal behaviour|10061422|Behavior abnormal|10004203|abnormal behavior|C0233514|Abnormal behavior|| +007386|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|43685-7|WARNINGS AND PRECAUTIONS|Delirium|10012218|Delirium|10012218|delirium|C0011206|Delirium|| +007387|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|43685-7|WARNINGS AND PRECAUTIONS|Erythema multiforme|10015218|Erythema multiforme|10015218|erythema multiforme|C0014742|Erythema Multiforme|| +007388|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|43685-7|WARNINGS AND PRECAUTIONS|Hallucination|10019063|Hallucinations|10019077|hallucinations|C0018524|Hallucinations|| +007389|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +007390|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|43685-7|WARNINGS AND PRECAUTIONS|Injury|10022116|Injury|10022116|injury|C3263723|Traumatic injury|| +007391|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +007392|7fdedaec-9e53-4a37-a4e4-a301c8a251b8|RAPIVAB|43685-7|WARNINGS AND PRECAUTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +007393|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +007394|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Abdominal pain lower|10000084|Abdominal pain lower|10000084|abdominal pain lower|C0232495|Lower abdominal pain|| +007395|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +007396|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +007397|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Actinic keratosis|10000614|Actinic keratosis|10000614|actinic keratosis|C0022602|Actinic keratosis|| +007398|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Renal failure acute|10038436|renal failure acute|C0022660|Kidney Failure, Acute|| +007399|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increased alt|C0151905|Alanine aminotransferase increased|| +007400|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +007401|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +007402|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +007403|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increased ast|C0151904|Aspartate aminotransferase increased|| +007404|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +007405|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +007406|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Blindness transient|10005184|Transient blindness|10044373|transient blindness|C0155003|Blindness, Transient|| +007407|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|increased alkaline phosphatase|C0151849|Alkaline phosphatase raised|| +007408|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|increased creatinine|C0151578|Creatinine increased|| +007409|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Brain stem haemorrhage|10006145|Brain stem hemorrhage|10006146|brain stem hemorrhage|C0521540|Brain stem hemorrhage|| +007410|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Carcinogenicity|10007269|Carcinogenicity|10007269|tumor promotion in braf wild-type melanoma|C1519689|Tumor Promotion|| +007411|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Cardiomyopathy|10007636|Cardiomyopathy|10007636|cardiomyopathy|C0878544|Cardiomyopathies|| +007412|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +007413|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Cerebral haemorrhage|10008111|Cerebral hemorrhage|10008114|cerebral hemorrhage|C2937358|Cerebral Hemorrhage|| +007414|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +007415|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +007416|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +007417|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +007418|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +007419|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Dermatitis acneiform|10012432|Dermatitis acneiform|10012432|dermatitis acneiform|C0234894|Dermatitis acneiform|| +007420|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Dermatitis bullous|10012441|Bullous rash|10006569|bullous rash|C0235819|Rash bullous|| +007421|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +007422|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +007423|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +007424|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +007425|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Ejection fraction decreased|10050528|Ejection fraction decreased|10050528|decreased ejection fraction|C0743400|Ejection fraction decreased|| +007426|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|qtcf prolongation|C3828431|QTcF Prolongation|| +007427|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolism|C1861172|Venous Thromboembolism|| +007428|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +007429|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +007430|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Eye haemorrhage|10015926|Eye hemorrhage|10015928|eye hemorrhage|C0015402|Eye Hemorrhage|| +007431|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +007432|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Folliculitis|10016936|Folliculitis|10016936|folliculitis|C0016436|Folliculitis|| +007433|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|GGT increased|10056910|increased ggt|C0151662|Gamma-glutamyl transferase raised|| +007434|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Gastric haemorrhage|10017788|Gastric hemorrhage|10017789|gastric hemorrhage|C0235325|Gastric hemorrhage|| +007435|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Gingival bleeding|10018276|Gingival hemorrhage|10072706|gingival hemorrhage|C0017565|Gingival Hemorrhage|| +007436|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Glucose-6-phosphate dehydrogenase deficiency|10018444|Glucose-6-phosphate dehydrogenase deficiency|10018444|glucose-6-phosphate dehydrogenase deficiency|C2939465|Deficiency of glucose-6-phosphate dehydrogenase|| +007437|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +007438|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Haemorrhage intracranial|10018985|Hemorrhage intracranial|10019552|hemorrhage intracranial|C0151699|Intracranial Hemorrhages|| +007439|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +007440|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +007441|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Hyperbilirubinaemia|10020578|Hyperbilirubinemia|10020582|hyperbilirubinemia|C0020433|Hyperbilirubinemia|| +007442|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Hypercalcaemia|10020583|Hypercalcemia|10020587|hypercalcemia|C0020437|Hypercalcemia|| +007443|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +007444|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +007445|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Hyperkalaemia|10020646|Hyperkalemia|10020647|hyperkalemia|C0020461|Hyperkalemia|| +007446|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Hyperkeratosis|10020649|Hyperkeratosis|10020649|hyperkeratosis|C0870082|Hyperkeratosis|| +007447|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +007448|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +007449|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Hypoalbuminaemia|10020942|Hypoalbuminemia|10020943|hypoalbuminemia|C0239981|Hypoalbuminemia|| +007450|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +007451|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +007452|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +007453|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +007454|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +007455|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +007456|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Keratoacanthoma|10023347|Keratoacanthoma|10023347|keratoacanthoma|C0022572|keratoacanthoma|| +007457|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +007458|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Lymphoedema|10025282|Lymphedema|10025233|lymphedema|C0024236|Lymphedema|| +007459|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +007460|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +007461|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +007462|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +007463|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +007464|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|primary malignancies|C0865017|Generalized malignancy, primary|| +007465|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +007466|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Night sweats|10029410|Night sweats|10029410|night sweats|C0028081|Night sweats|| +007467|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Ocular toxicity|10061137|Ocular toxicity|10061137|ocular toxicities|C1262036|Ocular toxicity|| +007468|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +007469|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +007470|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +007471|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +007472|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +007473|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysesthesia syndrome|10054524|palmar-plantar erythrodysesthesia syndrome|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +007474|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +007475|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Papilloma|10033713|Papilloma|10033713|papilloma|C0030354|Papilloma|| +007476|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Paronychia|10034016|Paronychia|10034016|paronychia|C0030578|Paronychia Inflammation|| +007477|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +007478|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Febrile reaction|10016289|febrile reactions|C0235723|Reaction febrile|| +007479|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +007480|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Rash erythematous|10037855|Rash erythematous|10037855|rash erythematous|C0234913|Rash erythematous|| +007481|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|rash generalized|C0497365|Rash generalised|| +007482|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Rash macular|10037867|Rash macular|10037867|rash macular|C0221201|Macular rash|| +007483|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Rash maculo-papular|10037868|rash maculo-papular|C0423791|Maculopapular eruption|| +007484|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Rash papular|10037876|Rash papular|10037876|rash papular|C1519353|Skin Papule|| +007485|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Rash pruritic|10037884|Rash pruritic|10037884|rash pruritic|C0033771|Prurigo|| +007486|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Rash pustular|10037888|Rash pustular|10037888|rash pustular|C0085641|Pustular rash|| +007487|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Rash vesicular|10037898|Rash vesicular|10037898|rash vesicular|C0221203|Vesicular rash|| +007488|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +007489|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +007490|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Skin papilloma|10040907|Skin papilloma|10040907|skin papilloma|C0347390|Skin Papilloma|| +007491|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Skin toxicity|10059516|Skin toxicity|10059516|skin toxicity|C1167791|Skin toxicity|| +007492|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Squamous cell carcinoma of skin|10041834|Squamous cell carcinoma of skin|10041834|cutaneous squamous cell carcinoma|C0553723|Squamous cell carcinoma of skin|| +007493|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +007494|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +007495|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Tubulointerstitial nephritis|10048302|Nephritis interstitial|10029134|interstitial nephritis|C0027707|Nephritis, Interstitial|| +007496|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +007497|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Vaginal haemorrhage|10046910|Vaginal hemorrhage|10046912|vaginal hemorrhage|C2979982|Vaginal Hemorrhage|| +007498|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +007499|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Vitreous haemorrhage|10047655|Vitreous hemorrhage|10047656|vitreous hemorrhage|C0042909|Vitreous Hemorrhage|| +007500|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +007501|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Adenocarcinoma pancreas|10052747|Pancreatic adenocarcinoma|10051971|kras mutation-positive pancreatic adenocarcinoma|C0281361|Adenocarcinoma of pancreas|duplicate| +007502|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Basal cell carcinoma|10004146|Basal cell carcinoma|10004146|basal cell carcinoma|C0007117|Basal cell carcinoma|| +007503|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Carcinogenicity|10007269|Carcinogenicity|10007269|tumor promotion in braf wild-type melanoma|C1519689|Tumor Promotion|| +007504|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Cardiomyopathy|10007636|Cardiomyopathy|10007636|cardiomyopathy|C0878544|Cardiomyopathies|| +007505|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +007506|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Chills|10008531|Rigors|10039177|rigors|C0424790|Rigor - Temperature-associated observation|| +007507|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Colorectal cancer|10061451|Colorectal carcinoma|10010036|recurrent nras mutation-positive colorectal carcinoma|C0009402|Colorectal Carcinoma|underspecified| +007508|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +007509|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Deep vein thrombosis|10051055|DVT|10013877|dvt|C0149871|Deep Vein Thrombosis|| +007510|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Deep vein thrombosis|10051055|Deep vein thrombosis|10051055|deep vein thrombosis|C0149871|Deep Vein Thrombosis|| +007511|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Deep vein thrombosis|10051055|Thrombosis venous deep|10043642|deep venous thrombosis|C0149871|Deep Vein Thrombosis|| +007512|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +007513|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Detachment of retinal pigment epithelium|10052501|Detachment of retinal pigment epithelium|10052501|rped|C0339546|Retinal Pigment Epithelial Detachment|| +007514|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Ejection fraction decreased|10050528|Left ventricular ejection fraction decreased|10053222|decrease in lvef|C1096403|Left ventricular ejection fraction decreased|| +007515|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolism|C1861172|Venous Thromboembolism|| +007516|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +007517|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Gastric haemorrhage|10017788|Gastric hemorrhage|10017789|gastric hemorrhage|C0235325|Gastric hemorrhage|| +007518|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Glioblastoma|10018336|Glioblastoma|10018336|glioblastoma|C0017636|Glioblastoma|| +007519|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Glucose-6-phosphate dehydrogenase deficiency|10018444|Glucose-6-phosphate dehydrogenase deficiency|10018444|glucose-6-phosphate dehydrogenase deficiency|C2939465|Deficiency of glucose-6-phosphate dehydrogenase|| +007520|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Haemolytic anaemia|10018916|Hemolytic anemia|10019493|hemolytic anemia|C0002878|Anemia, Hemolytic|| +007521|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage intracranial|10018985|Intracranial hemorrhage|10022763|intracranial hemorrhage|C0151699|Intracranial Hemorrhages|| +007522|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|symptomatic bleeding|C0019080|Hemorrhage|underspecified| +007523|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhages|C0019080|Hemorrhage|| +007524|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +007525|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Hyperplasia|10020718|Hyperplasia|10020718|increased cell proliferation|C0020507|Hyperplasia||DrugClass +007526|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +007527|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +007528|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Iritis|10022955|Iritis|10022955|iritis|C0022081|Iritis|| +007529|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|K-ras gene mutation|10069755|KRAS mutation|10069759|kras mutation-positive pancreatic adenocarcinoma|C2747837|KRAS mutation|duplicate| +007530|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Keratoacanthoma|10023347|Keratoacanthoma|10023347|keratoacanthoma|C0022572|keratoacanthoma|| +007531|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Malignant melanoma|10025650|Malignant melanoma|10025650|primary malignant melanomas|C0025202|melanoma|| +007532|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Malignant melanoma|10025650|Melanoma|10053571|melanoma|C0025202|melanoma|| +007533|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryotoxic|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk||Animal +007534|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|non-cutaneous malignancies|C0006826|Malignant Neoplasms|underspecified| +007535|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Ocular toxicity|10061137|Ocular toxicity|10061137|ocular toxicities|C1262036|Ocular toxicity|| +007536|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +007537|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Febrile reaction|10016289|febrile reactions|C0235723|Reaction febrile|| +007538|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +007539|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +007540|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +007541|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Retinal detachment|10038848|Retinal detachment|10038848|retinal detachments|C0035305|Retinal Detachment|| +007542|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Retinal vein occlusion|10038907|Retinal vein occlusion|10038907|retinal vein occlusion|C0035328|Retinal Vein Occlusion|| +007543|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Skin cancer|10040808|Skin neoplasm malignant|10040895|primary malignancies, cutaneous|C0007114|Malignant neoplasm of skin|| +007544|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Skin infection|10040872|Skin infection|10040872|secondary infections of the skin|C0037278|Skin Diseases, Infectious|| +007545|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Skin toxicity|10059516|Skin toxicity|10059516|skin toxicity|C1167791|Skin toxicity|| +007546|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Squamous cell carcinoma of skin|10041834|Squamous cell carcinoma of skin|10041834|cuscc|C0553723|Squamous cell carcinoma of skin|| +007547|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +007548|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenic|C0232910|Teratogenesis||Animal +007549|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|Uveitis|10046851|Uveitis|10046851|uveitis|C0042164|Uveitis|| +007550|803beaaa-33f9-48cc-9a95-c2e887e095b4|Tafinlar|43685-7|WARNINGS AND PRECAUTIONS|||||head and neck carcinoma|C3887461|Head and Neck Carcinoma|unmapped| +007551|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34066-1|BOXED WARNINGS|Erectile dysfunction|10061461|Inability to maintain erection|10021573|penile detumescence|C0858253|Inability to maintain erection|| +007552|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34066-1|BOXED WARNINGS|Fracture of penis|10052530|Fracture of penis|10052530|corporal rupture|C0434159|Rupture of corpus cavernosum of penis|| +007553|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34066-1|BOXED WARNINGS|Penile haematoma|10070656|Penile hematoma|10070663|penile hematoma|C2938972|Penile haematoma|| +007554|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34066-1|BOXED WARNINGS|Penile haemorrhage|10034305|Penile ecchymosis|10070657|penile ecchymoses|C2938973|Penile ecchymosis|| +007555|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34066-1|BOXED WARNINGS|Penis disorder|10034336|Penile popping sensation|10074968|penile "popping" sensation|C3854564|Penile popping sensation|| +007556|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34066-1|BOXED WARNINGS|Penis injury|10068036|Penis injury|10068036|penile injury|C0347656|Injury of penis|| +007557|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Administration site pain|10058049|Administration site pain|10058049|pain in the treated extremity|C0521491|Application site pain|duplicate| +007558|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Axillary mass|10049021|Axillary mass|10049021|axillary mass|C0238729|Mass of axilla|| +007559|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Axillary pain|10048750|Axillary pain|10048750|axillary pain|C0577659|Pain in axilla|| +007560|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Blood blister|10005372|Blood blister|10005372|blood blister|C0563247|Blood blister|| +007561|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Contusion|10050584|Contusion|10050584|contusion|C0009938|Contusions|| +007562|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Dyspareunia|10013941|Dyspareunia|10013941|dyspareunia|C1384606|Dyspareunia|| +007563|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Ecchymosis|10014080|Ecchymoses|10014079|ecchymoses|C0013491|Ecchymosis|| +007564|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Ecchymosis|10014080|Ecchymosis|10014080|ecchymosis|C0013491|Ecchymosis|| +007565|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Erectile dysfunction|10061461|Erectile dysfunction|10061461|erectile dysfunction|C0242350|Erectile dysfunction|| +007566|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Erectile dysfunction|10061461|Inability to maintain erection|10021573|penile detumescence|C0858253|Inability to maintain erection|| +007567|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +007568|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Fracture of penis|10052530|Fracture of penis|10052530|corporal rupture|C0434159|Rupture of corpus cavernosum of penis|| +007569|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Haematoma|10018852|Hematoma|10019428|hematoma|C0018944|Hematoma|| +007570|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection related reaction|10071152|Injection related reaction|10071152|adverse reaction of the injected extremity|C3160907|Injection related reaction|| +007571|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site bruising|10022052|Injection site bruising|10022052|injection site bruising|C0521508|Injection site bruising|| +007572|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site discomfort|10054266|Injection site discomfort|10054266|injection site discomfort|C1096267|Injection site discomfort|| +007573|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +007574|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site haematoma|10022066|Injection site hematoma|10055371|injection site hematoma|C0542008|Injection site haematoma|| +007575|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site haemorrhage|10022067|Injection site hemorrhage|10022068|injection site hemorrhage|C0151698|Injection site hemorrhage|| +007576|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site inflammation|10022078|Injection site inflammation|10022078|injection site inflammation|C0151734|Injection site inflammation|| +007577|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site injury|10066083|Injection site injury|10066083|injury to the injected extremity|C1737214|Injection site injury|duplicate| +007578|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site irritation|10022079|Injection site irritation|10022079|injection site irritation|C0521498|Injection site irritation|| +007579|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site oedema|10022085|Injection site edema|10022058|injection site edema|C0151605|Injection site edema|| +007580|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +007581|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|injection site pruritus|C0852995|Injection site pruritus|| +007582|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reaction|C0151735|Injection site reaction|| +007583|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site swelling|10053425|Injection site swelling|10053425|injection site swelling|C0151605|Injection site edema|| +007584|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site swelling|10053425|Swelling of injection site|10042696|swelling of the injected hand|C0151605|Injection site edema|duplicate| +007585|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site vesicles|10022111|Injection site vesicles|10022111|injection site vesicles|C0854431|Injection site vesicles|| +007586|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Injection site warmth|10022112|Injection site warmth|10022112|injection site warmth|C0858934|Injection site warmth|| +007587|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Laceration|10023572|Laceration|10023572|laceration|C0043246|Laceration|| +007588|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Laceration|10023572|Skin laceration|10058818|skin laceration|C0558401|Skin laceration|| +007589|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Ligament rupture|10065433|Finger tendon pulley rupture|10074965|tendon rupture of the finger|C0434348|Rupture of tendon of finger|| +007590|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Limb injury|10061225|Limb injury|10061225|injury to the injected extremity|C0743668|Limb injury|duplicate| +007591|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Local swelling|10024770|Local swelling|10024770|local swelling|C0853619|Local swelling|| +007592|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Localised oedema|10048961|Localized edema|10062466|localized edema|C0013609|Localized edema|| +007593|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Lymph node pain|10025182|Lymph node pain|10025182|lymph node pain|C0578050|Pain of lymph node|| +007594|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Lymphadenopathy|10025197|Lymphadenopathy|10025197|lymphadenopathy|C0497156|Lymphadenopathy|| +007595|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Nodule|10054107|Nodule|10054107|nodule|C0028259|Nodule|| +007596|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +007597|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +007598|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Painful erection|10056303|Painful erection|10056303|painful erection|C0233973|Painful penile erection|| +007599|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +007600|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Penile blister|10052898|Penile blister|10052898|penile blister|C1540763|Penile blister|| +007601|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Penile contusion|10073352|Penile bruise|10070661|penile bruising|C2938977|Penile contusion|| +007602|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Penile haematoma|10070656|Penile hematoma|10070663|penile hematoma|C2938972|Penile haematoma|| +007603|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Penile haemorrhage|10034305|Penile ecchymosis|10070657|penile ecchymoses|C2938973|Penile ecchymosis|| +007604|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Penile haemorrhage|10034305|Penile hemorrhage|10055314|penile hemorrhage|C0269002|Hemorrhage of penis|| +007605|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Penile oedema|10066774|Penile edema|10066853|penile edema|C0156308|Edema of penis|| +007606|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Penile pain|10034310|Penile pain|10034310|penile pain|C0497481|Pain in penis|| +007607|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Penile swelling|10034319|Penile swelling|10034319|penile swelling|C1282799|Penile swelling|| +007608|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Penis disorder|10034336|Penile popping sensation|10074968|popping sensation in the penis|C3854564|Penile popping sensation|| +007609|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Penis disorder|10034336|Penis disorder|10034336|adverse reactions of the penis|C0030846|Penile Diseases|| +007610|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Peripheral swelling|10048959|Swelling of hands|10042695|swelling of the injected hand|C0575805|swelling of hands (finding)|duplicate| +007611|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Procedural pain|10064882|Procedural pain|10064882|procedural pain|C1619712|Procedural pain|| +007612|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Pruritus genital|10037093|Pruritus genital|10037093|pruritus genital|C0033777|Pruritus of genital organs|| +007613|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +007614|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Scrotal swelling|10039759|Scrotal swelling|10039759|scrotal swelling|C0282005|Swelling of scrotum|| +007615|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Skin discolouration|10040829|Skin discoloration|10040828|skin discoloration|C0151907|Discoloration of skin|| +007616|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Suprapubic pain|10050822|Suprapubic pain|10050822|suprapubic pain|C0241310|Suprapubic pain|| +007617|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope vasovagal|10042777|vasovagal syncope|C0042420|Vasovagal syncope|| +007618|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Tenderness|10043224|Tenderness|10043224|tenderness|C0234233|Sore to touch|| +007619|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Tendon rupture|10043248|Nontraumatic rupture of flexor tendons of hand and wrist|10029738|flexor tendon rupture of the finger|C0410050|Rupture of flexor tendon of finger|| +007620|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|Tendon rupture|10043248|Tendon rupture|10043248|tendon ruptures|C0151937|Rupture of tendon|| +007621|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|34084-4|ADVERSE REACTIONS|||||adverse reactions of the groin|||unmapped| +007622|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +007623|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Complex regional pain syndrome|10064332|Complex regional pain syndrome|10064332|crps|C0458219|Complex Regional Pain Syndromes|| +007624|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Contusion|10050584|Contusion|10050584|contusion|C0009938|Contusions|| +007625|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Ecchymosis|10014080|Ecchymosis|10014080|ecchymosis|C0013491|Ecchymosis|| +007626|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Erectile dysfunction|10061461|Inability to maintain erection|10021573|penile detumescence|C0858253|Inability to maintain erection|| +007627|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Fracture of penis|10052530|Fracture of penis|10052530|corporal rupture|C0434159|Rupture of corpus cavernosum of penis|| +007628|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +007629|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +007630|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Injection site haemorrhage|10022067|Injection site hemorrhage|10022068|injection site hemorrhage|C0151698|Injection site hemorrhage|| +007631|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Injection site injury|10066083|Injection site injury|10066083|hand injury to the injected|C1737214|Injection site injury|duplicate| +007632|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Injury|10022116|Permanent injury|10076940|permanent injury|C3263722|Traumatic AND/OR non-traumatic injury|| +007633|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Laceration|10023572|Skin laceration|10058818|skin laceration|C0558401|Skin laceration|| +007634|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Laceration|10023572|Skin tear|10048704|skin tear|C0877377|Skin tear|| +007635|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Ligament injury|10061223|Ligament injury|10061223|ligament injury|C0435001|Ligament injury|| +007636|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Ligament rupture|10065433|Ligament rupture|10065433|pulley rupture|C0262538|Ligament rupture|| +007637|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Limb injury|10061225|Injury to finger NOS|10022193|injury to the injected finger|C0016124|Finger Injuries|duplicate| +007638|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Limb injury|10061225|Injury to hand NOS|10022198|hand injury to the injected|C0018571|Hand Injuries|duplicate| +007639|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Penile haematoma|10070656|Penile hematoma|10070663|penile hematoma|C2938972|Penile haematoma|| +007640|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Penile haemorrhage|10034305|Penile ecchymosis|10070657|penile ecchymosis|C2938973|Penile ecchymosis|| +007641|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Penis disorder|10034336|Penile popping sensation|10074968|penile "popping" sound|C3854564|Penile popping sensation|| +007642|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Penis injury|10068036|Penis injury|10068036|corpora cavernosa of the penis damage|C0347656|Injury of penis|underspecified| +007643|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +007644|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Sensory level abnormal|10061567|Sensory level abnormal|10061567|sensory abnormality of the hand|C1262071|Sensory level abnormal|| +007645|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Tendon injury|10043242|Hand tendon injury|10019122|tendons of the hand damage|C0434301|Tendon injury - hand|| +007646|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|Tendon rupture|10043248|Tendon rupture|10043248|tendon rupture|C0151937|Rupture of tendon|| +007647|805cecd0-fd1f-11dd-87af-0800200c9a66|XIAFLEX|43685-7|WARNINGS AND PRECAUTIONS|||||collagen-containing structures damage|||unmapped| +007648|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34066-1|BOXED WARNINGS|Arterial occlusive disease|10062599|Arterial occlusion|10058475|arterial occlusions|C0264995|Occlusion of artery (disorder)|| +007649|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34066-1|BOXED WARNINGS|Arterial thrombosis|10003178|Arterial thrombosis|10003178|arterial thrombosis|C0151942|Arterial thrombosis|| +007650|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34066-1|BOXED WARNINGS|Cardiac failure|10007554|Heart failure|10019279|heart failure|C0018801|Heart failure|| +007651|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34066-1|BOXED WARNINGS|Cerebral artery stenosis|10063648|Cerebral artery stenosis|10063648|stenosis of large arterial vessels of the brain|C1504438|Cerebral artery stenosis|| +007652|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34066-1|BOXED WARNINGS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +007653|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +007654|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34066-1|BOXED WARNINGS|Hepatic failure|10019663|Liver failure|10024678|liver failure|C0085605|Liver Failure|| +007655|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34066-1|BOXED WARNINGS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +007656|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34066-1|BOXED WARNINGS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +007657|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34066-1|BOXED WARNINGS|Peripheral vascular disorder|10034636|Peripheral vascular disease|10034633|peripheral vascular disease|C0085096|Peripheral Vascular Diseases|| +007658|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34066-1|BOXED WARNINGS|Vascular occlusion|10053648|Vascular occlusion|10053648|vascular occlusion|C1096458|Vascular occlusion|| +007659|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34066-1|BOXED WARNINGS|Venous occlusion|10058990|Venous occlusion|10058990|venous occlusions|C0948441|Venoocclusive disease|| +007660|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34066-1|BOXED WARNINGS|Venous thrombosis|10047249|Venous thrombosis|10047249|venous thrombosis|C0042487|Venous Thrombosis|| +007661|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +007662|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increased|C0151905|Alanine aminotransferase increased|| +007663|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Amylase increased|10002016|Amylase increased|10002016|amylase increased|C0151479|Amylase increased|| +007664|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +007665|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Arrhythmia|10003119|Cardiac arrhythmia|10007518|cardiac arrhythmias|C0003811|Cardiac Arrhythmia|| +007666|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +007667|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast increased|C0151904|Aspartate aminotransferase increased|| +007668|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +007669|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +007670|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +007671|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood albumin decreased|10005287|Albumin decreased|10001561|albumin decreased|C0860864|Decreased albumin|| +007672|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|alkaline phosphatase increased|C0151849|Alkaline phosphatase raised|| +007673|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood bicarbonate decreased|10005359|Blood bicarbonate decreased|10005359|bicarbonate decreased|C0238762|BICARBONATE, DECREASED|| +007674|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|bilirubin increased|C0311468|Increased bilirubin level (finding)|| +007675|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood calcium decreased|10005395|Calcium decreased|10006954|calcium decreased|C0860967|Calcium low|| +007676|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood calcium increased|10005396|Calcium increased|10006963|calcium increased|C0553702|Ca++ increased|| +007677|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|creatinine increased|C0151578|Creatinine increased|| +007678|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood disorder|10061590|Hematologic disorder|10019426|hematologic adverse reactions|C0018939|Hematological Disease|| +007679|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood glucose decreased|10005555|Glucose decreased|10018419|glucose decreased|C1704381|Glucose decreased|| +007680|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Glucose increased|10018421|glucose increased|C0860803|Glucose increased|| +007681|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood phosphorus decreased|10049471|Blood phosphorus decreased|10049471|phosphorus decreased|C0877517|Blood phosphorus decreased|| +007682|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood potassium decreased|10005724|Potassium decreased|10036443|potassium decreased|C0860866|Potassium low|| +007683|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood potassium increased|10005725|Potassium increased|10036450|potassium increased|C0856882|Potassium increased|| +007684|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood sodium decreased|10005802|Sodium decreased|10041268|sodium decreased|C0860871|Sodium decreased|| +007685|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood sodium increased|10005803|Sodium increased|10041272|sodium increased|C0595879|Sodium high|| +007686|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|triglycerides increased|C1522137|Hypertriglyceridemia result|| +007687|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|myelosuppression|C0854467|Myelosuppression|| +007688|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Bone pain|10006002|Bone pain|10006002|bone pain|C0151825|Bone pain|| +007689|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Cardiac failure|10007554|cardiac failure|C0018801|Heart failure|| +007690|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Heart failure|10019279|heart failure|C0018801|Heart failure|| +007691|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Cardiovascular disorder|10007649|Cardiovascular disorder|10007649|disorders cardiovascular|C0007222|Cardiovascular Diseases|| +007692|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +007693|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Central nervous system haemorrhage|10072043|Central nervous system hemorrhage|10072051|cns hemorrhage|C3267019|Central nervous system haemorrhage|| +007694|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Cerebrovascular disorder|10008196|Cerebrovascular disorder|10008196|disorders cerebrovascular|C0007820|Cerebrovascular Disorders|| +007695|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +007696|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +007697|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +007698|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +007699|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +007700|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +007701|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +007702|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +007703|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Effusion|10063045|Effusion|10063045|effusions|C0013687|effusion|| +007704|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolism|C1861172|Venous Thromboembolism|| +007705|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +007706|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +007707|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Fluid retention|10016807|Fluid retention|10016807|fluid retention|C0268000|Body fluid retention|| +007708|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|GGT increased|10056910|ggt increased|C0151662|Gamma-glutamyl transferase raised|| +007709|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|GI hemorrhage|10018233|gi hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +007710|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +007711|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Haematology test abnormal|10057755|Hematology test abnormal|10057760|hematologic abnormalities|C0475182|Hematology finding abnormal|| +007712|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hgb decreased|C0162119|Hemoglobin low|| +007713|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +007714|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +007715|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +007716|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +007717|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +007718|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +007719|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Ischaemia|10061255|Ischemia|10054438|arterial ischemic event|C0340561|Arterial ischemia|underspecified| +007720|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +007721|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Lipase increased|10024574|Lipase increased|10024574|lipase increased|C0549475|Lipase increased|| +007722|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +007723|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +007724|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +007725|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +007726|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +007727|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +007728|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy|10029328|neuropathy|C0442874|Neuropathy|| +007729|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +007730|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Absolute neutrophil count decreased|10059234|anc decreased|C1168174|Absolute neutrophil count decreased|| +007731|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Ocular toxicity|10061137|Ocular toxicity|10061137|ocular toxicity|C1262036|Ocular toxicity|| +007732|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema, peripheral|C0085649|Peripheral edema|| +007733|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +007734|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +007735|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +007736|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Peripheral vascular disorder|10034636|Peripheral vascular disorder|10034636|disorders peripheral vascular|C0085096|Peripheral Vascular Diseases|| +007737|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|platelet count decreased|C0392386|Decreased platelet count|| +007738|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Pleural effusion|10035598|Pleural effusion|10035598|pleural effusion|C0032227|Pleural effusion disorder|| +007739|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +007740|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +007741|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +007742|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +007743|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Mucositis oral|10028130|oral mucositis|C1568868|Oral Mucositis|| +007744|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +007745|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +007746|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +007747|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Vascular occlusion|10053648|Vascular occlusion|10053648|vascular occlusion|C1096458|Vascular occlusion|| +007748|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +007749|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +007750|807f988e-117b-4497-934d-73aa78baac71|Iclusig|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|WBC decreased|10056731|wbc decreased|C0750394|White blood cell count decreased|| +007751|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Acute hepatic failure|10000804|Acute liver failure|10049844|acute liver failure|C0162557|Liver Failure, Acute|| +007752|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Acute hepatic failure|10000804|Fulminant hepatic failure|10017469|fulminant hepatic failure|C0162557|Liver Failure, Acute|| +007753|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt elevation|C0151905|Alanine aminotransferase increased|| +007754|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase elevation|C0151905|Alanine aminotransferase increased|| +007755|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +007756|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Arrhythmia|10003119|Cardiac arrhythmia|10007518|cardiac arrhythmias|C0003811|Cardiac Arrhythmia|| +007757|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Arterial occlusive disease|10062599|Arterial occlusion|10058475|arterial occlusions|C0264995|Occlusion of artery (disorder)|| +007758|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Arterial thrombosis|10003178|Arterial thrombosis|10003178|arterial thrombosis|C0151942|Arterial thrombosis|| +007759|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Ascites|10003445|Ascites|10003445|ascites|C0003962|Ascites|| +007760|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast elevation|C0151904|Aspartate aminotransferase increased|| +007761|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase elevation|C0151904|Aspartate aminotransferase increased|| +007762|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +007763|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Atrial flutter|10003662|Atrial flutter|10003662|atrial flutter|C0004239|Atrial Flutter|| +007764|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Atrial tachycardia|10003668|Atrial tachycardia|10003668|atrial tachycardia|C0546959|Atrial tachycardia|| +007765|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block complete|10003673|Complete heart block|10010141|complete heart block|C0151517|Complete atrioventricular block|| +007766|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Blindness|10005169|Blindness|10005169|blindness|C0456909|Blind Vision|| +007767|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|myelosuppression|C0854467|Myelosuppression|| +007768|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Bradyarrhythmia|10049765|Bradyarrhythmia|10049765|symptomatic bradyarrhythmias|C0079035|Bradyarrhythmia (disorder)|| +007769|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +007770|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Brain oedema|10048962|Brain edema|10006121|brain edema|C1527311|Brain Edema|| +007771|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Heart failure|10019279|heart failure|C0018801|Heart failure|| +007772|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Carotid artery stenosis|10007687|Carotid artery stenosis|10007687|stenosis carotid artery|C0007282|Carotid Stenosis|| +007773|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Cataract|10007739|Cataracts|10007771|cataracts|C0086543|Cataract|| +007774|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Cerebral artery occlusion|10008089|Cerebral vascular occlusion|10076895|cerebrovascular occlusion|C0596298|Cerebrovascular Occlusion|| +007775|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Cerebral artery stenosis|10063648|Cerebral artery stenosis|10063648|stenosis in major arterial vessels that supply the brain|C1504438|Cerebral artery stenosis|| +007776|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Cerebral artery stenosis|10063648|Middle cerebral artery stenosis|10063759|stenosis middle cerebral artery|C1504568|Stenosis of middle cerebral artery|| +007777|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Cerebral haemorrhage|10008111|Cerebral hemorrhage|10008114|cerebral hemorrhage|C2937358|Cerebral Hemorrhage|| +007778|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +007779|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +007780|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Confusional state|10010305|Confusion|10010300|confusion|C0009676|Confusion|| +007781|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Conjunctival irritation|10010725|Conjunctival irritation|10010725|conjunctival irritation|C0239093|Conjunctival irritation|| +007782|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Corneal irritation|10056476|Corneal irritation|10056476|corneal irritation|C1112489|Corneal irritation|| +007783|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Coronary artery occlusion|10011086|Coronary artery occlusion|10011086|coronary artery occlusion|C0151814|Coronary Occlusion|| +007784|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Coronary artery occlusion|10011086|Coronary occlusion|10011103|cardiac vascular occlusion|C1110554|Cardiovascular occlusion|duplicate| +007785|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Cranial nerve disorder|10061093|Cranial neuropathy|10061096|cranial neuropathy|C0010266|Cranial nerve diseases|| +007786|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +007787|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Deep vein thrombosis|10051055|Thrombosis venous deep|10043642|deep venous thrombosis|C0149871|Deep Vein Thrombosis|| +007788|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Dry eye|10013774|Dry eye|10013774|dry eye|C0314719|Dryness of eye|| +007789|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Shortness of breath|10040604|shortness of breath|C0013404|Dyspnea|| +007790|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolic events|C1861172|Venous Thromboembolism|| +007791|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Extremity necrosis|10059385|Digital necrosis|10050630|digital extremity necrosis|C0919725|Digital necrosis|| +007792|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Extremity necrosis|10059385|Extremity necrosis|10059385|distal extremity necrosis|C1167745|Extremity necrosis|| +007793|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Eye pain|10015958|Eye pain|10015958|eye pain|C0151827|Eye pain|| +007794|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Fluid retention|10016807|Fluid retention|10016807|fluid retention|C0268000|Body fluid retention|| +007795|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +007796|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal fistula|10017877|Gastrointestinal fistula|10017877|gastrointestinal fistula|C0079238|Digestive System Fistula|| +007797|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +007798|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +007799|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Glaucoma|10018304|Glaucoma|10018304|glaucoma|C0017601|Glaucoma|| +007800|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding events|C0019080|Hemorrhage|| +007801|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +007802|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +007803|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Liver failure|10024678|liver failure|C0085605|Liver Failure|| +007804|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +007805|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Hyperaesthesia|10020568|Hyperesthesia|10020622|hyperesthesia|C0020453|Hyperesthesia|| +007806|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +007807|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Hypertensive crisis|10020802|Hypertensive crisis|10020802|hypertensive crisis|C0020546|Hypertensive crisis|| +007808|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Hyperuricaemia|10020903|Hyperuricemia|10020907|hyperuricemia|C0740394|Hyperuricemia|| +007809|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +007810|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Impaired healing|10021519|Wound healing disturbance of|10048037|compromise wound healing|C0151692|Impaired wound healing|| +007811|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Iridocyclitis|10022941|Iridocyclitis|10022941|iridocyclitis|C0022073|Iridocyclitis|| +007812|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Iritis|10022955|Iritis|10022955|iritis|C0022081|Iritis|| +007813|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Left ventricular dysfunction|10049694|Left ventricular dysfunction|10049694|left ventricular dysfunction|C0242698|Ventricular Dysfunction, Left|| +007814|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Lipase increased|10024574|Lipase increased|10024574|treatment-emergent lipase elevation|C1963823|Hyperlipasaemia|| +007815|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Macular oedema|10025415|Macular edema|10054467|macular edema|C0271051|Macular retinal edema|| +007816|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk||Animal +007817|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Mesenteric arterial occlusion|10027394|Mesenteric arterial occlusion|10027394|mesenteric artery occlusion|C0151815|Mesenteric arterial occlusion|| +007818|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +007819|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Myocardial ischaemia|10028600|Myocardial ischemia|10028601|myocardial ischemic event|C0151744|Myocardial Ischemia|| +007820|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +007821|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Neuropathy peripheral|10029331|Neuropathy|10029328|neuropathy|C0442874|Neuropathy|| +007822|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +007823|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Ocular toxicity|10061137|Ocular toxicity|10061137|ocular toxicity|C1262036|Ocular toxicity|| +007824|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +007825|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +007826|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +007827|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Pericardial effusion|10034474|Pericardial effusion|10034474|pericardial effusion|C0031039|Pericardial effusion|| +007828|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Peripheral arterial occlusive disease|10062585|Peripheral arterial disease|10067825|peripheral arterial disease|C1704436|Peripheral Arterial Diseases|| +007829|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Peripheral arterial occlusive disease|10062585|Peripheral arterial occlusive disease|10062585|peripheral arterial occlusive events|C1306889|Peripheral arterial occlusive disease|| +007830|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Peripheral vascular disorder|10034636|Peripheral vascular disease|10034633|peripheral vascular disease|C0085096|Peripheral Vascular Diseases|| +007831|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Pleural effusion|10035598|Pleural effusion|10035598|pleural effusion|C0032227|Pleural effusion disorder|| +007832|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +007833|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Retinal haemorrhage|10038867|Retinal hemorrhage|10038870|retinal hemorrhage|C0035317|Retinal Hemorrhage|| +007834|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Retinal toxicity|10048955|Retinal toxicity|10048955|retinal toxicities|C0877104|Retinal toxicity|| +007835|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Retinal vein occlusion|10038907|Retinal vein occlusion|10038907|retinal vein occlusion|C0035328|Retinal Vein Occlusion|| +007836|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Retinal vein thrombosis|10038908|Retinal vein thrombosis|10038908|retinal vein thrombosis|C1527411|Thrombosis of retinal vein|| +007837|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Sinus node dysfunction|10075889|Sick sinus syndrome|10040639|sick sinus syndrome|C0037052|Sick Sinus Syndrome|| +007838|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Supraventricular tachyarrhythmia|10065342|Supraventricular tachyarrhythmia|10065342|supraventricular tachyarrhythmias|C1698480|Supraventricular tachyarrhythmia|| +007839|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Supraventricular tachycardia|10042604|Supraventricular tachycardia|10042604|supraventricular tachycardia|C0039240|Supraventricular tachycardia|| +007840|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +007841|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Thrombophlebitis superficial|10043595|Superficial thrombophlebitis|10042554|superficial thrombophlebitis|C1510431|Superficial thrombophlebitis|| +007842|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +007843|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Ulcerative keratitis|10064996|Ulcerative keratitis|10064996|ulcerative keratitis|C0010043|Corneal Ulcer|| +007844|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Vascular occlusion|10053648|Vascular occlusion|10053648|vascular occlusion|C1096458|Vascular occlusion|| +007845|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Venous occlusion|10058990|Venous occlusion|10058990|venous occlusions|C0948441|Venoocclusive disease|| +007846|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Venous thrombosis|10047249|Venous thrombosis|10047249|venous thrombosis|C0042487|Venous Thrombosis|| +007847|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Vertebral artery stenosis|10047330|Vertebral artery stenosis|10047330|stenosis vertebral artery|C0265103|Vertebral Artery Stenosis|| +007848|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +007849|807f988e-117b-4497-934d-73aa78baac71|Iclusig|43685-7|WARNINGS AND PRECAUTIONS|Vision blurred|10047513|Blurring of vision|10005888|visual blurring|C0344232|Blurred vision|| +007850|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +007851|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +007852|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|bilirubin elevations|C0311468|Increased bilirubin level (finding)|| +007853|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|elevated total bilirubin|C0741494|Elevated total bilirubin|| +007854|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|Creatine kinase increased|10011336|creatine kinase elevation|C0151576|Elevated creatine kinase|| +007855|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|symptomatic bradycardia|C0741627|BRADYCARDIA SYMPTOMATIC|| +007856|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +007857|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Completed suicide|10010144|Suicide|10042462|suicide|C0038661|Suicide|| +007858|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +007859|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +007860|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +007861|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +007862|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hemoglobin (g/dl) <8.5|C0162119|Hemoglobin low|| +007863|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin low|10055600|hemoglobin (g/dl) <10|C0162119|Hemoglobin low|| +007864|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +007865|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Influenza like illness|10022004|Influenza like illness|10022004|influenza like illness|C0521839|Influenza-like illness|| +007866|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +007867|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +007868|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Lipase increased|10024574|Lipase increased|10024574|lipase elevation|C1963823|Hyperlipasaemia|| +007869|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +007870|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +007871|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +007872|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count low|10029369|neutrophils (*10 9 /l) <0.5|C0853697|Neutrophil count decreased|| +007873|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +007874|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Low platelets|10024922|platelets (*10 9 /l) >=25 - <50|C0392386|Decreased platelet count|| +007875|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +007876|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +007877|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +007878|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +007879|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|symptomatic bradycardia|C0741627|BRADYCARDIA SYMPTOMATIC|| +007880|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|43685-7|WARNINGS AND PRECAUTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +007881|80beab2c-396e-4a37-a4dc-40fdb62859cf|Sovaldi|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +007882|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Upper abdominal pain|10046272|upper abdominal pain|C0232492|Upper abdominal pain|| +007883|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +007884|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +007885|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +007886|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +007887|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +007888|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +007889|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +007890|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +007891|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +007892|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +007893|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +007894|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +007895|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Migraine|10027599|Migraine|10027599|migraine|C0149931|Migraine Disorders|| +007896|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +007897|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +007898|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremities|C0030196|Pain in limb|| +007899|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +007900|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +007901|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|43685-7|WARNINGS AND PRECAUTIONS|Arrhythmia|10003119|Cardiac arrhythmia|10007518|cardiac arrhythmias|C0003811|Cardiac Arrhythmia|| +007902|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram PR prolongation|10053657|Electrocardiogram PR interval prolonged|10053655|increases in ecg intervals pr|C0600125|Prolonged PR interval|| +007903|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QRS complex prolonged|10014380|Electrocardiogram QRS complex prolonged|10014380|increases in ecg intervals qrs|C0235475|Wide QRS complex|| +007904|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QRS complex prolonged|10014380|QRS prolonged|10037697|prolongation qrs cardiac intervals|C0235475|Wide QRS complex|| +007905|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|prolongation qtc cardiac intervals|C0855333|Electrocardiogram QT corrected interval prolonged|| +007906|819f828a-b888-4e46-83fc-94d774a28a83|Cerdelga|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram change|10061116|Change in ECG|10008396|ecg changes|C0855329|Electrocardiographic changes|| +007907|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +007908|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34066-1|BOXED WARNINGS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +007909|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +007910|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increased alt|C0151905|Alanine aminotransferase increased|| +007911|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +007912|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Amylase increased|10002016|Amylase increased|10002016|increased amylase|C0151479|Amylase increased|| +007913|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +007914|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increased ast|C0151904|Aspartate aminotransferase increased|| +007915|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +007916|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal outcomes|C1306577|Death (finding)|| +007917|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +007918|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +007919|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Drug eruption|10013687|Drug eruption|10013687|drug eruption|C0011609|Drug Eruptions|| +007920|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Dysphonia|10013952|Dysphonia|10013952|dysphonia|C1527344|Dysphonia|| +007921|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +007922|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Gastrointestinal fistula|10017877|Gastrointestinal fistula|10017877|gastrointestinal fistula|C0079238|Digestive System Fistula|| +007923|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Gastrointestinal pain|10017999|Gastrointestinal pain|10017999|gastrointestinal pain|C0687713|Gastrointestinal pain|| +007924|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +007925|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +007926|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +007927|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +007928|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Hyperbilirubinaemia|10020578|Hyperbilirubinemia|10020582|hyperbilirubinemia|C0020433|Hyperbilirubinemia|| +007929|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reaction|C0020517|Hypersensitivity|| +007930|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +007931|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +007932|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +007933|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +007934|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Hypophagia|10063743|Hypophagia|10063743|decreased food intake|C1504561|Hypophagia|| +007935|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +007936|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +007937|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infection|C3714514|Infection|| +007938|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|International normalised ratio increased|10022595|International normalized ratio increased|10062459|increased international normalized ratio|C0853225|INR raised|| +007939|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Lipase increased|10024574|Lipase increased|10024574|increased lipase|C0549475|Lipase increased|| +007940|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +007941|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Mucosal inflammation|10028116|Mucositis|10028127|mucositis|C0333355|Inflammatory disease of mucous membrane|| +007942|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Musculoskeletal stiffness|10052904|Musculoskeletal stiffness|10052904|musculoskeletal stiffness|C0948525|Musculoskeletal stiffness|| +007943|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|cardiac infarction|C0027051|Myocardial Infarction|| +007944|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Myocardial ischaemia|10028600|Cardiac ischemia|10055224|cardiac ischemia|C0151744|Myocardial Ischemia|| +007945|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +007946|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +007947|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +007948|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Hand and foot skin reaction|10069640|hand-foot skin reaction|C2721716|Hand and foot skin reaction|| +007949|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysesthesia syndrome|10054524|ppe|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +007950|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|rpls|C3160858|Posterior reversible encephalopathy syndrome|| +007951|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +007952|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +007953|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Rash erythematous|10037855|Erythematous rash|10015243|erythematous rash|C0234913|Rash erythematous|| +007954|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|generalized rash|C0497365|Rash generalised|| +007955|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Rash macular|10037867|Macular rash|10025418|macular rash|C0221201|Macular rash|| +007956|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Maculo-papular rash|10025423|maculo-papular rash|C0423791|Maculopapular eruption|| +007957|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Rash papular|10037876|Papular rash|10033726|papular rash|C1519353|Skin Papule|| +007958|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Rash pruritic|10037884|Pruritic rash|10037085|pruritic rash|C0033771|Prurigo|| +007959|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +007960|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Skin toxicity|10059516|Skin toxicity|10059516|dermatological toxicity|C1167791|Skin toxicity|| +007961|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +007962|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +007963|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|decreased weight|C1262477|Weight decreased|| +007964|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight loss|10047900|weight loss|C1262477|Weight decreased|| +007965|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Congenital genitourinary abnormality|10062334|Urogenital anomaly|10046692|genitourinary malformations|C0042063|Urogenital Abnormalities||Animal +007966|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Congenital musculoskeletal anomaly|10062344|Skeletal malformation|10040771|skeletal malformations|C0795693|Skeletal malformation||Animal +007967|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +007968|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Drug-induced liver injury|10072268|Drug-induced liver injury|10072268|drug induced liver injury|C0860207|Drug-Induced Liver Injury|| +007969|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Erythema multiforme|10015218|Erythema multiforme|10015218|erythema multiforme|C0014742|Erythema Multiforme|| +007970|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +007971|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Foetal death|10055690|Fetal death|10016479|embryolethal|C0015927|Fetal Death||Animal +007972|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal fistula|10017877|Gastrointestinal fistula|10017877|gastrointestinal fistulae|C0079238|Digestive System Fistula|| +007973|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +007974|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +007975|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Heart disease congenital|10019273|Heart disease congenital|10019273|cardiovascular malformations|C0152021|Congenital heart disease||Animal +007976|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +007977|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Hepatic necrosis|10019692|Necrosis hepatocellular|10028859|hepatocyte necrosis|C1855038|Hepatocellular necrosis|| +007978|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +007979|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Hypertensive crisis|10020802|Hypertensive crisis|10020802|hypertensive crisis|C0020546|Hypertensive crisis|| +007980|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Impaired healing|10021519|Impaired healing|10021519|wound healing complications|C0151692|Impaired wound healing|duplicate| +007981|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Lymphocytic infiltration|10062049|Lymphocytic infiltration|10062049|liver lymphocyte infiltration|C1262091|Lymphocytic infiltration|underspecified| +007982|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +007983|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Myocardial ischaemia|10028600|Cardiac ischemia|10055224|cardiac ischemia|C0151744|Myocardial Ischemia|| +007984|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Myocardial ischaemia|10028600|Myocardial ischemia|10028601|myocardial ischemia|C0151744|Myocardial Ischemia|| +007985|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Hand and foot skin reaction|10069640|hfsr|C2721716|Hand and foot skin reaction|| +007986|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysesthesia syndrome|10054524|palmar-plantar erythrodysesthesia|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +007987|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|rpls|C3160858|Posterior reversible encephalopathy syndrome|| +007988|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +007989|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Skin disorder|10040831|Other disorders of skin and subcutaneous tissue|10032001|adverse reactions involving subcutaneous tissues|C0178298|Skin and subcutaneous tissue disorders|| +007990|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Skin toxicity|10059516|Skin toxicity|10059516|dermatological toxicity|C1167791|Skin toxicity|| +007991|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Stevens-Johnson syndrome|10042033|Stevens Johnson syndrome|10042030|stevens johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +007992|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenic|C0232910|Teratogenesis||Animal +007993|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +007994|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Vasogenic cerebral oedema|10067275|Vasogenic cerebral edema|10067278|subcortical vasogenic edema|C0472387|Vasogenic Cerebral Edema|underspecified| +007995|824f19c9-0546-4a8a-8d8f-c4055c04f7c7|Stivarga|43685-7|WARNINGS AND PRECAUTIONS|Wound complication|10053692|Wound complication|10053692|wound healing complications|C0151692|Impaired wound healing|duplicate| +007996|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +007997|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34066-1|BOXED WARNINGS|Fibrosis|10016642|Fibrosis|10016642|fibrosis|C0016059|Fibrosis|| +007998|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34066-1|BOXED WARNINGS|Nephrogenic systemic fibrosis|10067467|Nephrogenic systemic fibrosis|10067467|nephrogenic systemic fibrosis|C3888044|Nephrogenic Systemic Fibrosis|| +007999|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute kidney injury|10069339|acute kidney injury|C2609414|Acute kidney injury|| +008000|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Anaphylactoid reaction|10002216|Anaphylactoid reaction|10002216|anaphylactoid reactions|C0340865|Anaphylactoid reaction|| +008001|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +008002|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +008003|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Arrhythmia|10003119|Arrhythmia|10003119|arrhythmia|C0003811|Cardiac Arrhythmia|| +008004|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|serum creatinine increased|C0700225|Serum creatinine raised|| +008005|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +008006|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +008007|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Burning sensation|10006784|Burning sensation|10006784|burning sensation|C0085624|Burning sensation|| +008008|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +008009|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Coma|10010071|Coma|10010071|coma|C0009421|Comatose|| +008010|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +008011|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Cyanosis|10011703|Cyanosis|10011703|cyanosis|C0010520|Cyanosis|| +008012|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +008013|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +008014|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +008015|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Eyelid oedema|10015993|Eyelid edema|10015985|eyelid edema|C0162285|Edema of eyelid|| +008016|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +008017|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Feeling cold|10016326|Feeling cold|10016326|feeling cold|C0235150|Feeling Cold|| +008018|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +008019|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +008020|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +008021|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +008022|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +008023|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Injection site coldness|10050082|Injection site coldness|10050082|injection site coldness|C0919593|Injection site coldness|| +008024|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Injection site extravasation|10022062|Injection site extravasation|10022062|injection site extravasation|C0521500|Injection site extravasation|| +008025|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Injection site inflammation|10022078|Injection site inflammation|10022078|injection site inflammation|C0151734|Injection site inflammation|| +008026|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +008027|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|injection site pruritus|C0852995|Injection site pruritus|| +008028|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +008029|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Injection site warmth|10022112|Injection site warmth|10022112|injection site warmth|C0858934|Injection site warmth|| +008030|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Lacrimation increased|10023644|Lacrimation increased|10023644|lacrimation increased|C0152227|Excessive tearing|| +008031|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Laryngospasm|10023891|Laryngospasm|10023891|laryngospasm|C0023066|Laryngismus|| +008032|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +008033|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Muscle contracture|10062575|Muscle contracture|10062575|muscle contracture|C0009917|Contracture|| +008034|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Muscular weakness|10028372|Muscle weakness|10028350|muscle weakness|C0151786|Muscle Weakness|| +008035|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +008036|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Nephrogenic systemic fibrosis|10067467|Nephrogenic systemic fibrosis|10067467|nsf|C3888044|Nephrogenic Systemic Fibrosis||DrugClass +008037|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Ocular hyperaemia|10030041|Ocular hyperemia|10030042|ocular hyperemia|C0155169|Ocular hyperemia|| +008038|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Oropharyngeal discomfort|10068318|Oropharyngeal discomfort|10068318|oropharyngeal discomfort|C2363730|Oropharyngeal discomfort|| +008039|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +008040|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +008041|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +008042|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Parosmia|10034018|Parosmia|10034018|parosmia|C1510410|Sense of smell altered|| +008043|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Pharyngeal oedema|10034829|Pharyngeal edema|10054544|pharyngeal edema|C0236024|Edema of pharynx|| +008044|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Phlebitis superficial|10034902|Phlebitis superficial|10034902|superficial phlebitis|C0750876|Superficial phlebitis|| +008045|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Presyncope|10036653|Presyncope|10036653|presyncope|C0700200|Presyncope|| +008046|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +008047|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +008048|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +008049|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Respiratory arrest|10038669|Respiratory arrest|10038669|respiratory arrest|C0162297|Respiratory arrest|| +008050|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Salivary hypersecretion|10039424|Salivary hypersecretion|10039424|salivary hypersecretion|C0037036|Sialorrhea|| +008051|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsion|10010904|convulsion|C0036572|Seizures|| +008052|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +008053|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +008054|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +008055|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +008056|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +008057|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +008058|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute kidney injury|10069339|acute kidney injury|C2609414|Acute kidney injury||DrugClass +008059|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|43685-7|WARNINGS AND PRECAUTIONS|Administration site irritation|10075941|Administration site irritation|10075941|administration tissue irritation|C3888600|Administration site irritation|| +008060|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +008061|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactoid reaction|10002216|Anaphylactoid reaction|10002216|anaphylactoid reactions|C0340865|Anaphylactoid reaction|| +008062|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular manifestations|C0476270|Cardiovascular symptoms|| +008063|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|43685-7|WARNINGS AND PRECAUTIONS|Circulatory collapse|10009192|Circulatory collapse|10009192|circulatory collapse|C0036974|Shock|| +008064|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|43685-7|WARNINGS AND PRECAUTIONS|Cutaneous symptom|10075531|Cutaneous symptom|10075531|cutaneous manifestations|C0037285|Skin Manifestations|| +008065|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|died|C1306577|Death (finding)|| +008066|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|43685-7|WARNINGS AND PRECAUTIONS|Fibrosis|10016642|Fibrosis|10016642|fibrosis|C0016059|Fibrosis|| +008067|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reaction|C0020517|Hypersensitivity|| +008068|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +008069|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|43685-7|WARNINGS AND PRECAUTIONS|Nephrogenic systemic fibrosis|10067467|Nephrogenic systemic fibrosis|10067467|nsf|C3888044|Nephrogenic Systemic Fibrosis|| +008070|82b83e61-6af8-4225-aa39-8cbf206f65b0|DOTAREM|43685-7|WARNINGS AND PRECAUTIONS|Respiratory symptom|10075535|Respiratory symptom|10075535|respiratory manifestations|C0037090|Signs and Symptoms, Respiratory|| +008071|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +008072|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Upper abdominal pain|10046272|upper abdominal pain|C0232492|Upper abdominal pain|| +008073|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +008074|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Acute coronary syndrome|10051592|Acute coronary syndrome|10051592|acute coronary syndrome|C0948089|Acute Coronary Syndrome|| +008075|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +008076|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increased|C0151905|Alanine aminotransferase increased|| +008077|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|increased alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +008078|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +008079|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +008080|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Anal fissure|10002153|Anal fissure|10002153|anal fissure|C0016167|Anal Fissure|| +008081|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Angina pectoris|10002383|Angina pectoris|10002383|angina pectoris|C0002962|Angina Pectoris|| +008082|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +008083|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Aphthous ulcer|10002959|Aphthous stomatitis|10002958|aphthous stomatitis|C0038363|Aphthous Stomatitis|| +008084|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Arrhythmia|10003119|Arrhythmia|10003119|arrhythmia|C0003811|Cardiac Arrhythmia|| +008085|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +008086|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +008087|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +008088|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Bacterial infection|10060945|Infection bacterial|10021804|infection bacterial|C0004623|Bacterial Infections|| +008089|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|bilirubin increased|C0311468|Increased bilirubin level (finding)|| +008090|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|creatinine increased|C0151578|Creatinine increased|| +008091|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Blood glucose decreased|10005555|Glucose decreased|10018419|glucose decreased|C1704381|Glucose decreased|| +008092|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Glucose increased|10018421|glucose increased|C0860803|Glucose increased|| +008093|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Blood uric acid increased|10005861|Uric acid increased|10066980|uric acid increased|C1868912|Uric acid increased|| +008094|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Bone marrow failure|10065553|Bone marrow failure|10065553|bone marrow failure|C0151773|Bone marrow depression|| +008095|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|myelosuppression|C0854467|Myelosuppression|| +008096|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Bone marrow necrosis|10058822|Bone marrow necrosis|10058822|bone marrow necrosis|C1142114|Bone marrow necrosis|| +008097|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Bone pain|10006002|Bone pain|10006002|bone pain|C0151825|Bone pain|| +008098|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +008099|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Burning sensation|10006784|Burning sensation|10006784|burning sensation|C0085624|Burning sensation|| +008100|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Cataract|10007739|Cataract|10007739|cataract|C0086543|Cataract|| +008101|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Catheter site pain|10052268|Catheter site pain|10052268|catheter site pain|C0949103|Catheter site pain|| +008102|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Cerebral haemorrhage|10008111|Cerebral hemorrhage|10008114|cerebral hemorrhage|C2937358|Cerebral Hemorrhage|| +008103|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +008104|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +008105|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +008106|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Conjunctival haemorrhage|10010719|Conjunctival hemorrhage|10010720|conjunctival hemorrhage|C0009760|Conjunctival hemorrhage|| +008107|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +008108|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +008109|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Contusion|10050584|Contusion|10050584|contusion|C0009938|Contusions|| +008110|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +008111|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|died|C1306577|Death (finding)|| +008112|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +008113|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +008114|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +008115|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +008116|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Diabetes mellitus|10012601|Diabetes mellitus|10012601|diabetes mellitus|C0011849|Diabetes Mellitus|| +008117|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +008118|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +008119|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Disease progression|10061818|Disease progression|10061818|progression of disease|C0242656|Disease Progression|| +008120|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +008121|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Dry eye|10013774|Dry eye|10013774|dry eye|C0314719|Dryness of eye|| +008122|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +008123|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +008124|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +008125|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +008126|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +008127|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Dysphonia|10013952|Dysphonia|10013952|dysphonia|C1527344|Dysphonia|| +008128|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +008129|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Dysuria|10013990|Dysuria|10013990|dysuria|C0013428|Dysuria|| +008130|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Ear haemorrhage|10014009|Ear hemorrhage|10055244|ear hemorrhage|C0271412|Bleeding from ear|| +008131|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Ear pain|10014020|Ear pain|10014020|ear pain|C0013456|Earache|| +008132|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Ecchymosis|10014080|Ecchymosis|10014080|ecchymosis|C0013491|Ecchymosis|| +008133|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +008134|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +008135|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Eye pain|10015958|Eye pain|10015958|eye pain|C0151827|Eye pain|| +008136|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Eyelid oedema|10015993|Eyelid edema|10015985|eyelid edema|C0162285|Edema of eyelid|| +008137|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +008138|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +008139|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Fungal infection|10017533|Infection fungal|10021814|infection fungal|C0026946|Mycoses|| +008140|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +008141|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +008142|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +008143|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Generalised oedema|10018092|Generalized edema|10018112|general edema|C1850534|Edema, generalized|| +008144|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Gingival bleeding|10018276|Gingival bleeding|10018276|gingival bleeding|C0017565|Gingival Hemorrhage|| +008145|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Gingival pain|10018286|Gingival pain|10018286|gingival pain|C0239739|Tenderness of gums|| +008146|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Gingivitis|10018292|Gingivitis|10018292|gingivitis|C0017574|Gingivitis|| +008147|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Gout|10018627|Gout|10018627|gout|C0018099|Gout|| +008148|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Haematoma|10018852|Hematoma|10019428|hematoma|C0018944|Hematoma|| +008149|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hemoglobin decreased|C0162119|Hemoglobin low|| +008150|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Haemoptysis|10018964|Hemoptysis|10019523|hemoptysis|C0019079|Hemoptysis|| +008151|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +008152|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Haemorrhoids|10019022|Hemorrhoids|10019611|hemorrhoids|C0019112|Hemorrhoids|| +008153|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +008154|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +008155|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +008156|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +008157|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +008158|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +008159|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Hyperthermia|10020843|Hyperthermia|10020843|hyperthermia|C0015967|Fever|| +008160|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +008161|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +008162|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infection|C3714514|Infection|| +008163|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Influenza like illness|10022004|Influenza like illness|10022004|influenza-like illness|C0521839|Influenza-like illness|| +008164|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reaction|C0151735|Injection site reaction|| +008165|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +008166|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Lacrimation increased|10023644|Lacrimation increased|10023644|lacrimation increased|C0152227|Excessive tearing|| +008167|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Laryngeal pain|10023848|Pharyngolaryngeal pain|10034844|pharyngolaryngeal pain|C0858635|Pharyngolaryngeal pain|| +008168|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Lethargy|10024264|Lethargy|10024264|lethargy|C0023380|Lethargy|| +008169|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Leukocytosis|10024378|Leukocytosis|10024378|leukocytosis|C0023518|Leukocytosis|| +008170|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +008171|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +008172|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Melaena|10027141|Melena|10027162|melena|C0025222|Melena|| +008173|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Mental status changes|10048294|Mental status changes|10048294|mental status change|C0856054|Mental status changes|| +008174|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Mouth haemorrhage|10028024|Mouth hemorrhage|10028025|mouth hemorrhage|C0029163|Oral Hemorrhage|| +008175|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Mouth ulceration|10028034|Mouth ulceration|10028034|mouth ulceration|C0149745|Oral Ulcer|| +008176|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Mucosal inflammation|10028116|Mucosal inflammation|10028116|mucosal inflammation|C0333355|Inflammatory disease of mucous membrane|| +008177|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Multi-organ failure|10028154|Multi-organ failure|10028154|multi-organ failure|C0026766|Multiple Organ Failure|| +008178|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +008179|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Muscular weakness|10028372|Muscular weakness|10028372|muscular weakness|C0151786|Muscle Weakness|| +008180|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Musculoskeletal chest pain|10050819|Musculoskeletal chest pain|10050819|musculoskeletal chest pain|C0476280|Musculoskeletal chest pain|| +008181|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Musculoskeletal discomfort|10053156|Musculoskeletal discomfort|10053156|musculoskeletal discomfort|C0948594|Musculoskeletal discomfort|| +008182|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +008183|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Musculoskeletal stiffness|10052904|Musculoskeletal stiffness|10052904|musculoskeletal stiffness|C0948525|Musculoskeletal stiffness|| +008184|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +008185|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Nasal congestion|10028735|Nasal congestion|10028735|nasal congestion|C0027424|Nasal congestion (finding)|| +008186|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +008187|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +008188|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|neutrophils decreased|C0853697|Neutrophil count decreased|| +008189|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Night sweats|10029410|Night sweats|10029410|night sweats|C0028081|Night sweats|| +008190|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +008191|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Oral pain|10031009|Oral pain|10031009|oral pain|C0221776|Oral pain|| +008192|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +008193|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +008194|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +008195|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +008196|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +008197|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Petechiae|10034754|Petechiae|10034754|petechiae|C0031256|Petechiae|| +008198|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelets decreased|10035545|platelets decreased|C0392386|Decreased platelet count|| +008199|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Productive cough|10036790|Productive cough|10036790|productive cough|C0239134|Productive cough|| +008200|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +008201|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Purpura|10037549|Purpura|10037549|purpura|C0034150|Purpura|| +008202|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +008203|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Rales|10037833|Rales|10037833|rales|C0034642|Rales|| +008204|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Rash erythematous|10037855|Rash erythematous|10037855|rash erythematous|C0234913|Rash erythematous|| +008205|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Rash papular|10037876|Rash papular|10037876|rash papular|C1519353|Skin Papule|| +008206|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +008207|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Rhinorrhoea|10039101|Rhinorrhea|10039100|rhinorrhea|C1260880|Rhinorrhea|| +008208|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Sciatica|10039674|Sciatica|10039674|sciatica|C0036396|Sciatica|| +008209|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsion|10010904|convulsion|C0036572|Seizures|| +008210|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Sinus congestion|10040742|Sinus congestion|10040742|sinus congestion|C0152029|Congestion of nasal sinus|| +008211|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Skin exfoliation|10040844|Skin exfoliation|10040844|skin exfoliation|C0237849|Peeling of skin|| +008212|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Skin hyperpigmentation|10040865|Skin hyperpigmentation|10040865|skin hyperpigmentation|C0162834|Hyperpigmentation|| +008213|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Skin lesion|10040882|Skin lesion|10040882|skin lesion|C0037284|Skin lesion|| +008214|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Skin ulcer|10040943|Skin ulcer|10040943|skin ulcer|C0037299|Skin Ulcer|| +008215|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +008216|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +008217|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +008218|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Tinnitus|10043882|Tinnitus|10043882|tinnitus|C0040264|Tinnitus|| +008219|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevated transaminases|C0438717|Transaminases increased|| +008220|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Transfusion reaction|10044359|Transfusion reaction|10044359|transfusion reaction|C0274435|Transfusion Reaction|| +008221|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +008222|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Ventricular extrasystoles|10047289|Ventricular extrasystoles|10047289|ventricular extrasystoles|C0151636|Premature ventricular contractions|| +008223|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Viral infection|10047461|Infection viral|10021876|infection viral|C0042769|Virus Diseases|| +008224|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +008225|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +008226|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|Leukocyte count decreased|10048552|leukocytes decreased|C0750394|White blood cell count decreased|| +008227|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|34084-4|ADVERSE REACTIONS|||||hyperosmolar non-ketotic hyperglycemia|C0242019|NON-KETOTIC HYPEROSMOLAR HYPERGLYCEMIA|unmapped| +008228|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +008229|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|myelosuppression|C0854467|Myelosuppression|| +008230|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|Cerebral haemorrhage|10008111|Cerebral hemorrhage|10008114|cerebral hemorrhage|C2937358|Cerebral Hemorrhage|| +008231|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatalities|C1306577|Death (finding)|| +008232|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +008233|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|Foetal death|10055690|Fetal death|10016479|embryo-fetal death|C0015927|Fetal Death||Animal +008234|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +008235|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|Glucose tolerance impaired|10018429|Glucose intolerance|10052426|glucose intolerance|C0271650|Impaired glucose tolerance|| +008236|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding events|C0019080|Hemorrhage|| +008237|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +008238|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +008239|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +008240|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +008241|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +008242|83a504ef-cf92-467d-9ecf-d251194a3484|SYNRIBO|43685-7|WARNINGS AND PRECAUTIONS|||||hyperosmolar non-ketotic hyperglycemia|C0242019|NON-KETOTIC HYPEROSMOLAR HYPERGLYCEMIA|unmapped| +008243|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34066-1|BOXED WARNINGS|Cardiovascular disorder|10007649|Cardiovascular disorder|10007649|cardiovascular disorders|C0007222|Cardiovascular Diseases|| +008244|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34066-1|BOXED WARNINGS|Deep vein thrombosis|10051055|DVT|10013877|dvt|C0149871|Deep Vein Thrombosis|| +008245|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34066-1|BOXED WARNINGS|Deep vein thrombosis|10051055|Deep vein thrombosis|10051055|deep vein thrombosis|C0149871|Deep Vein Thrombosis|| +008246|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34066-1|BOXED WARNINGS|Embolic stroke|10014498|Thromboembolic stroke|10057613|thromboembolic stroke|C1112433|Thromboembolic stroke|| +008247|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34066-1|BOXED WARNINGS|Endometrial cancer|10014733|Endometrial cancer|10014733|endometrial cancer|C0476089|Endometrial Carcinoma|| +008248|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34066-1|BOXED WARNINGS|Haemorrhagic stroke|10019016|Hemorrhagic stroke|10048863|hemorrhagic stroke|C0553692|Brain hemorrhage|| +008249|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Allergic conditions|10001708|Allergic conditions|10001708|allergic conditions|C0851444|Allergic condition|HLGT| +008250|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +008251|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Cardiovascular disorder|10007649|Cardiovascular disorder|10007649|cardiovascular disorders|C0007222|Cardiovascular Diseases|| +008252|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Deep vein thrombosis|10051055|DVT|10013877|dvt|C0149871|Deep Vein Thrombosis|| +008253|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Deep vein thrombosis|10051055|Deep vein thrombosis|10051055|deep vein thrombosis|C0149871|Deep Vein Thrombosis|| +008254|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Embolic stroke|10014498|Thromboembolic stroke|10057613|thromboembolic stroke|C1112433|Thromboembolic stroke|| +008255|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Genital discharge|10056740|Genital discharge|10056740|genital discharge|C1112274|Genital discharge|| +008256|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Haemorrhagic stroke|10019016|Hemorrhagic stroke|10048863|hemorrhagic stroke|C0553692|Brain hemorrhage|| +008257|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +008258|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +008259|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +008260|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +008261|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignant neoplasms|C0006826|Malignant Neoplasms|| +008262|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +008263|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Rash erythematous|10037855|Rash erythematous|10037855|rash erythematous|C0234913|Rash erythematous|| +008264|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|rash generalized|C0497365|Rash generalised|| +008265|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +008266|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +008267|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|34084-4|ADVERSE REACTIONS|Vaginal discharge|10046901|Vaginal discharge|10046901|vaginal discharge|C0227791|Vaginal Discharge|| +008268|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|43685-7|WARNINGS AND PRECAUTIONS|Deep vein thrombosis|10051055|DVT|10013877|dvt|C0149871|Deep Vein Thrombosis|| +008269|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|43685-7|WARNINGS AND PRECAUTIONS|Embolic stroke|10014498|Thromboembolic stroke|10057613|thromboembolic stroke|C1112433|Thromboembolic stroke|| +008270|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|43685-7|WARNINGS AND PRECAUTIONS|Endometrial hyperplasia|10014755|Endometrial hyperplasia|10014755|proliferative weakly endometrium|C3163876|Weakly proliferative endometrium|| +008271|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|43685-7|WARNINGS AND PRECAUTIONS|Endometrial thickening|10056432|Endometrial thickening|10056432|endometrial thickening|C0743516|Endometrial thickening|| +008272|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhagic stroke|10019016|Hemorrhagic stroke|10048863|hemorrhagic stroke|C0553692|Brain hemorrhage|| +008273|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|43685-7|WARNINGS AND PRECAUTIONS|Liver disorder|10024670|Hepatic impairment|10052254|hepatic impairment|C0948807|Hepatic impairment|| +008274|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|mi|C0027051|Myocardial Infarction|| +008275|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +008276|8462d6ab-e3cd-4efa-a360-75bf8f917287|Osphena|43685-7|WARNINGS AND PRECAUTIONS|Uterine polyp|10046811|Uterine polyp|10046811|uterine polyps|C0156369|Uterine Polyp|| +008277|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +008278|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +008279|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|increased creatinine|C0151578|Creatinine increased|| +008280|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Blood lactate dehydrogenase increased|10005630|Blood lactate dehydrogenase increased|10005630|increased blood lactate dehydrogenase|C0853149|Blood lactate dehydrogenase increased|| +008281|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +008282|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +008283|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +008284|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|died|C1306577|Death (finding)|| +008285|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +008286|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +008287|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +008288|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +008289|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|prolonged qt|C0151878|Prolonged QT interval|| +008290|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +008291|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +008292|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Gastrointestinal toxicity|10059024|Gastrointestinal toxicity|10059024|gastrointestinal toxicity|C1142499|Gastrointestinal toxicity|| +008293|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Haematotoxicity|10061188|Hematotoxicity|10061196|hematologic toxicity|C0920103|Haematotoxicity|| +008294|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +008295|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +008296|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +008297|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +008298|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +008299|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infection|C3714514|Infection|| +008300|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Infusion site pain|10053483|Infusion site pain|10053483|infusion site pain|C1096035|Infusion site pain|| +008301|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Multi-organ failure|10028154|Multi-organ failure|10028154|multi-organ failure|C0026766|Multiple Organ Failure|| +008302|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +008303|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +008304|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Phlebitis|10034879|Phlebitis|10034879|phlebitis|C0031542|Phlebitis|| +008305|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +008306|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +008307|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +008308|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +008309|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +008310|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +008311|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Ventricular fibrillation|10047290|Ventricular fibrillation|10047290|ventricular fibrillation|C0042510|Ventricular Fibrillation|| +008312|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +008313|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +008314|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +008315|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +008316|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +008317|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Foetal death|10055690|Fetal death|10016479|embryo-fetal lethality|C0015927|Fetal Death|| +008318|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +008319|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +008320|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +008321|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Liver function test abnormal|10024690|Liver function tests multiple abnorm|10024694|liver function test abnormalities|C0151766|Liver function tests abnormal finding|| +008322|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +008323|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +008324|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +008325|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +008326|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +008327|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +008328|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenicity|C0232910|Teratogenesis|| +008329|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +008330|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +008331|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +008332|84b2e16e-f0d1-4757-8da8-79dfa83aab79|Beleodaq|43685-7|WARNINGS AND PRECAUTIONS|||||genotoxic|C0598309|genotoxicity|unmapped| +008333|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Upper abdominal pain|10046272|upper abdominal pain|C0232492|Upper abdominal pain|| +008334|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +008335|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increased|C0151905|Alanine aminotransferase increased|| +008336|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +008337|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Amylase increased|10002016|Amylase increased|10002016|amylase increased|C0151479|Amylase increased|| +008338|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +008339|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +008340|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast increased|C0151904|Aspartate aminotransferase increased|| +008341|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +008342|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|ALP increased|10001771|alp increased|C0151849|Alkaline phosphatase raised|| +008343|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Blood bicarbonate decreased|10005359|Blood bicarbonate decreased|10005359|bicarbonate decreased|C0238762|BICARBONATE, DECREASED|| +008344|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|creatinine increased|C0151578|Creatinine increased|| +008345|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Cardiac failure|10007554|cardiac failure|C0018801|Heart failure|| +008346|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +008347|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +008348|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +008349|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Deep vein thrombosis|10051055|Deep vein thrombosis|10051055|deep vein thrombosis|C0149871|Deep Vein Thrombosis|| +008350|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +008351|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +008352|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +008353|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +008354|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +008355|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +008356|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Dysphonia|10013952|Dysphonia|10013952|dysphonia|C1527344|Dysphonia|| +008357|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +008358|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolic events|C3544094|Arterial thromboembolism|| +008359|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolic events|C1861172|Venous Thromboembolism|| +008360|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +008361|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +008362|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +008363|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Fistula|10016717|Fistula|10016717|fistula formation|C0016169|pathologic fistula|| +008364|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +008365|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Glossodynia|10018388|Glossodynia|10018388|glossodynia|C0017672|Glossalgia|| +008366|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +008367|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hemoglobin decreased|C0162119|Hemoglobin low|| +008368|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Haemoglobin increased|10018888|Hemoglobin increased|10055599|hemoglobin increased|C0549448|Hemoglobin increased|| +008369|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Haemoptysis|10018964|Hemoptysis|10019523|hemoptysis|C0019079|Hemoptysis|| +008370|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +008371|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Haemorrhoids|10019022|Hemorrhoids|10019611|hemorrhoids|C0019112|Hemorrhoids|| +008372|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +008373|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|elevation of liver enzymes|C0235996|Elevated liver enzymes|| +008374|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Hypercalcaemia|10020583|Hypercalcemia|10020587|hypercalcemia|C0020437|Hypercalcemia|| +008375|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +008376|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Hyperkalaemia|10020646|Hyperkalemia|10020647|hyperkalemia|C0020461|Hyperkalemia|| +008377|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Hypernatraemia|10020679|Hypernatremia|10020680|hypernatremia|C0020488|Hypernatremia|| +008378|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +008379|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Hypoalbuminaemia|10020942|Hypoalbuminemia|10020943|hypoalbuminemia|C0239981|Hypoalbuminemia|| +008380|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +008381|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +008382|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +008383|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +008384|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +008385|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Impaired healing|10021519|Impaired healing|10021519|wound healing complications|C0151692|Impaired wound healing|duplicate| +008386|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Lipase increased|10024574|Lipase increased|10024574|lipase increased|C0549475|Lipase increased|| +008387|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Liver disorder|10024670|Hepatic impairment|10052254|hepatic impairment|C0948807|Hepatic impairment|| +008388|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Lymphocyte count decreased|10025256|Absolute lymphocyte count decreased|10065395|lymphocytes (absolute) decreased|C1699631|Absolute lymphocyte count decreased|| +008389|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Mucosal inflammation|10028116|Mucosal inflammation|10028116|mucosal inflammation|C0333355|Inflammatory disease of mucous membrane|| +008390|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +008391|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +008392|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +008393|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Hand and foot syndrome|10019111|hand-foot syndrome|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +008394|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysesthesia syndrome|10054524|palmar-plantar erythrodysesthesia syndrome|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +008395|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelets decreased|10035545|platelets decreased|C0392386|Decreased platelet count|| +008396|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Polycythaemia|10036051|Polycythemia|10036058|polycythemia|C0032461|Polycythemia|| +008397|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|rpls|C3160858|Posterior reversible encephalopathy syndrome|| +008398|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +008399|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +008400|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +008401|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +008402|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Rectal haemorrhage|10038063|Rectal hemorrhage|10038064|rectal hemorrhage|C0267596|Rectal hemorrhage|| +008403|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Retinal vein occlusion|10038907|Retinal vein occlusion|10038907|retinal-vein occlusion|C0035328|Retinal Vein Occlusion|| +008404|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Retinal vein thrombosis|10038908|Retinal vein thrombosis|10038908|retinal-vein thrombosis|C1527411|Thrombosis of retinal vein|| +008405|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +008406|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Thyroid disorder|10043709|Dysfunction thyroid|10013907|thyroid dysfunction|C0348024|Thyroid dysfunction|| +008407|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Tinnitus|10043882|Tinnitus|10043882|tinnitus|C0040264|Tinnitus|| +008408|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Transient ischaemic attack|10044390|Transient ischemic attack|10072760|transient ischemic attack|C0007787|Transient Ischemic Attack|| +008409|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +008410|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +008411|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|White blood cell decreased|10049182|white blood cells decreased|C0750394|White blood cell count decreased|| +008412|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|34084-4|ADVERSE REACTIONS|Wound complication|10053692|Wound complication|10053692|wound healing complications|C0151692|Impaired wound healing|duplicate| +008413|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt elevations|C0151905|Alanine aminotransferase increased|| +008414|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase elevations|C0151905|Alanine aminotransferase increased|| +008415|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Arterial thrombosis|10003178|Arterial thrombosis|10003178|arterial thrombotic events|C0151942|Arterial thrombosis|| +008416|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Blindness|10005169|Blindness|10005169|blindness|C0456909|Blind Vision|| +008417|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure diastolic increased|10005739|Blood pressure diastolic high|10005738|diastolic blood pressure >100 mmhg|C0277889|Increased diastolic arterial pressure|| +008418|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|blood pressure increases|C0497247|Increase in blood pressure|| +008419|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure systolic increased|10005760|Blood pressure systolic high|10005759|systolic blood pressure >150 mmhg|C0277884|Increased systolic arterial pressure|| +008420|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Blood thyroid stimulating hormone increased|10005833|Increased TSH|10021690|elevations of tsh|C0586553|Raised TSH level|| +008421|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Cardiac failure|10007554|cardiac failure|C0018801|Heart failure|| +008422|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Cerebral haemorrhage|10008111|Cerebral hemorrhage|10008114|cerebral hemorrhage|C2937358|Cerebral Hemorrhage|| +008423|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Cerebrovascular accident|10008190|cerebrovascular accident|C0038454|Cerebrovascular accident|| +008424|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Confusional state|10010305|Confusion|10010300|confusion|C0009676|Confusion|| +008425|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +008426|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Deep vein thrombosis|10051055|Deep vein thrombosis|10051055|deep vein thrombosis|C0149871|Deep Vein Thrombosis|| +008427|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolic events|C3544094|Arterial thromboembolism|| +008428|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolic events|C1861172|Venous Thromboembolism|| +008429|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +008430|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Gastric haemorrhage|10017788|Gastric hemorrhage|10017789|gastric hemorrhage|C0235325|Gastric hemorrhage|| +008431|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal fistula|10017877|Gastrointestinal fistula|10017877|gastrointestinal fistulas|C0079238|Digestive System Fistula|| +008432|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +008433|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +008434|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Haemoptysis|10018964|Hemoptysis|10019523|hemoptysis|C0019079|Hemoptysis|| +008435|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +008436|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +008437|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|liver enzyme elevation|C0235996|Elevated liver enzymes|| +008438|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +008439|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Hypertensive crisis|10020802|Hypertensive crisis|10020802|hypertensive crisis|C0020546|Hypertensive crisis|| +008440|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Hyperthyroidism|10020850|Hyperthyroidism|10020850|hyperthyroidism|C0020550|Hyperthyroidism|| +008441|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +008442|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Lethargy|10024264|Lethargy|10024264|lethargy|C0023380|Lethargy|| +008443|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Lower gastrointestinal haemorrhage|10050953|Lower gastrointestinal hemorrhage|10051746|lower gastrointestinal hemorrhage|C0024050|Lower gastrointestinal hemorrhage|| +008444|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryotoxic|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk||Animal +008445|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Melaena|10027141|Melena|10027162|melena|C0025222|Melena|| +008446|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +008447|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Neurological symptom|10060860|Neurologic reaction|10029290|neurologic disturbances|C0235030|Neurologic reaction|| +008448|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|rpls|C3160858|Posterior reversible encephalopathy syndrome|| +008449|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +008450|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +008451|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Retinal artery occlusion|10038827|Retinal artery occlusion|10038827|retinal artery occlusion|C0035302|Retinal Artery Occlusion|| +008452|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Retinal vein occlusion|10038907|Retinal vein occlusion|10038907|retinal vein occlusion|C0035328|Retinal Vein Occlusion|| +008453|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Retinal vein thrombosis|10038908|Retinal vein thrombosis|10038908|retinal vein thrombosis|C1527411|Thrombosis of retinal vein|| +008454|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizure|10039906|seizure|C0036572|Seizures|| +008455|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenic|C0232910|Teratogenesis||Animal +008456|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Transient ischaemic attack|10044390|Transient ischemic attack|10072760|transient ischemic attack|C0007787|Transient Ischemic Attack|| +008457|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Venous thrombosis|10047249|Venous thrombosis|10047249|venous thrombotic events|C0042487|Venous Thrombosis|| +008458|8a903e31-936e-4ed7-8a59-59f32374f338|INLYTA|43685-7|WARNINGS AND PRECAUTIONS|Visual impairment|10047571|Visual disturbances|10047545|visual disturbances|C0547030|Visual disturbance|| +008459|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34066-1|BOXED WARNINGS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidality|C3166387|Suicidality||DrugClass +008460|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34066-1|BOXED WARNINGS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)||DrugClass +008461|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +008462|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +008463|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Accommodation disorder|10000389|Accommodation disorder|10000389|accommodation disorder|C0152198|Disorder of accommodation|| +008464|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +008465|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Aggression|10001488|Aggression|10001488|aggression|C0001807|Aggressive behavior|| +008466|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Anger|10002368|Anger|10002368|anger|C0424330|Anger reaction|| +008467|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +008468|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|blood pressure increased|C0497247|Increase in blood pressure|| +008469|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +008470|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +008471|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +008472|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +008473|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Contusion|10050584|Contusion|10050584|contusion|C0009938|Contusions|| +008474|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Cystitis|10011781|Cystitis|10011781|cystitis|C0010692|Cystitis|| +008475|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +008476|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +008477|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Delirium|10012218|Delirium|10012218|delirium|C0011206|Delirium|| +008478|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +008479|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +008480|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +008481|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +008482|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +008483|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +008484|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +008485|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Dysuria|10013990|Dysuria|10013990|dysuria|C0013428|Dysuria|| +008486|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Ejaculation disorder|10014326|Ejaculation disorder|10014326|ejaculation disorder|C0235969|Disorder of ejaculation|| +008487|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Ejaculation failure|10014328|Ejaculation failure|10014328|ejaculation failure|C0278106|Anejaculation|| +008488|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Erectile dysfunction|10061461|Erectile dysfunction|10061461|erectile dysfunction|C0242350|Erectile dysfunction|| +008489|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Erythema multiforme|10015218|Erythema multiforme|10015218|erythema multiforme|C0014742|Erythema Multiforme|| +008490|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Fall|10016173|Fall|10016173|fall|C0085639|Falls|| +008491|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +008492|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +008493|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +008494|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Galactorrhoea|10017600|Galactorrhea|10017592|galactorrhea|C3665358|Galactorrhea|| +008495|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +008496|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Generalised tonic-clonic seizure|10018100|Grand mal|10018658|grand mal|C0494475|Tonic - clonic seizures|| +008497|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Hallucination|10019063|Hallucination|10019063|hallucination|C0018524|Hallucinations|| +008498|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +008499|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Heart rate increased|10019303|Heart rate increased|10019303|heart rate increased|C0039231|Tachycardia|| +008500|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +008501|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Homicidal ideation|10049666|Homicidal ideation|10049666|homicidal ideation|C0455204|Homicidal thoughts|| +008502|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +008503|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Hypercholesterolaemia|10020603|Hypercholesterolemia|10020604|hypercholesterolemia|C0020443|Hypercholesterolemia|| +008504|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +008505|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Hyperprolactinaemia|10020737|Hyperprolactinemia|10020739|hyperprolactinemia|C0020514|Hyperprolactinemia|| +008506|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +008507|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Hypertensive crisis|10020802|Hypertensive crisis|10020802|hypertensive crisis|C0020546|Hypertensive crisis|| +008508|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +008509|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +008510|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +008511|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +008512|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +008513|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Libido decreased|10024419|Libido decreased|10024419|libido decreased|C0011124|Decreased Libido|| +008514|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Loss of consciousness|10024855|Loss of consciousness|10024855|loss of consciousness|C0041657|Unconscious State|| +008515|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Migraine|10027599|Migraine|10027599|migraine|C0149931|Migraine Disorders|| +008516|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +008517|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +008518|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Night sweats|10029410|Night sweats|10029410|night sweats|C0028081|Night sweats|| +008519|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +008520|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +008521|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +008522|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Parkinsonism|10034010|Parkinsonism|10034010|parkinsonism|C0242422|Parkinsonian Disorders|| +008523|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Prostatitis|10036978|Prostatitis|10036978|prostatitis|C0033581|prostatitis|| +008524|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +008525|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +008526|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +008527|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Rhabdomyolysis|10039020|Rhabdomyolysis|10039020|rhabdomyolysis|C0035410|Rhabdomyolysis|| +008528|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Scrotal pain|10039757|Scrotal pain|10039757|scrotal pain|C0236078|Pain in scrotum|| +008529|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsions|10010914|convulsions|C0036572|Seizures|| +008530|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +008531|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens Johnson syndrome|10042030|stevens johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +008532|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Stress|10042209|Stress|10042209|stress|C0038435|Stress|| +008533|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Supraventricular tachycardia|10042604|Supraventricular tachycardia|10042604|supraventricular tachycardia|C0039240|Supraventricular tachycardia|| +008534|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +008535|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Tension headache|10043269|Tension headache|10043269|tension headache|C0033893|Tension Headache|| +008536|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Testicular pain|10043345|Testicular pain|10043345|testicular pain|C0039591|Pain in testicle|| +008537|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Testicular swelling|10043354|Testicular swelling|10043354|testicular swelling|C2584688|Swelling of testicle (finding)|| +008538|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +008539|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +008540|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +008541|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Urethral pain|10046461|Urethral pain|10046461|urethral pain|C0151830|Pain in urethra|| +008542|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Urinary hesitation|10046542|Urinary hesitation|10046542|urinary hesitation|C0152032|Urinary hesitation|| +008543|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Urinary retention|10046555|Urinary retention|10046555|urinary retention|C0080274|Urinary Retention|| +008544|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +008545|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Urine flow decreased|10046640|Urine flow decreased|10046640|urine flow decreased|C0549418|Urine flow decreased|| +008546|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +008547|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +008548|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +008549|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight loss|10047900|weight loss|C1262477|Weight decreased|| +008550|8b720a1e-034b-4583-b80d-105a794cce74|Savella|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +008551|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Aggression|10001488|Aggressiveness|10001494|aggressiveness|C0001807|Aggressive behavior||DrugClass +008552|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation||DrugClass +008553|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Akathisia|10001540|Akathisia|10001540|akathisia|C0392156|Akathisia||DrugClass +008554|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevations of alt|C0151905|Alanine aminotransferase increased|| +008555|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Angle closure glaucoma|10002500|Acute angle closure glaucoma|10000673|angle closure attack|C0154946|Acute angle-closure glaucoma|| +008556|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety||DrugClass +008557|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|elevations of ast|C0151904|Aspartate aminotransferase increased|| +008558|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|increases of bilirubin|C0311468|Increased bilirubin level (finding)|| +008559|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure diastolic abnormal|10005736|Blood pressure diastolic abnormal|10005736|change in diastolic blood pressure|C0277888|Abnormal diastolic arterial pressure|| +008560|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure diastolic increased|10005739|Blood pressure diastolic high|10005738|diastolic blood pressure >=90 mmhg|C0277889|Increased diastolic arterial pressure|| +008561|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure diastolic increased|10005739|DBP increased|10011868|increases in dbp|C0277889|Increased diastolic arterial pressure|| +008562|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure diastolic increased|10005739|Diastolic blood pressure increased|10012753|increase in diastolic blood pressure|C0277889|Increased diastolic arterial pressure|| +008563|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure fluctuation|10005746|Change in blood pressure|10008393|blood pressure changes|C1268766|Blood pressure alteration (finding)|| +008564|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|increase blood pressure|C0497247|Increase in blood pressure|| +008565|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure increased|10005750|Blood pressure raised|10005755|blood pressure elevations|C0497247|Increase in blood pressure|| +008566|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure systolic abnormal|10005757|Blood pressure systolic abnormal|10005757|change in systolic blood pressure|C0277883|Abnormal systolic arterial pressure|| +008567|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure systolic increased|10005760|Blood pressure systolic high|10005759|systolic blood pressure >=140 mmhg|C0277884|Increased systolic arterial pressure|| +008568|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure systolic increased|10005760|Blood pressure systolic increased|10005760|increase in systolic blood pressure|C0277884|Increased systolic arterial pressure|| +008569|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure systolic increased|10005760|SBP increased|10039508|increase sbp|C0277884|Increased systolic arterial pressure|| +008570|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Blood sodium decreased|10005802|Serum sodium decreased|10054863|serum sodium lower than 110 mmol/l|C3888023|Blood sodium decreased|| +008571|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicide|C0038661|Suicide|| +008572|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Depression|10012378|Depression worsened|10012398|worsening of depression|C0541869|Depression worsened|| +008573|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Dysuria|10013990|Dysuria|10013990|dysuria|C0013428|Dysuria|| +008574|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Dysuria|10013990|Urination impaired|10046601|affect urethral resistance|C0231365|Alteration in patterns of urinary elimination|| +008575|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Ecchymosis|10014080|Ecchymoses|10014079|ecchymoses|C0013491|Ecchymosis||DrugClass +008576|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis||DrugClass +008577|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal bleeding|10017936|gastrointestinal bleeding|C0017181|Gastrointestinal Hemorrhage||DrugClass +008578|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Genitourinary symptom|10075537|Genitourinary symptom|10075537|genitourinary adverse events|C0426317|Genitourinary symptoms|| +008579|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Haematoma|10018852|Hematoma|10019428|hematomas|C0018944|Hematoma||DrugClass +008580|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +008581|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhages|C0019080|Hemorrhage||DrugClass +008582|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Heart rate increased|10019303|Heart rate increased|10019303|increases in heart rate|C0039231|Tachycardia|| +008583|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|increased liver enzymes|C0235996|Elevated liver enzymes|| +008584|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis fulminant|10019772|Hepatitis fulminant|10019772|fulminant hepatitis|C0302809|Fulminant hepatitis|| +008585|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Hostility|10020400|Hostility|10020400|hostility|C0020039|Hostility||DrugClass +008586|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|blood pressure hypertensive|C0020538|Hypertensive disease|| +008587|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertensive episode|10020804|hypertensive blood pressure measurement|C0520539|Hypertensive episode|| +008588|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertensive|10020800|hypertensive|C0857121|Hypertensive (finding)|| +008589|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Hypomania|10021030|Hypomania|10021030|activation of hypomania|C0241934|Hypomania||DrugClass +008590|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +008591|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Impulsive behaviour|10021567|Impulsive behavior|10060909|impulsivity|C0021125|Impulsive Behavior||DrugClass +008592|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Inappropriate antidiuretic hormone secretion|10053198|Inappropriate antidiuretic hormone secretion|10053198|syndrome of inappropriate antidiuretic hormone secretion|C0021141|Inappropriate ADH Syndrome|| +008593|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Inappropriate antidiuretic hormone secretion|10053198|SIADH|10040626|siadh|C0021141|Inappropriate ADH Syndrome|| +008594|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness||DrugClass +008595|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood||DrugClass +008596|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver|| +008597|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Mania|10026749|Mania|10026749|activation of mania|C0338831|Manic||DrugClass +008598|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Micturition disorder|10027561|Micturition disorder|10027561|affect micturition|C0042035|Urination Disorders|| +008599|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Mydriasis|10028521|Dilatation pupillary|10013007|pupillary dilation|C0026961|Mydriasis|| +008600|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Panic attack|10033664|Panic attacks|10033665|panic attacks|C0086769|Panic Attacks||DrugClass +008601|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Petechiae|10034754|Petechiae|10034754|petechiae|C0031256|Petechiae||DrugClass +008602|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Restlessness|10038743|Psychomotor restlessness|10037212|psychomotor restlessness|C3887612|Psychomotor Agitation||DrugClass +008603|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +008604|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Serotonin syndrome|10040108|Serotonin syndrome|10040108|serotonin syndrome|C0699828|Serotonin Syndrome|| +008605|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidality|C3166387|Suicidality|| +008606|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +008607|8b720a1e-034b-4583-b80d-105a794cce74|Savella|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevated transaminases|C0438717|Transaminases increased|| +008608|8e046642-5038-4094-b1bb-a1915558fb1c|Choline|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reaction|C0151735|Injection site reaction|| +008609|8e046642-5038-4094-b1bb-a1915558fb1c|Choline|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +008610|8e046642-5038-4094-b1bb-a1915558fb1c|Choline|43685-7|WARNINGS AND PRECAUTIONS|Exposure to radiation|10073306|Exposure to radiation|10073306|radiation risk|C4032503|Risk For Radiation Exposure|| +008611|8e046642-5038-4094-b1bb-a1915558fb1c|Choline|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +008612|8e046642-5038-4094-b1bb-a1915558fb1c|Choline|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Cancer|10007050|cancer|C0006826|Malignant Neoplasms|| +008613|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Anaphylactic shock|10002199|Anaphylactic shock|10002199|anaphylactic shock|C0002792|anaphylaxis|| +008614|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +008615|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Application site hypertrichosis|10075546|Application site hypertrichosis|10075546|hypertrichosis in the area of sclerotherapy|C3888455|Application site hypertrichosis|| +008616|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Asthma|10003553|Asthma|10003553|asthma|C0004096|Asthma|| +008617|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +008618|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Cerebrovascular accident|10008190|Cerebrovascular accident|10008190|cerebrovascular accident|C0038454|Cerebrovascular accident|| +008619|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Circulatory collapse|10009192|Circulatory collapse|10009192|circulatory collapse|C0036974|Shock|| +008620|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +008621|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Deep vein thrombosis|10051055|Deep vein thrombosis|10051055|deep vein thrombosis|C0149871|Deep Vein Thrombosis|| +008622|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Dermatitis allergic|10012434|Dermatitis allergic|10012434|dermatitis allergic|C0011615|Dermatitis, Atopic|| +008623|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +008624|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +008625|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +008626|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Injection site discolouration|10051572|Injection site discoloration|10055530|injection site discoloration|C0948991|Injection site discolouration|| +008627|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Injection site haematoma|10022066|Injection site haematoma|10022066|injection site haematoma|C0542008|Injection site haematoma|| +008628|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Injection site irritation|10022079|Injection site irritation|10022079|injection site irritation|C0521498|Injection site irritation|| +008629|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Injection site necrosis|10022082|Injection site necrosis|10022082|injection site necrosis|C0151795|Injection site necrosis|| +008630|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +008631|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|injection site pruritus|C0852995|Injection site pruritus|| +008632|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|local reactions at the site of injection|C0151735|Injection site reaction|| +008633|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Injection site thrombosis|10022104|Injection site thrombosis|10022104|injection site thrombosis|C0521501|Injection site thrombosis|| +008634|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Injection site warmth|10022112|Injection site warmth|10022112|injection site warmth|C0858934|Injection site warmth|| +008635|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Loss of consciousness|10024855|Loss of consciousness|10024855|loss of consciousness|C0041657|Unconscious State|| +008636|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Migraine|10027599|Migraine|10027599|migraine|C0149931|Migraine Disorders|| +008637|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Neovascularisation|10029113|Neovascularisation|10029113|neovascularisation|C0027686|Pathologic Neovascularization|| +008638|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Nerve injury|10052897|Nerve injury|10052897|nerve injury|C0161479|Nerve injury|| +008639|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +008640|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia local|C0030554|Paresthesia|| +008641|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +008642|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +008643|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Skin hyperpigmentation|10040865|Skin hyperpigmentation|10040865|skin hyperpigmentation|C0162834|Hyperpigmentation|| +008644|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope vasovagal|10042777|syncope vasovagal|C0042420|Vasovagal syncope|| +008645|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Generalized urticaria|10049198|urticaria generalized|C0750016|Generalized urticaria|| +008646|90550274-6605-44de-8c25-c5591080270f|Asclera|34084-4|ADVERSE REACTIONS|Vasculitis|10047115|Vasculitis|10047115|vasculitis|C0042384|Vasculitis|| +008647|90550274-6605-44de-8c25-c5591080270f|Asclera|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +008648|90550274-6605-44de-8c25-c5591080270f|Asclera|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +008649|90550274-6605-44de-8c25-c5591080270f|Asclera|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +008650|90550274-6605-44de-8c25-c5591080270f|Asclera|43685-7|WARNINGS AND PRECAUTIONS|Local reaction|10024769|Local reaction|10024769|adverse local effects|C0853813|Local reaction|| +008651|90550274-6605-44de-8c25-c5591080270f|Asclera|43685-7|WARNINGS AND PRECAUTIONS|Skin necrosis|10040893|Skin necrosis|10040893|local tissue necrosis|C1404792|Necrosis of subcutaneous tissue|| +008652|922d4d25-c530-11e1-9b21-0800200c9a66|JUBLIA|34084-4|ADVERSE REACTIONS|Application site dermatitis|10003036|Application site dermatitis|10003036|application site dermatitis|C0521495|Application site rash|| +008653|922d4d25-c530-11e1-9b21-0800200c9a66|JUBLIA|34084-4|ADVERSE REACTIONS|Application site pain|10003051|Application site pain|10003051|application site pain|C0521491|Application site pain|| +008654|922d4d25-c530-11e1-9b21-0800200c9a66|JUBLIA|34084-4|ADVERSE REACTIONS|Application site vesicles|10048941|Application site vesicles|10048941|application site vesicles|C0877097|Application site vesicles|| +008655|922d4d25-c530-11e1-9b21-0800200c9a66|JUBLIA|34084-4|ADVERSE REACTIONS|Ingrowing nail|10022013|Ingrown toe nail|10022015|ingrown toenails|C0027343|Nails, Ingrown|| +008656|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +008657|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Allergic colitis|10059447|Allergic colitis|10059447|immune-mediated colitis|C1262482|Allergic colitis|| +008658|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +008659|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +008660|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|increased aspartate aminotransferase|C0151904|Aspartate aminotransferase increased|| +008661|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Autoimmune hepatitis|10003827|Autoimmune hepatitis|10003827|immune-mediated hepatitis|C0241910|Hepatitis, Autoimmune|underspecified| +008662|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Autoimmune nephritis|10077087|Autoimmune nephritis|10077087|immune-mediated nephritis|C1142150|Nephritis autoimmune|underspecified| +008663|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +008664|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +008665|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +008666|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +008667|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +008668|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +008669|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +008670|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +008671|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +008672|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Endocrine autoimmune disorders|10003818|Endocrine autoimmune disorders|10003818|immune-mediated endocrinopathies|C0342552|Autoimmune endocrine disease|underspecified; HLT| +008673|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +008674|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +008675|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +008676|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|immune-mediated adverse reactions|C0020517|Hypersensitivity|| +008677|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Hypertriglyceridaemia|10020869|Hypertriglyceridemia|10020870|hypertriglyceridemia|C0020557|Hypertriglyceridemia|| +008678|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Hypoalbuminaemia|10020942|Hypoalbuminemia|10020943|hypoalbuminemia|C0239981|Hypoalbuminemia|| +008679|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +008680|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +008681|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +008682|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +008683|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +008684|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +008685|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +008686|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +008687|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +008688|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +008689|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|immune-mediated pneumonitis|C3714636|Pneumonitis|underspecified| +008690|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +008691|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +008692|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +008693|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +008694|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +008695|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +008696|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Vitiligo|10047642|Vitiligo|10047642|vitiligo|C0042900|Vitiligo|| +008697|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +008698|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Allergic colitis|10059447|Allergic colitis|10059447|immune-mediated colitis|C1262482|Allergic colitis|| +008699|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Arthritis|10003246|Arthritis|10003246|arthritis|C0003864|Arthritis|| +008700|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune hepatitis|10003827|Autoimmune hepatitis|10003827|immune-mediated hepatitis|C0241910|Hepatitis, Autoimmune|underspecified| +008701|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune nephritis|10077087|Autoimmune nephritis|10077087|autoimmune nephritis|C1142150|Nephritis autoimmune|| +008702|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Colitis microscopic|10056979|Colitis microscopic|10056979|microscopic colitis|C0400821|Colitis, Microscopic|| +008703|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +008704|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis exfoliative|10012455|Exfoliative dermatitis|10015665|exfoliative dermatitis|C0011606|Exfoliative dermatitis|| +008705|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +008706|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Diabetic ketoacidosis|10012671|Diabetic ketoacidosis|10012671|diabetic ketoacidosis|C0011880|Diabetic Ketoacidosis|| +008707|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Endocrine autoimmune disorders|10003818|Endocrine autoimmune disorders|10003818|immune-mediated endocrinopathies|C0342552|Autoimmune endocrine disease|underspecified; HLT| +008708|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +008709|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Haemolytic anaemia|10018916|Hemolytic anemia|10019493|hemolytic anemia|C0002878|Anemia, Hemolytic|| +008710|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +008711|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|immune-mediated adverse reactions|C0020517|Hypersensitivity|| +008712|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Hyperthyroidism|10020850|Hyperthyroidism|10020850|hyperthyroidism|C0020550|Hyperthyroidism|| +008713|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Hypophysitis|10062767|Hypophysitis|10062767|hypophysitis|C0342409|Hypophysitis|| +008714|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +008715|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +008716|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Myasthenic syndrome|10028424|Myasthenic syndrome|10028424|myasthenic syndrome|C0549225|Myasthenic Syndrome|| +008717|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Myositis|10028653|Myositis|10028653|myositis|C0027121|Myositis|| +008718|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Nephritis|10029117|Nephritis|10029117|nephritis|C0027697|Nephritis|| +008719|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Optic neuritis|10030942|Optic neuritis|10030942|optic neuritis|C0029134|Optic Neuritis|| +008720|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +008721|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Partial seizures|10061334|Partial seizures|10061334|partial seizures|C0751495|Seizures, Focal|| +008722|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Pemphigoid|10034277|Bullous pemphigoid|10006567|bullous pemphigoid|C0030805|Bullous pemphigoid|| +008723|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|immune-mediated pneumonitis|C3714636|Pneumonitis|underspecified| +008724|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +008725|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Rhabdomyolysis|10039020|Rhabdomyolysis|10039020|rhabdomyolysis|C0035410|Rhabdomyolysis|| +008726|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Thyroid disorder|10043709|Thyroid disorder|10043709|thyroid disorders|C0040128|Thyroid Diseases|| +008727|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Tubulointerstitial nephritis|10048302|Acute interstitial nephritis|10000819|acute interstitial nephritis|C0149937|Acute interstitial nephritis|| +008728|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Tubulointerstitial nephritis|10048302|Nephritis interstitial|10029134|interstitial nephritis|C0027707|Nephritis, Interstitial|| +008729|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Type 1 diabetes mellitus|10067584|Type 1 diabetes mellitus|10067584|type 1 diabetes mellitus|C0011854|Diabetes Mellitus, Insulin-Dependent|| +008730|9333c79b-d487-4538-a9f0-71b91a02b287|KEYTRUDA|43685-7|WARNINGS AND PRECAUTIONS|Uveitis|10046851|Uveitis|10046851|uveitis|C0042164|Uveitis|| +008731|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)||DrugClass +008732|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Upper abdominal pain|10046272|upper abdominal pain|C0232492|Upper abdominal pain|| +008733|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Acute sinusitis|10001076|Acute sinusitis|10001076|acute sinusitis|C0149512|Acute sinusitis|| +008734|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Adrenal suppression|10001382|Adrenal suppression|10001382|adrenal suppression|C0271738|Hypocortisolism secondary to another disorder|| +008735|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +008736|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +008737|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +008738|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +008739|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Bone density decreased|10049470|Bone density decreased|10049470|reduction in bone mineral density|C2674432|Reduced bone mineral density|| +008740|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +008741|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Candida infection|10074170|Candida albicans infection|10054230|candida albicans infection|C0276680|Infection by Candida albicans|| +008742|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Candida infection|10074170|Candidiasis|10007152|candidiasis|C0006840|Candidiasis|| +008743|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +008744|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +008745|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Dysphonia|10013952|Dysphonia|10013952|dysphonia|C1527344|Dysphonia|| +008746|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Extrasystoles|10015856|Extrasystoles|10015856|extrasystoles|C0340464|Premature Cardiac Complex|| +008747|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +008748|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Hyperadrenocorticism|10020564|Adrenal hypercorticism|10001365|hypercorticism|C0001622|Adrenal Gland Hyperfunction|| +008749|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +008750|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Immunosuppression|10062016|Immunosuppression|10062016|immunosuppression|C1373218|Decreased Immunologic Activity [PE]|| +008751|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +008752|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +008753|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +008754|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Nervousness|10029216|Nervousness|10029216|nervousness|C0027769|Nervousness|| +008755|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Oral candidiasis|10030963|Oral candidiasis|10030963|oral candidiasis|C0006849|Oral candidiasis|| +008756|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Oropharyngeal candidiasis|10050346|Oropharyngeal candidiasis|10050346|oropharyngeal candidiasis|C0919659|Oropharyngeal candidiasis|| +008757|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +008758|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Oropharyngitis fungal|10061891|Oropharyngitis fungal|10061891|fungal oropharyngitis|C0877566|Oropharyngitis fungal|| +008759|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +008760|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Pharyngitis|10034835|Pharyngitis|10034835|pharyngitis|C0031350|Pharyngitis|| +008761|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +008762|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +008763|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +008764|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Respiratory tract infection viral|10062106|Respiratory tract infection viral|10062106|viral respiratory tract infection|C0877203|Respiratory tract infection viral|| +008765|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Respiratory tract infection|10062352|Respiratory tract infection|10062352|respiratory tract infection|C0035243|Respiratory Tract Infections|| +008766|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Rhinitis allergic|10039085|Allergic rhinitis|10001723|allergic rhinitis|C2607914|Allergic rhinitis (disorder)|| +008767|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +008768|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +008769|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Supraventricular extrasystoles|10042602|Supraventricular extrasystoles|10042602|supraventricular extrasystoles|C0033036|Atrial Premature Complexes|| +008770|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +008771|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +008772|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +008773|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +008774|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|34084-4|ADVERSE REACTIONS|Ventricular extrasystoles|10047289|Ventricular extrasystoles|10047289|ventricular extrasystoles|C0151636|Premature ventricular contractions|| +008775|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Adrenal disorder|10001347|Dysfunction adrenal|10013900|impaired adrenal function|C0549609|Dysfunction adrenal|| +008776|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Adrenal suppression|10001382|Adrenal suppression|10001382|adrenal suppression|C0271738|Hypocortisolism secondary to another disorder|| +008777|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Adrenocortical insufficiency acute|10001389|Adrenal crisis|10001346|adrenal crisis|C0151467|Addisonian crisis|| +008778|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis||DrugClass +008779|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +008780|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +008781|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Arrhythmia|10003119|Cardiac arrhythmia|10007518|cardiac arrhythmias|C0003811|Cardiac Arrhythmia|| +008782|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Bacterial infection|10060945|Bacterial infection|10060945|worsening bacterial infections|C0004623|Bacterial Infections|| +008783|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Blood potassium decreased|10005724|Serum potassium decreased|10040378|decrease in serum potassium|C0595885|Serum potassium decreased|| +008784|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure diastolic increased|10005739|Blood pressure diastolic increased|10005739|increases diastolic blood pressure|C0277889|Increased diastolic arterial pressure|| +008785|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure systolic increased|10005760|Blood pressure systolic increased|10005760|increases systolic blood pressure|C0277884|Increased systolic arterial pressure|| +008786|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Bone density decreased|10049470|Bone density decreased|10049470|decreases in bone mineral density|C0877225|Bone density decreased||DrugClass +008787|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Bronchospasm paradoxical|10006486|Paradoxical bronchospasm|10033770|paradoxical bronchospasm|C0236072|Paradoxical bronchospasm|| +008788|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Candida infection|10074170|Candida albicans infection|10054230|candida albicans infection of the mouth|C0276680|Infection by Candida albicans|duplicate| +008789|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Cataract|10007739|Cataracts|10007771|cataracts|C0086543|Cataract||DrugClass +008790|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)||DrugClass +008791|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Diabetes mellitus|10012601|Diabetes mellitus aggravated|10012603|aggravate preexisting diabetes mellitus|C0235398|Diabetes mellitus exacerbated||DrugClass +008792|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|prolongation of the qtc interval|C0855333|Electrocardiogram QT corrected interval prolonged||DrugClass +008793|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram ST segment depression|10014391|ST segment depression|10041892|st segment depression|C0520887|ST segment depression (finding)||DrugClass +008794|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram T wave amplitude decreased|10014394|T wave flattening of|10042965|flattening of the t wave|C0429059|Flattened T wave (finding)||DrugClass +008795|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram change|10061116|Electrocardiogram change|10061116|electrocardiographic changes|C0855329|Electrocardiographic changes||DrugClass +008796|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Extrasystoles|10015856|Extrasystoles|10015856|extrasystoles|C0340464|Premature Cardiac Complex|| +008797|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Fungal infection|10017533|Fungal infection|10017533|worsening fungal infections|C0026946|Mycoses|| +008798|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Glaucoma|10018304|Glaucoma|10018304|glaucoma|C0017601|Glaucoma||DrugClass +008799|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Growth retardation|10053759|Growth retardation|10053759|reduction in growth velocity|C0151686|Growth retardation||DrugClass +008800|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Heart rate increased|10019303|Pulse rate increased|10037490|increases in pulse rate|C0039231|Tachycardia|| +008801|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Hyperadrenocorticism|10020564|Adrenal hypercorticism|10001365|hypercorticism|C0001622|Adrenal Gland Hyperfunction|| +008802|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia||DrugClass +008803|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +008804|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +008805|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Hypothalamic pituitary adrenal axis suppression|10074052|Hypothalamic pituitary adrenal axis suppression|10074052|hpa dysfunction|C2711029|Hypothalamic-pituitary-adrenal axis dysfunction|| +008806|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Infection parasitic|10021857|Infection parasitic|10021857|worsening parasitic infections|C0747256|Parasitic infection|| +008807|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection aggravated NOS|10021792|worsening of infections|C0235737|Infection aggravated NOS|| +008808|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection||DrugClass +008809|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Intraocular pressure increased|10022806|Increased intraocular pressure|10021667|increased intraocular pressure|C0234708|Raised intraocular pressure||DrugClass +008810|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Ketoacidosis|10023379|Ketoacidosis|10023379|aggravate preexisting ketoacidosis|C0220982|Ketoacidosis||DrugClass +008811|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Measles|10027011|Measles|10027011|measles|C0025007|Measles|| +008812|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Ophthalmic herpes simplex|10073938|Herpes simplex ophthalmic|10019958|worsening ocular herpes simplex|C0494081|Herpesviral ocular disease|| +008813|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Oral candidiasis|10030963|Candida of mouth|10007138|infections of the mouth with candida albicans|C0006849|Oral candidiasis|duplicate| +008814|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Oral fungal infection|10061324|Yeast infection of the mouth|10058087|candida albicans infection of the mouth|C1142268|Oral yeast infection|duplicate| +008815|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Oropharyngeal candidiasis|10050346|Pharyngeal candidiasis|10049651|candida albicans infection of the pharynx|C0343861|Pharyngeal candidiasis|underspecified| +008816|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +008817|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +008818|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Supraventricular tachycardia|10042604|Supraventricular tachycardia|10042604|supraventricular tachycardia|C0039240|Supraventricular tachycardia|| +008819|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis aggravated|10044757|worsening existing tuberculosis|C0151960|Tuberculosis aggravated|| +008820|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +008821|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Varicella|10046980|Chickenpox|10008505|chickenpox|C0008049|Chickenpox|| +008822|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Ventricular arrhythmia|10047281|Ventricular arrhythmia|10047281|ventricular arrhythmias|C0085612|Ventricular arrhythmia|| +008823|96428df1-ea05-431a-98d3-1ec2c4b63878|Breo|43685-7|WARNINGS AND PRECAUTIONS|Viral infection|10047461|Viral infection|10047461|worsening viral infections|C0042769|Virus Diseases|| +008824|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34066-1|BOXED WARNINGS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +008825|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +008826|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34066-1|BOXED WARNINGS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +008827|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34066-1|BOXED WARNINGS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +008828|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34066-1|BOXED WARNINGS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +008829|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34066-1|BOXED WARNINGS|Dysphagia|10013950|Swallowing difficult|10042645|swallowing difficulties|C0011168|Deglutition Disorders|| +008830|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34066-1|BOXED WARNINGS|Dysphonia|10013952|Dysphonia|10013952|dysphonia|C1527344|Dysphonia|| +008831|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34066-1|BOXED WARNINGS|Dyspnoea|10013968|Difficulty breathing|10012791|breathing difficulties|C0013404|Dyspnea|| +008832|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34066-1|BOXED WARNINGS|Eyelid ptosis|10015995|Ptosis|10037272|ptosis|C0033377|Ptosis|| +008833|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34066-1|BOXED WARNINGS|Muscular weakness|10028372|Generalized muscle weakness|10062572|generalized muscle weakness|C0746674|Generalized muscle weakness|| +008834|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34066-1|BOXED WARNINGS|Urinary incontinence|10046543|Urinary incontinence|10046543|urinary incontinence|C0042024|Urinary Incontinence|| +008835|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34066-1|BOXED WARNINGS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +008836|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34066-1|BOXED WARNINGS|||||spread toxin effects|||unmapped| +008837|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Accommodation disorder|10000389|Visual accommodation disturbance of|10047528|reduced visual accommodation|C0152198|Disorder of accommodation|| +008838|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Amyotrophy|10002027|Amyotrophy|10002027|amyotrophy|C0026846|Muscular Atrophy|| +008839|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +008840|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +008841|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Blood glucose increased|10005557|increase in mean blood glucose|C0595877|Blood glucose increased|| +008842|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Blood triglycerides increased|10005839|Blood triglycerides increased|10005839|blood triglycerides increased|C0853692|Blood triglycerides increased|| +008843|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Blood urine present|10018870|Blood in urine|10005604|blood present in urine|C0947999|Blood urine present|| +008844|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +008845|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Burning sensation|10006784|Burning sensation|10006784|burning sensation|C0085624|Burning sensation|| +008846|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +008847|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Contusion|10050584|Contusion|10050584|contusion|C0009938|Contusions|| +008848|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +008849|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +008850|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Dermatitis allergic|10012434|Allergic skin reaction|10001729|intradermal immune reaction|C0863090|Allergic skin reaction|| +008851|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Dermatitis contact|10012442|Contact dermatitis|10010790|contact dermatitis|C0011616|Contact Dermatitis|| +008852|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +008853|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +008854|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Discomfort|10013082|Sensation of heaviness|10040000|sensation of heaviness|C0581912|Heavy feeling|| +008855|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Disturbance in attention|10013496|Disturbance in attention|10013496|disturbance in attention|C0233414|Disturbance of attention|| +008856|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +008857|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +008858|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +008859|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Dysphonia|10013952|Dysphonia|10013952|dysphonia|C1527344|Dysphonia|| +008860|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Difficulty breathing|10012791|breathing difficulties|C0013404|Dyspnea|| +008861|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +008862|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +008863|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Excessive granulation tissue|10063560|Excessive granulation tissue|10063560|excessive granulation tissue|C0263634|Abnormal granulation tissue|| +008864|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Eye disorder|10015916|Eye disorder|10015916|eye disorders|C0015397|Disorder of eye|| +008865|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Eyelid disorder|10061130|Eyelid disorder|10061130|eyelid disorder|C0015423|Eyelid Diseases|| +008866|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Eyelid oedema|10015993|Eyelid edema|10015985|eyelid edema|C0162285|Edema of eyelid|| +008867|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Eyelid ptosis|10015995|Eyelid ptosis|10015995|eyelid ptosis|C0005745|Blepharoptosis|| +008868|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Facial paresis|10051267|Facial paresis|10051267|facial paresis|C0427055|Facial Paresis|| +008869|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Fall|10016173|Fall|10016173|fall|C0085639|Falls|| +008870|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +008871|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Feeling abnormal|10016322|Feeling abnormal|10016322|feeling abnormal|C1443060|Feeling abnormal|| +008872|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Gait disturbance|10017577|gait disturbance|C0575081|Gait abnormality|| +008873|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +008874|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Heart rate decreased|10019301|Heart rate decreased|10019301|reduction in heart rate|C2230138|Pulse slow (finding)|| +008875|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +008876|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Hypertonia|10020852|Hypertonia|10020852|hypertonia|C0026826|Muscle Hypertonia|| +008877|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoaesthesia|10020937|hypoaesthesia|C0020580|Hypesthesia|| +008878|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +008879|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infection|C3714514|Infection|| +008880|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Influenza like illness|10022004|Influenza like illness|10022004|influenza-like illness|C0521839|Influenza-like illness|| +008881|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +008882|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site bruising|10022052|Injection site bruising|10022052|injection site bruising|C0521508|Injection site bruising|| +008883|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site discomfort|10054266|Injection site discomfort|10054266|injection site discomfort|C1096267|Injection site discomfort|| +008884|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +008885|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site haematoma|10022066|Injection site haematoma|10022066|injection site haematoma|C0542008|Injection site haematoma|| +008886|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site haemorrhage|10022067|Injection site haemorrhage|10022067|injection site haemorrhage|C0151698|Injection site hemorrhage|| +008887|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site hypoaesthesia|10074586|Injection site numbness|10022084|injection site numbness|C0858930|Injection site numbness|| +008888|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site irritation|10022079|Injection site irritation|10022079|injection site irritation|C0521498|Injection site irritation|| +008889|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +008890|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site stinging|10058683|injection site stinging|C1142080|Injection site stinging|| +008891|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site tenderness|10022102|injection site tenderness|C0863083|Injection site tenderness|| +008892|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site paraesthesia|10022088|Injection site tingling|10074951|injection site tingling|C3854554|Injection site tingling|| +008893|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site pruritus|10022093|Injection site itching|10022080|injection site itching|C0852995|Injection site pruritus|| +008894|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site tightness|C0151735|Injection site reaction|| +008895|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site swelling|10053425|Injection site swelling|10053425|injection site swelling|C0151605|Injection site edema|| +008896|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injection site warmth|10022112|Injection site warmth|10022112|injection site warmth|C0858934|Injection site warmth|| +008897|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Injury|10022116|Injury|10022116|injury|C3263723|Traumatic injury|| +008898|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Laryngeal pain|10023848|Pharyngolaryngeal pain|10034844|pharyngolaryngeal pain|C0858635|Pharyngolaryngeal pain|| +008899|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Muscle atrophy|10028289|Muscle atrophy|10028289|muscle atrophy|C0026846|Muscular Atrophy|| +008900|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Muscular weakness|10028372|Muscular weakness|10028372|muscular weakness|C0151786|Muscle Weakness|| +008901|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +008902|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +008903|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +008904|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Neck pain|10028836|Neck pain|10028836|neck pain|C0007859|Neck Pain|| +008905|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +008906|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Partial seizures|10061334|Partial seizures|10061334|partial seizures|C0751495|Seizures, Focal|| +008907|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Photophobia|10034960|Photophobia|10034960|photophobia|C0085636|Photophobia|| +008908|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsion|10010904|convulsion|C0036572|Seizures|| +008909|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +008910|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +008911|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +008912|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +008913|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +008914|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +008915|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|Visual acuity reduced|10047531|Visual acuity reduced|10047531|reduced visual acuity|C0234632|Reduced visual acuity|| +008916|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|34084-4|ADVERSE REACTIONS|||||distant spread of toxin effect|||unmapped| +008917|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Aspiration|10003504|Aspiration|10003504|aspiration|C0700198|Pulmonary aspiration|| +008918|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +008919|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Creutzfeldt-Jakob disease|10011384|CJD|10009217|cjd|C0022336|Creutzfeldt-Jakob disease|| +008920|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Creutzfeldt-Jakob disease|10011384|Creutzfeldt-Jakob disease|10011384|creutzfeldt-jakob disease|C0022336|Creutzfeldt-Jakob disease|| +008921|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +008922|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +008923|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +008924|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +008925|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Dysphagia|10013950|Swallowing difficult|10042645|swallowing difficulties|C0011168|Deglutition Disorders|| +008926|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Dysphonia|10013952|Dysphonia|10013952|dysphonia|C1527344|Dysphonia|| +008927|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Difficulty breathing|10012791|breathing difficulties|C0013404|Dyspnea|| +008928|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Eyelid ptosis|10015995|Eyelid ptosis|10015995|eyelid ptosis|C0005745|Blepharoptosis|| +008929|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Eyelid ptosis|10015995|Ptosis|10037272|ptosis|C0033377|Ptosis|| +008930|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Muscular weakness|10028372|Generalized muscle weakness|10062572|generalized muscle weakness|C0746674|Generalized muscle weakness|| +008931|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Muscular weakness|10028372|Localised muscle weakness|10059002|weaken neck muscles|C4022584|Fatigable weakness of neck muscles|underspecified| +008932|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Respiratory failure|10038695|Respiratory failure|10038695|respiratory failure|C1145670|Respiratory Failure|| +008933|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Respiratory failure|10038695|Respiratory insufficiency|10038701|respiratory compromise|C0035229|Respiratory Insufficiency|| +008934|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Speech disorder|10041466|Speech disorder|10041466|speech difficulties|C0233715|Speech impairment|| +008935|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Total lung capacity decreased|10044100|Total lung capacity decreased|10044100|loss of breathing capacity|C0520829|Decreased total lung capacity|| +008936|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Urinary incontinence|10046543|Urinary incontinence|10046543|urinary incontinence|C0042024|Urinary Incontinence|| +008937|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Viral infection|10047461|Viral infection|10047461|viral diseases|C0042769|Virus Diseases|HLGT| +008938|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +008939|97513722-8426-4ce3-b85d-0e08e436a140|Dysport|43685-7|WARNINGS AND PRECAUTIONS|||||toxin effects beyond the site of local injection|||unmapped| +008940|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34066-1|BOXED WARNINGS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +008941|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34066-1|BOXED WARNINGS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +008942|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34066-1|BOXED WARNINGS|Type IV hypersensitivity reaction|10053613|Delayed type hypersensitivity|10012210|delayed-type hypersensitivity reactions|C0020522|Delayed Hypersensitivity|| +008943|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +008944|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Blood uric acid abnormal|10061727|Blood uric acid abnormal|10061727|failure to maintain normalization of uric acid|C0855642|Blood uric acid abnormal|duplicate| +008945|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Cardiac failure congestive|10007559|Congestive cardiac failure aggravated|10048565|exacerbations of pre-existing congestive heart failure|C3532952|Exacerbation of congestive heart failure|| +008946|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +008947|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +008948|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +008949|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Contusion|10050584|Contusion|10050584|contusion|C0009938|Contusions|| +008950|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Drug ineffective|10013709|Drug ineffective|10013709|failure to maintain normalization of uric acid|C0852908|Drug ineffective|duplicate| +008951|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +008952|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Ecchymosis|10014080|Ecchymosis|10014080|ecchymosis|C0013491|Ecchymosis|| +008953|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +008954|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Gout|10018627|Gout flare|10064900|gout flares|C1619733|Gout flare|| +008955|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +008956|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +008957|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +008958|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +008959|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +008960|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +008961|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +008962|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure congestive|10007559|Congestive cardiac failure aggravated|10048565|congestive heart failure exacerbation|C3532952|Exacerbation of congestive heart failure|| +008963|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|43685-7|WARNINGS AND PRECAUTIONS|Circumoral oedema|10052250|Perioral edema|10057806|peri-oral edema|C0239062|Circumoral oedema|| +008964|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|43685-7|WARNINGS AND PRECAUTIONS|Gout|10018627|Gout flare|10064900|gout flares|C1619733|Gout flare|| +008965|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|43685-7|WARNINGS AND PRECAUTIONS|Haemodynamic instability|10052076|Hemodynamic instability|10058270|hemodynamic instability|C0948268|Hemodynamic instability|| +008966|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +008967|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +008968|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|43685-7|WARNINGS AND PRECAUTIONS|Tongue oedema|10043967|Tongue edema|10043955|lingual edema|C0151610|Edema of the tongue|| +008969|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|43685-7|WARNINGS AND PRECAUTIONS|Type IV hypersensitivity reaction|10053613|Delayed type hypersensitivity|10012210|delayed type hypersensitivity reactions|C0020522|Delayed Hypersensitivity|| +008970|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +008971|9c0d9fbb-998c-4a62-9354-7330d64b144e|Krystexxa|43685-7|WARNINGS AND PRECAUTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +008972|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Aspergillus infection|10074171|Aspergillosis|10003488|aspergillosis|C0004030|Aspergillosis|| +008973|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Bacterial infection|10060945|Bacterial infection|10060945|bacterial infections|C0004623|Bacterial Infections|| +008974|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Bacterial sepsis|10053840|Bacterial sepsis|10053840|bacterial sepsis|C0684256|Bacterial sepsis|| +008975|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Blastomycosis|10005098|Blastomycosis|10005098|blastomycosis|C0005716|Blastomycosis|| +008976|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Candida infection|10074170|Candidiasis|10007152|candidiasis|C0006840|Candidiasis|| +008977|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Coccidioidomycosis|10009825|Coccidioidomycosis|10009825|coccidioidomycosis|C0009186|Coccidioidomycosis|| +008978|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +008979|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Disseminated tuberculosis|10013453|Disseminated tuberculosis|10013453|tuberculosis disseminated|C0152915|Acute miliary tuberculosis|| +008980|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Extrapulmonary tuberculosis|10064445|Extrapulmonary tuberculosis|10064445|tuberculosis extrapulmonary|C0679362|Tuberculosis, extrapulmonary|| +008981|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Histoplasmosis|10020141|Histoplasmosis|10020141|histoplasmosis|C0019655|Histoplasmosis|| +008982|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +008983|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Legionella infection|10061266|Legionella infection|10061266|infections legionella|C0023240|Legionellosis|| +008984|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Listeriosis|10024641|Listeria infection|10024638|infections listeria|C0023860|Listeriosis|| +008985|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Lymphoma|10025310|Lymphoma|10025310|lymphoma|C0024299|Lymphoma|| +008986|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancy|C1306459|Primary malignant neoplasm|| +008987|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Opportunistic infection|10030901|Opportunistic infection|10030901|infections due to opportunistic pathogens|C0029118|Opportunistic Infections|| +008988|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystosis|10035662|pneumocystosis|C1535939|Pneumocystis jiroveci pneumonia|| +008989|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Systemic mycosis|10052366|Invasive mycosis|10062642|invasive fungal infections|C1262313|Invasive mycosis|| +008990|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Tuberculosis|10044755|Active tuberculosis|10071157|active tuberculosis|C0151332|Active tuberculosis|| +008991|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Tuberculosis|10044755|TB|10043148|tb|C0041296|Tuberculosis|| +008992|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Tuberculosis|10044755|Tuberculosis reactivated|10045025|reactivation of latent tuberculosis|C0275965|Reactivation tuberculosis|| +008993|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +008994|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34066-1|BOXED WARNINGS|Viral infection|10047461|Viral infection|10047461|viral infections|C0042769|Virus Diseases|| +008995|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Abscess|10000269|Abscess|10000269|abscess|C0000833|Abscess|| +008996|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Acute hepatic failure|10000804|Acute liver failure|10049844|acute liver failure|C0162557|Liver Failure, Acute||DrugClass +008997|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt elevations|C0151905|Alanine aminotransferase increased|| +008998|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +008999|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reaction|C0002792|anaphylaxis|| +009000|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Angiopathy|10059245|Vascular disorder|10047059|vascular disorders|C0042373|Vascular Diseases|| +009001|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Antinuclear antibody positive|10060055|ANA positive|10060060|newly ana-positive|C0151480|Anti-nuclear factor positive|| +009002|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +009003|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Autoimmune disorder|10061664|Autoimmune disorder|10061664|formation of autoantibodies|C0004366|Autoimmune Response||DrugClass +009004|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Bacterial infection|10060945|Bacterial infection|10060945|bacterial infections|C0004623|Bacterial Infections|| +009005|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Blood disorder|10061590|Blood disorder|10061590|blood disorders|C0018939|Hematological Disease|| +009006|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +009007|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +009008|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +009009|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Dermatitis bullous|10012441|Dermatitis bullous|10012441|bullous skin reactions|C0085932|Skin Diseases, Bullous|| +009010|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +009011|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Extrapulmonary tuberculosis|10064445|Extrapulmonary tuberculosis|10064445|extrapulmonary tb|C0679362|Tuberculosis, extrapulmonary|| +009012|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Fungal infection|10017533|Fungal infection|10017533|superficial fungal infection|C0026946|Mycoses|| +009013|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Hepatic function abnormal|10019670|Hepatic function abnormal|10019670|hepatic reactions|C0086565|Liver Dysfunction||DrugClass +009014|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Herpes virus infection|10019973|Herpes NOS|10019944|herpes|C0019340|Herpes NOS|| +009015|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Systemic allergic reaction|10066472|systemic hypersensitivity reactions|C1736167|Systemic allergic reaction|| +009016|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +009017|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +009018|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +009019|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reaction|C0948715|Infusion related reaction|| +009020|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +009021|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Laryngitis|10023874|Laryngitis|10023874|laryngitis|C0023067|Laryngitis|| +009022|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +009023|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Lower respiratory tract infection|10024968|Lower respiratory tract infection|10024968|lower respiratory tract infection|C0149725|Lower respiratory tract infection|| +009024|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Lupus-like syndrome|10050551|Lupus-like syndrome|10050551|lupus-like syndrome|C0919715|Lupus-like syndrome||DrugClass +009025|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Lymphatic disorder|10052314|Lymphatic disorder|10052314|lymphatic disorders|C0024228|Lymphatic Diseases|| +009026|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Lymphoma|10025310|Lymphoma|10025310|lymphoma|C0024299|Lymphoma|| +009027|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Malignant melanoma|10025650|Melanoma|10053571|melanoma|C0025202|melanoma|| +009028|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +009029|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancy|C1306459|Primary malignant neoplasm|| +009030|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|neutrophil count decreased|C0853697|Neutrophil count decreased|| +009031|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +009032|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +009033|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Pharyngitis|10034835|Pharyngitis|10034835|pharyngitis|C0031350|Pharyngitis|| +009034|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +009035|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Pulmonary tuberculosis|10037440|Pulmonary TB|10037435|pulmonary tb|C0041327|Tuberculosis, Pulmonary|| +009036|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Pyelonephritis|10037596|Pyelonephritis|10037596|pyelonephritis|C0034186|Pyelonephritis|| +009037|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +009038|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +009039|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +009040|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Sarcoidosis|10039486|Sarcoidosis|10039486|sarcoidosis|C0036202|Sarcoidosis|| +009041|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +009042|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +009043|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Skin cancer|10040808|Cancer of skin (excl melanoma)|10007116|nmsc|C0699893|Skin carcinoma|| +009044|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Skin exfoliation|10040844|Skin exfoliation|10040844|skin exfoliation|C0237849|Peeling of skin|| +009045|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Systemic mycosis|10052366|Invasive mycosis|10062642|invasive fungal infections|C1262313|Invasive mycosis|| +009046|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Tuberculosis|10044755|Active tuberculosis|10071157|active tb|C0151332|Active tuberculosis|| +009047|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Tuberculosis|10044755|TB|10043148|tb|C0041296|Tuberculosis|| +009048|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +009049|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +009050|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|34084-4|ADVERSE REACTIONS|Viral infection|10047461|Viral infection|10047461|viral infection|C0042769|Virus Diseases|| +009051|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Acute leukaemia|10000830|Acute leukemia|10000835|acute leukemia|C0085669|Acute leukemia|| +009052|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reaction|C0002792|anaphylaxis|| +009053|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +009054|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Aplastic anaemia|10002967|Aplastic anemia|10002969|aplastic anemia|C0002874|Aplastic Anemia|| +009055|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Aspergillus infection|10074171|Aspergillosis|10003488|aspergillosis|C0004030|Aspergillosis||DrugClass +009056|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Bacterial infection|10060945|Bacterial infection|10060945|opportunistic infections bacterial|C0004623|Bacterial Infections|duplicate|DrugClass +009057|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Blastomycosis|10005098|Blastomycosis|10005098|blastomycosis|C0005716|Blastomycosis||DrugClass +009058|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Candida infection|10074170|Candidiasis|10007152|candidiasis|C0006840|Candidiasis||DrugClass +009059|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure congestive|10007559|CHF|10008502|new onset chf|C0742752|CONGESTIVE HEART FAILURE NEW ONSET|| +009060|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure congestive|10007559|Congestive cardiac failure aggravated|10048565|worsening chf|C3532952|Exacerbation of congestive heart failure|| +009061|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Cardiac failure aggravated|10007557|heart failure worsening|C0235875|Cardiac failure aggravated|| +009062|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Cardiac failure|10007554|heart failure new onset|C0018801|Heart failure|| +009063|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Heart failure|10019279|heart failure|C0018801|Heart failure|| +009064|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Chronic leukaemia|10008943|Chronic leukemia|10008948|chronic leukemia|C1279296|Chronic leukemia (category)|| +009065|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Coccidioidomycosis|10009825|Coccidioidomycosis|10009825|coccidioidomycosis|C0009186|Coccidioidomycosis||DrugClass +009066|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +009067|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Demyelinating polyneuropathy|10061811|Demyelinating polyneuropathy|10061811|peripheral demyelinating polyneuropathy|C4015271|Peripheral demyelinating polyneuropathy|| +009068|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Demyelination|10012305|Demyelinating disease of central nervous system, unspecified|10012301|exacerbation of cns demyelinating disorders|C0011302|Demyelinating disease of central nervous system|| +009069|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Demyelination|10012305|Demyelination disorder NOS|10048425|exacerbation demyelinating disease|C0011303|Demyelinating Diseases|| +009070|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Guillain-Barre syndrome|10018767|Guillain-Barre syndrome|10018767|guillain-barre syndrome|C0018378|Guillain-Barre Syndrome|| +009071|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis B|10019731|Hepatitis B reactivation|10058827|reactivation of hepatitis b virus|C1142420|Hepatitis B reactivation|| +009072|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Hepatosplenic T-cell lymphoma|10066957|Hepatosplenic T-cell lymphoma|10066957|hepatosplenic t-cell lymphoma|C1333984|Hepatosplenic T-cell lymphoma|| +009073|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Histoplasmosis|10020141|Histoplasmosis|10020141|histoplasmosis|C0019655|Histoplasmosis||DrugClass +009074|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Hodgkin's disease|10020206|Hodgkin's lymphoma|10020328|hodgkin's lymphoma|C0019829|Hodgkin Disease|| +009075|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +009076|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Systemic allergic reaction|10066472|systemic hypersensitivity reactions|C1736167|Systemic allergic reaction|| +009077|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Immunosuppression|10062016|Immunosuppression|10062016|immunosuppression|C1373218|Decreased Immunologic Activity [PE]|| +009078|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Infection parasitic|10021857|Infection parasitic|10021857|opportunistic infections parasitic|C0747256|Parasitic infection|duplicate|DrugClass +009079|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +009080|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Legionella infection|10061266|Legionella infection|10061266|legionellosis|C0023240|Legionellosis||DrugClass +009081|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +009082|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Listeriosis|10024641|Listeriosis|10024641|listeriosis|C0023860|Listeriosis||DrugClass +009083|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Lymphoma|10025310|Lymphoma|10025310|lymphoma|C0024299|Lymphoma|| +009084|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Malignant melanoma|10025650|Melanoma|10053571|melanoma|C0025202|melanoma|| +009085|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Multiple sclerosis|10028245|MS|10028053|ms|C0026769|Multiple Sclerosis|| +009086|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Multiple sclerosis|10028245|Multiple sclerosis|10028245|multiple sclerosis|C0026769|Multiple Sclerosis|| +009087|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Mycobacterial infection|10062207|Mycobacterial infection|10062207|opportunistic infections mycobacterial|C0026918|Mycobacterium Infections|duplicate|DrugClass +009088|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +009089|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Neuroendocrine carcinoma of the skin|10029266|Merkel cell carcinoma|10064025|merkel cell carcinoma|C0007129|Merkel cell carcinoma|| +009090|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +009091|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Non-Hodgkin's lymphoma|10029547|Non-Hodgkin's lymphoma|10029547|non-hodgkin's lymphoma|C0024305|Lymphoma, Non-Hodgkin|| +009092|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +009093|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Optic neuritis|10030942|Optic neuritis|10030942|optic neuritis|C0029134|Optic Neuritis|| +009094|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +009095|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystosis|10035662|pneumocystosis|C1535939|Pneumocystis jiroveci pneumonia||DrugClass +009096|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Systemic mycosis|10052366|Invasive mycosis|10062642|invasive fungal infections|C1262313|Invasive mycosis|| +009097|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|T-cell lymphoma|10042971|T-cell lymphoma|10042971|rare type of t-cell lymphoma|C0079772|T-Cell Lymphoma|| +009098|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +009099|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Infection tuberculosis|10021870|new tuberculosis infections|C0041296|Tuberculosis|| +009100|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis reactivated|10045025|reactivation of tuberculosis|C0275965|Reactivation tuberculosis|| +009101|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis||DrugClass +009102|9e260a47-55af-4c92-8d88-a86ccc767fff|SIMPONI|43685-7|WARNINGS AND PRECAUTIONS|Viral infection|10047461|Viral infection|10047461|opportunistic infections viral|C0042769|Virus Diseases|duplicate|DrugClass +009103|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Administration site irritation|10075941|Administration site irritation|10075941|administration site irritability|C3888600|Administration site irritation|| +009104|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Aggression|10001488|Aggression|10001488|aggression|C0001807|Aggressive behavior|| +009105|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +009106|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis|| +009107|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevations of alt|C0151905|Alanine aminotransferase increased|| +009108|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +009109|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +009110|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Arrhythmia|10003119|Cardiac arrhythmia|10007518|cardiac rhythm abnormalities|C0003811|Cardiac Arrhythmia|| +009111|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +009112|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Ataxia|10003591|Ataxia|10003591|ataxia|C0004134|Ataxia|| +009113|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Balance disorder|10049848|Balance disorder|10049848|balance disorder|C0575090|Equilibration disorder|| +009114|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +009115|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Cerebellar syndrome|10008072|Cerebellar syndrome|10008072|cerebellar syndrome|C0007760|Cerebellar Diseases|| +009116|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +009117|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Cognitive disorder|10057668|Cognitive disorder|10057668|cognitive disorder|C0009241|Cognition Disorders|| +009118|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Conduction disorder|10010276|Conduction disorder|10010276|cardiac conduction abnormalities|C1842820|Cardiac conduction abnormalities|| +009119|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +009120|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +009121|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Contusion|10050584|Contusion|10050584|contusion|C0009938|Contusions|| +009122|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Coordination abnormal|10010947|Coordination abnormal|10010947|abnormal coordination|C0520966|Abnormal coordination|| +009123|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Depressed mood|10012374|Depressed mood|10012374|depressed mood|C0344315|Depressed mood|| +009124|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +009125|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +009126|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +009127|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Disturbance in attention|10013496|Disturbance in attention|10013496|disturbance in attention|C0233414|Disturbance of attention|| +009128|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +009129|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug reaction with eosinophilia and systemic symptoms|10073508|multiorgan hypersensitivity reactions|C3541994|Drug Hypersensitivity Syndrome|| +009130|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +009131|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +009132|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +009133|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Fall|10016173|Fall|10016173|fall|C0085639|Falls|| +009134|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +009135|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Feeling drunk|10016330|Feeling drunk|10016330|feeling drunk|C0522172|Feeling intoxicated|| +009136|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Gait disturbance|10017577|gait disturbance|C0575081|Gait abnormality|| +009137|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Hallucination|10019063|Hallucination|10019063|hallucination|C0018524|Hallucinations|| +009138|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +009139|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +009140|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +009141|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Hypoaesthesia oral|10057371|Hypoaesthesia oral|10057371|oral hypoesthesia|C0521592|Oral hypoesthesia|| +009142|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoaesthesia|10020937|hypoaesthesia|C0020580|Hypesthesia|| +009143|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Injection site discomfort|10054266|Injection site discomfort|10054266|injection site discomfort|C1096267|Injection site discomfort|| +009144|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +009145|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Injection site irritation|10022079|Injection site irritation|10022079|injection site irritation|C0521498|Injection site irritation|| +009146|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +009147|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +009148|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Laceration|10023572|Skin laceration|10058818|skin laceration|C0558401|Skin laceration|| +009149|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Liver function test abnormal|10024690|Liver function test abnormal|10024690|abnormalities in liver function tests|C0151766|Liver function tests abnormal finding|| +009150|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Memory impairment|10027175|Memory impairment|10027175|memory impairment|C0233794|Memory impairment|| +009151|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Mood altered|10027940|Mood altered|10027940|mood altered|C0085633|Mood swings|| +009152|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +009153|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +009154|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Nephritis|10029117|Nephritis|10029117|nephritis|C0027697|Nephritis|| +009155|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Nervous system disorder|10029202|CNS disorder (NOS)|10009712|cns adverse reactions|C0007682|CNS disorder|| +009156|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +009157|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Nystagmus|10029864|Nystagmus|10029864|nystagmus|C0028738|Nystagmus|| +009158|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +009159|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Paraesthesia oral|10057372|Paresthesia oral|10054537|oral paresthesia|C0521591|Oral paresthesia|| +009160|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +009161|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +009162|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +009163|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Psychotic disorder|10061920|Psychotic disorder|10061920|psychotic disorder|C0033975|Psychotic Disorders|| +009164|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +009165|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +009166|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +009167|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +009168|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +009169|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +009170|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +009171|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Tinnitus|10043882|Tinnitus|10043882|tinnitus|C0040264|Tinnitus|| +009172|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +009173|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminases >20* uln|C0438717|Transaminases increased|| +009174|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +009175|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Type IV hypersensitivity reaction|10053613|Delayed type hypersensitivity|10012210|delayed hypersensitivity reaction|C0020522|Delayed Hypersensitivity|| +009176|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Urinary casts present|10067534|Urinary casts present|10067534|urine casts|C1963772|Urinary casts present|| +009177|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +009178|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +009179|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +009180|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +009181|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Arrhythmia supraventricular|10003130|Atrial arrhythmia|10003656|atrial arrhythmias|C0085611|Atrial arrhythmia|| +009182|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Ataxia|10003591|Ataxia|10003591|ataxia|C0004134|Ataxia|| +009183|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +009184|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Atrial flutter|10003662|Atrial flutter|10003662|atrial flutter|C0004239|Atrial Flutter|| +009185|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block complete|10003673|AV block complete|10003848|complete av block|C0151517|Complete atrioventricular block|| +009186|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block complete|10003673|Third degree AV block|10043440|third degree av block|C0151517|Complete atrioventricular block|| +009187|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block first degree|10003674|AV block first degree|10003850|first-degree av block|C0085614|First degree atrioventricular block|| +009188|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block first degree|10003674|Atrioventricular block first degree|10003674|first-degree atrioventricular block|C0085614|First degree atrioventricular block|| +009189|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block second degree|10003677|AV block second degree|10003851|second degree av block|C0264906|Second degree atrioventricular block|| +009190|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure orthostatic abnormal|10053354|Blood pressure orthostatic abnormal|10053354|changes in orthostatic blood pressure|C1095973|Blood pressure orthostatic abnormal|| +009191|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +009192|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicides|C0038661|Suicide|| +009193|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +009194|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress|C3541994|Drug Hypersensitivity Syndrome||DrugClass +009195|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug reaction with eosinophilia and systemic symptoms|10073508|multiorgan hypersensitivity reactions|C3541994|Drug Hypersensitivity Syndrome||DrugClass +009196|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram PR prolongation|10053657|PR interval prolonged|10036471|prolongations in pr interval|C0600125|Prolonged PR interval|| +009197|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram PR prolongation|10053657|PR prolongation|10036473|pr prolongation|C0600125|Prolonged PR interval|| +009198|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Eosinophilia|10014950|Eosinophilia|10014950|eosinophilia|C0014457|Eosinophilia||DrugClass +009199|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|elevated liver enzymes|C0235996|Elevated liver enzymes|| +009200|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis||DrugClass +009201|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Loss of consciousness|10024855|Loss of consciousness|10024855|loss of consciousness|C0041657|Unconscious State|| +009202|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Lymphadenopathy|10025197|Lymphadenopathy|10025197|lymphadenopathy|C0497156|Lymphadenopathy||DrugClass +009203|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Myocarditis|10028606|Myocarditis|10028606|myocarditis|C0027059|Myocarditis||DrugClass +009204|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Nephritis|10029117|Nephritis|10029117|nephritis|C0027697|Nephritis||DrugClass +009205|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever||DrugClass +009206|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema||DrugClass +009207|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +009208|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thinking|C0424000|Feeling suicidal (finding)||DrugClass +009209|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +009210|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +009211|9e79b42c-38a3-4b2c-a196-a5a1948250e2|Vimpat|43685-7|WARNINGS AND PRECAUTIONS|Type IV hypersensitivity reaction|10053613|Delayed type hypersensitivity|10012210|delayed multiorgan hypersensitivity reaction|C0020522|Delayed Hypersensitivity|duplicate| +009212|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Asthma|10003553|Exacerbation of asthma|10015575|exacerbation of asthma|C0349790|Exacerbation of asthma|| +009213|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Cataract|10007739|Cataract|10007739|cataract|C0086543|Cataract|| +009214|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Conjunctival hyperaemia|10051625|Conjunctival hyperemia|10054364|conjunctival hyperemia|C1761613|Conjunctival hyperemia|| +009215|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Conjunctivitis allergic|10010744|Allergic conjunctivitis|10001709|allergic conjunctivitis|C0009766|Allergic Conjunctivitis|| +009216|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +009217|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Dry eye|10013774|Dry eye|10013774|dry eye|C0314719|Dryness of eye|| +009218|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +009219|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Eye irritation|10015946|Eye irritation|10015946|ocular irritation|C0235266|Eye irritation|| +009220|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Eye pain|10015958|Ocular pain|10067261|ocular pain|C0151827|Eye pain|| +009221|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Eye pain|10015958|Ocular stinging|10030065|ocular stinging|C0863079|Ocular stinging|| +009222|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Eye pruritus|10052140|Eye pruritus|10052140|ocular pruritus|C0022281|Itching of eye|| +009223|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Eye symptom|10075536|Eye symptom|10075536|ocular adverse reactions|C1557306|Adverse Event Associated with Ocular and Visual Systems|| +009224|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Eyelash hyperpigmentation|10064121|Eyelash darkening|10064122|eyelash darkening|C1536146|Eyelash darkening|| +009225|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Eyelid disorder|10061130|Eyelid disorder|10061130|lid changes|C0015423|Eyelid Diseases||DrugClass +009226|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Growth of eyelashes|10048462|Growth of eyelashes|10048462|growth of eyelashes|C0423847|Growth of eyelashes|| +009227|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +009228|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Iritis|10022955|Iritis|10022955|iritis|C0022081|Iritis|| +009229|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Lid sulcus deepened|10072716|Lid sulcus deepened|10072716|deepening of the eyelid sulcus|C3495827|Lid sulcus deepened||DrugClass +009230|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Common cold|10010106|common cold|C0009443|Common Cold|| +009231|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Periorbital disorder|10057425|Periorbital disorder|10057425|periorbital changes|C1112637|Periorbital disorder||DrugClass +009232|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +009233|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Uveitis|10046851|Uveitis|10046851|uveitis|C0042164|Uveitis|| +009234|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +009235|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|43685-7|WARNINGS AND PRECAUTIONS|Blepharal pigmentation|10005147|Hyperpigmentation of eyelid|10020714|increased pigmentation of the eyelid|C0155211|Hyperpigmentation of Eyelids|| +009236|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|43685-7|WARNINGS AND PRECAUTIONS|Cystoid macular oedema|10058202|Cystoid macular edema|10051240|cystoid macular edema|C0024440|Macular Edema, Cystoid||DrugClass +009237|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|43685-7|WARNINGS AND PRECAUTIONS|Eye colour change|10072289|Eye color change|10072295|iris color change|C1411924|Eye colour change|| +009238|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|43685-7|WARNINGS AND PRECAUTIONS|Eyelash discolouration|10058809|Eyelash discoloration|10058812|changes color of lashes|C1142111|Eyelash discolouration|| +009239|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|43685-7|WARNINGS AND PRECAUTIONS|Eyelash hyperpigmentation|10064121|Eyelash darkening|10064122|eyelashes pigmentation|C1536146|Eyelash darkening|| +009240|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|43685-7|WARNINGS AND PRECAUTIONS|Eyelash hyperpigmentation|10064121|Eyelash hyperpigmentation|10064121|increased pigmentation of the eyelashes|C1536145|Eyelash hyperpigmentation|| +009241|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|43685-7|WARNINGS AND PRECAUTIONS|Eyelash thickening|10058810|Eyelash thickening|10058810|changes thickness of lashes|C1142112|Eyelash thickening|| +009242|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|43685-7|WARNINGS AND PRECAUTIONS|Growth of eyelashes|10048462|Growth of eyelashes|10048462|increased number of lashes|C0423847|Growth of eyelashes|underspecified| +009243|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|43685-7|WARNINGS AND PRECAUTIONS|Iris hyperpigmentation|10049758|Iris hyperpigmentation|10049758|increased pigmentation of the iris|C0877306|Iris hyperpigmentation|| +009244|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|43685-7|WARNINGS AND PRECAUTIONS|Macular oedema|10025415|Macular edema|10054467|macular edema|C0271051|Macular retinal edema||DrugClass +009245|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|43685-7|WARNINGS AND PRECAUTIONS|Periorbital disorder|10057425|Periorbital disorder|10057425|increased pigmentation of the periorbital tissue|C1844606|Periorbital hyperpigmentation|duplicate| +009246|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|43685-7|WARNINGS AND PRECAUTIONS|Pigmentation disorder|10062080|Abnormal pigmentation|10000165|changes to pigmented tissues|C1260926|Abnormal pigmentation|| +009247|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|43685-7|WARNINGS AND PRECAUTIONS|Skin hyperpigmentation|10040865|Hyperpigmentation skin|10020715|increased pigmentation of the periorbital tissue|C1844606|Periorbital hyperpigmentation|duplicate| +009248|a3173c26-0e19-47af-a01c-3fc06b2700d1|ZIOPTAN|43685-7|WARNINGS AND PRECAUTIONS|||||changes shape of lashes|C2675111|Abnormality of the eyelashes|unmapped| +009249|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Acute hepatic failure|10000804|Fulminant hepatic failure|10017469|fulminant hepatic failure|C0162557|Liver Failure, Acute|| +009250|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +009251|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +009252|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +009253|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +009254|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Hepatic enzyme increased|10060795|hepatic enzyme elevations|C0235996|Elevated liver enzymes|| +009255|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +009256|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycaemia|10020993|hypoglycemic events|C0020615|Hypoglycemia|| +009257|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +009258|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +009259|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Pancreatitis acute|10033647|Acute pancreatitis|10000971|acute pancreatitis|C0001339|Acute pancreatitis|| +009260|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +009261|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +009262|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Serum sickness|10040400|Serum sickness|10040400|serum sickness|C0036830|Serum Sickness|| +009263|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|cutaneous adverse reactions|C0221743|Skin reaction|| +009264|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +009265|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +009266|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +009267|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt elevations|C0151905|Alanine aminotransferase increased|| +009268|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|serum alanine aminotransferase elevations|C0151905|Alanine aminotransferase increased|| +009269|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +009270|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +009271|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|43685-7|WARNINGS AND PRECAUTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia||DrugClass +009272|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +009273|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +009274|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxic effect|10019850|hepatic effects|C0235378|Hepatotoxicity|| +009275|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +009276|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +009277|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|43685-7|WARNINGS AND PRECAUTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +009278|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis acute|10033647|Acute pancreatitis|10000971|acute pancreatitis|C0001339|Acute pancreatitis|| +009279|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|cutaneous adverse reactions|C0221743|Skin reaction|| +009280|a3768c7e-aa4c-44d3-bc53-43bb7346c0b0|Nesina|43685-7|WARNINGS AND PRECAUTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +009281|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +009282|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|bone marrow suppression|C0854467|Myelosuppression|| +009283|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Congenital anomaly|10010356|Congenital anomaly|10010356|hereditary defects|C0000768|Congenital Abnormality|| +009284|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +009285|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +009286|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Exposure to radiation|10073306|Exposure to radiation|10073306|long-term cumulative radiation exposure|C0015333|Exposure to radiation|underspecified| +009287|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Haematology test abnormal|10057755|Hematology test abnormal|10057760|hematologic laboratory abnormalities|C1112712|Haematology test abnormal|| +009288|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|erythema at the injection site|C0852625|Injection site erythema|| +009289|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Injection site oedema|10022085|Edema injection site|10014226|edema at the injection site|C0151605|Injection site edema|| +009290|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|pain at the injection site|C0151828|Injection site pain|| +009291|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +009292|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphocytopenia|10025278|lymphocytopenia|C0024312|Lymphopenia|| +009293|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +009294|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Cancer|10007050|cancer|C0006826|Malignant Neoplasms|| +009295|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|secondary malignancies|C0006826|Malignant Neoplasms|| +009296|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Neoplasm|10028980|Neoplasm|10028980|neoplastic changes|C0027671|Neoplastic Processes||Animal +009297|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +009298|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +009299|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Osteosarcoma|10031291|Osteosarcoma|10031291|osteosarcomas|C0029463|Osteosarcoma||Animal +009300|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +009301|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +009302|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +009303|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +009304|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +009305|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|43685-7|WARNINGS AND PRECAUTIONS|Bone marrow failure|10065553|Bone marrow failure|10065553|bone marrow failure|C0151773|Bone marrow depression|| +009306|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|43685-7|WARNINGS AND PRECAUTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|myelosuppression|C0854467|Myelosuppression|| +009307|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|deaths|C1306577|Death (finding)|| +009308|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|43685-7|WARNINGS AND PRECAUTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +009309|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|vascular hemorrhage|C0264940|Hemorrhage of blood vessel|| +009310|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infection|C3714514|Infection|| +009311|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|43685-7|WARNINGS AND PRECAUTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +009312|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +009313|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|43685-7|WARNINGS AND PRECAUTIONS|Neutrophil count decreased|10029366|Neutrophil count low|10029369|neutrophil count nadirs|C0853697|Neutrophil count decreased|| +009314|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|43685-7|WARNINGS AND PRECAUTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +009315|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|43685-7|WARNINGS AND PRECAUTIONS|Platelet count decreased|10035528|Low platelets|10024922|platelet count nadirs|C0392386|Decreased platelet count|| +009316|a398400e-bd31-41a9-9696-4f7c06569ede|Xofigo|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +009317|a3e6d688-7e5e-4ca3-b27e-79756c322a32|Besivance|34084-4|ADVERSE REACTIONS|Conjunctival hyperaemia|10051625|Conjunctival redness|10010731|conjunctival redness|C1761613|Conjunctival hyperemia|| +009318|a3e6d688-7e5e-4ca3-b27e-79756c322a32|Besivance|34084-4|ADVERSE REACTIONS|Eye irritation|10015946|Eye irritation|10015946|eye irritation|C0235266|Eye irritation|| +009319|a3e6d688-7e5e-4ca3-b27e-79756c322a32|Besivance|34084-4|ADVERSE REACTIONS|Eye pain|10015958|Eye pain|10015958|eye pain|C0151827|Eye pain|| +009320|a3e6d688-7e5e-4ca3-b27e-79756c322a32|Besivance|34084-4|ADVERSE REACTIONS|Eye pruritus|10052140|Eye pruritus|10052140|eye pruritus|C0022281|Itching of eye|| +009321|a3e6d688-7e5e-4ca3-b27e-79756c322a32|Besivance|34084-4|ADVERSE REACTIONS|Eye symptom|10075536|Eye symptom|10075536|ocular adverse reaction|C1557306|Adverse Event Associated with Ocular and Visual Systems|| +009322|a3e6d688-7e5e-4ca3-b27e-79756c322a32|Besivance|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +009323|a3e6d688-7e5e-4ca3-b27e-79756c322a32|Besivance|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +009324|a3e6d688-7e5e-4ca3-b27e-79756c322a32|Besivance|43685-7|WARNINGS AND PRECAUTIONS|Overgrowth fungal|10076272|Overgrowth fungal|10076272|overgrowth of fungi|C3888814|Overgrowth fungal|| +009325|a3e6d688-7e5e-4ca3-b27e-79756c322a32|Besivance|43685-7|WARNINGS AND PRECAUTIONS|||||overgrowth of non-susceptible organisms|||unmapped| +009326|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34066-1|BOXED WARNINGS|Blindness|10005169|Vision loss|10047522|vision loss|C3665386|Abnormal vision|| +009327|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34066-1|BOXED WARNINGS|Disease progression|10061818|Disease progression|10061818|progressive bilateral concentric visual field constriction|C0242656|Disease Progression|duplicate underspecified| +009328|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34066-1|BOXED WARNINGS|Retinal injury|10057430|Retinal damage|10038841|damage the central retina|C0235272|Retinal damage|| +009329|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34066-1|BOXED WARNINGS|Tunnel vision|10045178|Tunnel vision|10045178|tunnel vision|C2937228|Tunnel visual field constriction|| +009330|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34066-1|BOXED WARNINGS|Visual acuity reduced|10047531|Vision decreased|10047516|worsening vision loss|C0042798|Low Vision|| +009331|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34066-1|BOXED WARNINGS|Visual acuity reduced|10047531|Visual acuity decreased|10049061|decrease visual acuity|C0234632|Reduced visual acuity|| +009332|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34066-1|BOXED WARNINGS|Visual acuity reduced|10047531|Visual acuity reduced|10047531|reduce visual acuity|C0234632|Reduced visual acuity|| +009333|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34066-1|BOXED WARNINGS|Visual field defect|10047555|Visual field constriction|10047554|permanent bilateral concentric visual field constriction|C0234630|Bilateral visual field constriction|| +009334|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Stomach discomfort|10042101|stomach discomfort|C0235309|Upset stomach|| +009335|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +009336|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +009337|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +009338|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Abnormal behaviour|10061422|Abnormal behaviour|10061422|abnormal behaviour|C0233514|Abnormal behavior|| +009339|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Abnormal behaviour|10061422|Behavior abnormal|10004203|abnormal behavior|C0233514|Abnormal behavior|| +009340|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Abnormal dreams|10000125|Abnormal dreams|10000125|abnormal dreams|C0234458|Dream disorder|| +009341|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Acne|10000496|Acne|10000496|acne|C0702166|Acne|| +009342|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Acute psychosis|10001022|Acute psychosis|10001022|acute psychosis|C0281774|Acute psychosis|| +009343|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Aggression|10001488|Aggression|10001488|aggression|C0001807|Aggressive behavior|| +009344|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Agitation neonatal|10001500|Agitation neonatal|10001500|neonatal agitation|C0235844|Neonatal agitation|| +009345|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +009346|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +009347|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Anomaly of external ear congenital|10062339|Anomaly of external ear congenital|10062339|congenital external ear anomaly|C0559902|Congenital abnormality of external ear|| +009348|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +009349|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Apathy|10002942|Apathy|10002942|apathy|C0085632|Apathy|| +009350|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +009351|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +009352|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Asthenopia|10003552|Asthenopia|10003552|asthenopia|C0004095|Asthenopia|| +009353|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +009354|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Blindness|10005169|Vision loss|10047522|vision loss|C3665386|Abnormal vision|| +009355|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +009356|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Candida infection|10074170|Candidiasis|10007152|candidiasis|C0006840|Candidiasis|| +009357|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +009358|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Cholestasis|10008635|Cholestasis|10008635|cholestasis|C0008370|Cholestasis|| +009359|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +009360|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Congenital genital malformation male|10059492|Congenital genital malformation male|10059492|congenital male genital malformation|C0266421|Congenital anomaly of male genital system|| +009361|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Congenital hydronephrosis|10050975|Congenital hydronephrosis|10050975|congenital hydronephrosis|C0266316|Congenital hydronephrosis|| +009362|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Congenital oral malformation|10061070|Congenital oral malformation|10061070|congenital oral malformation|C0026633|Mouth Abnormalities|| +009363|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Congenital vesicoureteric reflux|10010672|Congenital vesicoureteric reflux|10010672|congenital vesicoureteric reflux|C0521554|Congenital vesico-ureteric reflux|| +009364|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +009365|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +009366|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Contusion|10050584|Contusion|10050584|contusion|C0009938|Contusions|| +009367|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Coordination abnormal|10010947|Coordination abnormal|10010947|coordination abnormal|C0520966|Abnormal coordination|| +009368|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +009369|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Croup infectious|10011416|Croup infectious|10011416|croup infectious|C0853811|Croup infectious|| +009370|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Deafness|10011878|Deafness|10011878|deafness|C0011053|Deafness|| +009371|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +009372|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Delayed puberty|10012205|Delayed puberty|10012205|delayed puberty|C0034012|Delayed Puberty|| +009373|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Delirium|10012218|Delirium|10012218|delirium|C0011206|Delirium|| +009374|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Dentofacial anomaly|10012331|Dentofacial anomaly|10012331|dentofacial anomaly|C0155947|Dentofacial anomaly|| +009375|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Depressed mood|10012374|Depressed mood|10012374|depressed mood|C0344315|Depressed mood|| +009376|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +009377|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Developmental coordination disorder|10012557|Developmental coordination disorder|10012557|developmental coordination disorder|C0011757|Developmental Coordination Disorder|| +009378|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Developmental delay|10012559|Developmental delay|10012559|developmental delay|C0424605|Developmental delay (disorder)|| +009379|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Developmental hip dysplasia|10073767|Hip dysplasia|10063175|hip dysplasia|C1328407|Hip Dysplasia|| +009380|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +009381|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhoea|10012735|diarrhoea|C0011991|Diarrhea|| +009382|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +009383|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Disorientation|10013395|Disorientation|10013395|disorientation|C0233407|Disorientation|| +009384|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Disturbance in attention|10013496|Disturbance in attention|10013496|disturbance in attention|C0233414|Disturbance of attention|| +009385|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +009386|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +009387|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Dyskinesia|10013916|Dyskinesia|10013916|dyskinesia|C0013384|Dyskinetic syndrome|| +009388|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Dysmenorrhoea|10013935|Dysmenorrhea|10013934|dysmenorrhea|C0013390|Dysmenorrhea|| +009389|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Dysmenorrhoea|10013935|Dysmenorrhoea|10013935|dysmenorrhoea|C0013390|Dysmenorrhea|| +009390|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Dysmorphism|10066054|Dysmorphism|10066054|dysmorphism|C1737329|Dysmorphism|| +009391|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +009392|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Dystonia|10013983|Dystonia|10013983|dystonia|C0013421|Dystonia|| +009393|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Ear infection|10014011|Ear infection|10014011|ear infection|C0699744|Infection of ear|| +009394|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Encephalopathy|10014625|Encephalopathy|10014625|encephalopathy|C0085584|Encephalopathies|| +009395|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Erectile dysfunction|10061461|Erectile dysfunction|10061461|erectile dysfunction|C0242350|Erectile dysfunction|| +009396|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Eye pain|10015958|Eye pain|10015958|eye pain|C0151827|Eye pain|| +009397|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Face oedema|10016029|Face edema|10016025|facial edema|C0542571|Facial edema|| +009398|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +009399|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Foetal anticonvulsant syndrome|10066485|Fetal anticonvulsant syndrome|10066484|fetal anticonvulsant syndrome|C1739111|Fetus affected by placental transfer of anticonvulsant|| +009400|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Gait disturbance|10017577|gait disturbance|C0575081|Gait abnormality|| +009401|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Gastroenteritis viral|10017918|Gastroenteritis viral|10017918|gastroenteritis viral|C0152517|Enteritis due to specified virus|| +009402|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +009403|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Haemangioma congenital|10018818|Hemangioma congenital|10019391|congenital hemangioma|C0235753|Congenital hemangioma|| +009404|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Hamartoma|10061193|Hamartoma|10061193|hamartomas|C0018552|Hamartoma|| +009405|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +009406|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Heart disease congenital|10019273|Heart disease congenital|10019273|congenital cardiac defects|C0018798|Congenital Heart Defects|| +009407|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Hyperreflexia|10020745|Hyperreflexia|10020745|hyperreflexia|C0151889|Hyperreflexia|| +009408|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Hyperthermia malignant|10020844|Malignant hyperthermia|10025607|malignant hyperthermia|C0024591|Malignant hyperpyrexia due to anesthesia|| +009409|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Hypertonia|10020852|Hypertonia|10020852|hypertonia|C0026826|Muscle Hypertonia|| +009410|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoaesthesia|10020937|hypoaesthesia|C0020580|Hypesthesia|| +009411|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Hypomania|10021030|Hypomania|10021030|hypomania|C0241934|Hypomania|| +009412|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Hyporeflexia|10021089|Hyporeflexia|10021089|hyporeflexia|C0151888|Hyporeflexia|| +009413|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Hypotonia|10021118|Hypotonia|10021118|hypotonia|C0026827|Muscle hypotonia|| +009414|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Increased appetite|10021654|Increased appetite|10021654|increased appetite|C0232461|Increased appetite (finding)|| +009415|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +009416|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +009417|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +009418|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +009419|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Language disorder|10074869|Expressive language disorder|10015715|expressive language disorder|C0236826|Developmental expressive language disorder|| +009420|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Laryngeal oedema|10023845|Laryngeal edema|10023838|laryngeal edema|C0023052|Laryngeal Edema|| +009421|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Laryngeal pain|10023848|Pharyngolaryngeal pain|10034844|pharyngolaryngeal pain|C0858635|Pharyngolaryngeal pain|| +009422|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Lethargy|10024264|Lethargy|10024264|lethargy|C0023380|Lethargy|| +009423|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Ligament sprain|10024453|Joint sprain|10023229|joint sprain|C0434437|Joint sprain|| +009424|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Limb malformation|10024500|Limb malformation|10024500|limb malformation|C0206762|Limb Deformities, Congenital|| +009425|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Limb reduction defect|10024503|Limb reduction defect|10024503|limb reduction defect|C0265547|Longitudinal deficiency of limb|| +009426|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Low set ears|10024929|Low set ears|10024929|low set ears|C0239234|Low set ears|| +009427|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +009428|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Memory impairment|10027175|Memory impairment|10027175|memory impairment|C0233794|Memory impairment|| +009429|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Multi-organ failure|10028154|Multi-organ failure|10028154|multi-organ failure|C0026766|Multiple Organ Failure|| +009430|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +009431|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Muscle spasticity|10028335|Muscle spasticity|10028335|muscle spasticity|C0026838|Muscle Spasticity|| +009432|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Muscle strain|10050031|Muscle strain|10050031|muscle strain|C0080194|Muscle strain|| +009433|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Muscle twitching|10028347|Muscle twitching|10028347|muscle twitching|C0231530|Muscle twitch|| +009434|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +009435|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Myoclonus|10028622|Myoclonus|10028622|myoclonus|C0027066|Myoclonus|| +009436|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Nasal congestion|10028735|Nasal congestion|10028735|nasal congestion|C0027424|Nasal congestion (finding)|| +009437|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +009438|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +009439|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Nervousness|10029216|Nervousness|10029216|nervousness|C0027769|Nervousness|| +009440|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +009441|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Neurotoxicity|10029350|Neurotoxicity|10029350|neurotoxicity|C0235032|Neurotoxicity Syndromes|| +009442|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Nuclear magnetic resonance imaging abnormal|10029816|MRI abnormal|10028050|mri abnormalities|C0436540|Nuclear magnetic resonance abnormal|| +009443|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Nystagmus|10029864|Nystagmus|10029864|nystagmus|C0028738|Nystagmus|| +009444|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Oedema peripheral|10030124|oedema peripheral|C0085649|Peripheral edema|| +009445|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +009446|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Oesophagitis|10030216|Esophagitis|10015461|esophagitis|C0014868|Esophagitis|| +009447|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Optic neuritis|10030942|Optic neuritis|10030942|optic neuritis|C0029134|Optic Neuritis|| +009448|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Otitis media acute|10033079|Otitis media acute|10033079|otitis media acute|C0271429|Acute otitis media|| +009449|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Otitis media|10033078|Otitis media|10033078|otitis media|C0029882|Otitis Media|| +009450|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +009451|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paraesthesia|10033775|paraesthesia|C0030554|Paresthesia|| +009452|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +009453|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Postictal state|10048727|Postictal state|10048727|postictal state|C0234543|Post-ictal state|| +009454|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +009455|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Psychomotor hyperactivity|10037211|Psychomotor hyperactivity|10037211|psychomotor hyperactivity|C3887612|Psychomotor Agitation|| +009456|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Psychotic disorder|10061920|Psychotic disorder|10061920|psychotic disorder|C0033975|Psychotic Disorders|| +009457|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Pulmonary congestion|10037368|Pulmonary congestion|10037368|pulmonary congestion|C0242073|Pulmonary congestion|| +009458|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +009459|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +009460|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +009461|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Maculo-papular rash|10025423|maculo-papular rash|C0423791|Maculopapular eruption|| +009462|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +009463|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Renal aplasia|10064655|Renal aplasia|10064655|renal aplasia|C1619700|RENAL ADYSPLASIA|| +009464|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Respiratory failure|10038695|Respiratory failure|10038695|respiratory failure|C1145670|Respiratory Failure|| +009465|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Retinitis pigmentosa|10038914|Retinitis pigmentosa|10038914|retinitis pigmentosa|C0035334|Retinitis Pigmentosa|| +009466|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +009467|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsion|10010904|convulsion|C0036572|Seizures|| +009468|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Sensory disturbance|10040026|Sensory disturbance|10040026|sensory disturbance|C0152027|Sensory Disorders|| +009469|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Sensory loss|10040030|Sensory loss|10040030|sensory loss|C0278134|Absence of sensation|| +009470|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Sinus headache|10040744|Sinus headache|10040744|sinus headache|C0037195|Sinus headache|| +009471|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +009472|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +009473|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Status epilepticus|10041962|Status epilepticus|10041962|status epilepticus|C0038220|Status Epilepticus|| +009474|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +009475|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Strabismus|10042159|Strabismus|10042159|strabismus|C0038379|Strabismus|| +009476|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Stridor|10042241|Stridor|10042241|stridor|C0038450|Stridor|| +009477|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +009478|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +009479|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Supernumerary nipple|10042571|Supernumerary nipple|10042571|supernumerary nipple|C0266011|Accessory nipple|| +009480|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Talipes|10043101|Talipes|10043101|talipes|C1301937|Talipes|| +009481|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Thinking abnormal|10043431|Thinking abnormal|10043431|thinking abnormal|C0233632|Disturbance in thinking|| +009482|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Thirst|10043458|Thirst|10043458|thirst|C0039971|Thirst|| +009483|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Tinnitus|10043882|Tinnitus|10043882|tinnitus|C0040264|Tinnitus|| +009484|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Toothache|10044055|Toothache|10044055|toothache|C0040460|Toothache|| +009485|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Toxic epidermal necrolysis|10044223|TEN|10043221|ten|C0014518|Toxic Epidermal Necrolysis|| +009486|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +009487|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +009488|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +009489|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +009490|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +009491|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Viral infection|10047461|Viral infection|10047461|viral infection|C0042769|Virus Diseases|| +009492|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +009493|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Visual field defect|10047555|Visual field defect|10047555|visual field defect|C3887875|Visual field defects|| +009494|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +009495|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight gain|10047896|weight gain|C0043094|Weight Gain|| +009496|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +009497|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|34084-4|ADVERSE REACTIONS|Wound secretion|10048629|Wound secretion|10048629|wound secretion|C0406834|Wound discharge finding|| +009498|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +009499|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Apoptosis|10059512|Apoptosis|10059512|apoptotic neurodegeneration|C0162638|Apoptosis|duplicate|Animal +009500|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Areflexia|10003084|Reflex loss|10038241|progressive loss of reflexes|C0234146|Absent reflex|| +009501|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Biopsy brain abnormal|10004742|Biopsy brain abnormal|10004742|brain histopathology|C0853418|Biopsy brain abnormal||Animal +009502|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Blindness|10005169|Vision loss|10047522|permanent vision loss|C4012505|Permanent loss of sight|| +009503|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Brain oedema|10048962|Brain edema|10006121|ime|C1527311|Brain Edema|underspecified|Animal +009504|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Calcinosis|10006938|Tissue calcification NOS|10051103|pathologic mineralization|C1265877|Pathologic mineralization||Animal +009505|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Central nervous system lesion|10051290|Brain lesion|10067294|in brain vacuolation|C0221505|Lesion of brain||Animal +009506|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Cognitive disorder|10057668|Cognitive function abnormal|10048599|neurobehavioral abnormalities|C0525041|Neurobehavioral Manifestations||Animal +009507|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicides|C0038661|Suicide|| +009508|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Demyelination|10012305|Demyelination|10012305|decreased myelination|C0011304|Demyelination||Animal +009509|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Dysmyelination|10067601|Dysmyelination|10067601|separation of the outer layers of myelin|C1857639|Dysmyelination||Animal +009510|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +009511|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Fluid retention|10016807|Fluid retention|10016807|fluid accumulation in brain white matter tracts|C0268000|Body fluid retention||Animal +009512|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Gliosis|10018341|Gliosis|10018341|gliosis|C0017639|Gliosis||Animal +009513|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Haematocrit abnormal|10049221|Hematocrit abnormal|10057763|changes hematocrit|C0877168|Haematocrit abnormal|| +009514|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Haematocrit decreased|10018838|Hematocrit decreased|10019423|declines in hematocrit|C0744727|Hematocrit decreased|| +009515|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Haematology test abnormal|10057755|Hematology test abnormal|10057760|hematology changes|C1112712|Haematology test abnormal|| +009516|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Haemoglobin abnormal|10018879|Hemoglobin abnormal|10019482|changes hemoglobin|C0349705|Abnormal hemoglobin finding|| +009517|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|declines in hemoglobin|C0162119|Hemoglobin low|| +009518|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Hypoaesthesia|10020937|Numbness in feet|10049800|numbness in the toes or feet|C0239649|Numbness of foot|duplicate| +009519|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Hypoaesthesia|10020937|Numbness in toes|10049799|numbness in the toes or feet|C0587056|Numbness of toe|duplicate| +009520|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Learning disorder|10061265|Learning disorder|10061265|learning deficits|C0023186|Learning Disorders||Animal +009521|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Loss of proprioception|10057332|Loss of proprioception|10057332|reduced distal lower limb vibration or position sensation|C3277002|Decreased vibratory and positional sense (some patients)|underspecified| +009522|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Motor dysfunction|10061296|Motor dysfunction|10061296|neuromotor impairment|C0752252|Neuromuscular Manifestations|duplicate|Animal +009523|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Nerve degeneration|10056677|Nerve degeneration|10056677|apoptotic neurodegeneration|C0027746|Nerve Degeneration|duplicate|Animal +009524|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Nerve injury|10052897|Axonotmesis|10058658|degenerating axons|C1837496|Axonal degeneration||Animal +009525|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Nerve injury|10052897|Nerve damage|10029177|lesion intramyelinic|C0847483|nerve lesion||Animal +009526|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Nervous system disorder|10029202|Neurological impairment|10074237|neuromotor impairment|C0752252|Neuromuscular Manifestations|duplicate|Animal +009527|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +009528|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Neurotoxicity|10029350|Neurotoxicity|10029350|neurotoxicity|C0235032|Neurotoxicity Syndromes||Animal +009529|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Nuclear magnetic resonance imaging abnormal|10029816|MRI abnormal|10028050|abnormal mri signal changes|C0436540|Nuclear magnetic resonance abnormal|| +009530|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Nuclear magnetic resonance imaging brain abnormal|10029818|MRI brain abnormal|10056922|abnormal mri signal changes cerebellum|C1319851|Magnetic resonance imaging of brain abnormal (finding)|underspecified| +009531|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +009532|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +009533|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Paraesthesia|10033775|Tingling feet/hands|10043877|tingling in the toes or feet|C0850631|tingling feet/toes|| +009534|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Red blood cell analysis abnormal|10072410|Red blood cell analysis abnormal|10072410|changes rbc indices|C0149611|ABNORMAL RBC INDICES|| +009535|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Convulsions|10010914|convulsions|C0036572|Seizures||Animal +009536|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Somatosensory evoked potentials abnormal|10049464|Somatosensory evoked potentials abnormal|10049464|changes in somatosensory evoked potentials|C0877220|Somatosensory evoked potentials abnormal||Animal +009537|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +009538|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +009539|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thinking|C0424000|Feeling suicidal (finding)|| +009540|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Visual evoked potentials abnormal|10047549|Visual evoked potentials abnormal|10047549|changes in visual ep|C0522214|Abnormal visual evoked potential||Animal +009541|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Weight fluctuation|10049040|Weight fluctuation|10049040|weight change|C0005911|Body Weight Changes|| +009542|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|Weight increased|10047899|Weight gain|10047896|weight gain|C0043094|Weight Gain|| +009543|a5d389d2-d0e1-4395-a2a2-b552808e7f98|SABRIL|43685-7|WARNINGS AND PRECAUTIONS|||||oligodendrocyte injury|C0599732|cell injury|unmapped|Animal +009544|a7016010-ce43-4c09-8d21-aeb697ffed31|Luzu|34084-4|ADVERSE REACTIONS|Application site reaction|10003055|Application site reaction|10003055|application site reactions|C0151505|Application site reaction|| +009545|a7016010-ce43-4c09-8d21-aeb697ffed31|Luzu|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +009546|a7016010-ce43-4c09-8d21-aeb697ffed31|Luzu|34084-4|ADVERSE REACTIONS|Dermatitis contact|10012442|Contact dermatitis|10010790|contact dermatitis|C0011616|Contact Dermatitis|| +009547|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Amylase increased|10002016|Blood amylase increased|10005328|blood amylase increased|C0852913|Blood amylase increased|| +009548|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +009549|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +009550|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|Blood creatine phosphokinase increased|10005470|blood creatine phosphokinase increased|C0853034|Blood creatine phosphokinase increased|| +009551|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Clonus|10009346|Clonus|10009346|clonus|C0009024|Clonus|| +009552|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +009553|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +009554|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +009555|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +009556|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Infusion site pain|10053483|Infusion site pain|10053483|infusion site pain|C1096035|Infusion site pain|| +009557|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Infusion site rash|10059830|Infusion site rash|10059830|infusion-related rashes|C1167945|Infusion site rash|| +009558|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +009559|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +009560|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Lymphadenopathy|10025197|Lymphadenopathy|10025197|lymphadenopathy|C0497156|Lymphadenopathy|| +009561|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +009562|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +009563|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +009564|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +009565|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Prothrombin time prolonged|10037063|Prothrombin time prolonged|10037063|prothrombin time prolonged|C0151872|Prothrombin time increased|| +009566|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +009567|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Rash erythematous|10037855|Rash erythematous|10037855|rash erythematous|C0234913|Rash erythematous|| +009568|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Rash papular|10037876|Rash papular|10037876|rash papular|C1519353|Skin Papule|| +009569|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rashes|C0015230|Exanthema|| +009570|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +009571|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope vasovagal|10042777|syncope vasovagal|C0042420|Vasovagal syncope|| +009572|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +009573|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +009574|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +009575|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +009576|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +009577|a79c6f44-e978-44c3-b843-69793b03e830|Raxibacumab|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +009578|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34066-1|BOXED WARNINGS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behaviors|C1760428|Suicidal behavior|| +009579|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34066-1|BOXED WARNINGS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thoughts|C0424000|Feeling suicidal (finding)||DrugClass +009580|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Abnormal dreams|10000125|Abnormal dreams|10000125|abnormal dreams|C0234458|Dream disorder|| +009581|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +009582|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +009583|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Angle closure glaucoma|10002500|Angle closure glaucoma|10002500|angle closure glaucoma|C0017605|Angle Closure Glaucoma|| +009584|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Anorgasmia|10002652|Anorgasmia|10002652|anorgasmia|C0234022|Orgasm incapacity|| +009585|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +009586|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +009587|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Blood cholesterol increased|10005425|Cholesterol serum increased|10008667|elevations in fasting serum total cholesterol|C0595929|Serum cholesterol raised|| +009588|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Blood cholesterol increased|10005425|Cholesterol total increased|10008671|total cholesterol >= 261 mg/dl|C1522133|Hypercholesterolemia result|| +009589|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Blood cholesterol increased|10005425|Serum cholesterol increased|10040190|elevations in fasting serum cholesterol|C0595929|Serum cholesterol raised|| +009590|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Blood pressure diastolic increased|10005739|Blood pressure diastolic increased|10005739|elevation of supine diastolic blood pressure|C0277889|Increased diastolic arterial pressure|| +009591|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|blood pressure increased|C0497247|Increase in blood pressure|| +009592|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Blood prolactin increased|10005780|Blood prolactin increased|10005780|blood prolactin increased|C0854082|Blood prolactin increased|| +009593|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Blood triglycerides increased|10005839|Triglycerides elevated serum|10044664|elevations in fasting serum triglycerides|C2874288|Elevated fasting triglycerides|| +009594|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|triglycerides, fasting >= 327 mg/dl|C1522137|Hypertriglyceridemia result|| +009595|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Bruxism|10006514|Bruxism|10006514|bruxism|C0006325|Bruxism|| +009596|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +009597|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +009598|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Coronary artery occlusion|10011086|Coronary occlusion|10011103|coronary occlusion|C0151814|Coronary Occlusion|| +009599|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +009600|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Depersonalisation|10012357|Depersonalization|10012359|depersonalization|C0011551|Depersonalization|| +009601|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Disturbance in attention|10013496|Disturbance in attention|10013496|disturbance in attention|C0233414|Disturbance of attention|| +009602|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +009603|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Drug withdrawal syndrome|10013754|Drug withdrawal syndrome|10013754|discontinuation syndrome|C0152128|Drug withdrawal syndrome|| +009604|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +009605|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +009606|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Dystonia|10013983|Dystonia|10013983|dystonia|C0013421|Dystonia|| +009607|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Ejaculation delayed|10014325|Ejaculation delayed|10014325|ejaculation delayed|C0234047|Late ejaculation|| +009608|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Ejaculation disorder|10014326|Ejaculation disorder|10014326|ejaculation disorder|C0235969|Disorder of ejaculation|| +009609|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Ejaculation failure|10014328|Ejaculation failure|10014328|ejaculation failure|C0278106|Anejaculation|| +009610|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Eosinophilic pneumonia|10014962|Eosinophilic pneumonia|10014962|eosinophilic pneumonia|C1527407|Eosinophilic Pneumonia|| +009611|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Erectile dysfunction|10061461|Erectile dysfunction|10061461|erectile dysfunction|C0242350|Erectile dysfunction|| +009612|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +009613|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Feeling jittery|10016338|Feeling jittery|10016338|feeling jittery|C0549209|Feeling jittery|| +009614|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Haemorrhagic disorder|10019009|Hemorrhage abnormal|10055261|abnormal bleeding|C1458140|Bleeding tendency|| +009615|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +009616|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +009617|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +009618|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +009619|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +009620|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Hypomania|10021030|Hypomania|10021030|hypomania|C0241934|Hypomania|| +009621|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +009622|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +009623|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +009624|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Libido decreased|10024419|Libido decreased|10024419|libido decrease|C0011124|Decreased Libido|| +009625|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Lipids abnormal|10024588|Lipids abnormal|10024588|lipid abnormalities|C0549634|Lipids abnormal|| +009626|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Liver function test abnormal|10024690|Liver function test abnormal|10024690|liver function test abnormal|C0151766|Liver function tests abnormal finding|| +009627|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Low density lipoprotein increased|10024910|LDL cholesterol increased|10024055|ldl cholesterol >= 190 mg/dl|C0549399|Low density lipoprotein increased|| +009628|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Low density lipoprotein increased|10024910|Low density lipoprotein increased|10024910|elevations in fasting serum low density lipoproteins|C0549399|Low density lipoprotein increased|| +009629|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Male sexual dysfunction|10057672|Male sexual dysfunction|10057672|male sexual function disorders|C1112443|Male sexual dysfunction|| +009630|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Mania|10026749|Mania|10026749|mania|C0338831|Manic|| +009631|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Musculoskeletal stiffness|10052904|Musculoskeletal stiffness|10052904|musculoskeletal stiffness|C0948525|Musculoskeletal stiffness|| +009632|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Mydriasis|10028521|Mydriasis|10028521|mydriasis|C0026961|Mydriasis|| +009633|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +009634|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Myocardial ischaemia|10028600|Ischemic heart disease|10055218|ischemic cardiac adverse reactions|C0151744|Myocardial Ischemia|| +009635|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Myocardial ischaemia|10028600|Myocardial ischemia|10028601|myocardial ischemia|C0151744|Myocardial Ischemia|| +009636|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +009637|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Nervousness|10029216|Nervousness|10029216|nervousness|C0027769|Nervousness|| +009638|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Orgasm abnormal|10031085|Orgasm abnormal|10031085|orgasm abnormal|C0029261|Orgasmic Disorder|| +009639|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Orthostatic hypotension|10031127|Hypotension orthostatic|10021100|systolic orthostatic hypotension|C0020651|Hypotension, Orthostatic|| +009640|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Photosensitivity reaction|10034972|Photosensitivity|10034966|photosensitivity|C0349506|Photosensitivity of skin|| +009641|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +009642|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +009643|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsion|10010904|convulsion|C0036572|Seizures|| +009644|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Seizure|10039906|Seizure|10039906|seizure|C0036572|Seizures|| +009645|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Serotonin syndrome|10040108|Serotonin syndrome|10040108|serotonin syndrome|C0699828|Serotonin Syndrome|| +009646|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Sexual dysfunction|10040477|Sexual dysfunction|10040477|sexual dysfunction|C0549622|Sexual Dysfunction|| +009647|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +009648|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +009649|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behaviors|C1760428|Suicidal behavior|| +009650|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thoughts|C0424000|Feeling suicidal (finding)|| +009651|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +009652|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +009653|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Tinnitus|10043882|Tinnitus|10043882|tinnitus|C0040264|Tinnitus|| +009654|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +009655|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Urinary hesitation|10046542|Urinary hesitation|10046542|urinary hesitation|C0152032|Urinary hesitation|| +009656|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Urinary retention|10046555|Urinary retention|10046555|urinary retention|C0080274|Urinary Retention|| +009657|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +009658|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +009659|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +009660|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +009661|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|34084-4|ADVERSE REACTIONS|Yawning|10048232|Yawning|10048232|yawning|C0043387|Yawning|| +009662|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Abnormal dreams|10000125|Abnormal dreams|10000125|abnormal dreams|C0234458|Dream disorder|| +009663|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Aggression|10001488|Aggressiveness|10001494|aggressiveness|C0001807|Aggressive behavior||DrugClass +009664|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +009665|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Akathisia|10001540|Akathisia|10001540|akathisia|C0392156|Akathisia||DrugClass +009666|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Angle closure glaucoma|10002500|Acute angle closure glaucoma|10000673|angle closure attack|C0154946|Acute angle-closure glaucoma|| +009667|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Angle closure glaucoma|10002500|Angle closure glaucoma|10002500|angle closure glaucoma|C0017605|Angle Closure Glaucoma||DrugClass +009668|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety||DrugClass +009669|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Asthenia|10003549|Weakness|10047862|weakness|C3714552|Weakness|| +009670|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Autonomic nervous system imbalance|10003840|Autonomic instability|10049218|autonomic instability|C0262385|Autonomic nervous system imbalance|| +009671|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Balance disorder|10049848|Unsteadiness|10046260|unsteadiness|C0427108|General unsteadiness|| +009672|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Bipolar I disorder|10004939|Mixed manic depressive episode|10065032|precipitation of a mixed episode|C1608433|Mixed manic depressive episode||DrugClass +009673|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|increases in blood pressure|C0497247|Increase in blood pressure|| +009674|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Blood sodium decreased|10005802|Serum sodium decreased|10054863|serum sodium lower than 110 mmol/l|C3888023|Blood sodium decreased|| +009675|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Coma|10010071|Coma|10010071|coma|C0009421|Comatose|| +009676|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicides|C0038661|Suicide|| +009677|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Condition aggravated|10010264|Condition aggravated|10010264|clinical worsening|C0235874|Disease Exacerbation|| +009678|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Confusional state|10010305|Confusion|10010300|confusion|C0009676|Confusion|| +009679|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Coordination abnormal|10010947|Incoordination|10021649|incoordination|C0520966|Abnormal coordination|| +009680|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +009681|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Delirium|10012218|Delirium|10012218|delirium|C0011206|Delirium|| +009682|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Depression|10012378|Depression worsened|10012398|worsening of depression|C0541869|Depression worsened||DrugClass +009683|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +009684|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Disturbance in attention|10013496|Attention concentration difficulty|10003729|difficulty concentrating|C0858899|Attention concentration difficulty|| +009685|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +009686|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Drug withdrawal syndrome|10013754|Drug withdrawal syndrome|10013754|discontinuation syndrome|C0152128|Drug withdrawal syndrome|| +009687|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Ecchymosis|10014080|Ecchymosis|10014080|ecchymosis|C0013491|Ecchymosis||DrugClass +009688|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Eosinophilic pneumonia|10014962|Eosinophilic pneumonia|10014962|eosinophilic pneumonia|C1527407|Eosinophilic Pneumonia||DrugClass +009689|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis||DrugClass +009690|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Fall|10016173|Fall|10016173|falls|C0085639|Falls|| +009691|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +009692|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +009693|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal symptoms|C0426576|Gastrointestinal symptom|| +009694|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal bleeding|10017936|gastrointestinal bleeding|C0017181|Gastrointestinal Hemorrhage||DrugClass +009695|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Haematoma|10018852|Hematoma|10019428|hematoma|C0018944|Hematoma||DrugClass +009696|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +009697|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhages|C0019080|Hemorrhage||DrugClass +009698|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhagic disorder|10019009|Hemorrhage abnormal|10055261|abnormal bleeding|C1458140|Bleeding tendency|| +009699|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Hallucination|10019063|Hallucinations|10019077|hallucinations|C0018524|Hallucinations|| +009700|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Hallucination|10019063|Hallucination|10019063|hallucination|C0018524|Hallucinations|| +009701|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +009702|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Hostility|10020400|Hostility|10020400|hostility|C0020039|Hostility||DrugClass +009703|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Hyperhidrosis|10020642|Diaphoresis|10012703|diaphoresis|C0700590|Increased sweating|| +009704|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +009705|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Hyperreflexia|10020745|Hyperreflexia|10020745|hyperreflexia|C0151889|Hyperreflexia|| +009706|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Hyperthermia|10020843|Hyperthermia|10020843|hyperthermia|C0015967|Fever|| +009707|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Hypomania|10021030|Hypomania|10021030|activation of hypomania|C0241934|Hypomania||DrugClass +009708|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +009709|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Impulsive behaviour|10021567|Impulsive behavior|10060909|impulsivity|C0021125|Impulsive Behavior||DrugClass +009710|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Inappropriate antidiuretic hormone secretion|10053198|Inappropriate antidiuretic hormone secretion|10053198|syndrome of inappropriate antidiuretic hormone secretion|C0021141|Inappropriate ADH Syndrome|| +009711|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Inappropriate antidiuretic hormone secretion|10053198|SIADH|10040626|siadh|C0021141|Inappropriate ADH Syndrome|| +009712|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness||DrugClass +009713|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial||DrugClass +009714|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood||DrugClass +009715|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Labile blood pressure|10023533|Labile blood pressure|10023533|labile blood pressure|C0428895|Labile blood pressure|| +009716|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Mania|10026749|Mania|10026749|mania|C0338831|Manic||DrugClass +009717|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Mania|10026749|Manic episode|10026778|precipitation of a manic episode|C0349208|Manic episode||DrugClass +009718|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Memory impairment|10027175|Memory impairment|10027175|memory impairment|C0233794|Memory impairment|| +009719|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Mental status changes|10048294|Mental status changes|10048294|mental status changes|C0856054|Mental status changes|| +009720|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Muscle rigidity|10028330|Rigidity|10039168|rigidity|C0026837|Muscle Rigidity|| +009721|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Myoclonus|10028622|Myoclonus|10028622|myoclonus|C0027066|Myoclonus|| +009722|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +009723|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Neuromyopathy|10029323|Neuromuscular disorder NOS|10029316|neuromuscular symptoms|C0752252|Neuromuscular Manifestations|| +009724|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Panic attack|10033664|Panic attacks|10033665|panic attacks|C0086769|Panic Attacks||DrugClass +009725|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Petechiae|10034754|Petechiae|10034754|petechiae|C0031256|Petechiae||DrugClass +009726|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Respiratory arrest|10038669|Respiratory arrest|10038669|respiratory arrest|C0162297|Respiratory arrest|| +009727|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Restlessness|10038743|Psychomotor restlessness|10037212|psychomotor restlessness|C3887612|Psychomotor Agitation||DrugClass +009728|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +009729|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizure|10039906|seizure|C0036572|Seizures|| +009730|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Serotonin syndrome|10040108|Serotonin syndrome|10040108|serotonin syndrome|C0699828|Serotonin Syndrome|| +009731|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidality|C3166387|Suicidality|| +009732|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thinking|C0424000|Feeling suicidal (finding)||DrugClass +009733|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal tendency|10042461|suicide risk|C0563664|At risk for suicide|| +009734|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +009735|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +009736|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +009737|a9ff32c4-3bcf-4e51-ae8c-81ff0191ec35|Pristiq|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +009738|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site anaesthesia|10003033|Application site anesthesia|10003034|application site anesthesia|C0234943|Application site anesthesia|| +009739|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site bruise|10050114|Application site bruising|10048939|application site bruising|C0877095|Application site haematoma|| +009740|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site dermatitis|10003036|Application site dermatitis|10003036|application site dermatitis|C0521495|Application site rash|| +009741|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site dryness|10048943|Application site dryness|10048943|application site dryness|C0877098|Application site dryness|| +009742|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site erosion|10065577|Application site excoriation|10059006|application site excoriation|C1142498|Application site excoriation|| +009743|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site erythema|10003041|Application site erythema|10003041|application site erythema|C0853700|Application site erythema|| +009744|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site exfoliation|10064578|Application site exfoliation|10064578|application site exfoliation|C1610049|Application site exfoliation|| +009745|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site hyperaesthesia|10050100|Application site hyperesthesia|10054328|application site hyperesthesia|C0919600|Application site hyperaesthesia|| +009746|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site inflammation|10049042|Application site inflammation|10049042|application site inflammation|C0877126|Application site inflammation|| +009747|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site oedema|10003050|Application site edema|10003040|application site edema|C0234936|Application site edema|| +009748|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site pain|10003051|Application site pain|10003051|application site pain|C0521491|Application site pain|| +009749|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site pain|10003051|Pain after application|10033375|application-associated pain|C0521491|Application site pain|| +009750|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site papules|10049043|Application site papules|10049043|application site papules|C0877127|Application site papules|| +009751|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site paraesthesia|10050103|Application site paresthesia|10048940|application site paresthesia|C0877096|Application site paraesthesia|| +009752|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site pruritus|10003053|Application site pruritus|10003053|application site pruritus|C0853714|Application site pruritus|| +009753|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site reaction|10003055|Application site reaction|10003055|application site reactions|C0151505|Application site reaction|| +009754|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site swelling|10053424|Application site swelling|10053424|application site swelling|C1096001|Application site swelling|| +009755|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site urticaria|10050104|Application site urticaria|10050104|application site urticaria|C0919603|Application site urticaria|| +009756|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Application site warmth|10003060|Application site warmth|10003060|application site warmth|C0858794|Application site warmth|| +009757|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|increase in blood pressure|C0497247|Increase in blood pressure|| +009758|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +009759|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Burning sensation|10006784|Burning sensation|10006784|burning sensation|C0085624|Burning sensation|| +009760|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +009761|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +009762|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +009763|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +009764|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Hyperaesthesia|10020568|Hyperesthesia|10020622|hyperesthesia|C0020453|Hyperesthesia|| +009765|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +009766|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +009767|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +009768|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +009769|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +009770|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Pain|10033371|Exacerbation of pain|10015579|increases in pain|C0853946|Pain worsened|| +009771|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain worsened|10033499|pain increases|C0853946|Pain worsened|| +009772|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Peripheral sensory neuropathy|10034620|Peripheral sensory neuropathy|10034620|peripheral sensory neuropathy|C0151313|Sensory neuropathy|| +009773|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +009774|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +009775|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Skin odour abnormal|10040904|Skin odor abnormal|10040903|abnormal skin odor|C0234930|Skin odour abnormal|| +009776|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Throat irritation|10043521|Throat irritation|10043521|throat irritation|C0700184|Throat irritation|| +009777|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +009778|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|increases in blood pressure|C0497247|Increase in blood pressure|| +009779|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|adverse cardiovascular effects|C0476270|Cardiovascular symptoms|| +009780|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|43685-7|WARNINGS AND PRECAUTIONS|Cough|10011224|Coughing|10011232|coughing|C0010200|Coughing|| +009781|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|43685-7|WARNINGS AND PRECAUTIONS|Pain|10033371|Exacerbation of pain|10015579|increases in pain|C0853946|Pain worsened|| +009782|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|43685-7|WARNINGS AND PRECAUTIONS|Procedural pain|10064882|Procedural pain|10064882|procedural pain|C1619712|Procedural pain|| +009783|ab5a8fa3-2eb2-44fd-bf9b-a1ac114e0c9b|Qutenza|43685-7|WARNINGS AND PRECAUTIONS|Sneezing|10041232|Sneezing|10041232|sneezing|C0037383|Sneezing|| +009784|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt elevations|C0151905|Alanine aminotransferase increased|| +009785|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +009786|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +009787|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +009788|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevations in bilirubin|C0311468|Increased bilirubin level (finding)|| +009789|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|bilirubin increases|C0311468|Increased bilirubin level (finding)|| +009790|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|elevations in total bilirubin|C0741494|Elevated total bilirubin|| +009791|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|CD4 lymphocytes decreased|10007839|CD4 lymphocytes decreased|10007839|declines in cd4+ t-cell counts|C1839304|Decreased number of CD4+ T cells|| +009792|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +009793|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Dermatitis allergic|10012434|Dermatitis allergic|10012434|dermatitis allergic|C0011615|Dermatitis, Atopic|| +009794|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Dermatitis contact|10012442|Dermatitis contact|10012442|dermatitis contact|C0011616|Contact Dermatitis|| +009795|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +009796|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +009797|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Drug-induced liver injury|10072268|Drug-induced liver injury|10072268|drug-related liver injury|C0860207|Drug-Induced Liver Injury|| +009798|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +009799|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Eczema|10014184|Eczema|10014184|eczema|C0013595|Eczema|| +009800|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +009801|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Exfoliative rash|10064579|Exfoliative rash|10064579|exfoliative rash|C1608945|Exfoliative rash|| +009802|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +009803|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Haemoglobin abnormal|10018879|Hemoglobin abnormal|10019482|change in hemoglobin levels|C0349705|Abnormal hemoglobin finding|| +009804|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decrease in hemoglobin|C0162119|Hemoglobin low|| +009805|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hemoglobin levels decrease|C0162119|Hemoglobin low|| +009806|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin low|10055600|hemoglobin values low|C0162119|Hemoglobin low|| +009807|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +009808|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Hyperbilirubinaemia|10020578|Hyperbilirubinemia|10020582|hyperbilirubinemia|C0020433|Hyperbilirubinemia|| +009809|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +009810|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +009811|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +009812|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Jaundice|10023126|Jaundice|10023126|jaundice|C0022346|Icterus|| +009813|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +009814|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +009815|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Ocular icterus|10058117|Ocular icterus|10058117|ocular icterus|C1141938|Ocular icterus|| +009816|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Photosensitivity reaction|10034972|Photosensitivity reaction|10034972|photosensitivity reaction|C0162830|Dermatitis, Phototoxic|| +009817|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Pruritus generalised|10052576|Pruritus generalized|10037092|pruritus generalized|C0475858|Generalized pruritus|| +009818|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +009819|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Psoriasis|10037153|Psoriasis|10037153|psoriasis|C0033860|Psoriasis|| +009820|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Rash erythematous|10037855|Rash erythematous|10037855|rash erythematous|C0234913|Rash erythematous|| +009821|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|rash generalized|C0497365|Rash generalised|| +009822|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Rash macular|10037867|Rash macular|10037867|rash macular|C0221201|Macular rash|| +009823|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Rash maculo-papular|10037868|rash maculo-papular|C0423791|Maculopapular eruption|| +009824|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Rash papular|10037876|Rash papular|10037876|rash papular|C1519353|Skin Papule|| +009825|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Rash pruritic|10037884|Rash pruritic|10037884|rash pruritic|C0033771|Prurigo|| +009826|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +009827|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Skin exfoliation|10040844|Skin exfoliation|10040844|skin exfoliation|C0237849|Peeling of skin|| +009828|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +009829|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Ulcer|10045285|Ulcer|10045285|ulcer|C0041582|Ulcer|| +009830|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +009831|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt elevations|C0151905|Alanine aminotransferase increased|| +009832|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|43685-7|WARNINGS AND PRECAUTIONS|Drug effect decreased|10013678|Drug effect decreased|10013678|loss of therapeutic effect|C0521845|Drug action decreased|| +009833|ab74e474-9fd6-902c-9bd9-16dc9541edd0|Viekira|43685-7|WARNINGS AND PRECAUTIONS|Drug resistance|10059866|Drug resistance|10059866|development of resistance|C0013203|Drug resistance|| +009834|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34066-1|BOXED WARNINGS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +009835|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34066-1|BOXED WARNINGS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidality|C3166387|Suicidality|| +009836|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34066-1|BOXED WARNINGS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thoughts|C0424000|Feeling suicidal (finding)|| +009837|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Aggression|10001488|Aggression aggravated|10001489|worsening aggression|C1457883|Aggressive reaction|| +009838|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +009839|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Akathisia|10001540|Akathisia|10001540|akathisia|C0392156|Akathisia|| +009840|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety aggravated|10048339|anxiety aggravated|C0549259|Anxiety aggravated|| +009841|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +009842|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Balance disorder|10049848|Balance difficulty|10004070|balance difficulty|C1744587|Difficulty balancing|| +009843|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Bradykinesia|10006100|Bradykinesia|10006100|bradykinesia|C0233565|Bradykinesia|| +009844|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +009845|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusion|10010300|confusion|C0009676|Confusion|| +009846|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +009847|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +009848|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +009849|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +009850|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +009851|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +009852|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Shortness of breath|10040604|shortness of breath|C0013404|Dyspnea|| +009853|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Dysuria|10013990|Dysuria|10013990|dysuria|C0013428|Dysuria|| +009854|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Ecchymosis|10014080|Ecchymosis|10014080|ecchymosis|C0013491|Ecchymosis|| +009855|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Extrapyramidal disorder|10015832|Extrapyramidal disorder|10015832|extrapyramidal disorder|C0015371|Extrapyramidal Disorders|| +009856|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Extrapyramidal disorder|10015832|Extrapyramidal symptoms|10015835|extrapyramidal event|C0234133|Extrapyramidal sign|| +009857|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Fall|10016173|Fall|10016173|fall|C0085639|Falls|| +009858|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +009859|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Unsteady gait|10046261|unsteady gait|C0231686|Gait, Unsteady|| +009860|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +009861|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +009862|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Hyperkinesia|10020651|Hyperkinesia|10020651|hyperkinesia|C3887506|Hyperkinesia|| +009863|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Hypertonia|10020852|Hypertonia|10020852|hypertonia|C0026826|Muscle Hypertonia|| +009864|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +009865|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +009866|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Laceration|10023572|Laceration of head|10023587|laceration head|C0856548|Laceration of head|| +009867|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +009868|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Obsessive-compulsive disorder|10029898|Obsessive reaction|10029896|obsessive reaction|C0302832|Obsessional neurosis|| +009869|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Parkinsonism|10034010|Parkinsonism|10034010|parkinsonism|C0242422|Parkinsonian Disorders|| +009870|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +009871|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Rash|10037844|Skin rash|10040913|skin rash|C0015230|Exanthema|| +009872|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Restlessness|10038743|Restlessness|10038743|restlessness|C3887611|Restlessness|| +009873|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +009874|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +009875|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidality|C3166387|Suicidality|| +009876|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +009877|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +009878|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +009879|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +009880|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +009881|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Akathisia|10001540|Akathisia|10001540|akathisia|C0392156|Akathisia|| +009882|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Arrhythmia|10003119|Cardiac dysrhythmias|10007545|cardiac dysrhythmia|C0003811|Cardiac Arrhythmia|| +009883|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Autonomic nervous system imbalance|10003840|Autonomic instability|10049218|autonomic instability|C0262385|Autonomic nervous system imbalance|| +009884|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Blood creatine phosphokinase increased|10005470|Creatine phosphokinase increased|10011349|elevated creatinine phosphokinase|C0151576|Elevated creatine kinase|| +009885|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure fluctuation|10005746|Blood pressure fluctuation|10005746|irregular blood pressure|C0549405|Blood pressure fluctuation|| +009886|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Blood prolactin increased|10005780|Plasma prolactin increased|10035415|plasma prolactin levels increased|C0857716|Plasma prolactin increased|| +009887|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Blood prolactin increased|10005780|Serum prolactin increased|10040384|elevates serum prolactin concentrations|C0857980|Serum prolactin increased|| +009888|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Bradykinesia|10006100|Bradykinesia|10006100|bradykinesia|C0233565|Bradykinesia|| +009889|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Cognitive disorder|10057668|Cognitive deterioration|10009843|worsening in cognition|C0854193|Cognitive deterioration|| +009890|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicide|C0038661|Suicide|| +009891|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +009892|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Depression|10012378|Depression worsened|10012398|worsening depression|C0541869|Depression worsened|| +009893|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +009894|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Dizziness postural|10013578|Dizziness postural|10013578|postural dizziness|C0234987|Postural dizziness|| +009895|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +009896|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Dyskinesia|10013916|Dyskinesia|10013916|dyskinetic movements|C2678069|Dyskinetic movements|| +009897|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Dyskinesia|10013916|Movements involuntary|10028041|involuntary movements|C0427086|Involuntary Movements|| +009898|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders||DrugClass +009899|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QT corrected interval prolonged|10014383|increase in the corrected qt interval|C0855333|Electrocardiogram QT corrected interval prolonged|| +009900|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|increase in qtc interval|C0855333|Electrocardiogram QT corrected interval prolonged|| +009901|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Extrapyramidal disorder|10015832|Extrapyramidal disorder aggravated|10058837|exaggerates extrapyramidal disorders|C0856074|Extrapyramidal disorder aggravated|| +009902|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Extrapyramidal disorder|10015832|Extrapyramidal symptoms|10015835|extrapyramidal symptoms|C0234133|Extrapyramidal sign|| +009903|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Eye injury|10061128|Eye injury|10061128|ophthalmologic injury|C0015408|Eye Injuries|| +009904|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Heart rate irregular|10019304|Irregular pulse|10022994|irregular pulse|C0392684|Pulse irregular|| +009905|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Hyperhidrosis|10020642|Diaphoresis|10012703|diaphoresis|C0700590|Increased sweating|| +009906|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Hyperpyrexia|10020741|Hyperpyrexia|10020741|hyperpyrexia|C0392676|Hyperpyrexia|| +009907|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Hypertonia|10020852|Hypertonia|10020852|hypertonia|C0026826|Muscle Hypertonia|| +009908|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Impaired driving ability|10049564|Impaired driving ability|10049564|impair ability to drive|C0877256|Impaired driving ability|| +009909|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Impaired work ability|10052302|Impaired work ability|10052302|impair operate complex machinery|C0948361|Impaired work ability|| +009910|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Mastication disorder|10026882|Mastication disorder|10026882|vacuous chewing|C3687428|Abnormal mastication||Animal +009911|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Mental status changes|10048294|Mental status changes|10048294|altered mental status|C0856054|Mental status changes|| +009912|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Mood altered|10027940|Mood altered|10027940|worsening in mood|C2939186|Disturbance in mood|| +009913|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Muscle rigidity|10028330|Muscle rigidity|10028330|worsening in rigidity|C0026837|Muscle Rigidity|| +009914|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Muscle rigidity|10028330|Rigidity|10039168|rigidity|C0026837|Muscle Rigidity|| +009915|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Myoglobinuria|10028629|Myoglobinuria|10028629|myoglobinuria|C0027080|Myoglobinuria|| +009916|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Neuroleptic malignant syndrome|10029282|NMS|10029435|nms|C0027849|Neuroleptic Malignant Syndrome|| +009917|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Neuroleptic malignant syndrome|10029282|Neuroleptic malignant syndrome|10029282|neuroleptic malignant syndrome|C0027849|Neuroleptic Malignant Syndrome|| +009918|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Oesophageal motility disorder|10072419|Esophageal motility disorder|10072420|esophageal dysmotility|C0014858|Esophageal motility disorders||DrugClass +009919|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Orthostatic hypotension|10031127|Orthostatic hypotension|10031127|orthostasis|C0149746|Orthostasis|| +009920|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Parkinsonism|10034010|Parkinsonism|10034010|parkinsonism|C0242422|Parkinsonian Disorders|| +009921|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Physical disability|10048624|Physical impairment|10076322|worsening in functional capacity|C0231171|Physical impairment|| +009922|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia aspiration|10035669|Aspiration pneumonia|10003525|aspiration pneumonia|C0032290|Aspiration Pneumonia|| +009923|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Restlessness|10038743|Restlessness|10038743|restlessness|C3887611|Restlessness|| +009924|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Rhabdomyolysis|10039020|Rhabdomyolysis|10039020|rhabdomyolysis|C0035410|Rhabdomyolysis|| +009925|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +009926|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +009927|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidality|C3166387|Suicidality|| +009928|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +009929|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Suicide attempt|10042464|Attempted suicide|10003728|attempted suicide|C0038663|Suicide attempt|| +009930|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +009931|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +009932|ac768bab-8afa-4446-bc7f-caeeffec0cda|Xenazine|43685-7|WARNINGS AND PRECAUTIONS|Toxicity to various agents|10070863|Drug toxicity|10013746|toxicity|C0013221|Drug toxicity|| +009933|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +009934|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Burning sensation|10006784|Burning sensation|10006784|burning sensation|C0085624|Burning sensation|| +009935|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|deaths|C1306577|Death (finding)|| +009936|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +009937|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Feeling hot|10016334|Feeling hot|10016334|feeling hot|C2939147|Feels hot|| +009938|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +009939|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +009940|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +009941|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +009942|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +009943|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +009944|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +009945|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paraesthesia|10033775|paraesthesia|C0030554|Paresthesia|| +009946|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +009947|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +009948|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Throat irritation|10043521|Throat irritation|10043521|throat irritation|C0700184|Throat irritation|| +009949|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Throat tightness|10043528|Throat tightness|10043528|throat tightness|C0236071|Feeling of throat tightness|| +009950|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +009951|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +009952|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +009953|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +009954|acaef5a6-b740-40e3-8ffe-74a75c74745c|Voraxaze|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +009955|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +009956|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +009957|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Angle closure glaucoma|10002500|Anatomical narrow angle borderline glaucoma|10002251|worsening of narrow-angle glaucoma|C0154941|Anatomical narrow angle borderline glaucoma|| +009958|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Atrioventricular block|10003671|AV block|10003846|av block|C0004245|Atrioventricular Block|| +009959|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Bronchospasm paradoxical|10006486|Paradoxical bronchospasm|10033770|paradoxical bronchospasm|C0236072|Paradoxical bronchospasm|| +009960|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +009961|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Cardiac failure|10007554|cardiac failure|C0018801|Heart failure|| +009962|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Cardio-respiratory arrest|10007617|Cardio-respiratory arrest|10007617|cardio-respiratory arrest|C0600228|Cardiopulmonary Arrest|| +009963|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +009964|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Diabetes mellitus|10012601|Diabetes mellitus|10012601|diabetes mellitus|C0011849|Diabetes Mellitus|| +009965|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +009966|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +009967|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Fall|10016173|Fall|10016173|fall|C0085639|Falls|| +009968|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +009969|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Lip swelling|10024570|Swelling of lips|10042703|swelling of the lips|C0240211|Lip swelling|| +009970|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +009971|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Osteoarthritis|10031161|Osteoarthritis|10031161|osteoarthritis|C0029408|Degenerative polyarthritis|| +009972|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Pharyngeal oedema|10034829|Throat swelling|10043525|swelling of the throat|C0559687|Congestion of throat|| +009973|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Itching|10023084|itching|C0033774|Pruritus|| +009974|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +009975|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +009976|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +009977|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Swollen tongue|10042727|Swelling of tongue|10042706|swelling of the tongue|C0236068|Tongue swelling|| +009978|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Toothache|10044055|Toothache|10044055|toothache|C0040460|Toothache|| +009979|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Type I hypersensitivity|10045240|Immediate hypersensitivity reaction|10021414|immediate hypersensitivity reactions|C0020523|Immediate hypersensitivity|| +009980|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Urinary retention|10046555|Urinary retention|10046555|worsening of urinary retention|C0080274|Urinary Retention|| +009981|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +009982|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +009983|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +009984|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +009985|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|43685-7|WARNINGS AND PRECAUTIONS|Angle closure glaucoma|10002500|Anatomical narrow angle borderline glaucoma|10002251|worsening of narrow-angle glaucoma|C0154941|Anatomical narrow angle borderline glaucoma|| +009986|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|43685-7|WARNINGS AND PRECAUTIONS|Bronchospasm paradoxical|10006486|Paradoxical bronchospasm|10033770|paradoxical bronchospasm|C0236072|Paradoxical bronchospasm|| +009987|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|43685-7|WARNINGS AND PRECAUTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +009988|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +009989|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|43685-7|WARNINGS AND PRECAUTIONS|Lip swelling|10024570|Swelling of lips|10042703|swelling of the lips|C0240211|Lip swelling|| +009990|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|43685-7|WARNINGS AND PRECAUTIONS|Pharyngeal oedema|10034829|Throat swelling|10043525|swelling of the throat|C0559687|Congestion of throat|| +009991|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Itching|10023084|itching|C0033774|Pruritus|| +009992|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +009993|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|43685-7|WARNINGS AND PRECAUTIONS|Swollen tongue|10042727|Swelling of tongue|10042706|swelling of the tongue|C0236068|Tongue swelling|| +009994|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|43685-7|WARNINGS AND PRECAUTIONS|Type I hypersensitivity|10045240|Immediate hypersensitivity reaction|10021414|immediate hypersensitivity reactions|C0020523|Immediate hypersensitivity|| +009995|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|43685-7|WARNINGS AND PRECAUTIONS|Urinary retention|10046555|Urinary retention|10046555|worsening of urinary retention|C0080274|Urinary Retention|| +009996|acdd5932-375b-4966-8a06-3806ab74c36d|Tudorza|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +009997|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis|| +009998|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +009999|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +010000|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +010001|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +010002|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +010003|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +010004|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +010005|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Dermatitis exfoliative|10012455|Exfoliative dermatitis|10015665|exfoliative dermatitis|C0011606|Exfoliative dermatitis|| +010006|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +010007|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +010008|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|DRESS syndrome|10058899|dress syndrome|C3541994|Drug Hypersensitivity Syndrome|| +010009|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Drug reaction with eosinophilia and systemic symptoms|10073508|Drug rash with eosinophilia and systemic symptoms|10058919|drug rash with eosinophilia and systemic symptoms syndrome|C3541994|Drug Hypersensitivity Syndrome|| +010010|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +010011|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +010012|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +010013|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Taste alteration|10043125|alteration of taste|C0740425|Altered Taste|| +010014|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Dyspnoea exertional|10013971|Dyspnea exertional|10013966|dyspnea exertional|C0231807|Dyspnea on exertion|| +010015|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Exfoliative rash|10064579|Exfoliative rash|10064579|exfoliative rash|C1608945|Exfoliative rash|| +010016|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +010017|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hemoglobin (g/dl) <8.5|C0162119|Hemoglobin low|| +010018|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin low|10055600|hemoglobin (g/dl) <10|C0162119|Hemoglobin low|| +010019|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +010020|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +010021|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +010022|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +010023|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Mouth ulceration|10028034|Mouth ulceration|10028034|mouth ulceration|C0149745|Oral Ulcer|| +010024|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +010025|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +010026|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|decreased neutrophil counts|C0853697|Neutrophil count decreased|| +010027|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count low|10029369|neutrophils (* 10 9 /l) <0.5|C0853697|Neutrophil count decreased|| +010028|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +010029|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Low platelets|10024922|platelets (* 10 9 /l) <50|C0392386|Decreased platelet count|| +010030|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|decreased platelet counts|C0392386|Decreased platelet count|| +010031|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +010032|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +010033|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +010034|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +010035|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +010036|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +010037|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Toxic skin eruption|10057970|Toxic skin eruption|10057970|toxic skin eruption|C0521465|Toxicoderma|| +010038|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Toxic skin eruption|10057970|Toxicoderma|10044259|toxicoderma|C0521465|Toxicoderma|| +010039|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +010040|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +010041|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +010042|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +010043|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Congenital anomaly|10010356|Birth defects|10048305|birth defects|C0000768|Congenital Abnormality|| +010044|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +010045|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea exertional|10013971|Exertional dyspnea|10055548|exertional dyspnea|C0231807|Dyspnea on exertion|| +010046|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +010047|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Embolism|10061169|Thromboembolic event|10043565|thromboembolic events|C0040038|Thromboembolism|| +010048|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Foetal death|10055690|Fetal death|10016479|death of the exposed fetus|C0015927|Fetal Death|| +010049|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decrease in hemoglobin concentrations|C0162119|Hemoglobin low|| +010050|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Haemoglobin decreased|10018884|Hemoglobin low|10055600|hemoglobin values less than 10 g per dl|C0162119|Hemoglobin low|| +010051|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|acute hypersensitivity reactions|C0020517|Hypersensitivity|| +010052|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +010053|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +010054|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryofetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +010055|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia aggravated|10029356|worsening of neutropenia|C0549294|Neutropenia aggravated|| +010056|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +010057|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Neutrophil count decreased|10029366|Neutrophil count low|10029369|neutrophil counts of less than 0.5 * 10 9 per l|C0853697|Neutrophil count decreased|| +010058|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +010059|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +010060|ae879ebe-b620-4829-b6f8-74b58da1c771|VICTRELIS|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +010061|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +010062|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Abdominal pain lower|10000084|Abdominal pain lower|10000084|abdominal pain lower|C0232495|Lower abdominal pain|| +010063|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +010064|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +010065|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Abdominal tenderness|10000097|Abdominal tenderness|10000097|abdominal tenderness|C0232498|Abdominal tenderness|| +010066|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Actinic keratosis|10000614|Actinic keratosis|10000614|actinic keratosis|C0022602|Actinic keratosis|| +010067|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Renal failure acute|10038436|renal failure acute|C0022660|Kidney Failure, Acute|| +010068|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increased alt|C0151905|Alanine aminotransferase increased|| +010069|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|increased alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +010070|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +010071|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Aphthous ulcer|10002959|Aphthous stomatitis|10002958|aphthous stomatitis|C0038363|Aphthous Stomatitis|| +010072|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +010073|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increased ast|C0151904|Aspartate aminotransferase increased|| +010074|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|increased aspartate aminotransferase|C0151904|Aspartate aminotransferase increased|| +010075|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +010076|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +010077|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Blindness transient|10005184|Transient blindness|10044373|transient blindness|C0155003|Blindness, Transient|| +010078|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|increased alkaline phosphatase|C0151849|Alkaline phosphatase raised|| +010079|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|increased creatinine|C0151578|Creatinine increased|| +010080|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +010081|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Brain stem haemorrhage|10006145|Brain stem hemorrhage|10006146|brain stem hemorrhage|C0521540|Brain stem hemorrhage|| +010082|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Cardiomyopathy|10007636|Cardiomyopathy|10007636|cardiomyopathy|C0878544|Cardiomyopathies|| +010083|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +010084|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Cerebral haemorrhage|10008111|Cerebral hemorrhage|10008114|cerebral hemorrhage|C2937358|Cerebral Hemorrhage|| +010085|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +010086|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Conjunctival haemorrhage|10010719|Conjunctival hemorrhage|10010720|conjunctival hemorrhage|C0009760|Conjunctival hemorrhage|| +010087|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +010088|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +010089|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +010090|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +010091|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Dermatitis acneiform|10012432|Dermatitis acneiform|10012432|dermatitis acneiform|C0234894|Dermatitis acneiform|| +010092|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +010093|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +010094|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Dry eye|10013774|Dry eye|10013774|dry eye|C0314719|Dryness of eye|| +010095|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +010096|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Xerostomia|10048223|xerostomia|C0043352|Xerostomia|| +010097|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +010098|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +010099|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Ejection fraction decreased|10050528|Ejection fraction decreased|10050528|decreased ejection fraction|C0743400|Ejection fraction decreased|| +010100|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Ejection fraction decreased|10050528|Left ventricular ejection fraction decreased|10053222|decreased lvef|C1096403|Left ventricular ejection fraction decreased|| +010101|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|qtcf prolongation|C3828431|QTcF Prolongation|| +010102|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolism|C1861172|Venous Thromboembolism|| +010103|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +010104|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +010105|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Eye haemorrhage|10015926|Eye hemorrhage|10015928|eye hemorrhage|C0015402|Eye Hemorrhage|| +010106|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +010107|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Folliculitis|10016936|Folliculitis|10016936|folliculitis|C0016436|Folliculitis|| +010108|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|GGT increased|10056910|increased ggt|C0151662|Gamma-glutamyl transferase raised|| +010109|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Gastric haemorrhage|10017788|Gastric hemorrhage|10017789|gastric hemorrhage|C0235325|Gastric hemorrhage|| +010110|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Gingival bleeding|10018276|Gingival bleeding|10018276|gingival bleeding|C0017565|Gingival Hemorrhage|| +010111|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Gingival bleeding|10018276|Gingival hemorrhage|10072706|gingival hemorrhage|C0017565|Gingival Hemorrhage|| +010112|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Haematochezia|10018836|Hematochezia|10060544|hematochezia|C0018932|Hematochezia|| +010113|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +010114|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Haemorrhage intracranial|10018985|Hemorrhage intracranial|10019552|hemorrhage intracranial|C0151699|Intracranial Hemorrhages|| +010115|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +010116|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Haemorrhoidal haemorrhage|10054787|Hemorrhoidal hemorrhage|10060640|hemorrhoidal hemorrhage|C0265031|Bleeding hemorrhoids|| +010117|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +010118|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Hyperbilirubinaemia|10020578|Hyperbilirubinemia|10020582|hyperbilirubinemia|C0020433|Hyperbilirubinemia|| +010119|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Hypercalcaemia|10020583|Hypercalcemia|10020587|hypercalcemia|C0020437|Hypercalcemia|| +010120|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +010121|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +010122|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Hyperkalaemia|10020646|Hyperkalemia|10020647|hyperkalemia|C0020461|Hyperkalemia|| +010123|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Hyperkeratosis|10020649|Hyperkeratosis|10020649|hyperkeratosis|C0870082|Hyperkeratosis|| +010124|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +010125|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Hypoalbuminaemia|10020942|Hypoalbuminemia|10020943|hypoalbuminemia|C0239981|Hypoalbuminemia|| +010126|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +010127|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +010128|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +010129|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +010130|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +010131|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +010132|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +010133|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +010134|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Lymphoedema|10025282|Lymphedema|10025233|lymphedema|C0024236|Lymphedema|| +010135|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +010136|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Melaena|10027141|Melena|10027162|melena|C0025222|Melena|| +010137|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Mouth ulceration|10028034|Mouth ulceration|10028034|mouth ulceration|C0149745|Oral Ulcer|| +010138|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Mucosal inflammation|10028116|Mucosal inflammation|10028116|mucosal inflammation|C0333355|Inflammatory disease of mucous membrane|| +010139|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +010140|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +010141|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +010142|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|primary malignancies|C0865017|Generalized malignancy, primary|| +010143|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +010144|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Night sweats|10029410|Night sweats|10029410|night sweats|C0028081|Night sweats|| +010145|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Ocular toxicity|10061137|Ocular toxicity|10061137|ocular toxicities|C1262036|Ocular toxicity|| +010146|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +010147|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +010148|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +010149|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +010150|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +010151|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysesthesia syndrome|10054524|palmar-plantar erythrodysesthesia syndrome|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +010152|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +010153|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Paronychia|10034016|Paronychia|10034016|paronychia|C0030578|Paronychia Inflammation|| +010154|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +010155|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +010156|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Febrile reaction|10016289|febrile reactions|C0235723|Reaction febrile|| +010157|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +010158|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Rash erythematous|10037855|Rash erythematous|10037855|rash erythematous|C0234913|Rash erythematous|| +010159|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|rash generalized|C0497365|Rash generalised|| +010160|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Rash macular|10037867|Rash macular|10037867|rash macular|C0221201|Macular rash|| +010161|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Rash maculo-papular|10037868|rash maculo-papular|C0423791|Maculopapular eruption|| +010162|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Rash papular|10037876|Rash papular|10037876|rash papular|C1519353|Skin Papule|| +010163|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Rash pruritic|10037884|Rash pruritic|10037884|rash pruritic|C0033771|Prurigo|| +010164|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Rash pustular|10037888|Rash pustular|10037888|rash pustular|C0085641|Pustular rash|| +010165|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Rash vesicular|10037898|Rash vesicular|10037898|rash vesicular|C0221203|Vesicular rash|| +010166|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +010167|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Rectal haemorrhage|10038063|Rectal hemorrhage|10038064|rectal hemorrhage|C0267596|Rectal hemorrhage|| +010168|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +010169|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Rhabdomyolysis|10039020|Rhabdomyolysis|10039020|rhabdomyolysis|C0035410|Rhabdomyolysis|| +010170|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Skin papilloma|10040907|Skin papilloma|10040907|skin papilloma|C0347390|Skin Papilloma|| +010171|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Skin toxicity|10059516|Skin toxicity|10059516|skin toxicity|C1167791|Skin toxicity|| +010172|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +010173|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +010174|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +010175|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Vaginal haemorrhage|10046910|Vaginal hemorrhage|10046912|vaginal hemorrhage|C2979982|Vaginal Hemorrhage|| +010176|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +010177|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Vitreous haemorrhage|10047655|Vitreous hemorrhage|10047656|vitreous hemorrhage|C0042909|Vitreous Hemorrhage|| +010178|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +010179|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Abortion|10000210|Abortion|10000210|abortifacient|C0156543|Unspecified Abortion||Animal +010180|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Adenocarcinoma pancreas|10052747|Pancreatic adenocarcinoma|10051971|kras mutation-positive pancreatic adenocarcinoma|C0281361|Adenocarcinoma of pancreas|duplicate| +010181|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Basal cell carcinoma|10004146|Basal cell carcinoma|10004146|basal cell carcinoma|C0007117|Basal cell carcinoma|| +010182|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Carcinogenicity|10007269|Carcinogenicity|10007269|tumor promotion|C1519689|Tumor Promotion|| +010183|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Cardiac failure|10007554|cardiac failure|C0018801|Heart failure|| +010184|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Cardiomyopathy|10007636|Cardiomyopathy|10007636|cardiomyopathy|C0878544|Cardiomyopathies|| +010185|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +010186|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Chills|10008531|Rigors|10039177|rigors|C0424790|Rigor - Temperature-associated observation|| +010187|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Colorectal cancer|10061451|Colorectal carcinoma|10010036|recurrent nras mutation-positive colorectal carcinoma|C0009402|Colorectal Carcinoma|underspecified| +010188|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +010189|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Deep vein thrombosis|10051055|DVT|10013877|dvt|C0149871|Deep Vein Thrombosis|| +010190|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Deep vein thrombosis|10051055|Deep vein thrombosis|10051055|deep vein thrombosis|C0149871|Deep Vein Thrombosis|| +010191|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Deep vein thrombosis|10051055|Thrombosis venous deep|10043642|deep venous thrombosis|C0149871|Deep Vein Thrombosis|| +010192|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +010193|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis acneiform|10012432|Acneiform dermatitis|10000520|dermatitis acneiform rash|C0234894|Dermatitis acneiform|duplicate| +010194|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis acneiform|10012432|Rash acneiform|10037847|dermatitis acneiform rash|C0175167|Acneiform Eruptions|duplicate| +010195|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Detachment of retinal pigment epithelium|10052501|Detachment of retinal pigment epithelium|10052501|retinal pigment epithelial detachment|C0339546|Retinal Pigment Epithelial Detachment|| +010196|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Ejection fraction decreased|10050528|Left ventricular ejection fraction decreased|10053222|decreased lvef|C1096403|Left ventricular ejection fraction decreased|| +010197|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolism|C1861172|Venous Thromboembolism|| +010198|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +010199|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +010200|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Gastric haemorrhage|10017788|Gastric hemorrhage|10017789|gastric hemorrhage|C0235325|Gastric hemorrhage|| +010201|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Glaucoma|10018304|Glaucoma|10018304|glaucoma|C0017601|Glaucoma|| +010202|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Glioblastoma|10018336|Glioblastoma|10018336|glioblastoma|C0017636|Glioblastoma|| +010203|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Haemolytic anaemia|10018916|Hemolytic anemia|10019493|hemolytic anemia|C0002878|Anemia, Hemolytic|| +010204|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage intracranial|10018985|Intracranial hemorrhage|10022763|intracranial hemorrhage|C0151699|Intracranial Hemorrhages|| +010205|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|symptomatic bleeding in a critical area or organ|C0019080|Hemorrhage|| +010206|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|major hemorrhagic events|C0019080|Hemorrhage|| +010207|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +010208|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +010209|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|ild|C0206062|Lung Diseases, Interstitial|| +010210|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Iritis|10022955|Iritis|10022955|iritis|C0022081|Iritis|| +010211|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|K-ras gene mutation|10069755|KRAS mutation|10069759|kras mutation-positive pancreatic adenocarcinoma|C2747837|KRAS mutation|duplicate| +010212|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Keratoacanthoma|10023347|Keratoacanthoma|10023347|keratoacanthoma|C0022572|keratoacanthoma|| +010213|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Left ventricular dysfunction|10049694|Left ventricular dysfunction|10049694|left ventricular dysfunction|C0242698|Ventricular Dysfunction, Left|| +010214|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Macular oedema|10025415|Macular edema|10054467|macular edema|C0271051|Macular retinal edema|| +010215|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Malignant melanoma|10025650|Melanoma|10053571|primary melanoma|C0025202|melanoma|| +010216|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryotoxic|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk||Animal +010217|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Malignant neoplasm growth accelerated|10065302|promote growth of malignancies|C1699554|Malignant neoplasm growth accelerated|| +010218|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +010219|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Neovascularisation|10029113|Neovascularization|10029114|neovascularization|C0027686|Pathologic Neovascularization|| +010220|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Ocular toxicity|10061137|Ocular toxicity|10061137|ocular toxicities|C1262036|Ocular toxicity|| +010221|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Optical coherence tomography abnormal|10073561|Optical coherence tomography abnormal|10073561|oct abnormalities|C3665728|Optical coherence tomography abnormal|| +010222|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysesthesia syndrome|10054524|palmar-plantar erythrodysesthesia syndrome|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +010223|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +010224|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pe|C0034065|Pulmonary Embolism|| +010225|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Febrile reaction|10016289|febrile reactions|C0235723|Reaction febrile|| +010226|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +010227|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +010228|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +010229|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +010230|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Retinal detachment|10038848|Retinal detachment|10038848|retinal detachments multifocal|C0035305|Retinal Detachment|| +010231|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Retinal vein occlusion|10038907|Retinal vein occlusion|10038907|rvo|C0035328|Retinal Vein Occlusion|| +010232|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Skin cancer|10040808|Skin neoplasm malignant|10040895|primary malignancies cutaneous|C0007114|Malignant neoplasm of skin|| +010233|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Skin infection|10040872|Skin infection|10040872|secondary infection of the skin|C0037278|Skin Diseases, Infectious|| +010234|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Skin toxicity|10059516|Skin toxicity|10059516|skin toxicity|C1167791|Skin toxicity|| +010235|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Squamous cell carcinoma of skin|10041834|Squamous cell carcinoma of skin|10041834|cutaneous scc|C0553723|Squamous cell carcinoma of skin|| +010236|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +010237|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Uveitis|10046851|Uveitis|10046851|uveitis|C0042164|Uveitis|| +010238|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Visual acuity reduced|10047531|Vision decreased|10047516|decreased visual function|C0558171|Deteriorating vision|| +010239|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|Visual acuity reduced|10047531|Visual acuity reduced|10047531|reduction in visual acuity|C0234632|Reduced visual acuity|| +010240|aeaf0430-f8ad-4e72-9dbf-1954503c3410|Mekinist|43685-7|WARNINGS AND PRECAUTIONS|||||head and neck carcinoma|C3887461|Head and Neck Carcinoma|unmapped| +010241|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +010242|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34066-1|BOXED WARNINGS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior||DrugClass +010243|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34066-1|BOXED WARNINGS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thoughts|C0424000|Feeling suicidal (finding)||DrugClass +010244|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +010245|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Abnormal dreams|10000125|Abnormal dreams|10000125|abnormal dreams|C0234458|Dream disorder|| +010246|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +010247|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis|| +010248|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Akathisia|10001540|Akathisia|10001540|akathisia|C0392156|Akathisia|| +010249|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Amenorrhoea|10001928|Amenorrhea|10001927|amenorrhea|C0002453|Amenorrhea|| +010250|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +010251|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Angina pectoris|10002383|Angina pectoris|10002383|angina pectoris|C0002962|Angina Pectoris|| +010252|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +010253|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +010254|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Atrioventricular block first degree|10003674|AV block first degree|10003850|av block 1st degree|C0085614|First degree atrioventricular block|| +010255|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +010256|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|CPK increased|10011268|cpk increased|C0151576|Elevated creatine kinase|| +010257|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine high|10011367|creatinine high|C0151578|Creatinine increased|| +010258|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|serum creatinine elevated|C0700225|Serum creatinine raised|| +010259|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +010260|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Bradykinesia|10006100|Bradykinesia|10006100|bradykinesia|C0233565|Bradykinesia|| +010261|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Breast enlargement|10006242|Breast enlargement|10006242|breast enlargement|C2225524|Macromastia|| +010262|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Breast pain|10006298|Breast pain|10006298|breast pain|C0024902|Mastodynia|| +010263|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Cerebrovascular accident|10008190|Cerebrovascular accident|10008190|cerebrovascular accident|C0038454|Cerebrovascular accident|| +010264|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +010265|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Cerebrovascular disorder|10008196|Cerebrovascular disorder|10008196|cerebrovascular adverse reactions|C0007820|Cerebrovascular Disorders|| +010266|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Cognitive disorder|10057668|Cognitive impairment|10009846|cognitive impairment|C0338656|Impaired cognition|| +010267|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Cogwheel rigidity|10009848|Cogwheel rigidity|10009848|cogwheel rigidity|C0151564|Cogwheel Rigidity|| +010268|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Completed suicide|10010144|Suicide|10042462|suicide|C0038661|Suicide|| +010269|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|mortality|C1306577|Death (finding)|| +010270|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +010271|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Diabetes mellitus|10012601|Diabetes mellitus|10012601|diabetes mellitus|C0011849|Diabetes Mellitus|| +010272|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +010273|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +010274|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Drooling|10013642|Drooling|10013642|drooling|C0013132|Drooling|| +010275|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +010276|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +010277|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Dyskinesia|10013916|Dyskinesia|10013916|dyskinesias|C0013384|Dyskinetic syndrome|| +010278|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Dyslipidaemia|10058108|Dyslipidemia|10058110|dyslipidemia|C0242339|Dyslipidemias|| +010279|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Dysmenorrhoea|10013935|Dysmenorrhea|10013934|dysmenorrhea|C0013390|Dysmenorrhea|| +010280|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +010281|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +010282|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Swallowing difficult|10042645|swallowing difficulty|C0011168|Deglutition Disorders|| +010283|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Difficulty breathing|10012791|difficulty breathing|C0013404|Dyspnea|| +010284|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Dystonia|10013983|Acute dystonia|10066608|acute dystonia|C1735368|Acute dystonia|| +010285|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Dystonia|10013983|Dystonia|10013983|dystonia|C0013421|Dystonia|| +010286|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Dysuria|10013990|Dysuria|10013990|dysuria|C0013428|Dysuria|| +010287|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Erectile dysfunction|10061461|Erectile dysfunction|10061461|erectile dysfunction|C0242350|Erectile dysfunction|| +010288|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Extrapyramidal disorder|10015832|Extrapyramidal disorder|10015832|extrapyramidal disorder|C0015371|Extrapyramidal Disorders|| +010289|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Extrapyramidal disorder|10015832|Extrapyramidal symptoms|10015835|extrapyramidal symptoms|C0234133|Extrapyramidal sign|| +010290|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +010291|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Galactorrhoea|10017600|Galactorrhea|10017592|galactorrhea|C3665358|Galactorrhea|| +010292|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +010293|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Glabellar reflex abnormal|10058486|Glabellar reflex abnormal|10058486|glabellar reflex abnormal|C1142017|Glabellar reflex abnormal|| +010294|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +010295|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Hyperprolactinaemia|10020737|Hyperprolactinemia|10020739|hyperprolactinemia|C0020514|Hyperprolactinemia|| +010296|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Hypersomnia|10020765|Hypersomnia|10020765|hypersomnolence|C0751229|Hypersomnolence|duplicate| +010297|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +010298|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Hypokinesia|10021021|Hypokinesia|10021021|hypokinesia|C0086439|Hypokinesia|| +010299|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Hypomania|10021030|Hypomania|10021030|activation of hypomania|C0241934|Hypomania|| +010300|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Increased appetite|10021654|Increased appetite|10021654|increased appetite|C0232461|Increased appetite (finding)|| +010301|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +010302|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +010303|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +010304|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Mania|10026749|Mania|10026749|activation of mania|C0338831|Manic|| +010305|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Metabolic disorder|10058097|Metabolic disorder|10058097|metabolic changes|C0025517|Metabolic Diseases|| +010306|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Motor dysfunction|10061296|Motor dysfunction|10061296|motor impairment|C0221163|Motor Disorders|| +010307|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Muscle rigidity|10028330|Muscle rigidity|10028330|muscle rigidity|C0026837|Muscle Rigidity|| +010308|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Neck cramps|10028828|spasm of the neck muscles|C0795701|Neck cramps|| +010309|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +010310|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +010311|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Neuroleptic malignant syndrome|10029282|Neuroleptic malignant syndrome|10029282|neuroleptic malignant syndrome|C0027849|Neuroleptic Malignant Syndrome|| +010312|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Neurological symptom|10060860|Neurologic reaction|10029290|neurological adverse reactions|C0235030|Neurologic reaction|| +010313|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +010314|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Oculogyric crisis|10030071|Oculogyric crisis|10030071|oculogyric crisis|C0085637|Oculogyric crisis|| +010315|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Oromandibular dystonia|10067954|Oromandibular dystonia|10067954|oromandibular dystonia|C2242577|Oromandibular dystonia|| +010316|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Orthostatic hypotension|10031127|Orthostatic hypotension|10031127|orthostatic hypotension|C0020651|Hypotension, Orthostatic|| +010317|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Panic attack|10033664|Panic attack|10033664|panic attack|C0086769|Panic Attacks|| +010318|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Parkinsonism|10034010|Parkinsonism|10034010|parkinsonism|C0242422|Parkinsonian Disorders|| +010319|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Protrusion tongue|10037076|Protrusion tongue|10037076|protrusion of the tongue|C0241442|Protrusion of tongue|| +010320|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +010321|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Psychomotor retardation|10037213|Psychomotor retardation|10037213|psychomotor retardation|C0424230|Motor retardation|| +010322|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +010323|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +010324|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Restlessness|10038743|Restlessness|10038743|restlessness|C3887611|Restlessness|| +010325|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Rhabdomyolysis|10039020|Rhabdomyolysis|10039020|rhabdomyolysis|C0035410|Rhabdomyolysis|| +010326|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Salivary hypersecretion|10039424|Salivary hypersecretion|10039424|salivary hypersecretion|C0037036|Sialorrhea|| +010327|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +010328|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +010329|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Sleep disorder|10040984|Sleep disorder|10040984|sleep disorder|C0851578|Sleep Disorders|| +010330|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +010331|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Sudden death|10042434|Sudden death|10042434|sudden death|C0011071|Sudden death|| +010332|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behaviors|C1760428|Suicidal behavior|| +010333|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thoughts|C0424000|Feeling suicidal (finding)|| +010334|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +010335|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +010336|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Tardive dyskinesia|10043118|Tardive dyskinesia|10043118|tardive dyskinesia|C0686347|Tardive Dyskinesia|| +010337|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Temperature regulation disorder|10061376|Temperature regulation disorder|10061376|body temperature dysregulation|C0854171|Temperature regulation disorder|| +010338|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Throat tightness|10043528|Throat tightness|10043528|tightness of the throat|C0236071|Feeling of throat tightness|| +010339|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Tongue spasm|10043981|Tongue spasm|10043981|tongue spasm|C0234953|Tongue spasm|| +010340|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Torticollis|10044074|Torticollis|10044074|torticollis|C0040485|Torticollis|| +010341|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +010342|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Trismus|10044684|Trismus|10044684|trismus|C0041105|Trismus|| +010343|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +010344|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +010345|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +010346|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +010347|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight gain|10047896|weight gain|C0043094|Weight Gain|| +010348|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +010349|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|34084-4|ADVERSE REACTIONS|||||prolonged abnormal contractions of muscle groups|||unmapped| +010350|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Aggression|10001488|Aggressiveness|10001494|aggressiveness|C0001807|Aggressive behavior||DrugClass +010351|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation||DrugClass +010352|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis||DrugClass +010353|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Akathisia|10001540|Akathisia|10001540|akathisia|C0392156|Akathisia||DrugClass +010354|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Amenorrhoea|10001928|Amenorrhea|10001927|amenorrhea|C0002453|Amenorrhea||DrugClass +010355|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety||DrugClass +010356|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Aspiration|10003504|Aspiration of gastrointestinal contents into airways|10048996|esophageal aspiration|C0877412|Aspiration of gastrointestinal contents into airways||DrugClass +010357|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Blood cholesterol increased|10005425|Cholesterol total increased|10008671|total cholesterol >= 240 mg/dl|C1522133|Hypercholesterolemia result|| +010358|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Blood glucose increased|10005557|Glucose increased|10018421|change in glucose of +1.2 mg/dl|C0860803|Glucose increased|| +010359|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Blood gonadotrophin decreased|10005562|Gonadotropins decreased|10018546|suppress hypothalamic gnrh|C4025644|Hypothalamic gonadotropin-releasing hormone (GNRH) deficiency|| +010360|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Blood gonadotrophin decreased|10005562|Pituitary gonadotrophin decreased|10054718|reduced pituitary gonadotrophin secretion|C0151676|Pituitary gonadotrophin decreased|| +010361|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Blood prolactin abnormal|10005778|Prolactin abnormal NOS|10036823|change in prolactin|C4022448|Abnormal prolactin level|| +010362|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Blood prolactin increased|10005780|Prolactin increased|10036826|prolactin elevations|C0553731|PRL increased|| +010363|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Blood prolactin increased|10005780|Prolactin levels increased|10036828|elevates prolactin levels|C0747979|Increased prolactin level|| +010364|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|triglycerides >= 200 mg/dl|C1522137|Hypertriglyceridemia result|| +010365|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Bone density decreased|10049470|Bone density decreased|10049470|decreased bone density|C0877225|Bone density decreased|| +010366|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +010367|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Breast neoplasm|10006279|Breast neoplasm|10006279|mammary gland neoplasia|C3670716|Neoplasm of non-human mammary gland||Animal +010368|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Cardiac death|10049993|Cardiac death|10049993|deaths cardiovascular|C2924466|Mechanism of death in patient's dying of cardiovascular causes|| +010369|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Heart failure|10019279|heart failure|C0018801|Heart failure|| +010370|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|risk cardiovascular|C0850624|cardiovascular risk factor||DrugClass +010371|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Cerebrovascular accident|10008190|cerebrovascular accidents|C0038454|Cerebrovascular accident||DrugClass +010372|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +010373|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular disorder|10008196|Cerebrovascular disorder|10008196|cerebrovascular adverse events|C0007820|Cerebrovascular Disorders|| +010374|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Coma|10010071|Coma|10010071|hyperosmolar coma|C0020457|Hyperglycemic Hyperosmolar Nonketotic Coma|duplicate|DrugClass +010375|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicide|C0038661|Suicide|| +010376|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|deaths infectious|C3275540|Early death due to infection|| +010377|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Depression|10012378|Depression|10012378|recurrence of depression|C0011570|Mental Depression||DrugClass +010378|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Diabetes mellitus|10012601|Diabetes mellitus|10012601|diabetes mellitus|C0011849|Diabetes Mellitus|| +010379|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +010380|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Lightheadedness|10024492|lightheadedness|C0220870|Lightheadedness|| +010381|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Dyskinesia|10013916|Dyskinesia|10013916|dyskinetic movements|C2678069|Dyskinetic movements||DrugClass +010382|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Dyskinesia|10013916|Movements involuntary|10028041|involuntary movements|C0427086|Involuntary Movements||DrugClass +010383|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Dyslipidaemia|10058108|Dyslipidemia|10058110|dyslipidemia|C0242339|Dyslipidemias||DrugClass +010384|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Erectile dysfunction|10061461|Impotence|10021550|impotence|C0242350|Erectile dysfunction||DrugClass +010385|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Galactorrhoea|10017600|Galactorrhea|10017592|galactorrhea|C3665358|Galactorrhea||DrugClass +010386|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Gynaecomastia|10018800|Gynecomastia|10018801|gynecomastia|C0018418|Gynecomastia||DrugClass +010387|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Hostility|10020400|Hostility|10020400|hostility|C0020039|Hostility||DrugClass +010388|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia||DrugClass +010389|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Hyperosmolar state|10020697|Hyperosmolar state|10020697|hyperosmolar coma|C0020457|Hyperglycemic Hyperosmolar Nonketotic Coma|duplicate|DrugClass +010390|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Hyperprolactinaemia|10020737|Hyperprolactinemia|10020739|hyperprolactinemia|C0020514|Hyperprolactinemia|| +010391|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Hypersomnia|10020765|Hypersomnia|10020765|hypersomnia|C0917799|Hypersomnia|| +010392|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Hypogonadism|10058359|Gonadal insufficiency|10068037|impairing gonadal steroidogenesis|C2242620|Gonadal insufficiency|underspecified| +010393|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Hypogonadism|10058359|Hypogonadism|10058359|hypogonadism|C0020619|Hypogonadism|| +010394|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Hypomania|10021030|Hypomania|10021030|hypomania|C0241934|Hypomania||DrugClass +010395|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Impulsive behaviour|10021567|Impulsive behavior|10060909|impulsivity|C0021125|Impulsive Behavior||DrugClass +010396|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness||DrugClass +010397|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood||DrugClass +010398|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Judgement impaired|10023236|Judgement impaired|10023236|impair judgment|C0233818|Impaired judgement|| +010399|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Ketoacidosis|10023379|Ketoacidosis|10023379|ketoacidosis|C0220982|Ketoacidosis||DrugClass +010400|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia||DrugClass +010401|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Lipids abnormal|10024588|Lipids abnormal|10024588|alterations in lipids|C0549634|Lipids abnormal||DrugClass +010402|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Mania|10026749|Mania|10026749|mania|C0338831|Manic||DrugClass +010403|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Mania|10026749|Manic episode|10026778|manic episodes|C0349208|Manic episode|| +010404|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Metabolic disorder|10058097|Metabolic disorder|10058097|metabolic changes|C0025517|Metabolic Diseases||DrugClass +010405|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Motor dysfunction|10061296|Motor dysfunction|10061296|impair motor skills|C1963825|Reduced dexterity|| +010406|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Neuroleptic malignant syndrome|10029282|NMS|10029435|nms|C0027849|Neuroleptic Malignant Syndrome|| +010407|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Neuroleptic malignant syndrome|10029282|Neuroleptic malignant syndrome|10029282|neuroleptic malignant syndrome|C0027849|Neuroleptic Malignant Syndrome|| +010408|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia||DrugClass +010409|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Oesophageal motility disorder|10072419|Esophageal motility disorder|10072420|esophageal dysmotility|C0014858|Esophageal motility disorders||DrugClass +010410|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Orthostatic hypotension|10031127|Orthostatic hypotension|10031127|orthostatic hypotension|C0020651|Hypotension, Orthostatic|| +010411|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Panic attack|10033664|Panic attacks|10033665|panic attacks|C0086769|Panic Attacks||DrugClass +010412|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +010413|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Reproductive toxicity|10074268|Reproductive toxicity|10074268|inhibit reproductive function|C1558153|Adverse Event Associated with Sexual and Reproductive Function|| +010414|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Restlessness|10038743|Psychomotor restlessness|10037212|psychomotor restlessness|C3887612|Psychomotor Agitation||DrugClass +010415|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +010416|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Convulsions|10010914|convulsions|C0036572|Seizures|| +010417|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +010418|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +010419|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Sudden death|10042434|Sudden death|10042434|sudden death|C0011071|Sudden death|| +010420|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidality|C3166387|Suicidality|| +010421|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thinking|C0424000|Feeling suicidal (finding)||DrugClass +010422|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal tendency|10042461|emerging suicidality|C0235196|Suicidal tendency|| +010423|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +010424|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +010425|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Tardive dyskinesia|10043118|Tardive dyskinesia|10043118|tardive dyskinesia|C0686347|Tardive Dyskinesia||DrugClass +010426|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Temperature regulation disorder|10061376|Temperature regulation disorder|10061376|disruption of the body's ability to reduce core body temperature|C0854171|Temperature regulation disorder||DrugClass +010427|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Thinking abnormal|10043431|Thinking abnormal|10043431|impair thinking|C0233632|Disturbance in thinking|| +010428|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Transient ischaemic attack|10044390|Transient ischemic attacks|10044391|transient ischemic attacks|C0007787|Transient Ischemic Attack||DrugClass +010429|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Transient ischaemic attack|10044390|Transient ischemic attack|10072760|transient ischemic attack|C0007787|Transient Ischemic Attack|| +010430|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Weight fluctuation|10049040|Weight fluctuation|10049040|change in weight|C0005911|Body Weight Changes|| +010431|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Weight increased|10047899|Weight gain|10047896|weight gain|C0043094|Weight Gain||DrugClass +010432|afad3051-9df2-4c54-9684-e8262a133af8|Latuda|43685-7|WARNINGS AND PRECAUTIONS|Weight increased|10047899|Weight increased|10047899|increase in body weight|C0043094|Weight Gain|| +010433|b0915068-cfd4-4d72-b9f8-7e31fe83cd1e|Neuraceq|34084-4|ADVERSE REACTIONS|Application site erythema|10003041|Application site erythema|10003041|application site erythema|C0853700|Application site erythema|| +010434|b0915068-cfd4-4d72-b9f8-7e31fe83cd1e|Neuraceq|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +010435|b0915068-cfd4-4d72-b9f8-7e31fe83cd1e|Neuraceq|34084-4|ADVERSE REACTIONS|Injection site irritation|10022079|Injection site irritation|10022079|irritation injection site|C0521498|Injection site irritation|| +010436|b0915068-cfd4-4d72-b9f8-7e31fe83cd1e|Neuraceq|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +010437|b0915068-cfd4-4d72-b9f8-7e31fe83cd1e|Neuraceq|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Pain injection site|10033453|pain injection site|C0151828|Injection site pain|| +010438|b0915068-cfd4-4d72-b9f8-7e31fe83cd1e|Neuraceq|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reaction|C0151735|Injection site reaction|| +010439|b0915068-cfd4-4d72-b9f8-7e31fe83cd1e|Neuraceq|43685-7|WARNINGS AND PRECAUTIONS|Exposure to radiation|10073306|Exposure to radiation|10073306|long-term cumulative radiation exposure|C0015333|Exposure to radiation|underspecified| +010440|b0915068-cfd4-4d72-b9f8-7e31fe83cd1e|Neuraceq|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Cancer|10007050|cancer|C0006826|Malignant Neoplasms|| +010441|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevations in alt|C0151905|Alanine aminotransferase increased|| +010442|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Amnesia|10001949|Amnesia|10001949|amnesia|C0002622|Amnesia|| +010443|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +010444|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +010445|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +010446|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Asthenic conditions|10003550|Asthenic conditions|10003550|asthenic conditions|C0852192|Asthenic conditions|HLT| +010447|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +010448|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevations in bilirubin|C0311468|Increased bilirubin level (finding)|| +010449|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +010450|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Cauda equina syndrome|10007821|Cauda equina syndrome|10007821|cauda equina syndrome|C0392548|Cauda Equina Syndrome|| +010451|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Cognitive disorder|10057668|Cognitive disorder|10057668|cognitive disorder|C0009241|Cognition Disorders|| +010452|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +010453|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +010454|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +010455|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +010456|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Disturbance in attention|10013496|Disturbance in attention|10013496|disturbance in attention|C0233414|Disturbance of attention|| +010457|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +010458|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +010459|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +010460|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Dyspnoea at rest|10013969|Dyspnoea at rest|10013969|dyspnea at rest|C2712054|Actual Resting Dyspnea|| +010461|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Dyspnoea exertional|10013971|Exertional dyspnea|10055548|exertional dyspnea|C0231807|Dyspnea on exertion|| +010462|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspneae|C0013404|Dyspnea|| +010463|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +010464|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Fall|10016173|Fall|10016173|falls|C0085639|Falls|| +010465|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +010466|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Fracture|10017076|Fracture|10017076|non-pathologic fractures|C0016658|Fracture|| +010467|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Gynaecomastia|10018800|Gynecomastia|10018801|gynecomastia|C0018418|Gynecomastia|| +010468|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Haematoma|10018852|Hematoma|10019428|hematomas|C0018944|Hematoma|| +010469|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +010470|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +010471|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +010472|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +010473|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +010474|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +010475|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +010476|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Joint injury|10060820|Joint injury|10060820|joint injuries|C0409497|Joint injury|| +010477|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Laryngitis|10023874|Laryngitis|10023874|laryngitis|C0023067|Laryngitis|| +010478|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Lower respiratory tract infection|10024968|Lower respiratory tract infection|10024968|lower respiratory tract infection|C0149725|Lower respiratory tract infection|| +010479|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Lung infection|10061229|Lung infection|10061229|lung infection|C0876973|Infectious disease of lung|| +010480|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Memory impairment|10027175|Memory impairment|10027175|memory impairment|C0233794|Memory impairment|| +010481|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Mental impairment disorders|10057167|Mental impairment disorders|10057167|mental impairment disorders|C1112722|Mental impairment disorders|HLGT| +010482|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Muscular weakness|10028372|Muscular weakness|10028372|muscular weakness|C0151786|Muscle Weakness|| +010483|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +010484|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Musculoskeletal stiffness|10052904|Musculoskeletal stiffness|10052904|musculoskeletal stiffness|C0948525|Musculoskeletal stiffness|| +010485|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +010486|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +010487|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +010488|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +010489|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Pharyngitis|10034835|Pharyngitis|10034835|pharyngitis|C0031350|Pharyngitis|| +010490|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +010491|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Pollakiuria|10036018|Pollakiuria|10036018|pollakiuria|C0042023|Increased frequency of micturition|| +010492|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +010493|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Restless legs syndrome|10058920|Restless legs syndrome|10058920|restless legs syndrome|C0035258|Restless Legs Syndrome|| +010494|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +010495|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Seizure|10039906|Seizure|10039906|seizure|C0036572|Seizures|| +010496|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +010497|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +010498|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Spinal cord compression|10041549|Spinal cord compression|10041549|spinal cord compression|C0037926|Compression of spinal cord|| +010499|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +010500|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +010501|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +010502|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +010503|b129fdc9-1d8e-425c-a5a9-8a2ed36dfbdf|Xtandi|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizure|10039906|seizure|C0036572|Seizures|| +010504|b3558f16-8f9a-4e55-8d9c-836427ebaa57|Vizamyl|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|Increased blood pressure|10021655|increased blood pressure|C0497247|Increase in blood pressure|| +010505|b3558f16-8f9a-4e55-8d9c-836427ebaa57|Vizamyl|34084-4|ADVERSE REACTIONS|Chest discomfort|10008469|Chest pressure|10008486|chest pressure|C0438716|Chest pressure|| +010506|b3558f16-8f9a-4e55-8d9c-836427ebaa57|Vizamyl|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +010507|b3558f16-8f9a-4e55-8d9c-836427ebaa57|Vizamyl|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +010508|b3558f16-8f9a-4e55-8d9c-836427ebaa57|Vizamyl|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +010509|b3558f16-8f9a-4e55-8d9c-836427ebaa57|Vizamyl|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +010510|b3558f16-8f9a-4e55-8d9c-836427ebaa57|Vizamyl|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reaction|C0020517|Hypersensitivity|| +010511|b3558f16-8f9a-4e55-8d9c-836427ebaa57|Vizamyl|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +010512|b3558f16-8f9a-4e55-8d9c-836427ebaa57|Vizamyl|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +010513|b3558f16-8f9a-4e55-8d9c-836427ebaa57|Vizamyl|43685-7|WARNINGS AND PRECAUTIONS|Exposure to radiation|10073306|Exposure to radiation|10073306|long-term cumulative radiation exposure|C0015333|Exposure to radiation|underspecified| +010514|b3558f16-8f9a-4e55-8d9c-836427ebaa57|Vizamyl|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +010515|b3558f16-8f9a-4e55-8d9c-836427ebaa57|Vizamyl|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +010516|b3558f16-8f9a-4e55-8d9c-836427ebaa57|Vizamyl|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Cancer|10007050|cancer|C0006826|Malignant Neoplasms|| +010517|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Aspergillus infection|10074171|Aspergillosis|10003488|aspergillosis|C0004030|Aspergillosis|| +010518|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Bacterial infection|10060945|Bacterial infection|10060945|bacterial infections|C0004623|Bacterial Infections|| +010519|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Bacterial sepsis|10053840|Bacterial sepsis|10053840|bacterial sepsis|C0684256|Bacterial sepsis|| +010520|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Blastomycosis|10005098|Blastomycosis|10005098|blastomycosis|C0005716|Blastomycosis|| +010521|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Candida infection|10074170|Candidiasis|10007152|candidiasis|C0006840|Candidiasis|| +010522|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Coccidioidomycosis|10009825|Coccidioidomycosis|10009825|coccidioidomycosis|C0009186|Coccidioidomycosis|| +010523|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)||DrugClass +010524|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Disseminated tuberculosis|10013453|Disseminated tuberculosis|10013453|tuberculosis disseminated|C0152915|Acute miliary tuberculosis|| +010525|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Extrapulmonary tuberculosis|10064445|Extrapulmonary tuberculosis|10064445|tuberculosis extrapulmonary|C0679362|Tuberculosis, extrapulmonary|| +010526|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Histoplasmosis disseminated|10020144|Histoplasmosis disseminated|10020144|histoplasmosis disseminated|C0343900|Extrapulmonary histoplasmosis|| +010527|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Histoplasmosis|10020141|Histoplasmosis|10020141|histoplasmosis|C0019655|Histoplasmosis|| +010528|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +010529|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Legionella infection|10061266|Legionella infection|10061266|infections legionella|C0023240|Legionellosis|| +010530|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Listeriosis|10024641|Listeria infection|10024638|infections listeria|C0023860|Listeriosis|| +010531|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Lymphoma|10025310|Lymphoma|10025310|lymphoma|C0024299|Lymphoma||DrugClass +010532|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancy|C1306459|Primary malignant neoplasm|| +010533|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Opportunistic infection|10030901|Opportunistic infection|10030901|infections due to other opportunistic pathogens|C0029118|Opportunistic Infections|| +010534|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystosis|10035662|pneumocystosis|C1535939|Pneumocystis jiroveci pneumonia|| +010535|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Systemic mycosis|10052366|Invasive mycosis|10062642|invasive fungal infections|C1262313|Invasive mycosis|| +010536|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Tuberculosis|10044755|Active tuberculosis|10071157|active tuberculosis|C0151332|Active tuberculosis|| +010537|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Tuberculosis|10044755|TB|10043148|tb|C0041296|Tuberculosis|| +010538|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Tuberculosis|10044755|Tuberculosis reactivated|10045025|reactivation of latent tuberculosis|C0275965|Reactivation tuberculosis|| +010539|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +010540|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34066-1|BOXED WARNINGS|Viral infection|10047461|Viral infection|10047461|viral infections|C0042769|Virus Diseases|| +010541|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +010542|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Alopecia totalis|10001766|Alopecia totalis|10001766|alopecia totalis|C0263504|Alopecia totalis|| +010543|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +010544|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Angina pectoris|10002383|Angina pectoris|10002383|angina pectoris|C0002962|Angina Pectoris|| +010545|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +010546|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Antinuclear antibody positive|10060055|ANA positive|10060060|ana titers positive|C0151480|Anti-nuclear factor positive|| +010547|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +010548|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Arrhythmia|10003119|Arrhythmia|10003119|arrhythmias|C0003811|Cardiac Arrhythmia|| +010549|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +010550|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +010551|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +010552|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Bacterial infection|10060945|Bacterial infection|10060945|bacterial infections|C0004623|Bacterial Infections|| +010553|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Bacteriuria|10004056|Bacteriuria|10004056|bacteriuria|C0004659|Bacteriuria|| +010554|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Bipolar disorder|10057667|Bipolar disorder|10057667|bipolar disorder|C0005586|Bipolar Disorder|| +010555|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Acute bronchitis|10000687|acute bronchitis|C0149514|Acute bronchitis|| +010556|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Cardiac failure aggravated|10007557|worsening heart failure|C0235875|Cardiac failure aggravated|| +010557|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Cardiac failure|10007554|cardiac failure|C0018801|Heart failure|| +010558|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Heart failure|10019279|heart failure|C0018801|Heart failure|| +010559|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +010560|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +010561|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Cystitis|10011781|Bladder infection|10005047|bladder infection|C0600041|Infective cystitis|| +010562|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Cystitis|10011781|Cystitis|10011781|cystitis|C0010692|Cystitis|| +010563|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +010564|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Dermatitis allergic|10012434|Dermatitis allergic|10012434|dermatitis allergic|C0011615|Dermatitis, Atopic|| +010565|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +010566|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +010567|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Disseminated tuberculosis|10013453|Miliary TB|10027629|miliary tb|C0041321|Tuberculosis, Miliary|| +010568|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Dizziness postural|10013578|Dizziness postural|10013578|dizziness postural|C0234987|Postural dizziness|| +010569|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +010570|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Erythema multiforme|10015218|Erythema multiforme|10015218|erythema multiforme|C0014742|Erythema Multiforme||DrugClass +010571|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Erythema nodosum|10015226|Erythema nodosum|10015226|erythema nodosum|C0014743|Erythema Nodosum|| +010572|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +010573|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +010574|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +010575|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|elevated liver enzymes|C0235996|Elevated liver enzymes|| +010576|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +010577|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Herpes virus infection|10019973|Herpes infection|10019941|herpes infections|C0019372|Herpesviridae Infections|| +010578|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +010579|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Hypercoagulation|10020608|Thrombophilia|10057396|thrombophilia|C0398623|Thrombophilia|| +010580|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +010581|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +010582|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertensive episode|10020804|hypertensive adverse reactions|C0520539|Hypertensive episode|| +010583|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Hypertensive heart disease|10020823|Hypertensive heart disease|10020823|hypertensive heart disease|C0152105|Hypertensive heart disease|| +010584|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +010585|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +010586|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +010587|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +010588|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +010589|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Intestinal obstruction|10022687|Intestinal obstruction|10022687|intestinal obstruction|C0021843|Intestinal Obstruction|| +010590|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Laryngitis|10023874|Laryngitis|10023874|laryngitis|C0023067|Laryngitis|| +010591|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +010592|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Lower respiratory tract infection|10024968|Lower respiratory tract infection|10024968|lower respiratory tract infections|C0149725|Lower respiratory tract infection|| +010593|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Lupus-like syndrome|10050551|Lupus-like syndrome|10050551|lupus-like syndrome|C0919715|Lupus-like syndrome|| +010594|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Lymph node tuberculosis|10025183|Lymph node tuberculosis|10025183|lymphatic tb|C0041316|Lymph Node Tuberculosis|| +010595|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Lymphadenopathy|10025197|Lymphadenopathy|10025197|lymphadenopathy|C0497156|Lymphadenopathy|| +010596|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +010597|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Menstrual disorder|10027327|Menstrual disorder|10027327|menstrual disorder|C0025345|Menstruation Disturbances|| +010598|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +010599|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Myocardial ischaemia|10028600|Myocardial ischemia|10028601|myocardial ischemia|C0151744|Myocardial Ischemia|| +010600|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +010601|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms||DrugClass +010602|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Nephrotic syndrome|10029164|Nephrotic syndrome|10029164|nephrotic syndrome|C0027726|Nephrotic Syndrome|| +010603|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +010604|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +010605|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Optic neuritis|10030942|Optic neuritis|10030942|optic neuritis|C0029134|Optic Neuritis|| +010606|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +010607|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +010608|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Pericardial effusion|10034474|Pericardial effusion|10034474|pericardial effusion|C0031039|Pericardial effusion|| +010609|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Pericarditis|10034484|Pericarditis|10034484|pericarditis|C0031046|Pericarditis|| +010610|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Peritoneal tuberculosis|10053583|Peritoneal tuberculosis|10053583|peritoneal tb|C0041325|Peritonitis, Tuberculous|| +010611|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Pharyngitis|10034835|Pharyngitis|10034835|pharyngitis|C0031350|Pharyngitis|| +010612|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +010613|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Psoriasis|10037153|Psoriasis|10037153|psoriasis|C0033860|Psoriasis||DrugClass +010614|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Pulmonary tuberculosis|10037440|Pulmonary TB|10037435|pulmonary tb|C0041327|Tuberculosis, Pulmonary|| +010615|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Pustular psoriasis|10037575|Palmoplantar pustulosis|10050185|psoriasis palmoplantar|C0030246|Pustulosis of Palms and Soles||DrugClass +010616|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Pustular psoriasis|10037575|Psoriasis pustular|10037159|psoriasis pustular|C0152081|Pustular psoriasis||DrugClass +010617|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Pyelonephritis|10037596|Pyelonephritis|10037596|pyelonephritis|C0034186|Pyelonephritis|| +010618|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +010619|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +010620|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +010621|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Retinal haemorrhage|10038867|Retinal hemorrhage|10038870|retinal hemorrhage|C0035317|Retinal Hemorrhage|| +010622|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Sarcoidosis|10039486|Sarcoidosis|10039486|sarcoidosis|C0036202|Sarcoidosis|| +010623|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Serum sickness|10040400|Serum sickness|10040400|serum sickness|C0036830|Serum Sickness|| +010624|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction||DrugClass +010625|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome||DrugClass +010626|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Suicide attempt|10042464|Suicide attempt|10042464|suicide attempt|C0038663|Suicide attempt|| +010627|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope vasovagal|10042777|vasovagal syncope|C0042420|Vasovagal syncope|| +010628|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Thrombophlebitis|10043570|Thrombophlebitis|10043570|thrombophlebitis|C0040046|Thrombophlebitis|| +010629|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis||DrugClass +010630|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Transient ischaemic attack|10044390|Transient ischemic attack|10072760|transient ischemic attack|C0007787|Transient Ischemic Attack|| +010631|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Tuberculosis|10044755|Infection tuberculosis|10021870|tuberculosis infections|C0041296|Tuberculosis|| +010632|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Tuberculosis|10044755|TB|10043148|tb|C0041296|Tuberculosis|| +010633|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +010634|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory infection|10046300|upper respiratory infections|C0041912|Upper Respiratory Infections|| +010635|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +010636|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +010637|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +010638|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Uveitis|10046851|Uveitis|10046851|uveitis|C0042164|Uveitis|| +010639|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Vasculitis|10047115|Polyangiitis|10036023|systemic vasculitis|C0264939|Systemic Vasculitis||DrugClass +010640|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Vasculitis|10047115|Vasculitis|10047115|vasculitis|C0042384|Vasculitis|| +010641|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|34084-4|ADVERSE REACTIONS|Viral infection|10047461|Viral infection|10047461|viral infection|C0042769|Virus Diseases|| +010642|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Acute leukaemia|10000830|Acute leukemia|10000835|acute leukemia|C0085669|Acute leukemia||DrugClass +010643|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +010644|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +010645|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Aplastic anaemia|10002967|Aplastic anemia|10002969|aplastic anemia|C0002874|Aplastic Anemia||DrugClass +010646|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Aspergillus infection|10074171|Aspergillosis|10003488|aspergillosis|C0004030|Aspergillosis||DrugClass +010647|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune demyelinating disease|10075688|Autoimmune demyelinating disease|10075688|peripheral demyelinating disease|C0751452|Autoimmune Demyelinating Disease, Peripheral||DrugClass +010648|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune disorder|10061664|Autoimmune disorder|10061664|formation of autoantibodies|C0004366|Autoimmune Response|| +010649|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Bacterial infection|10060945|Bacterial infection|10060945|infections bacterial|C0004623|Bacterial Infections||DrugClass +010650|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Blastomycosis|10005098|Blastomycosis|10005098|blastomycosis|C0005716|Blastomycosis||DrugClass +010651|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Blood disorder|10061590|Blood disorder|10061590|adverse reactions of the hematologic system|C0018939|Hematological Disease|| +010652|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Candida infection|10074170|Candidiasis|10007152|candidiasis|C0006840|Candidiasis||DrugClass +010653|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure congestive|10007559|CHF|10008502|new onset chf|C0742752|CONGESTIVE HEART FAILURE NEW ONSET|| +010654|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure congestive|10007559|Congestive cardiac failure aggravated|10048565|worsening congestive heart failure|C3532952|Exacerbation of congestive heart failure||DrugClass +010655|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure congestive|10007559|Congestive heart failure|10010684|chf|C0018802|Congestive heart failure||DrugClass +010656|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Cardiac failure aggravated|10007557|heart failure, worsening|C0235875|Cardiac failure aggravated|| +010657|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Cardiac failure|10007554|heart failure new onset|C0018801|Heart failure|| +010658|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Chronic leukaemia|10008943|Chronic leukemia|10008948|chronic leukemia|C1279296|Chronic leukemia (category)||DrugClass +010659|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Coccidioidomycosis|10009825|Coccidioidomycosis|10009825|coccidioidomycosis|C0009186|Coccidioidomycosis||DrugClass +010660|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Cytopenia|10066274|Cytopenia|10066274|cytopenia|C0010828|Cytopenia|| +010661|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)||DrugClass +010662|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Demyelination|10012305|Demyelinating disease of central nervous system, unspecified|10012301|central nervous system demyelinating disease|C0011302|Demyelinating disease of central nervous system||DrugClass +010663|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Demyelination|10012305|Demyelination disorder NOS|10048425|demyelinating disease|C0011303|Demyelinating Diseases|| +010664|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +010665|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Guillain-Barre syndrome|10018767|Guillain-Barre syndrome|10018767|guillain-barre syndrome|C0018378|Guillain-Barre Syndrome||DrugClass +010666|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis B|10019731|Hepatitis B reactivation|10058827|hbv reactivation|C1142420|Hepatitis B reactivation||DrugClass +010667|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Hepatosplenic T-cell lymphoma|10066957|Hepatosplenic T-cell lymphoma|10066957|hepatosplenic t-cell lymphoma|C1333984|Hepatosplenic T-cell lymphoma|| +010668|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Histoplasmosis|10020141|Histoplasmosis|10020141|histoplasmosis|C0019655|Histoplasmosis||DrugClass +010669|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Hodgkin's disease|10020206|Hodgkin's lymphoma|10020328|hodgkin lymphoma|C0019829|Hodgkin Disease|| +010670|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +010671|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +010672|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +010673|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Infection parasitic|10021857|Infection parasitic|10021857|infections parasitic|C0747256|Parasitic infection||DrugClass +010674|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +010675|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Legionella infection|10061266|Legionella infection|10061266|legionellosis|C0023240|Legionellosis||DrugClass +010676|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +010677|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Listeriosis|10024641|Listeriosis|10024641|listeriosis|C0023860|Listeriosis||DrugClass +010678|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Lupus-like syndrome|10050551|Lupus-like syndrome|10050551|lupus-like syndrome|C0919715|Lupus-like syndrome|| +010679|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Lymphoma|10025310|Lymphoma|10025310|lymphomas|C0024299|Lymphoma|| +010680|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Multiple sclerosis|10028245|Multiple sclerosis|10028245|multiple sclerosis|C0026769|Multiple Sclerosis||DrugClass +010681|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Mycobacterial infection|10062207|Mycobacterial infection|10062207|infections mycobacterial|C0026918|Mycobacterium Infections||DrugClass +010682|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|rare malignancies|C0006826|Malignant Neoplasms|| +010683|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Nervous system disorder|10029202|Nervous system disorder|10029202|neurological disorders|C0027765|nervous system disorder|| +010684|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +010685|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Non-Hodgkin's lymphoma|10029547|Non-Hodgkin's lymphoma|10029547|non-hodgkin's lymphoma|C0024305|Lymphoma, Non-Hodgkin|| +010686|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections||DrugClass +010687|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Optic neuritis|10030942|Optic neuritis|10030942|optic neuritis|C0029134|Optic Neuritis|| +010688|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia||DrugClass +010689|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystosis|10035662|pneumocystosis|C1535939|Pneumocystis jiroveci pneumonia||DrugClass +010690|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +010691|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Convulsion disorder|10010907|seizure disorder|C0014544|Epilepsy|| +010692|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Serum sickness|10040400|Serum sickness|10040400|serum sickness|C0036830|Serum Sickness|| +010693|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Systemic mycosis|10052366|Invasive mycosis|10062642|infections invasive fungal|C1262313|Invasive mycosis||DrugClass +010694|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +010695|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Infection tuberculosis|10021870|tuberculosis infections|C0041296|Tuberculosis|| +010696|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis reactivated|10045025|reactivation of tuberculosis|C0275965|Reactivation tuberculosis|| +010697|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis||DrugClass +010698|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +010699|b4c2c9dc-a0bb-4d64-a667-a67ebe88392d|Cimzia|43685-7|WARNINGS AND PRECAUTIONS|Viral infection|10047461|Viral infection|10047461|infections viral|C0042769|Virus Diseases||DrugClass +010700|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +010701|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +010702|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +010703|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +010704|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Loss of energy|10024862|loss of energy|C0015672|Fatigue|| +010705|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Strength loss of|10042174|loss of strength|C3714552|Weakness|| +010706|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Balanitis candida|10004074|Candidal balanitis|10007144|candidal balanitis|C0276684|Candidal balanitis|| +010707|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Balanoposthitis|10004078|Balanoposthitis|10004078|balanoposthitis|C0004691|Balanoposthitis|| +010708|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Blood creatinine abnormal|10005481|Serum creatinine abnormal|10040231|changes in serum creatinine|C0438243|Serum creatinine abnormal|| +010709|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Blood creatinine increased|10005483|increased blood creatinine|C0235431|Blood creatinine increased|| +010710|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|increase in serum creatinine|C0700225|Serum creatinine raised|| +010711|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Blood magnesium abnormal|10005652|Serum magnesium abnormal|10040335|change in serum magnesium levels|C0858138|Serum magnesium abnormal|| +010712|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Blood magnesium increased|10005655|Serum magnesium increased|10040337|increases in serum magnesium|C0858142|Serum magnesium increased|| +010713|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Blood phosphorus abnormal|10054823|Serum phosphate abnormal|10040369|change in serum phosphate levels|C0858148|Serum phosphate abnormal|| +010714|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Blood phosphorus increased|10050196|Serum phosphate increased|10040371|increases in serum phosphate|C0553706|Serum phosphate increased|| +010715|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Blood potassium increased|10005725|Potassium increased|10036450|increases in potassium|C0856882|Potassium increased|| +010716|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Blood potassium increased|10005725|Serum potassium increased|10040379|increases in serum potassium|C0553704|Serum potassium increased|| +010717|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Bone density decreased|10049470|Bone density decreased|10049470|bmd declines at the distal forearm|C0877225|Bone density decreased|underspecified| +010718|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +010719|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +010720|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Dizziness postural|10013578|Dizziness postural|10013578|postural dizziness|C0234987|Postural dizziness|| +010721|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +010722|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Fall|10016173|Fall|10016173|falls|C0085639|Falls|| +010723|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +010724|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Fracture|10017076|Fracture bone|10017077|bone fractures|C0016658|Fracture|| +010725|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Fracture|10017076|Fracture|10017076|fractures|C0016658|Fracture|| +010726|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Genital infection female|10061977|Genital infection female|10061977|female genital mycotic infections|C0729565|Female genital infection|duplicate| +010727|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Genital infection fungal|10061180|Genital infection fungal|10061180|female genital mycotic infections|C0740330|Genital infection fungal|duplicate| +010728|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Genital infection male|10062521|Genital infection male|10062521|male genital mycotic infections|C0564768|Male genital infection|duplicate| +010729|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Glomerular filtration rate abnormal|10018356|Glomerular filtration rate abnormal|10018356|changes in egfr|C0854050|Abnormal glomerular filtration rate|| +010730|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Glomerular filtration rate decreased|10018358|GFR decreased|10018214|egfr 30% lower than baseline|C0853068|Decreased glomerular filtration rate|| +010731|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Glomerular filtration rate decreased|10018358|Glomerular filtration rate decreased|10018358|decreased glomerular filtration rate|C0853068|Decreased glomerular filtration rate|| +010732|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Haemoglobin abnormal|10018879|Hemoglobin abnormal|10019482|changes in hemoglobin|C0349705|Abnormal hemoglobin finding|| +010733|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Haemoglobin increased|10018888|Hemoglobin increased|10055599|hemoglobin above the upper limit of normal|C0549448|Hemoglobin increased|| +010734|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Hyperkalaemia|10020646|Hyperkalemia|10020647|hyperkalemia|C0020461|Hyperkalemia|| +010735|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +010736|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +010737|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycaemia|10020993|hypoglycemic events|C0020615|Hypoglycemia|| +010738|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +010739|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +010740|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Hypovolaemia|10021137|Intravascular depletion|10074191|reductions in intravascular volume|C0750310|Intravascular depletion|| +010741|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Hypovolaemia|10021137|Volume depletion|10047691|volume depletion-related adverse reactions|C0546884|Hypovolemia|| +010742|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Low density lipoprotein abnormal|10024901|Low density lipoprotein cholesterol abnormal NOS|10024903|changes in ldl-c|C0853611|Low density lipoprotein abnormal|| +010743|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Low density lipoprotein increased|10024910|LDL cholesterol increased|10024055|increases in ldl-c|C0549399|Low density lipoprotein increased|| +010744|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Low density lipoprotein increased|10024910|Low density lipoprotein increased|10024910|increases in low-density lipoprotein|C0549399|Low density lipoprotein increased|| +010745|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +010746|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Non-high-density lipoprotein cholesterol increased|10063967|Non-high-density lipoprotein cholesterol increased|10063967|increases in non-hdl-c|C1535898|Non-high-density lipoprotein cholesterol increased|| +010747|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Orthostatic hypotension|10031127|Orthostatic hypotension|10031127|orthostatic hypotension|C0020651|Hypotension, Orthostatic|| +010748|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Pancreatitis acute|10033647|Pancreatitis acute|10033647|pancreatitis acute|C0001339|Acute pancreatitis|| +010749|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Pancreatitis chronic|10033649|Pancreatitis chronic|10033649|pancreatitis chronic|C0149521|Pancreatitis, Chronic|| +010750|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Phimosis|10034878|Phimosis|10034878|phimosis|C0345326|Congenital phimosis|| +010751|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Photosensitivity reaction|10034972|Photosensitivity reaction|10034972|photosensitivity reaction|C0162830|Dermatitis, Phototoxic|| +010752|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Pollakiuria|10036018|Micturition frequency increased|10071065|increased urination|C0042023|Increased frequency of micturition|| +010753|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Polymorphic light eruption|10036087|Polymorphic light eruption|10036087|polymorphic light eruption|C0031736|Polymorphous light eruption|| +010754|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Polyuria|10036142|Diuresis|10013523|osmotic diuresis|C0032617|Polyuria|underspecified| +010755|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +010756|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Rash generalised|10037858|Generalized rash|10049201|diffuse rash|C0497365|Rash generalised|| +010757|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +010758|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Function kidney decreased|10017474|renal function decline|C0232807|Decreased renal function|| +010759|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Impaired renal function|10021523|impairment in renal function|C1565489|Renal Insufficiency|| +010760|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal function disorder|10038455|renal-related adverse reactions|C1557806|Adverse Event Associated with the Kidney and Genitourinary System|| +010761|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +010762|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Sunburn|10042496|Sunburn|10042496|sunburn|C0038814|Sunburn|| +010763|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +010764|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Thirst|10043458|Thirst|10043458|thirst|C0039971|Thirst|| +010765|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Upper limb fracture|10061394|Upper limb fracture|10061394|fractures upper extremities|C0178316|Fracture of upper limb|| +010766|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infections|C0042029|Urinary tract infection|| +010767|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +010768|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Vulvovaginal candidiasis|10047784|Vulvovaginal candidiasis|10047784|vulvovaginal candidiasis|C0700345|Candidiasis, Vulvovaginal|| +010769|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Vulvovaginal mycotic infection|10064899|Vulvovaginal mycotic infection|10064899|vulvovaginal mycotic infection|C1609512|Vulvovaginal mycotic infection|| +010770|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Vulvovaginal pruritus|10056530|Vulvovaginal pruritus|10056530|vulvovaginal pruritus|C1112214|Vulvovaginal pruritus|| +010771|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|Vulvovaginitis|10047794|Vulvovaginitis|10047794|vulvovaginitis|C0042998|Vulvovaginitis|| +010772|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|34084-4|ADVERSE REACTIONS|||||changes in non-hdl-c|||unmapped| +010773|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|43685-7|WARNINGS AND PRECAUTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|increases serum creatinine|C0700225|Serum creatinine raised|| +010774|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|43685-7|WARNINGS AND PRECAUTIONS|Fracture|10017076|Fracture bone|10017077|bone fracture|C0016658|Fracture|| +010775|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|43685-7|WARNINGS AND PRECAUTIONS|Genital infection fungal|10061180|Genital infection fungal|10061180|genital mycotic infections|C0740330|Genital infection fungal|| +010776|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|43685-7|WARNINGS AND PRECAUTIONS|Glomerular filtration rate decreased|10018358|GFR decreased|10018214|decreases egfr|C0853068|Decreased glomerular filtration rate|| +010777|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|43685-7|WARNINGS AND PRECAUTIONS|Hyperkalaemia|10020646|Hyperkalemia|10020647|hyperkalemia|C0020461|Hyperkalemia|| +010778|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +010779|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|43685-7|WARNINGS AND PRECAUTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +010780|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension symptomatic|10021105|symptomatic hypotension|C0863113|Hypotension symptomatic|| +010781|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +010782|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|43685-7|WARNINGS AND PRECAUTIONS|Hypovolaemia|10021137|Intravascular depletion|10074191|intravascular volume contraction|C0750310|Intravascular depletion|| +010783|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|43685-7|WARNINGS AND PRECAUTIONS|Low density lipoprotein increased|10024910|LDL cholesterol increased|10024055|increased ldl-c|C0549399|Low density lipoprotein increased|| +010784|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Impaired renal function|10021523|impairment in renal function|C1565489|Renal Insufficiency|| +010785|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Renal function abnormal|10038451|renal function abnormalities|C0151746|Abnormal renal function|| +010786|b9057d3b-b104-4f09-8a61-c61ef9d4a3f3|INVOKANA|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Generalized urticaria|10049198|generalized urticaria|C0750016|Generalized urticaria|| +010787|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34066-1|BOXED WARNINGS|Extradural haematoma|10015769|Epidural hematoma|10015013|epidural hematoma|C0238154|Hematoma, Epidural, Cranial|| +010788|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34066-1|BOXED WARNINGS|Haematoma|10018852|Hematoma|10019428|hematomas|C0018944|Hematoma|| +010789|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34066-1|BOXED WARNINGS|Paralysis|10033799|Paralysed|10033798|long-term paralysis|C0522224|Paralysed|| +010790|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34066-1|BOXED WARNINGS|Paralysis|10033799|Paralysis|10033799|permanent paralysis|C0522224|Paralysed|| +010791|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34066-1|BOXED WARNINGS|Spinal cord haematoma|10076051|Spinal hematoma|10055382|spinal hematomas|C0856150|spinal hematoma|| +010792|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +010793|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +010794|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Upper abdominal pain|10046272|upper abdominal pain|C0232492|Upper abdominal pain|| +010795|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +010796|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Allergic oedema|10060934|Allergic edema|10054306|allergic edema|C0847033|Allergic oedema|| +010797|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reaction|C0002792|anaphylaxis|| +010798|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Anaphylactic shock|10002199|Anaphylactic shock|10002199|anaphylactic shock|C0002792|anaphylaxis|| +010799|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +010800|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Cerebral haemorrhage|10008111|Cerebral hemorrhage|10008114|intracerebral bleeds|C2937358|Cerebral Hemorrhage|| +010801|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Compartment syndrome|10010121|Compartment syndrome|10010121|compartment syndrome|C0009492|Compartment syndromes|| +010802|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +010803|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +010804|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +010805|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Epigastric discomfort|10053155|Epigastric discomfort|10053155|epigastric discomfort|C1291078|Epigastric discomfort|| +010806|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Eye haemorrhage|10015926|Hemorrhage intraocular|10019553|bleeding intraocular|C0015402|Eye Hemorrhage|| +010807|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Gastric haemorrhage|10017788|Gastric hemorrhage|10017789|gastric hemorrhage|C0235325|Gastric hemorrhage|| +010808|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Gastritis erosive|10017865|Gastritis erosive|10017865|erosive gastritis|C2243088|Idiopathic erosive/hemorrhagic gastritis|| +010809|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Gastritis haemorrhagic|10017866|Hemorrhagic gastritis|10019604|hemorrhagic gastritis|C2010560|Hemorrhagic gastritis|| +010810|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +010811|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal events|C0426576|Gastrointestinal symptom|| +010812|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal bleeding|10017936|gastrointestinal bleeds|C0017181|Gastrointestinal Hemorrhage|| +010813|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +010814|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Gastrointestinal ulcer|10061459|Gastrointestinal ulcer|10061459|gastrointestinal ulcer|C0237938|Gastrointestinal ulcer|| +010815|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|GERD|10018203|gerd|C0017168|Gastroesophageal reflux disease|| +010816|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Haemarthrosis|10018829|Intraarticular hemorrhage|10055292|intra-articular bleeding|C0018924|Hemarthrosis|| +010817|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decrease in hemoglobin|C0162119|Hemoglobin low|| +010818|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Haemorrhage intracranial|10018985|Bleeding intracranial|10005121|bleeding intracranial|C0151699|Intracranial Hemorrhages|| +010819|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Haemorrhage intracranial|10018985|Intracranial hemorrhage|10022763|intracranial hemorrhage|C0151699|Intracranial Hemorrhages|| +010820|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +010821|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|mbe|C0019080|Hemorrhage|| +010822|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Haemorrhagic erosive gastritis|10067786|Hemorrhagic erosive gastritis|10067798|hemorrhagic erosive gastritis|C2242494|Haemorrhagic erosive gastritis|| +010823|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Haemorrhagic stroke|10019016|Hemorrhagic stroke|10048863|hemorrhagic stroke|C0553692|Brain hemorrhage|| +010824|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +010825|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Muscle haemorrhage|10028309|Muscle bleeding|10071842|bleeding intramuscular|C0151702|Muscle hemorrhage|| +010826|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +010827|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +010828|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Oesophageal ulcer|10030201|Esophageal ulcer|10015451|esophageal ulcer|C0151970|Ulcer of esophagus|| +010829|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Oesophagitis|10030216|Esophagitis|10015461|esophagitis|C0014868|Esophagitis|| +010830|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Pericardial haemorrhage|10034476|Pericardial bleeding|10071860|pericardial bleeding|C0019064|Hemopericardium|| +010831|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +010832|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +010833|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Retroperitoneal haemorrhage|10038980|Retroperitoneal bleeding|10071878|retroperitoneal bleeding|C0151705|Retroperitoneal hemorrhage|| +010834|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Spinal cord haemorrhage|10048992|Intraspinal bleeding|10073572|bleeding intraspinal|C3665900|Intraspinal bleeding|| +010835|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Subarachnoid haemorrhage|10042316|Subarachnoid bleeding|10071890|subarachnoid bleeds|C0038525|Subarachnoid Hemorrhage|| +010836|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Subdural haemorrhage|10042364|Subdural bleeding|10071893|subdural bleeds|C0018946|Hematoma, Subdural|| +010837|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +010838|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +010839|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|43685-7|WARNINGS AND PRECAUTIONS|Cardiac valve replacement complication|10053748|Prosthetic cardiac valve thrombosis|10063176|prosthetic heart valve thrombosis|C0340885|Prosthetic cardiac valve thrombosis|| +010840|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +010841|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|43685-7|WARNINGS AND PRECAUTIONS|Embolic stroke|10014498|Thromboembolic stroke|10057613|thromboembolic stroke|C1112433|Thromboembolic stroke|| +010842|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|43685-7|WARNINGS AND PRECAUTIONS|Embolism|10061169|Thromboembolic event|10043565|thromboembolic events|C0040038|Thromboembolism|| +010843|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|43685-7|WARNINGS AND PRECAUTIONS|Extradural haematoma|10015769|Epidural hematoma|10015013|epidural hematoma|C0238154|Hematoma, Epidural, Cranial||DrugClass +010844|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +010845|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +010846|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|43685-7|WARNINGS AND PRECAUTIONS|Paralysis|10033799|Paralysis|10033799|paralysis|C0522224|Paralysed||DrugClass +010847|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|43685-7|WARNINGS AND PRECAUTIONS|Pericardial effusion|10034474|Pericardial effusion|10034474|pericardial effusions|C0031039|Pericardial effusion|| +010848|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|43685-7|WARNINGS AND PRECAUTIONS|Spinal cord haematoma|10076051|Spinal hematoma|10055382|spinal hematoma|C0856150|spinal hematoma||DrugClass +010849|ba74e3cd-b06f-4145-b284-5fd6b84ff3c9|Pradaxa|43685-7|WARNINGS AND PRECAUTIONS|Transient ischaemic attack|10044390|Transient ischemic attack|10072760|transient ischemic attack|C0007787|Transient Ischemic Attack|| +010850|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +010851|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +010852|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|serum alt increased|C0151905|Alanine aminotransferase increased|| +010853|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema of the tongue|C1304201|Angioedema of tongue|duplicate| +010854|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +010855|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|serum ast increased|C0151904|Aspartate aminotransferase increased|| +010856|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +010857|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +010858|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Bladder pain|10005063|Bladder pain|10005063|bladder pain|C0232849|Bladder pain|| +010859|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Serum bilirubin increased|10040159|increased serum bilirubin|C0859062|Serum bilirubin increased|| +010860|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Blood lactate dehydrogenase increased|10005630|LDH increased|10024051|ldh increased|C0151754|Lactic dehydrogenase activity increased|| +010861|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|BP raised|10006067|bp increased|C0497247|Increase in blood pressure|| +010862|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|blood pressure increased|C0497247|Increase in blood pressure|| +010863|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Breast cancer|10006187|Breast cancer|10006187|breast cancer|C0006142|Malignant neoplasm of breast|| +010864|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Cerebrovascular accident|10008190|Cerebrovascular accident|10008190|cerebrovascular accident|C0038454|Cerebrovascular accident|| +010865|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +010866|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Cystitis|10011781|Cystitis|10011781|cystitis|C0010692|Cystitis|| +010867|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +010868|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +010869|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Dry eye|10013774|Dry eyes|10013778|dry eyes|C0314719|Dryness of eye|| +010870|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +010871|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +010872|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Face oedema|10016029|Edema lips & face|10054495|angioedema of the lips|C1304200|Angioedema of lips|duplicate| +010873|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Face oedema|10016029|Face edema|10016025|angioedema of the face|C0743747|FACE ANGIOEDEMA|duplicate| +010874|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +010875|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|GGT increased|10056910|ggt increased|C0151662|Gamma-glutamyl transferase raised|| +010876|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +010877|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Glaucoma|10018304|Glaucoma|10018304|glaucoma|C0017601|Glaucoma|| +010878|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +010879|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Hypersensitivity vasculitis|10020764|Leukocytoclastic vasculitis|10024377|leukocytoclastic vasculitis|C2973529|Leukocytoclastic vasculitis|| +010880|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +010881|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +010882|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Laryngeal oedema|10023845|Angioedema of larynx|10002427|angioedema of the larynx|C0023052|Laryngeal Edema|duplicate| +010883|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Lip oedema|10024558|Lip edema|10024553|lip edema|C0541923|Lip oedema|| +010884|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Lung neoplasm malignant|10058467|Lung neoplasm malignant|10058467|lung neoplasm malignant|C0242379|Malignant neoplasm of lung|| +010885|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +010886|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +010887|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Neoplasm|10028980|Neoplasm|10028980|neoplasms|C0027651|Neoplasms|| +010888|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Nephrolithiasis|10029148|Nephrolithiasis|10029148|nephrolithiasis|C0392525|Nephrolithiasis|| +010889|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Osteoarthritis|10031161|Osteoarthritis|10031161|osteoarthritis|C0029408|Degenerative polyarthritis|| +010890|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +010891|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Prostate cancer|10060862|Prostate cancer|10060862|prostate cancer|C0376358|Malignant neoplasm of prostate|| +010892|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +010893|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Purpura|10037549|Purpura|10037549|purpura|C0034150|Purpura|| +010894|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +010895|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Respiratory symptom|10075535|Respiratory symptom|10075535|respiratory symptoms|C0037090|Signs and Symptoms, Respiratory|| +010896|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +010897|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +010898|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +010899|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +010900|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Tongue oedema|10043967|Tongue edema|10043955|angioedema of the tongue|C1304201|Angioedema of tongue|duplicate| +010901|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +010902|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Urinary retention|10046555|Urinary retention|10046555|urinary retention|C0080274|Urinary Retention|| +010903|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +010904|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +010905|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Vaginal infection|10046914|Vaginal infection|10046914|vaginal infection|C0404521|Infective vaginitis|| +010906|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +010907|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|34084-4|ADVERSE REACTIONS|Vulvovaginal pruritus|10056530|Vulvovaginal pruritus|10056530|vulvovaginal pruritus|C1112214|Vulvovaginal pruritus|| +010908|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema of the larynx|C0002994|Angioedema|duplicate| +010909|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure diastolic increased|10005739|Diastolic blood pressure increased|10012753|increase in diastolic blood pressure|C0277889|Increased diastolic arterial pressure|| +010910|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|increase blood pressure|C0497247|Increase in blood pressure|| +010911|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure systolic increased|10005760|Blood pressure systolic increased|10005760|increase in systolic blood pressure|C0277884|Increased systolic arterial pressure|| +010912|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|43685-7|WARNINGS AND PRECAUTIONS|Face oedema|10016029|Edema lips & face|10054495|angioedema of the lips|C1304200|Angioedema of lips|duplicate| +010913|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|43685-7|WARNINGS AND PRECAUTIONS|Face oedema|10016029|Face edema|10016025|angioedema of the face|C0743747|FACE ANGIOEDEMA|duplicate| +010914|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension worsened|10020799|worsening of pre-existing hypertension|C0235750|Hypertension worsened|| +010915|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|43685-7|WARNINGS AND PRECAUTIONS|Laryngeal oedema|10023845|Angioedema of larynx|10002427|angioedema of the larynx|C0023052|Laryngeal Edema|duplicate| +010916|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|43685-7|WARNINGS AND PRECAUTIONS|Tongue oedema|10043967|Tongue edema|10043955|angioedema of the tongue|C1304201|Angioedema of tongue|duplicate| +010917|ba9e9e15-e666-4c56-9271-2e24739cfa2d|Myrbetriq|43685-7|WARNINGS AND PRECAUTIONS|Urinary retention|10046555|Urinary retention|10046555|urinary retention|C0080274|Urinary Retention|| +010918|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +010919|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +010920|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|blood pressure increased|C0497247|Increase in blood pressure|| +010921|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +010922|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Claustrophobia|10009244|Claustrophobia|10009244|claustrophobia|C0008909|Claustrophobia|| +010923|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +010924|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +010925|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +010926|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Feeling cold|10016326|Feeling cold|10016326|feeling cold|C0235150|Feeling Cold|| +010927|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +010928|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +010929|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +010930|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Infusion site rash|10059830|Infusion site rash|10059830|infusion site rash|C1167945|Infusion site rash|| +010931|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Injection site haemorrhage|10022067|Injection site haemorrhage|10022067|injection site haemorrhage|C0151698|Injection site hemorrhage|| +010932|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Injection site irritation|10022079|Injection site irritation|10022079|injection site irritation|C0521498|Injection site irritation|| +010933|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +010934|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reaction|C0151735|Injection site reaction|| +010935|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +010936|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +010937|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +010938|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Neck pain|10028836|Neck pain|10028836|neck pain|C0007859|Neck Pain|| +010939|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritis|C0033774|Pruritus|| +010940|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +010941|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|43685-7|WARNINGS AND PRECAUTIONS|Exposure to radiation|10073306|Exposure to radiation|10073306|long-term cumulative radiation exposure|C0015333|Exposure to radiation|underspecified| +010942|bb5a5043-0f51-11df-8a39-0800200c9a66|Amyvid|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Cancer|10007050|cancer|C0006826|Malignant Neoplasms|| +010943|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|mortality|C1306577|Death (finding)|| +010944|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34066-1|BOXED WARNINGS|Developmental delay|10012559|Developmental disturbance|10012563|adverse developmental outcomes|C0000768|Congenital Abnormality|| +010945|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34066-1|BOXED WARNINGS|Renal impairment|10062237|Renal impairment|10062237|new onset renal impairment|C1565489|Renal Insufficiency|| +010946|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +010947|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Renal failure acute|10038436|renal failure acute|C0022660|Kidney Failure, Acute|| +010948|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +010949|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Increased serum creatinine|10021678|increased serum creatinine|C0700225|Serum creatinine raised|| +010950|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|increases in serum creatinine|C0700225|Serum creatinine raised|| +010951|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiac events|C0741923|cardiac event||DrugClass +010952|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Chills|10008531|Rigors|10039177|rigors|C0424790|Rigor - Temperature-associated observation|| +010953|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Clostridium difficile colitis|10009657|Diarrhea, Clostridium difficile|10012734|clostridium difficile -associated diarrhea|C0235952|Clostridium difficile diarrhea|| +010954|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|died|C1306577|Death (finding)||DrugClass +010955|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +010956|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +010957|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Drug cross-reactivity|10076743|Drug cross-reactivity|10076743|cross-reactivity|C4049218||| +010958|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Taste disturbance|10043132|taste disturbance|C0013378|Dysgeusia|| +010959|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|electrocardiogram qtc interval prolonged|C0855333|Electrocardiogram QT corrected interval prolonged|| +010960|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity||DrugClass +010961|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infectious events|C3714514|Infection||DrugClass +010962|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +010963|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Multi-organ failure|10028154|Multi-organ failure|10028154|multi-organ failure|C0026766|Multiple Organ Failure||DrugClass +010964|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +010965|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Nephropathy toxic|10029155|Nephrotoxicity|10067571|nephrotoxicity|C0599918|Nephrotoxicity|| +010966|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus||DrugClass +010967|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema||DrugClass +010968|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Renal disorder|10038428|Renal disorder|10038428|renal events|C1406663|symptoms; kidney|| +010969|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +010970|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal insufficiency|10038474|renal insufficiency|C1565489|Renal Insufficiency|| +010971|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal function disorder|10038455|renal adverse events|C1557806|Adverse Event Associated with the Kidney and Genitourinary System|| +010972|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +010973|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Respiratory symptom|10075535|Respiratory symptom|10075535|respiratory events|C1320717|Respiratory event||DrugClass +010974|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Septic shock|10040070|Septic shock|10040070|septic shock|C0036983|Septic Shock||DrugClass +010975|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +010976|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|34084-4|ADVERSE REACTIONS|||||foamy urine|C2188715|urine is frothy or foamy|unmapped| +010977|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Activated partial thromboplastin time abnormal|10000631|Activated partial thromboplastin time abnormal|10000631|interferes with activated partial thromboplastin time|C0853633|Activated partial thromboplastin time abnormal|| +010978|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +010979|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Clostridium difficile colitis|10009657|Diarrhea, Clostridium difficile|10012734|clostridium difficile- associated diarrhea|C0235952|Clostridium difficile diarrhea||DrugClass +010980|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Coagulation factor X level abnormal|10061774|Coagulation factor X level abnormal|10061774|affected coagulation based factor x activity assay|C0855414|Coagulation factor X level abnormal|| +010981|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Coagulation test abnormal|10063557|Coagulation test abnormal|10063557|interfered with tests to monitor coagulation|C1504379|Coagulation test abnormal|| +010982|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Coagulation time abnormal|10009791|Coagulation time abnormal|10009791|affected activated clotting time|C0549543|Coagulation time abnormal|| +010983|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +010984|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +010985|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Developmental delay|10012559|Developmental disturbance|10012563|adverse developmental outcomes|C0000768|Congenital Abnormality||Animal +010986|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +010987|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Drug cross-reactivity|10076743|Drug cross-reactivity|10076743|cross-reactivity|C4049218||| +010988|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|prolonged the qtc interval|C0855333|Electrocardiogram QT corrected interval prolonged|| +010989|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +010990|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +010991|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|International normalised ratio abnormal|10022592|International normalized ratio abnormal|10062457|affected international normalized ratio|C0580417|INR - international normal ratio abnormal|| +010992|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Prothrombin time abnormal|10037057|Prothrombin time abnormal|10037057|affected prothrombin time|C0580412|Prothrombin time abnormal|| +010993|c09655ea-7af5-4443-a769-86e416214f59|Vibativ|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Renal function disorder|10038455|renal adverse events|C1557806|Adverse Event Associated with the Kidney and Genitourinary System|| +010994|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34066-1|BOXED WARNINGS|Infection susceptibility increased|10021866|Infection susceptibility increased|10021866|increased susceptibility to infection|C0236171|Increased susceptibility to infections|| +010995|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34066-1|BOXED WARNINGS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +010996|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34066-1|BOXED WARNINGS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +010997|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34066-1|BOXED WARNINGS|Post transplant lymphoproliferative disorder|10051358|Post transplant lymphoproliferative disorder|10051358|post-transplant lymphoproliferative disorder|C0432487|Post-transplant lymphoproliferative disorder|| +010998|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +010999|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +011000|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Acne|10000496|Acne|10000496|acne|C0702166|Acne|| +011001|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +011002|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +011003|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|American trypanosomiasis|10001935|Chagas' disease with other organ involvement|10008386|chagas encephalitis|C1392409|Chagas; encephalitis (manifestation)|duplicate| +011004|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +011005|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +011006|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Aphthous ulcer|10002959|Aphthous stomatitis|10002958|aphthous stomatitis|C0038363|Aphthous Stomatitis|| +011007|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Arteriovenous fistula thrombosis|10003192|Arteriovenous fistula thrombosis|10003192|arteriovenous fistula thrombosis|C0340909|Arteriovenous fistula thrombosis|| +011008|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +011009|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +011010|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +011011|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Bacterial infection|10060945|Bacterial infection|10060945|infections bacterial|C0004623|Bacterial Infections|| +011012|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Blood creatinine increased|10005483|blood creatinine increased|C0235431|Blood creatinine increased|| +011013|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +011014|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Central nervous system infection|10061036|Central nervous system infection|10061036|cns infections|C0007684|Central Nervous System Infection|| +011015|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Cerebral aspergillosis|10051597|Cerebral aspergillosis|10051597|cerebral aspergillosis|C0948691|Cerebral aspergillosis|| +011016|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Chronic allograft nephropathy|10063209|Chronic allograft nephropathy|10063209|chronic allograft nephropathy|C0403592|Chronic rejection of renal transplant|| +011017|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Complications of transplanted kidney|10010185|Complications of transplanted kidney|10010185|complications of transplanted kidney|C1261281|Disorder of transplanted kidney|| +011018|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +011019|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +011020|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Cytomegalovirus infection|10011831|CMV infection|10009703|infections cmv|C0010823|Cytomegalovirus Infections|| +011021|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Cytomegalovirus infection|10011831|Cytomegalovirus infection|10011831|cytomegalovirus infection|C0010823|Cytomegalovirus Infections|| +011022|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +011023|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Diabetes mellitus|10012601|Post transplant diabetes mellitus|10063634|nodat|C3896643|New Onset Diabetes After Transplant|| +011024|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +011025|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +011026|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Dyslipidaemia|10058108|Dyslipidemia|10058110|dyslipidemia|C0242339|Dyslipidemias|| +011027|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +011028|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Dysuria|10013990|Dysuria|10013990|dysuria|C0013428|Dysuria|| +011029|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Encephalitis|10014581|Encephalitis|10014581|chagas encephalitis|C1392409|Chagas; encephalitis (manifestation)|duplicate| +011030|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Fungal infection|10017533|Fungal infection|10017533|infections fungal|C0026946|Mycoses|| +011031|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Fungal infection|10017533|Infection fungal (mycotic)|10021815|mucocutaneous fungal infections|C0026946|Mycoses|| +011032|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Fungal skin infection|10017543|Fungal skin infection|10017543|skin fungal infections|C0011630|Dermatomycoses|| +011033|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Guillain-Barre syndrome|10018767|Guillain-Barre syndrome|10018767|guillain-barre syndrome|C0018378|Guillain-Barre Syndrome|| +011034|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Haematoma|10018852|Hematoma|10019428|hematoma|C0018944|Hematoma|| +011035|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +011036|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011037|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Herpes virus infection|10019973|Herpes infection|10019941|herpes infections|C0019372|Herpesviridae Infections|| +011038|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Human polyomavirus infection|10057366|Human polyomavirus infection|10057366|infections polyoma virus|C0949804|Polyomavirus Infections|| +011039|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Hydronephrosis|10020524|Hydronephrosis|10020524|hydronephrosis|C0020295|Hydronephrosis|| +011040|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Hypercholesterolaemia|10020603|Hypercholesterolemia|10020604|hypercholesterolemia|C0020443|Hypercholesterolemia|| +011041|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +011042|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +011043|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Hyperkalaemia|10020646|Hyperkalemia|10020647|hyperkalemia|C0020461|Hyperkalemia|| +011044|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +011045|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Hyperuricaemia|10020903|Hyperuricemia|10020907|hyperuricemia|C0740394|Hyperuricemia|| +011046|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +011047|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +011048|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +011049|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +011050|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +011051|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infectious etiology|C3714514|Infection|| +011052|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +011053|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +011054|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +011055|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|JC virus infection|10023163|JC virus infection|10023163|jc virus|C0857836|JC virus infection|| +011056|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +011057|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Lymphocele|10048642|Lymphocele|10048642|lymphocele|C0024248|Lymphocele|| +011058|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Meningitis cryptococcal|10027209|Cryptococcal meningitis|10011487|cryptococcal meningitis|C0085436|Meningitis, Cryptococcal|| +011059|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +011060|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +011061|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +011062|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +011063|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Nervous system disorder|10029202|Nervous system disorder|10029202|cns ptld|C0007682|CNS disorder|duplicate| +011064|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +011065|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +011066|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Polyomavirus-associated nephropathy|10065381|BK virus nephropathy|10065333|bk virus-associated nephropathy|C1697878|BK virus nephropathy|| +011067|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Polyomavirus-associated nephropathy|10065381|Polyomavirus-associated nephropathy|10065381|polyoma virus nephropathy|C1696946|Polyomavirus-associated nephropathy|| +011068|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Post transplant lymphoproliferative disorder|10051358|Post transplant lymphoproliferative disorder|10051358|ptld|C0432487|Post-transplant lymphoproliferative disorder|| +011069|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|pml|C0023524|Leukoencephalopathy, Progressive Multifocal|| +011070|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +011071|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +011072|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Renal artery stenosis|10038378|Renal artery stenosis|10038378|renal artery stenosis|C0035067|Renal Artery Stenosis|| +011073|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +011074|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Renal tubular necrosis|10038540|Renal tubular necrosis|10038540|renal tubular necrosis|C1720775|Renal tubular necrosis|| +011075|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Skin cancer|10040808|Cancer of skin (excl melanoma)|10007116|non-melanoma skin cancer|C0699893|Skin carcinoma|| +011076|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +011077|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Transplant dysfunction|10074860|Graft dysfunction|10059677|graft dysfunction|C1167870|Graft dysfunction|| +011078|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +011079|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +011080|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory infection|10046300|upper respiratory infection|C0041912|Upper Respiratory Infections|| +011081|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Urinary incontinence|10046543|Urinary incontinence|10046543|urinary incontinence|C0042024|Urinary Incontinence|| +011082|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +011083|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Viral infection|10047461|Viral infection|10047461|infections viral|C0042769|Virus Diseases|| +011084|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +011085|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|West Nile viral infection|10057293|West Nile virus meningoencephalitis|10065184|west nile encephalitis|C0751583|Encephalitis, West Nile Fever|| +011086|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|34084-4|ADVERSE REACTIONS|Wound dehiscence|10048031|Wound dehiscence|10048031|wound dehiscence|C0259768|Wound dehiscence|| +011087|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|BK virus infection|10055181|BK virus infection|10055181|bk virus infection|C1096691|BK virus infection|| +011088|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Bacterial infection|10060945|Bacterial infection|10060945|bacterial infections|C0004623|Bacterial Infections|| +011089|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Cytomegalovirus infection|10011831|CMV infection|10009703|cmv infections|C0010823|Cytomegalovirus Infections|| +011090|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Cytomegalovirus infection|10011831|Cytomegalovirus infection|10011831|cytomegalovirus infections|C0010823|Cytomegalovirus Infections|| +011091|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +011092|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Fungal infection|10017533|Fungal infection|10017533|fungal infections|C0026946|Mycoses|| +011093|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Graft loss|10048748|Graft loss|10048748|graft loss|C0877042|Graft loss|| +011094|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Herpes virus infection|10019973|Herpes infection|10019941|herpes infections|C0019372|Herpesviridae Infections|| +011095|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Infection protozoal|10021859|Infection protozoal|10021859|protozoal infections|C0033740|Protozoan Infections|| +011096|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +011097|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|JC virus infection|10023163|JC virus infection|10023163|jc virus|C0857836|JC virus infection|| +011098|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms||DrugClass +011099|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +011100|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Polyomavirus-associated nephropathy|10065381|Polyomavirus-associated nephropathy|10065381|pvan|C1696946|Polyomavirus-associated nephropathy|| +011101|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Post transplant lymphoproliferative disorder|10051358|Post transplant lymphoproliferative disorder|10051358|post-transplant lymphoproliferative disorder|C0432487|Post-transplant lymphoproliferative disorder|| +011102|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|pml|C0023524|Leukoencephalopathy, Progressive Multifocal|| +011103|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Function kidney decreased|10017474|deteriorating renal function|C1278220|Deteriorating renal function|| +011104|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Renal transplant failure|10074495|Renal graft loss|10048749|kidney graft loss|C0877690|Renal graft loss|| +011105|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Skin cancer|10040808|Skin neoplasm malignant|10040895|malignancies skin|C0007114|Malignant neoplasm of skin|| +011106|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Transplant rejection|10044439|Acute graft rejection|10066615|post-transplant acute rejection|C1736177|Acute graft rejection|| +011107|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Transplant rejection|10044439|Graft rejection|10018650|graft rejections|C0018129|Graft Rejection|| +011108|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +011109|c16ac648-d5d2-9f7d-8637-e2328572754e|NULOJIX|43685-7|WARNINGS AND PRECAUTIONS|Viral infection|10047461|Viral infection|10047461|viral infections|C0042769|Virus Diseases|| +011110|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +011111|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +011112|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +011113|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +011114|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +011115|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|34084-4|ADVERSE REACTIONS|Erythromelalgia|10015284|Erythromelalgia|10015284|erythromelalgia|C0014804|Erythromelalgia|| +011116|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011117|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +011118|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +011119|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Shoulder pain|10040617|shoulder pain|C0037011|Shoulder Pain|| +011120|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +011121|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|34084-4|ADVERSE REACTIONS|Neutralising antibodies positive|10064980|Neutralizing antibodies positive|10064983|neutralizing activity|C1609515|Neutralising antibodies positive|| +011122|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +011123|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +011124|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|43685-7|WARNINGS AND PRECAUTIONS|Acute myeloid leukaemia|10000880|AML|10001941|aml|C0023467|Leukemia, Myelocytic, Acute|| +011125|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|43685-7|WARNINGS AND PRECAUTIONS|Acute myeloid leukaemia|10000880|Acute myeloid leukemia|10000886|acute myelogenous leukemia|C0023467|Leukemia, Myelocytic, Acute|| +011126|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|43685-7|WARNINGS AND PRECAUTIONS|Blast cell count increased|10062274|Blast cell count increased|10062274|increases blast cell counts|C1262102|Blast cell count increased|| +011127|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|43685-7|WARNINGS AND PRECAUTIONS|Bone marrow reticulin fibrosis|10069678|Bone marrow reticulin fibrosis|10069678|reticulin fiber formation within the bone marrow|C1335762|Bone marrow reticulin fibrosis|| +011128|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|43685-7|WARNINGS AND PRECAUTIONS|Embolism|10061169|Thromboembolic event|10043565|thromboembolic complications|C0040038|Thromboembolism|| +011129|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|43685-7|WARNINGS AND PRECAUTIONS|Myeloblast count increased|10050766|Myeloblast count increased|10050766|increase in circulating myeloblasts|C0919781|Myeloblast count increased|| +011130|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|43685-7|WARNINGS AND PRECAUTIONS|Myelodysplastic syndrome|10028533|Myelodysplastic syndrome|10028533|mds|C3463824|MYELODYSPLASTIC SYNDROME|| +011131|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|43685-7|WARNINGS AND PRECAUTIONS|Myelofibrosis|10028537|Myelofibrosis|10028537|marrow fibrosis|C0026987|Myelofibrosis|| +011132|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|43685-7|WARNINGS AND PRECAUTIONS|Platelet count increased|10051608|Platelet count increased|10051608|increases in platelet counts|C0857460|Increased number of platelets|| +011133|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|43685-7|WARNINGS AND PRECAUTIONS|Portal vein thrombosis|10036206|Portal vein thrombosis|10036206|portal vein thrombosis|C0155773|Portal vein thrombosis|| +011134|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia aggravated|10043556|worsened thrombocytopenia|C0853334|Thrombocytopenia aggravated|| +011135|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +011136|c45f9a58-37c1-4f76-8e36-97d38c577037|Nplate|43685-7|WARNINGS AND PRECAUTIONS|Thrombosis|10043607|Thrombosis|10043607|thrombotic complications|C0040053|Thrombosis|| +011137|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +011138|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +011139|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +011140|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +011141|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +011142|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +011143|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +011144|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Drug withdrawal syndrome|10013754|Opiate withdrawal symptoms|10030882|opioid withdrawal|C0029104|Opioid withdrawal|| +011145|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Feeling of body temperature change|10061458|Feeling of body temperature change|10061458|feeling of body temperature change|C0549385|Feeling of body temperature change|| +011146|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +011147|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +011148|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Gastrointestinal pain|10017999|Gastrointestinal cramps|10049136|gastrointestinal cramping|C0877664|Gastrointestinal cramps|| +011149|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +011150|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +011151|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Diaphoresis|10012703|diaphoresis|C0700590|Increased sweating|| +011152|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +011153|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +011154|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarctions|C0027051|Myocardial Infarction|| +011155|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +011156|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +011157|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Piloerection|10035039|Piloerection|10035039|piloerection|C0031924|Piloerection|| +011158|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Sudden death|10042434|Sudden death|10042434|sudden death|C0011071|Sudden death|| +011159|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +011160|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +011161|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|persistent diarrhea|C0743188|diarrhea persistent|| +011162|c488fb7c-0a5b-487c-b452-996809d1cb99|Relistor|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +011163|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +011164|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +011165|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +011166|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +011167|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Bacterial food poisoning|10004022|Bacterial food poisoning|10004022|foodborne salmonella sepsis|C1410842|poisoning; food, due to salmonella, with sepsis|duplicate| +011168|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Blood glucose decreased|10005555|Glucose decreased|10018419|fingerstick glucose value of <=50 mg/dl|C1704381|Glucose decreased|| +011169|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +011170|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Face oedema|10016029|Face edema|10016025|facial edema|C0542571|Facial edema|| +011171|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Fracture|10017076|Fracture|10017076|fracture|C0016658|Fracture|| +011172|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Gastroenteritis|10017888|Gastroenteritis|10017888|gastroenteritis|C0017160|Gastroenteritis|| +011173|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011174|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +011175|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity-related events|C0020517|Hypersensitivity|| +011176|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +011177|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Immune thrombocytopenic purpura|10074667|Idiopathic thrombocytopenic purpura|10021245|idiopathic thrombocytopenic purpura|C0398650|Immune thrombocytopenic purpura|| +011178|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Lymphocyte count decreased|10025256|Absolute lymphocyte count decreased|10065395|absolute lymphocyte count decreases|C1699631|Absolute lymphocyte count decreased|| +011179|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Lymphocyte count decreased|10025256|Lymphocyte count decreased|10025256|decrease in lymphocyte count|C0853986|Lymphocyte count decreased|| +011180|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Lymphocyte count decreased|10025256|Lymphocyte count low|10025259|lymphocyte count <=750 cells/microl|C0853986|Lymphocyte count decreased|| +011181|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +011182|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +011183|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infection|C0029118|Opportunistic Infections|| +011184|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Pancreatitis acute|10033647|Acute pancreatitis|10000971|acute pancreatitis|C0001339|Acute pancreatitis|| +011185|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Salmonella sepsis|10058878|Salmonella sepsis|10058878|foodborne salmonella sepsis|C1410842|poisoning; food, due to salmonella, with sepsis|duplicate| +011186|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +011187|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Skin exfoliation|10040844|Skin exfoliation|10040844|exfoliative skin conditions|C0851710|Exfoliative conditions|| +011188|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +011189|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +011190|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +011191|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +011192|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Generalized urticaria|10049198|generalized urticaria|C0750016|Generalized urticaria|| +011193|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +011194|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +011195|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +011196|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +011197|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|43685-7|WARNINGS AND PRECAUTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia||DrugClass +011198|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +011199|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|43685-7|WARNINGS AND PRECAUTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +011200|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis acute|10033647|Acute pancreatitis|10000971|acute pancreatitis|C0001339|Acute pancreatitis|| +011201|c5116390-e0fe-4969-94cb-e9de5165fbab|ONGLYZA|43685-7|WARNINGS AND PRECAUTIONS|Skin exfoliation|10040844|Skin exfoliation|10040844|exfoliative skin conditions|C0851710|Exfoliative conditions|| +011202|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +011203|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34066-1|BOXED WARNINGS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +011204|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34066-1|BOXED WARNINGS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +011205|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34066-1|BOXED WARNINGS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhagic events|C0019080|Hemorrhage|| +011206|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34066-1|BOXED WARNINGS|Impaired healing|10021519|Wound healing disturbance of|10048037|impaired wound healing|C0151692|Impaired wound healing||DrugClass +011207|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +011208|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +011209|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Blood thyroid stimulating hormone increased|10005833|Increased TSH|10021690|increased tsh levels|C0586553|Raised TSH level|| +011210|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|deaths|C1306577|Death (finding)|| +011211|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +011212|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +011213|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolic events|C3544094|Arterial thromboembolism|| +011214|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +011215|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +011216|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +011217|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage events|C0017181|Gastrointestinal Hemorrhage|| +011218|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +011219|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +011220|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011221|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +011222|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Hypoalbuminaemia|10020942|Hypoalbuminemia|10020943|hypoalbuminemia|C0239981|Hypoalbuminemia|| +011223|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +011224|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Impaired healing|10021519|Wound healing disturbance of|10048037|impaired wound healing|C0151692|Impaired wound healing|| +011225|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +011226|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Intestinal obstruction|10022687|Intestinal obstruction|10022687|intestinal obstruction|C0021843|Intestinal Obstruction|| +011227|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Lacrimation increased|10023644|Lacrimation increased|10023644|lacrimation increased|C0152227|Excessive tearing|| +011228|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Mucosal inflammation|10028116|Mucosal inflammation|10028116|mucosal inflammation|C0333355|Inflammatory disease of mucous membrane|| +011229|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Nephrotic syndrome|10029164|Nephrotic syndrome|10029164|nephrotic syndrome|C0027726|Nephrotic Syndrome|| +011230|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Neutralising antibodies|10058063|Neutralizing antibodies|10058033|neutralizing antibodies|C1609515|Neutralising antibodies positive|| +011231|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +011232|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +011233|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysesthesia syndrome|10054524|palmar-plantar erythrodysesthesia syndrome|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +011234|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +011235|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|reversible posterior leukoencephalopathy syndrome|C3160858|Posterior reversible encephalopathy syndrome|| +011236|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +011237|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Pulmonary haemorrhage|10037394|Pulmonary hemorrhage|10037397|pulmonary hemorrhage|C0151701|Pulmonary hemorrhage|| +011238|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +011239|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +011240|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +011241|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +011242|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|34084-4|ADVERSE REACTIONS|Thyroid disorder|10043709|Dysfunction thyroid|10013907|thyroid dysfunction|C0348024|Thyroid dysfunction|| +011243|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Ascites|10003445|Ascites|10003445|ascites|C0003962|Ascites|| +011244|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +011245|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +011246|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +011247|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Cerebral ischaemia|10008120|Cerebral ischemia|10008121|cerebral ischemia|C0917798|Cerebral Ischemia|| +011248|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Cerebrovascular accident|10008190|cerebrovascular accident|C0038454|Cerebrovascular accident|| +011249|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Chest discomfort|10008469|Chest tightness|10008492|chest tightness|C0232292|Chest tightness|| +011250|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +011251|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +011252|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Chills|10008531|Rigors|10039177|rigors|C0424790|Rigor - Temperature-associated observation|| +011253|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +011254|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +011255|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|ates|C3544094|Arterial thromboembolism|| +011256|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Encephalopathy|10014625|Encephalopathy|10014625|new onset encephalopathy|C0085584|Encephalopathies|| +011257|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +011258|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +011259|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +011260|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +011261|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|General physical health deterioration|10049438|General physical health deterioration|10049438|clinical deterioration|C0563273|General health deterioration|| +011262|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +011263|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhagic events|C0019080|Hemorrhage|| +011264|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Hepatorenal syndrome|10019846|Hepatorenal syndrome|10019846|hepatorenal syndrome|C0019212|Hepatorenal Syndrome|| +011265|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +011266|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +011267|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +011268|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Hypoxia|10021143|Hypoxia|10021143|hypoxia|C0242184|Hypoxia|| +011269|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Impaired healing|10021519|Wound healing disturbance of|10048037|impaired wound healing|C0151692|Impaired wound healing||DrugClass +011270|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|irrs|C0948715|Infusion related reaction|| +011271|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Muscle spasms|10028334|Spasms|10041408|spasms|C0037763|Spasm|| +011272|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +011273|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Nephrotic syndrome|10029164|Nephrotic syndrome|10029164|nephrotic syndrome|C0027726|Nephrotic Syndrome|| +011274|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Nervous system disorder|10029202|Neurologic complication|10029284|neurologic sequelae|C0746864|neurologic sequelae|| +011275|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +011276|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|reversible posterior leukoencephalopathy syndrome|C3160858|Posterior reversible encephalopathy syndrome|| +011277|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +011278|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Supraventricular tachycardia|10042604|Supraventricular tachycardia|10042604|supraventricular tachycardia|C0039240|Supraventricular tachycardia|| +011279|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Thyroid disorder|10043709|Dysfunction thyroid|10013907|thyroid dysfunction|C0348024|Thyroid dysfunction|| +011280|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Tremor|10044565|Tremor|10044565|tremors|C0040822|Tremor|| +011281|c6080942-dee6-423e-b688-1272c2ae90d4|CYRAMZA|43685-7|WARNINGS AND PRECAUTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +011282|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +011283|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +011284|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +011285|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +011286|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Breast cancer|10006187|Malignant breast neoplasm|10025541|malignancies breast|C0006142|Malignant neoplasm of breast|| +011287|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +011288|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Colorectal cancer|10061451|Colorectal cancer|10061451|malignancies colorectal|C1527249|Colorectal Cancer|| +011289|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +011290|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +011291|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Diverticulitis|10013538|Diverticulitis|10013538|diverticulitis|C0012813|Diverticulitis|| +011292|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +011293|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Erythrodermic psoriasis|10015278|Erythrodermic psoriasis|10015278|erythrodermic psoriasis|C0748052|Erythrodermic psoriasis|| +011294|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +011295|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011296|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +011297|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +011298|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +011299|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Injection site bruising|10022052|Injection site bruising|10022052|injection site bruising|C0521508|Injection site bruising|| +011300|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +011301|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Injection site haemorrhage|10022067|Injection site hemorrhage|10022068|injection site hemorrhage|C0151698|Injection site hemorrhage|| +011302|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Injection site induration|10022075|Injection site induration|10022075|injection site induration|C0521509|Induration at injection site|| +011303|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Injection site irritation|10022079|Injection site irritation|10022079|injection site irritation|C0521498|Injection site irritation|| +011304|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +011305|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|injection site pruritus|C0852995|Injection site pruritus|| +011306|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +011307|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Injection site swelling|10053425|Injection site swelling|10053425|injection site swelling|C0151605|Injection site edema|| +011308|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Laryngeal pain|10023848|Pharyngolaryngeal pain|10034844|pharyngolaryngeal pain|C0858635|Pharyngolaryngeal pain|| +011309|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Malignant melanoma|10025650|Malignant melanoma|10025650|malignancies melanoma|C0025202|melanoma|| +011310|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +011311|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +011312|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +011313|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +011314|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Oral infection|10048685|Oral infection|10048685|dental infections|C0555971|Oral infection|| +011315|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|reversible posterior leukoencephalopathy syndrome|C3160858|Posterior reversible encephalopathy syndrome|| +011316|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Prostate cancer|10060862|Malignant neoplasm of prostate|10026389|malignancies prostate|C0376358|Malignant neoplasm of prostate|| +011317|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +011318|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Pustular psoriasis|10037575|Pustular psoriasis|10037575|pustular psoriasis|C0152081|Pustular psoriasis|| +011319|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +011320|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Skin cancer|10040808|Cancer of skin (excl melanoma)|10007116|non-melanoma skin cancer|C0699893|Skin carcinoma|| +011321|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +011322|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +011323|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +011324|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +011325|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Appendicitis|10003011|Appendicitis|10003011|appendicitis|C0003615|Appendicitis|| +011326|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Bacterial infection|10060945|Bacterial infection|10060945|bacterial infections|C0004623|Bacterial Infections|| +011327|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +011328|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Cholecystitis|10008612|Cholecystitis|10008612|cholecystitis|C0008325|Cholecystitis|| +011329|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Confusional state|10010305|Confusion|10010300|confusion|C0009676|Confusion|| +011330|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal outcomes|C1306577|Death (finding)|| +011331|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Diverticulitis|10013538|Diverticulitis|10013538|diverticulitis|C0012813|Diverticulitis|| +011332|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Fungal infection|10017533|Fungal infection|10017533|fungal infections|C0026946|Mycoses|| +011333|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Gastroenteritis|10017888|Gastroenteritis|10017888|gastroenteritis|C0017160|Gastroenteritis|| +011334|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011335|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +011336|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +011337|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Latent infection appearance of|10024017|reactivation of latent infections|C0858743|Latent infection appearance of|| +011338|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancy|C1306459|Primary malignant neoplasm|| +011339|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Osteomyelitis|10031252|Osteomyelitis|10031252|osteomyelitis|C0029443|Osteomyelitis|| +011340|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +011341|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|rpls|C3160858|Posterior reversible encephalopathy syndrome|| +011342|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizures|10039910|seizures|C0036572|Seizures|| +011343|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +011344|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Squamous cell carcinoma of skin|10041834|Squamous cell carcinoma of skin|10041834|cutaneous squamous cell carcinomas|C0553723|Squamous cell carcinoma of skin|| +011345|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|TB|10043148|tb|C0041296|Tuberculosis|| +011346|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +011347|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infections|C0042029|Urinary tract infection|| +011348|c77a9664-e3bb-4023-b400-127aa53bca2b|STELARA|43685-7|WARNINGS AND PRECAUTIONS|Viral infection|10047461|Viral infection|10047461|viral infections|C0042769|Virus Diseases|| +011349|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +011350|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +011351|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +011352|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +011353|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Blood glucose decreased|10005555|Glucose decreased|10018419|finger stick glucose <=54 mg/dl|C1704381|Glucose decreased|| +011354|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Blood uric acid increased|10005861|Uric acid increased|10066980|increases in uric acid|C1868912|Uric acid increased|| +011355|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Bronchial hyperreactivity|10066091|Bronchial hyperreactivity|10066091|bronchial hyperreactivity|C0085129|Bronchial Hyperreactivity|| +011356|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +011357|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +011358|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +011359|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +011360|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011361|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Hyperlipidaemia|10062060|Hyperlipidemia|10020667|hyperlipidemia|C0020473|Hyperlipidemia|| +011362|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +011363|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +011364|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Hypertriglyceridaemia|10020869|Hypertriglyceridemia|10020870|hypertriglyceridemia|C0020557|Hypertriglyceridemia|| +011365|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycaemia|10020993|hypoglycemic events|C0020615|Hypoglycemia|| +011366|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +011367|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Mouth ulceration|10028034|Mouth ulceration|10028034|mouth ulceration|C0149745|Oral Ulcer|| +011368|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +011369|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +011370|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +011371|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Pancreatitis acute|10033647|Acute pancreatitis|10000971|acute pancreatitis|C0001339|Acute pancreatitis|| +011372|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +011373|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +011374|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Skin exfoliation|10040844|Skin exfoliation|10040844|localized skin exfoliation|C0237849|Peeling of skin|| +011375|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +011376|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +011377|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +011378|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +011379|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +011380|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +011381|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema||DrugClass +011382|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|43685-7|WARNINGS AND PRECAUTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia||DrugClass +011383|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|43685-7|WARNINGS AND PRECAUTIONS|Arthralgia|10003239|Joint pain|10023222|joint pain|C0003862|Arthralgia||DrugClass +011384|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +011385|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +011386|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|43685-7|WARNINGS AND PRECAUTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +011387|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis acute|10033647|Acute pancreatitis|10000971|acute pancreatitis|C0001339|Acute pancreatitis|| +011388|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +011389|c797ea5c-cab7-494b-9044-27eba0cfe40f|Tradjenta|43685-7|WARNINGS AND PRECAUTIONS|Skin exfoliation|10040844|Skin exfoliation|10040844|exfoliative skin conditions|C0851710|Exfoliative conditions|| +011390|c89d3ecc-4f4c-4566-8808-79152344194d|AdreView|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +011391|c89d3ecc-4f4c-4566-8808-79152344194d|AdreView|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +011392|c89d3ecc-4f4c-4566-8808-79152344194d|AdreView|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011393|c89d3ecc-4f4c-4566-8808-79152344194d|AdreView|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +011394|c89d3ecc-4f4c-4566-8808-79152344194d|AdreView|34084-4|ADVERSE REACTIONS|Injection site bruising|10022052|Injection site bruising|10022052|injection site bruising|C0521508|Injection site bruising|| +011395|c89d3ecc-4f4c-4566-8808-79152344194d|AdreView|34084-4|ADVERSE REACTIONS|Injection site haematoma|10022066|Injection site hematoma|10055371|injection site hematoma|C0542008|Injection site haematoma|| +011396|c89d3ecc-4f4c-4566-8808-79152344194d|AdreView|34084-4|ADVERSE REACTIONS|Injection site haemorrhage|10022067|Injection site hemorrhage|10022068|injection site hemorrhage|C0151698|Injection site hemorrhage|| +011397|c89d3ecc-4f4c-4566-8808-79152344194d|AdreView|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site problems|C0151735|Injection site reaction|| +011398|c89d3ecc-4f4c-4566-8808-79152344194d|AdreView|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +011399|c89d3ecc-4f4c-4566-8808-79152344194d|AdreView|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +011400|c89d3ecc-4f4c-4566-8808-79152344194d|AdreView|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +011401|c89d3ecc-4f4c-4566-8808-79152344194d|AdreView|43685-7|WARNINGS AND PRECAUTIONS|Gasping syndrome|10069162|Gasping syndrome|10069162|gasping syndrome|C2609173|Gasping syndrome|| +011402|c89d3ecc-4f4c-4566-8808-79152344194d|AdreView|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +011403|c89d3ecc-4f4c-4566-8808-79152344194d|AdreView|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|transient episode of hypertension|C0152170|Transient hypertension|| +011404|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34066-1|BOXED WARNINGS|Drug cross-reactivity|10076743|Drug cross-reactivity|10076743|inhibition of endogenous leptin action|C3808947|Decreased leptin|underspecified| +011405|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34066-1|BOXED WARNINGS|Drug effect decreased|10013678|Drug effect decreased|10013678|loss of efficacy|C0521845|Drug action decreased|| +011406|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34066-1|BOXED WARNINGS|Drug ineffective|10013709|Efficacy lack of|10048506|loss of efficacy|C0235828|Lack of Efficacy|| +011407|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34066-1|BOXED WARNINGS|Infection|10021789|Infection|10021789|infection|C3714514|Infection|| +011408|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34066-1|BOXED WARNINGS|Lymphoma|10025310|Lymphoma|10025310|lymphoma|C0024299|Lymphoma|| +011409|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34066-1|BOXED WARNINGS|Metabolic disorder|10058097|Metabolic disorder|10058097|worsening metabolic control|C0025517|Metabolic Diseases|| +011410|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34066-1|BOXED WARNINGS|Neutralising antibodies positive|10064980|Neutralizing antibodies positive|10064983|antibodies with neutralizing activity|C1609515|Neutralising antibodies positive|| +011411|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34066-1|BOXED WARNINGS|Neutralising antibodies|10058063|Neutralizing antibodies|10058033|neutralizing antibodies|C1609515|Neutralising antibodies positive|| +011412|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34066-1|BOXED WARNINGS|T-cell lymphoma|10042971|T-cell lymphoma|10042971|t-cell lymphoma|C0079772|T-Cell Lymphoma|| +011413|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +011414|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +011415|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +011416|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +011417|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Blood glucose decreased|10005555|Plasma glucose decreased|10035305|low plasma glucose values|C0860802|Plasma glucose decreased|| +011418|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|increases in triglycerides|C1522137|Hypertriglyceridemia result|| +011419|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +011420|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +011421|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Drug cross-reactivity|10076743|Drug cross-reactivity|10076743|loss of endogenous leptin activity|C3808947|Decreased leptin|underspecified| +011422|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Drug effect decreased|10013678|Drug effect decreased|10013678|loss of efficacy|C0521845|Drug action decreased|| +011423|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Drug ineffective|10013709|Efficacy lack of|10048506|loss of efficacy|C0235828|Lack of Efficacy|| +011424|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Ear infection|10014011|Ear infection|10014011|ear infection|C0699744|Infection of ear|| +011425|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +011426|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Glycosylated haemoglobin increased|10018484|HbA1C increased|10052424|increases in hba1c|C0239940|Glycosylated haemoglobin increased|| +011427|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011428|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycaemia|10020993|hypoglycemic events|C0020615|Hypoglycemia|| +011429|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|symptoms requiring ingestion of glucose|C0020615|Hypoglycemia|| +011430|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +011431|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection-site erythema|C0852625|Injection site erythema|| +011432|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Injection site urticaria|10022107|Injection site urticaria|10022107|injection-site urticaria|C0392196|Injection site urticaria|| +011433|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Loss of consciousness|10024855|Loss of consciousness|10024855|loss of consciousness|C0041657|Unconscious State|| +011434|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Metabolic disorder|10058097|Metabolic disorder|10058097|worsening of metabolic control|C0025517|Metabolic Diseases|| +011435|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +011436|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Neuroglycopenia|10054998|Neuroglycopenia|10054998|neuroglycopenic symptoms|C0342311|Neuroglycopenia|| +011437|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Neutralising antibodies positive|10064980|Neutralizing antibodies positive|10064983|antibodies with neutralizing activity|C1609515|Neutralising antibodies positive|| +011438|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Ovarian cyst|10033132|Ovarian cyst|10033132|ovarian cyst|C0029927|Ovarian Cysts|| +011439|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +011440|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +011441|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +011442|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +011443|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +011444|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|decreased weight|C1262477|Weight decreased|| +011445|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Abnormal weight gain|10000188|Abnormal weight gain|10000188|excessive weight gain|C0000765|Excessive body weight gain|| +011446|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +011447|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Anaplastic large-cell lymphoma|10073478|Anaplastic large-cell lymphoma|10073478|anaplastic large cell lymphoma|C0206180|Ki-1+ Anaplastic Large Cell Lymphoma|| +011448|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune disorder|10061664|Autoimmune disorder|10061664|autoimmune disorder progression|C0004364|Autoimmune Diseases|| +011449|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune hepatitis|10003827|Autoimmune hepatitis|10003827|progression of autoimmune hepatitis|C0241910|Hepatitis, Autoimmune|duplicate| +011450|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|increases in triglycerides|C1522137|Hypertriglyceridemia result|| +011451|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Diabetes mellitus|10012601|Diabetes mellitus|10012601|diabetes mellitus|C0011849|Diabetes Mellitus|| +011452|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Disease progression|10061818|Disease progression|10061818|progression of autoimmune hepatitis|C0242656|Disease Progression|duplicate| +011453|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Drug cross-reactivity|10076743|Drug cross-reactivity|10076743|antibodies with neutralizing activity to leptin|C4049218||underspecified| +011454|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Drug effect decreased|10013678|Drug effect decreased|10013678|loss of efficacy|C0521845|Drug action decreased|| +011455|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Drug ineffective|10013709|Efficacy lack of|10048506|loss of efficacy|C0235828|Lack of Efficacy|| +011456|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Glomerulonephritis membranoproliferative|10018370|Membranoproliferative glomerulonephritis|10027168|membranoproliferative glomerulonephritis|C0017662|Glomerulonephritis, Membranoproliferative|| +011457|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Glucose tolerance impaired|10018429|Glucose intolerance|10052426|glucose intolerance|C0271650|Impaired glucose tolerance|| +011458|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Glycosylated haemoglobin increased|10018484|HbA1C increased|10052424|increases in hba1c|C0239940|Glycosylated haemoglobin increased|| +011459|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +011460|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|generalized hypersensitivity|C0020517|Hypersensitivity|| +011461|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +011462|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +011463|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Neutralising antibodies positive|10064980|Neutralizing antibodies positive|10064983|antibodies with neutralizing activity|C1609515|Neutralising antibodies positive|| +011464|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Peripheral T-cell lymphoma unspecified|10034623|Peripheral T-cell lymphoma unspecified|10034623|peripheral t-cell lymphoma|C0079774|Peripheral T-Cell Lymphoma|| +011465|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Proteinuria|10037032|Proteinuria|10037032|massive proteinuria|C0033687|Proteinuria|| +011466|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Rash generalised|10037858|Generalized rash|10049201|generalized rash|C0497365|Rash generalised|| +011467|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +011468|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|T-cell lymphoma|10042971|T-cell lymphoma|10042971|t-cell lymphoma|C0079772|T-Cell Lymphoma|| +011469|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Toxicity to various agents|10070863|Drug toxicity|10013746|benzyl alcohol toxicity|C0013221|Drug toxicity|| +011470|c986f93b-855d-4ef0-b620-5d41a0513e48|Myalept|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +011471|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +011472|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Activated partial thromboplastin time prolonged|10000636|APTT prolonged|10003067|aptt prolonged|C0240671|Partial thromboplastin time increased (finding)|| +011473|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Activated partial thromboplastin time prolonged|10000636|Activated partial thromboplastin time prolonged|10000636|activated partial thromboplastin time prolonged|C0240671|Partial thromboplastin time increased (finding)|| +011474|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Joint pain|10023222|joint pain|C0003862|Arthralgia|| +011475|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Pain knee|10033458|pain knee|C0231749|Knee pain|| +011476|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +011477|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +011478|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Bone pain|10006002|Bone pain|10006002|bone pain|C0151825|Bone pain|| +011479|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +011480|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +011481|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +011482|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011483|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +011484|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +011485|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +011486|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +011487|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +011488|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +011489|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +011490|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +011491|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +011492|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|43685-7|WARNINGS AND PRECAUTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +011493|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|43685-7|WARNINGS AND PRECAUTIONS|Body temperature increased|10005911|Body temperature increased|10005911|body temperature increased|C0015967|Fever|| +011494|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|43685-7|WARNINGS AND PRECAUTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +011495|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +011496|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +011497|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|43685-7|WARNINGS AND PRECAUTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +011498|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|43685-7|WARNINGS AND PRECAUTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011499|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +011500|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +011501|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +011502|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +011503|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +011504|ca02f7a4-ae4f-43c1-a06a-259fe4fcf9cf|VPRIV|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +011505|ca4a9b63-708e-49e9-8f9b-010625443b90|Hetlioz|34084-4|ADVERSE REACTIONS|Abnormal dreams|10000125|Abnormal dreams|10000125|unusual dreams|C0541903|Dreams bizarre unusual or frightening|| +011506|ca4a9b63-708e-49e9-8f9b-010625443b90|Hetlioz|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +011507|ca4a9b63-708e-49e9-8f9b-010625443b90|Hetlioz|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011508|ca4a9b63-708e-49e9-8f9b-010625443b90|Hetlioz|34084-4|ADVERSE REACTIONS|Nightmare|10029412|Nightmares|10029414|nightmares|C0028084|Nightmares|| +011509|ca4a9b63-708e-49e9-8f9b-010625443b90|Hetlioz|34084-4|ADVERSE REACTIONS|Nightmare|10029412|Nightmare|10029412|nightmare|C0028084|Nightmares|| +011510|ca4a9b63-708e-49e9-8f9b-010625443b90|Hetlioz|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory infection|10046300|upper respiratory infection|C0041912|Upper Respiratory Infections|| +011511|ca4a9b63-708e-49e9-8f9b-010625443b90|Hetlioz|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +011512|ca4a9b63-708e-49e9-8f9b-010625443b90|Hetlioz|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +011513|ca4a9b63-708e-49e9-8f9b-010625443b90|Hetlioz|43685-7|WARNINGS AND PRECAUTIONS|Depressed level of consciousness|10012373|Alertness decreased|10049875|impair activities requiring complete mental alertness|C0877609|Alertness decreased|| +011514|ca4a9b63-708e-49e9-8f9b-010625443b90|Hetlioz|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +011515|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +011516|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Actinic keratosis|10000614|Actinic keratosis|10000614|actinic keratosis|C0022602|Actinic keratosis|| +011517|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevations alt|C0151905|Alanine aminotransferase increased|| +011518|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +011519|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Angiopathy|10059245|Vascular disorder|10047059|vascular events|C0042373|Vascular Diseases|| +011520|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|elevations ast|C0151904|Aspartate aminotransferase increased|| +011521|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +011522|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Atrioventricular block|10003671|Atrioventricular block|10003671|atrioventricular blocks|C0004245|Atrioventricular Block|| +011523|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +011524|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Basal cell carcinoma|10004146|Basal cell carcinoma|10004146|basal cell carcinoma|C0007117|Basal cell carcinoma|| +011525|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Blood triglycerides increased|10005839|Blood triglycerides increased|10005839|blood triglycerides increased|C0853692|Blood triglycerides increased|| +011526|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Bradyarrhythmia|10049765|Bradyarrhythmia|10049765|bradyarrhythmia|C0079035|Bradyarrhythmia (disorder)|| +011527|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +011528|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +011529|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +011530|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +011531|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +011532|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +011533|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Eczema|10014184|Eczema|10014184|eczema|C0013595|Eczema|| +011534|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|GGT increased|10056910|elevations ggt|C0151662|Gamma-glutamyl transferase raised|| +011535|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Haemorrhagic stroke|10019016|Hemorrhagic stroke|10048863|hemorrhagic strokes|C0553692|Brain hemorrhage|| +011536|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011537|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +011538|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +011539|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +011540|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +011541|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Ischaemic stroke|10061256|Ischemic stroke|10055221|ischemic strokes|C0948008|Ischemic stroke|| +011542|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +011543|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver|| +011544|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Lymphoma|10025310|Lymphoma|10025310|lymphoma|C0024299|Lymphoma|| +011545|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +011546|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Macular oedema|10025415|Macular edema|10054467|macular edema|C0271051|Macular retinal edema|| +011547|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Migraine|10027599|Migraine|10027599|migraine|C0149931|Migraine Disorders|| +011548|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +011549|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +011550|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Peripheral arterial occlusive disease|10062585|Peripheral arterial occlusive disease|10062585|peripheral arterial occlusive disease|C1306889|Peripheral arterial occlusive disease|| +011551|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +011552|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Posterior reversible encephalopathy syndrome|10071066|Posterior reversible encephalopathy syndrome|10071066|posterior reversible encephalopathy syndrome|C3160858|Posterior reversible encephalopathy syndrome|| +011553|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|progressive multifocal leukoencephalopathy|C0023524|Leukoencephalopathy, Progressive Multifocal|| +011554|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +011555|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Respiratory disorder|10038683|Respiratory disorder|10038683|respiratory effects|C0035204|Respiration Disorders|| +011556|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +011557|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Skin papilloma|10040907|Skin papilloma|10040907|skin papilloma|C0347390|Skin Papilloma|| +011558|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Tinea versicolour|10056131|Tinea versicolor|10043875|tinea versicolor|C0040262|Tinea Versicolor|| +011559|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Serum transaminase increased|10040421|serum transaminase elevations|C0859350|Serum transaminase increased|| +011560|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|liver transaminase elevation|C2674385|Elevated liver transaminases|| +011561|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +011562|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block complete|10003673|Third degree AV block|10043440|third-degree av block|C0151517|Complete atrioventricular block|| +011563|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block first degree|10003674|AV block first degree|10003850|first-degree av block|C0085614|First degree atrioventricular block|| +011564|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block first degree|10003674|Atrioventricular conduction time prolonged|10003681|atrioventricular conduction|C0085614|First degree atrioventricular block|| +011565|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block second degree|10003677|AV block second degree|10003851|second-degree av blocks|C0264906|Second degree atrioventricular block|| +011566|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block second degree|10003677|Mobitz type I|10027787|av blocks mobitz types i|C0264907|Mobitz type I incomplete atrioventricular block|| +011567|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block second degree|10003677|Wenckebach phenomenon|10047909|av blocks wenckebach|C0264907|Mobitz type I incomplete atrioventricular block|| +011568|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Atrioventricular block|10003671|AV block|10003846|av block|C0004245|Atrioventricular Block|| +011569|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure diastolic increased|10005739|Blood pressure diastolic increased|10005739|increase diastolic pressure|C0277889|Increased diastolic arterial pressure|| +011570|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure systolic increased|10005760|Blood pressure systolic increased|10005760|increase systolic pressure|C0277884|Increased systolic arterial pressure|| +011571|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +011572|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +011573|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Carbon monoxide diffusing capacity decreased|10065906|Carbon monoxide diffusing capacity decreased|10065906|decrease of dlco|C1697788|Carbon monoxide diffusing capacity decreased|| +011574|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Cardiac arrest|10007515|Asystole|10003586|asystole|C0018790|Cardiac Arrest|| +011575|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Central nervous system viral infection|10061037|Central nervous system viral infection|10061037|opportunistic viral infection of the brain|C0348165|Central Nervous System Viral Diseases|duplicate| +011576|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Cerebral haemorrhage|10008111|Cerebral hemorrhage|10008114|cerebral hemorrhage|C2937358|Cerebral Hemorrhage|| +011577|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +011578|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Clumsiness|10009696|Clumsiness|10009696|clumsiness of limbs|C0233844|Clumsiness|| +011579|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Conduction disorder|10010276|Defect conduction (NOS)|10012117|conduction abnormalities|C0232219|Abnormal cardiac conduction|| +011580|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Confusional state|10010305|Confusion|10010300|confusion|C0009676|Confusion|| +011581|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Cryptococcal infections|10011486|Cryptococcal infections|10011486|cryptococcal infections|C0740272|Cryptococcal infections|HLT| +011582|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +011583|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Disability|10013050|Disability|10013050|disability|C0231170|Disability|| +011584|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Disorientation|10013395|Orientation disturbed|10031087|changes in orientation|C0233407|Disorientation|| +011585|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +011586|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +011587|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Encephalitis|10014581|Encephalitis|10014581|encephalitis|C0014038|Encephalitis|| +011588|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +011589|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage||Animal +011590|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Forced expiratory volume abnormal|10016985|Forced expiratory volume abnormal|10016985|changes in fev1|C0860906|FEV 1 abnormal|| +011591|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Forced expiratory volume decreased|10016987|FEV 1 decreased|10016550|reduction for fev1|C0520837|Decreased forced expiratory volume|| +011592|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Forced expiratory volume decreased|10016987|Forced expiratory volume decreased|10016987|reductions in forced expiratory volume over 1 second|C0520837|Decreased forced expiratory volume|| +011593|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011594|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Heart rate decreased|10019301|Heart rate decreased|10019301|decrease in heart rate|C2230138|Pulse slow (finding)|| +011595|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|elevated liver enzymes|C0235996|Elevated liver enzymes|| +011596|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Herpes simplex encephalitis|10019953|Herpes simplex encephalitis|10019953|herpes simplex encephalitis|C0276226|Herpes encephalitis|| +011597|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Herpes simplex|10019948|Herpes simplex|10019948|herpes simplex infections|C0019348|Herpes Simplex Infections|| +011598|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Herpes virus infection|10019973|Herpes virus infection|10019973|herpetic infections|C0019372|Herpesviridae Infections|| +011599|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Herpes zoster disseminated|10065038|Herpes zoster disseminated|10065038|disseminated primary herpes zoster|C0276248|Disseminated herpes zoster|| +011600|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +011601|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +011602|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +011603|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Immunodeficiency|10061598|Immunodeficiency|10061598|compromised immune system|C0085393|Immunocompromised Host|| +011604|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Immunosuppression|10062016|Immunosuppression|10062016|immunosuppressant effects|C1373218|Decreased Immunologic Activity [PE]|| +011605|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +011606|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +011607|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Ischaemic stroke|10061256|Ischemic stroke|10055221|ischemic stroke|C0948008|Ischemic stroke|| +011608|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|JC virus infection|10023163|JC virus infection|10023163|jcv in the csf|C0857836|JC virus infection|underspecified| +011609|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver|| +011610|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Lymphocyte count decreased|10025256|Lymphocyte count decreased|10025256|decreased lymphocyte counts|C0853986|Lymphocyte count decreased|| +011611|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Macular oedema|10025415|Macular edema|10054467|macular edema|C0271051|Macular retinal edema|| +011612|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Memory impairment|10027175|Memory disturbance|10027172|changes in memory|C1822023|Memory changes|| +011613|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Meningitis cryptococcal|10027209|Cryptococcal meningitis|10011487|cryptococcal meningitis|C0085436|Meningitis, Cryptococcal|| +011614|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Mental status changes|10048294|Mental status changes|10048294|altered mental status|C0856054|Mental status changes|| +011615|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Multi-organ failure|10028154|Multiorgan failure|10028162|multiorgan failure|C0026766|Multiple Organ Failure|| +011616|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Muscular weakness|10028372|Muscle weakness|10028350|progressive weakness on one side of the body|C0240421|Progressive muscle weakness|| +011617|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Nodal rhythm|10029470|Atrioventricular junctional escape rhythm|10057524|junctional escape|C0232210|Junctional escape beats|| +011618|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic viral infection of the brain|C0029118|Opportunistic Infections|duplicate| +011619|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +011620|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Personality change|10034719|Personality change|10034719|personality changes|C0240735|Personality change|| +011621|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +011622|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Posterior reversible encephalopathy syndrome|10071066|Posterior reversible encephalopathy syndrome|10071066|posterior reversible encephalopathy syndrome|C3160858|Posterior reversible encephalopathy syndrome|| +011623|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|pml|C0023524|Leukoencephalopathy, Progressive Multifocal|| +011624|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary function test decreased|10061922|Pulmonary function test decreased|10061922|decrease in pulmonary function tests|C0855775|Pulmonary function test decreased|| +011625|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Seizure|10039906|seizure|C0036572|Seizures|| +011626|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +011627|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +011628|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Thinking abnormal|10043431|Thinking abnormal|10043431|changes in thinking|C0233632|Disturbance in thinking|| +011629|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevation of liver transaminases|C2674385|Elevated liver transaminases|| +011630|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +011631|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Visual acuity reduced|10047531|Visual acuity decreased|10049061|decreased visual acuity|C0234632|Reduced visual acuity|| +011632|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Visual acuity reduced|10047531|Visual acuity lost|10047530|visual acuity loss|C0234632|Reduced visual acuity|| +011633|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Visual impairment|10047571|Abnormal vision|10000186|visual symptoms|C0422943|Visual symptoms|| +011634|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|Visual impairment|10047571|Visual disturbances|10047545|disturbance of vision|C0547030|Visual disturbance|| +011635|cc9e1c8c-0e2b-44e2-878b-27057f786be9|Gilenya|43685-7|WARNINGS AND PRECAUTIONS|||||sequestration of lymphocytes in lymphoid tissues|||unmapped| +011636|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Bacterial infection|10060945|Bacterial infection|10060945|bacterial infections opportunistic|C0004623|Bacterial Infections|duplicate| +011637|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Cryptococcosis|10011490|Cryptococcosis|10011490|cryptococcosis|C0276687|Disseminated cryptococcosis|| +011638|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +011639|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Extrapulmonary tuberculosis|10064445|Extrapulmonary tuberculosis|10064445|tuberculosis extrapulmonary|C0679362|Tuberculosis, extrapulmonary|| +011640|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +011641|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Lymphoma|10025310|Lymphoma|10025310|lymphoma|C0024299|Lymphoma|| +011642|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancy|C1306459|Primary malignant neoplasm|| +011643|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Opportunistic infection|10030901|Opportunistic infection|10030901|infections opportunistic|C0029118|Opportunistic Infections|| +011644|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystosis|10035662|pneumocystosis|C1535939|Pneumocystis jiroveci pneumonia|| +011645|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Post transplant lymphoproliferative disorder|10051358|Post transplant lymphoproliferative disorder|10051358|post-transplant lymphoproliferative disorder|C0432487|Post-transplant lymphoproliferative disorder|| +011646|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Pulmonary tuberculosis|10037440|Pulmonary tuberculosis|10037440|tuberculosis pulmonary|C0041327|Tuberculosis, Pulmonary|| +011647|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Systemic mycosis|10052366|Invasive mycosis|10062642|invasive fungal infections|C1262313|Invasive mycosis|| +011648|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Systemic mycosis|10052366|Systemic mycosis|10052366|fungal infections disseminated|C0553576|Systemic mycosis|| +011649|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Tuberculosis|10044755|Active tuberculosis|10071157|active tuberculosis|C0151332|Active tuberculosis|| +011650|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +011651|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34066-1|BOXED WARNINGS|Viral infection|10047461|Viral infection|10047461|viral opportunistic infections|C0042769|Virus Diseases|duplicate| +011652|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +011653|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevations of alt|C0151905|Alanine aminotransferase increased|| +011654|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +011655|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +011656|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast elevations|C0151904|Aspartate aminotransferase increased|| +011657|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|bilirubin elevations|C0311468|Increased bilirubin level (finding)|| +011658|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Blood cholesterol increased|10005425|Cholesterol total increased|10008671|elevations in total cholesterol|C1522133|Hypercholesterolemia result|| +011659|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|increase in creatinine|C0151578|Creatinine increased|| +011660|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Raised serum creatinine|10037825|elevations in serum creatinine|C0700225|Serum creatinine raised|| +011661|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|increase in serum creatinine|C0700225|Serum creatinine raised|| +011662|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|elevations in triglycerides|C1522137|Hypertriglyceridemia result|| +011663|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Breast cancer|10006187|Breast cancer|10006187|breast cancer|C0006142|Malignant neoplasm of breast|| +011664|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +011665|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Colorectal cancer|10061451|Colorectal cancer|10061451|colorectal cancer|C1527249|Colorectal Cancer|| +011666|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +011667|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +011668|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +011669|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Disseminated tuberculosis|10013453|Disseminated tuberculosis|10013453|disseminated tuberculosis|C0041321|Tuberculosis, Miliary|| +011670|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Diverticulitis|10013538|Diverticulitis|10013538|diverticulitis|C0012813|Diverticulitis|| +011671|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +011672|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +011673|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +011674|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +011675|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Gastric cancer|10017758|Gastric cancer|10017758|gastric cancer|C0024623|Malignant neoplasm of stomach|| +011676|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +011677|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011678|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|liver enzyme elevation|C0235996|Elevated liver enzymes|| +011679|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Hepatic steatosis|10019708|Hepatic steatosis|10019708|hepatic steatosis|C2711227|Steatohepatitis|| +011680|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +011681|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|High density lipoprotein increased|10020061|HDL cholesterol increased|10070544|elevations in hdl cholesterol|C2938903|HDL cholesterol increased|| +011682|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +011683|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +011684|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +011685|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Joint swelling|10023232|Joint swelling|10023232|joint swelling|C0152031|Joint swelling|| +011686|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Lipids increased|10024592|Lipids increased|10024592|elevations in lipid parameters|C0851043|Increased lipid|| +011687|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver|| +011688|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Low density lipoprotein increased|10024910|LDL cholesterol increased|10024055|mean ldl cholesterol increased|C0549399|Low density lipoprotein increased|| +011689|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Lung neoplasm malignant|10058467|Lung cancer|10025044|lung cancer|C0242379|Malignant neoplasm of lung|| +011690|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Lymphocyte count decreased|10025256|Absolute lymphocyte count decreased|10065395|absolute lymphocyte counts below 500 cells/mm 3|C1699631|Absolute lymphocyte count decreased|| +011691|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Lymphocyte count decreased|10025256|Lymphocyte count low|10025259|lymphocyte counts less than 500 cells/mm 3|C0853986|Lymphocyte count decreased|| +011692|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Lymphoma|10025310|Lymphoma|10025310|lymphoma|C0024299|Lymphoma|| +011693|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Malignant melanoma|10025650|Malignant melanoma|10025650|malignant melanoma|C0025202|melanoma|| +011694|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +011695|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +011696|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +011697|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancy|C1306459|Primary malignant neoplasm|| +011698|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Absolute neutrophil count decreased|10059234|decreases in anc|C1168174|Absolute neutrophil count decreased|| +011699|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +011700|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +011701|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +011702|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +011703|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Prostate cancer|10060862|Prostate cancer|10060862|prostate cancer|C0376358|Malignant neoplasm of prostate|| +011704|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +011705|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +011706|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +011707|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Renal cell carcinoma|10067946|Renal cell cancer|10038407|renal cell cancer|C0007134|Renal Cell Carcinoma|| +011708|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Sinus congestion|10040742|Sinus congestion|10040742|sinus congestion|C0152029|Congestion of nasal sinus|| +011709|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Skin cancer|10040808|Cancer of skin (excl melanoma)|10007116|non-melanoma skin cancers|C0699893|Skin carcinoma|| +011710|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Tendonitis|10043255|Tendonitis|10043255|tendonitis|C0039503|Tendinitis|| +011711|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +011712|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infections|C0041912|Upper Respiratory Infections|| +011713|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +011714|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +011715|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|BK virus infection|10055181|BK virus infection|10055181|bk virus infections|C1096691|BK virus infection|| +011716|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Blood cholesterol increased|10005425|Cholesterol total increased|10008671|increases in total cholesterol|C1522133|Hypercholesterolemia result|| +011717|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +011718|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Coccidioidomycosis|10009825|Coccidioidomycosis|10009825|coccidioidomycosis|C0009186|Coccidioidomycosis|| +011719|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Cryptococcosis|10011490|Cryptococcosis|10011490|cryptococcosis|C0276687|Disseminated cryptococcosis|| +011720|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Cytomegalovirus infection|10011831|Cytomegalovirus infection|10011831|cytomegalovirus|C0010823|Cytomegalovirus Infections|| +011721|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +011722|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Diverticulitis|10013538|Diverticulitis|10013538|diverticulitis|C0012813|Diverticulitis|| +011723|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforations|C0151664|Gastrointestinal perforation|| +011724|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|liver enzyme elevation|C0235996|Elevated liver enzymes|| +011725|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Herpes virus infection|10019973|Herpes virus infection|10019973|herpes virus reactivation|C0019372|Herpesviridae Infections|| +011726|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Herpes zoster cutaneous disseminated|10074297|Herpes zoster multi-dermatomal|10058428|multidermatomal herpes zoster|C1141995|Herpes zoster multi-dermatomal|| +011727|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +011728|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|High density lipoprotein increased|10020061|HDL cholesterol increased|10070544|increases in hdl cholesterol|C2938903|HDL cholesterol increased|| +011729|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|High density lipoprotein increased|10020061|High density lipoprotein cholesterol increased|10020056|increases in high-density lipoprotein cholesterol|C2938903|HDL cholesterol increased|| +011730|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Histoplasmosis|10020141|Histoplasmosis|10020141|histoplasmosis|C0019655|Histoplasmosis|| +011731|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Infection reactivation|10070891|Infection reactivation|10070891|viral reactivation|C3160756|Infection reactivation|duplicate| +011732|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +011733|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Lipids increased|10024592|Lipids increased|10024592|increases in lipid parameters|C0851043|Increased lipid|| +011734|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Listeriosis|10024641|Listeriosis|10024641|listeriosis|C0023860|Listeriosis|| +011735|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Low density lipoprotein increased|10024910|LDL cholesterol increased|10024055|increases in low-density lipoprotein cholesterol|C0549399|Low density lipoprotein increased|| +011736|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Lymphocyte count decreased|10025256|Lymphocyte count low|10025259|lymphocyte counts less than 500 cells/mm 3|C0853986|Lymphocyte count decreased|| +011737|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Lymphocytosis|10025280|Lymphocytosis|10025280|lymphocytosis|C0024282|Lymphocytosis|| +011738|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Lymphoma|10025310|Lymphoma|10025310|lymphomas|C0024299|Lymphoma|| +011739|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Mycobacterial infection|10062207|Mycobacterial infection|10062207|mycobacterial infections|C0026918|Mycobacterium Infections|| +011740|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Malignant solid tumor|10065147|solid cancers|C1698088|Malignant solid tumour|| +011741|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignancies|C0006826|Malignant Neoplasms|| +011742|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +011743|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Oesophageal candidiasis|10030154|Esophageal candidiasis|10015365|esophageal candidiasis|C0239295|Candidiasis of the esophagus|| +011744|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Opportunistic infection|10030901|Opportunistic infection|10030901|opportunistic infections|C0029118|Opportunistic Infections|| +011745|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Pneumocystis jirovecii pneumonia|10073755|Pneumocystosis|10035662|pneumocystosis|C1535939|Pneumocystis jiroveci pneumonia|| +011746|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +011747|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Post transplant lymphoproliferative disorder|10051358|Post transplant lymphoproliferative disorder|10051358|post-transplant lymphoproliferative disorder|C0432487|Post-transplant lymphoproliferative disorder|| +011748|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Skin cancer|10040808|Cancer of skin (excl melanoma)|10007116|nmscs|C0699893|Skin carcinoma|| +011749|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Systemic infection|10077116|Systemic infection|10077116|disseminated infections|C0243026|Sepsis|| +011750|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Tuberculosis|10044755|tuberculosis|C0041296|Tuberculosis|| +011751|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +011752|cf74ba2f-afc5-4baa-8594-979c889a5831|XELJANZ|43685-7|WARNINGS AND PRECAUTIONS|Viral infection|10047461|Viral infection|10047461|viral reactivation|C0042769|Virus Diseases|duplicate| +011753|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Anterior chamber cell|10053781|Anterior chamber cell|10053781|anterior chamber cells|C0423282|Anterior chamber cells|| +011754|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Anterior chamber flare|10052127|Anterior chamber flare|10052127|anterior chamber flare|C0423281|Anterior chamber flare|| +011755|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Application site discomfort|10063072|Application site discomfort|10063072|application site discomfort|C1328375|Application site discomfort|| +011756|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Application site irritation|10003046|Application site irritation|10003046|application site irritation|C0521490|Application site irritation|| +011757|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Blepharitis|10005148|Blepharitis|10005148|blepharitis|C0005741|Blepharitis|| +011758|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Cataract subcapsular|10007764|Posterior subcapsular cataract|10036364|posterior subcapsular cataract formation|C0858617|Posterior subcapsular cataract||DrugClass +011759|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Ciliary hyperaemia|10052129|Ciliary hyperemia|10054354|ciliary hyperemia|C0948784|Ciliary hyperaemia|| +011760|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Ciliary hyperaemia|10052129|Limbal hyperemia|10063468|limbal hyperemia|C0423193|Limbal hyperemia|| +011761|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Conjunctival hyperaemia|10051625|Conjunctival hyperemia|10054364|conjunctival hyperemia|C1761613|Conjunctival hyperemia|| +011762|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Conjunctival oedema|10010726|Conjunctival edema|10010715|conjunctival edema|C0151601|Conjunctival edema|| +011763|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Corneal oedema|10011033|Corneal edema|10011007|corneal edema|C0010037|Corneal edema|| +011764|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Corneal pigmentation|10011040|Corneal pigmentation|10011040|corneal pigmentation|C0423226|Corneal pigmentation|| +011765|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Corneal striae|10052118|Corneal striae|10052118|corneal striae|C0948285|Corneal striae|| +011766|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Dry eye|10013774|Dry eye|10013774|dry eye|C0314719|Dryness of eye|| +011767|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Episcleritis|10015084|Episcleritis|10015084|episcleritis|C0014583|Episcleritis|| +011768|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Eye infection|10015929|Eye infection|10015929|secondary ocular infection|C0015403|Eye Infections||DrugClass +011769|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Eye inflammation|10015943|Eye inflammation|10015943|eye inflammation|C0014236|Endophthalmitis|| +011770|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Eye irritation|10015946|Eye irritation|10015946|eye irritation|C0235266|Eye irritation|| +011771|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Eye pain|10015958|Eye pain|10015958|eye pain|C0151827|Eye pain|| +011772|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Eye pruritus|10052140|Eye pruritus|10052140|eye pruritis|C0022281|Itching of eye|| +011773|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Eye symptom|10075536|Eye symptom|10075536|ocular adverse reactions|C1557306|Adverse Event Associated with Ocular and Visual Systems|| +011774|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Eyelid irritation|10057385|Eyelid irritation|10057385|eyelid irritation|C1112366|Eyelid irritation|| +011775|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Eyelid margin crusting|10052132|Eyelid margin crusting|10052132|eyelid crusting|C2138747|Crusting of eyelid|| +011776|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011777|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Intraocular pressure increased|10022806|Increased intraocular pressure|10021667|elevated intraocular pressure|C0234708|Raised intraocular pressure||DrugClass +011778|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Intraocular pressure increased|10022806|Intraocular pressure increased|10022806|increased iop|C0234708|Raised intraocular pressure|| +011779|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Iridocyclitis|10022941|Iridocyclitis|10022941|iridocyclitis|C0022073|Iridocyclitis|| +011780|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Iritis|10022955|Iritis|10022955|iritis|C0022081|Iritis|| +011781|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Lacrimation increased|10023644|Lacrimation increased|10023644|increased lacrimation|C0152227|Excessive tearing|| +011782|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Macular oedema|10025415|Macular edema|10054467|macular edema|C0271051|Macular retinal edema|| +011783|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Open globe injury|10076717|Ocular perforation|10030062|perforation of the globe|C0860533|Rupture of globe due to trauma||DrugClass +011784|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Ophthalmic herpes simplex|10073938|Ophthalmic herpes simplex|10073938|secondary ocular infection herpes simplex|C0494081|Herpesviral ocular disease||DrugClass +011785|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Optic nerve injury|10030938|Optic nerve damage|10075452|optic nerve damage|C0161398|Optic Nerve Injuries||DrugClass +011786|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Photophobia|10034960|Photophobia|10034960|photophobia|C0085636|Photophobia|| +011787|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Posterior capsule opacification|10036346|Posterior capsule opacification|10036346|posterior capsule opacification|C1444680|Posterior capsule opacification|| +011788|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Punctate keratitis|10037508|Punctate keratitis|10037508|punctate keratitis|C0259799|Punctate keratitis|| +011789|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Scleral hyperaemia|10059096|Scleral hyperemia|10059104|sclera hyperemia|C0423271|Scleral injection|| +011790|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Sensation of foreign body|10061549|Sensation of foreign body|10061549|foreign body sensation|C0423602|Foreign body sensation|| +011791|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Uveitis|10046851|Uveitis|10046851|uveitis|C0042164|Uveitis|| +011792|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +011793|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Visual acuity reduced|10047531|Visual acuity reduced|10047531|reduced visual acuity|C0234632|Reduced visual acuity|| +011794|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|34084-4|ADVERSE REACTIONS|Visual field defect|10047555|Visual field defect|10047555|visual field defects|C3887875|Visual field defects||DrugClass +011795|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Blister|10005191|Blister|10005191|increase bleb formation|C0005758|Bulla|underspecified|DrugClass +011796|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Cataract subcapsular|10007764|Posterior subcapsular cataract|10036364|posterior subcapsular cataract|C0858617|Posterior subcapsular cataract||DrugClass +011797|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Corneal infection|10061788|Corneal infection|10061788|fungal infections of the cornea|C0729777|Corneal infection|duplicate|DrugClass +011798|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Eye infection viral|10015940|Eye infection viral|10015940|exacerbate viral infections of the eye|C0015407|Eye Infections, Viral||DrugClass +011799|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Eye infection|10015929|Eye infection|10015929|secondary ocular infections|C0015403|Eye Infections||DrugClass +011800|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Fungal infection|10017533|Fungal infection|10017533|fungal infections of the cornea|C0026946|Mycoses|duplicate|DrugClass +011801|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Glaucoma|10018304|Glaucoma|10018304|glaucoma|C0017601|Glaucoma||DrugClass +011802|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Herpes simplex|10019948|Herpes simplex aggravated|10048418|exacerbate herpes simplex|C0856138|Herpes simplex aggravated||DrugClass +011803|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Immunosuppression|10062016|Immunosuppression|10062016|suppress the host response|C1373218|Decreased Immunologic Activity [PE]||DrugClass +011804|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Impaired healing|10021519|Healing delayed|10019238|delay healing|C0151692|Impaired wound healing||DrugClass +011805|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Intraocular pressure increased|10022806|Increased intraocular pressure|10021667|iop increase|C0234708|Raised intraocular pressure|| +011806|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Intraocular pressure increased|10022806|Intraocular pressure increased|10022806|intraocular pressure increase|C0234708|Raised intraocular pressure|| +011807|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Optic nerve injury|10030938|Optic nerve damage|10075452|damage to the optic nerve|C0161398|Optic Nerve Injuries||DrugClass +011808|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Perforation|10076705|Perforation|10076705|perforations|C0549099|Perforation (observation)||DrugClass +011809|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Visual acuity reduced|10047531|Visual acuity reduced|10047531|defects in visual acuity|C0234632|Reduced visual acuity||DrugClass +011810|d07b65d5-f8e3-4594-a7fb-108218746cec|DUREZOL|43685-7|WARNINGS AND PRECAUTIONS|Visual field defect|10047555|Visual field defect|10047555|defects fields of vision|C3887875|Visual field defects||DrugClass +011811|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34066-1|BOXED WARNINGS|Extradural haematoma|10015769|Epidural hematoma|10015013|epidural hematoma|C0238154|Hematoma, Epidural, Cranial|| +011812|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34066-1|BOXED WARNINGS|Haematoma|10018852|Hematoma|10019428|hematomas|C0018944|Hematoma|| +011813|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34066-1|BOXED WARNINGS|Paralysis|10033799|Paralysis|10033799|paralysis|C0522224|Paralysed|| +011814|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34066-1|BOXED WARNINGS|Spinal cord haematoma|10076051|Spinal hematoma|10055382|spinal hematomas|C0856150|spinal hematoma|| +011815|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +011816|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis|| +011817|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reaction|C0002792|anaphylaxis|| +011818|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Anaphylactic shock|10002199|Anaphylactic shock|10002199|anaphylactic shock|C0002792|anaphylaxis|| +011819|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +011820|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +011821|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Blister|10005191|Blister|10005191|blister|C0005758|Bulla|| +011822|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Bronchiectasis|10006445|Bronchiectasis|10006445|bronchiectasis|C0006267|Bronchiectasis|| +011823|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Cerebral haemorrhage|10008111|Cerebral hemorrhage|10008114|cerebral hemorrhage|C2937358|Cerebral Hemorrhage|| +011824|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +011825|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Cholestasis|10008635|Cholestasis|10008635|cholestasis|C0008370|Cholestasis|| +011826|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Compartment syndrome|10010121|Compartment syndrome|10010121|compartment syndrome|C0009492|Compartment syndromes|| +011827|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +011828|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +011829|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Extradural haematoma|10015769|Epidural hematoma|10015013|epidural hematoma|C0238154|Hematoma, Epidural, Cranial|| +011830|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Eye haemorrhage|10015926|Hemorrhage intraocular|10019553|bleeding intraocular|C0015402|Eye Hemorrhage|| +011831|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +011832|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Bleeding gastrointestinal|10005116|bleeding gastrointestinal|C0017181|Gastrointestinal Hemorrhage|| +011833|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal bleeding|10017936|gastrointestinal bleeding|C0017181|Gastrointestinal Hemorrhage|| +011834|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Haemarthrosis|10018829|Hemarthrosis|10019409|bleeding intra-articular|C0018924|Hemarthrosis|| +011835|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decrease in hb|C0162119|Hemoglobin low|| +011836|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Haemorrhage intracranial|10018985|Bleeding intracranial|10005121|bleeding intracranial|C0151699|Intracranial Hemorrhages|| +011837|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Bleeding|10005103|major bleeding|C0019080|Hemorrhage|| +011838|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Haemorrhagic stroke|10019016|Hemorrhagic stroke|10048863|hemorrhagic strokes|C0553692|Brain hemorrhage|| +011839|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Hemiparesis|10019465|Hemiparesis|10019465|hemiparesis|C0018989|Hemiparesis|| +011840|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +011841|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Hepatocellular injury|10019837|Hepatocellular injury|10019837|hepatocellular injury|C0151763|Liver damage|| +011842|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +011843|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Jaundice|10023126|Jaundice|10023126|jaundice|C0022346|Icterus|| +011844|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Menorrhagia|10027313|Menorrhagia|10027313|menorrhagia|C0025323|Menorrhagia|| +011845|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Muscle haemorrhage|10028309|Muscle bleeding|10071842|bleeding intramuscular|C0151702|Muscle hemorrhage|| +011846|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasm|10028333|muscle spasm|C0037763|Spasm|| +011847|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +011848|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Osteoarthritis|10031161|Osteoarthritis|10031161|osteoarthritis|C0029408|Degenerative polyarthritis|| +011849|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +011850|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Pericardial haemorrhage|10034476|Pericardial bleeding|10071860|bleeding pericardial|C0019064|Hemopericardium|| +011851|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +011852|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Pulmonary haemorrhage|10037394|Pulmonary hemorrhage|10037397|pulmonary hemorrhage|C0151701|Pulmonary hemorrhage|| +011853|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Retroperitoneal haemorrhage|10038980|Retroperitoneal bleeding|10071878|bleeding retroperitoneal|C0151705|Retroperitoneal hemorrhage|| +011854|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Retroperitoneal haemorrhage|10038980|Retroperitoneal hemorrhage|10038981|retroperitoneal hemorrhage|C0151705|Retroperitoneal hemorrhage|| +011855|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +011856|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Spinal cord haematoma|10076051|Spinal hematoma|10055382|spinal hematoma|C0856150|spinal hematoma|| +011857|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Spinal cord haemorrhage|10048992|Intraspinal bleeding|10073572|bleeding intraspinal|C3665900|Intraspinal bleeding|| +011858|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +011859|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Subdural haematoma|10042361|Subdural hematoma|10042380|subdural hematoma|C0018946|Hematoma, Subdural|| +011860|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +011861|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +011862|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Toothache|10044055|Toothache|10044055|toothache|C0040460|Toothache|| +011863|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +011864|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|34084-4|ADVERSE REACTIONS|Wound secretion|10048629|Wound secretion|10048629|wound secretion|C0406834|Wound discharge finding|| +011865|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +011866|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|43685-7|WARNINGS AND PRECAUTIONS|Extradural haematoma|10015769|Epidural hematoma|10015013|epidural hematoma|C0238154|Hematoma, Epidural, Cranial||DrugClass +011867|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage in pregnancy|10018981|Hemorrhage pregnancy|10019581|pregnancy-related hemorrhage|C0269596|Hemorrhagic complication of pregnancy|| +011868|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +011869|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|43685-7|WARNINGS AND PRECAUTIONS|Paralysis|10033799|Paralysis|10033799|paralysis|C0522224|Paralysed||DrugClass +011870|d0e105f6-28f3-45ee-83bd-7d458835242b|Xarelto|43685-7|WARNINGS AND PRECAUTIONS|Spinal cord haematoma|10076051|Spinal hematoma|10055382|spinal hematoma|C0856150|spinal hematoma||DrugClass +011871|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +011872|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Acne|10000496|Acne|10000496|acne|C0702166|Acne|| +011873|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +011874|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Acute pulmonary oedema|10001029|Acute pulmonary edema|10001024|acute pulmonary edema|C0155919|Acute pulmonary edema|| +011875|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt greater than 5.0*uln|C0151905|Alanine aminotransferase increased|| +011876|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|increased alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +011877|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|SGPT increased|10040526|sgpt greater than 5.0*uln|C0151905|Alanine aminotransferase increased|| +011878|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +011879|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Anaphylactic shock|10002199|Anaphylactic shock|10002199|anaphylactic shock|C0002792|anaphylaxis|| +011880|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +011881|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast greater than 5.0*uln|C0151904|Aspartate aminotransferase increased|| +011882|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|increased aspartate aminotransferase|C0151904|Aspartate aminotransferase increased|| +011883|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|SGOT increased|10040524|sgot greater than 5.0*uln|C0151904|Aspartate aminotransferase increased|| +011884|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +011885|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Atypical pneumonia|10003757|Primary atypical pneumonia|10036679|primary atypical pneumonia|C0032302|Mycoplasma pneumonia|| +011886|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +011887|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|total bilirubin greater than 3.0*uln|C0741494|Elevated total bilirubin|| +011888|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|Blood creatine phosphokinase increased|10005470|increased blood creatine phosphokinase|C0853034|Blood creatine phosphokinase increased|| +011889|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Blood creatinine increased|10005483|increased blood creatinine|C0235431|Blood creatinine increased|| +011890|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Blood phosphorus decreased|10049471|Phosphorus low|10050715|phosphorus low|C0920102|Phosphorus low|| +011891|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|myelosuppression|C0854467|Myelosuppression|| +011892|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +011893|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +011894|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +011895|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +011896|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +011897|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +011898|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +011899|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +011900|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Drug eruption|10013687|Drug eruption|10013687|drug eruption|C0011609|Drug Eruptions|| +011901|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Drug hypersensitivity|10013700|Drug hypersensitivity|10013700|drug hypersensitivity|C0013182|Drug Allergy|| +011902|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +011903|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +011904|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QT prolonged|10014387|electrocardiogram qt prolonged|C0151878|Prolonged QT interval|| +011905|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|qtcf interval of greater than 500 milliseconds|C2347725|QTcF Prolongation Greater Than 500 msec|| +011906|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Erythema multiforme|10015218|Erythema multiforme|10015218|erythema multiforme|C0014742|Erythema Multiforme|| +011907|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Exfoliative rash|10064579|Exfoliative rash|10064579|exfoliative rash|C1608945|Exfoliative rash|| +011908|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +011909|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +011910|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Fluid retention|10016807|Fluid retention|10016807|fluid retention|C0268000|Body fluid retention|| +011911|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Gastric haemorrhage|10017788|Gastric hemorrhage|10017789|gastric hemorrhage|C0235325|Gastric hemorrhage|| +011912|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +011913|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +011914|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Gastrointestinal toxicity|10059024|Gastrointestinal toxicity|10059024|gastrointestinal toxicity|C1142499|Gastrointestinal toxicity|| +011915|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin low|10055600|hemoglobin low|C0162119|Hemoglobin low|| +011916|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +011917|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Hepatic function abnormal|10019670|Hepatic function abnormal|10019670|abnormal hepatic function|C0086565|Liver Dysfunction|| +011918|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Hepatitis toxic|10019795|Hepatitis toxic|10019795|toxic hepatitis|C0019193|Hepatitis, Toxic|| +011919|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Hepatitis|10019717|Cytolytic hepatitis|10050904|cytolytic hepatitis|C0919823|Cytolytic hepatitis|| +011920|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatic toxicity|C0348754|Toxic liver disease|| +011921|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Hyperkalaemia|10020646|Hyperkalemia|10020647|hyperkalemia|C0020461|Hyperkalemia|| +011922|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +011923|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Lipase increased|10024574|Lipase increased|10024574|lipase greater than 2*uln|C0549475|Lipase increased|| +011924|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Liver disorder|10024670|Liver disorder|10024670|liver disorder|C0023895|Liver diseases|| +011925|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Liver injury|10067125|Liver injury|10067125|liver injury|C0160390|Injury of liver|| +011926|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +011927|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +011928|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +011929|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Nephropathy toxic|10029155|Toxicity renal|10044258|renal toxicity|C0595916|Toxic nephropathy|| +011930|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +011931|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Absolute neutrophil count decreased|10059234|absolute neutrophil count less than 1*10 9 /l|C1168174|Absolute neutrophil count decreased|| +011932|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +011933|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +011934|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Pancreatitis acute|10033647|Acute pancreatitis|10000971|acute pancreatitis|C0001339|Acute pancreatitis|| +011935|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Pericardial effusion|10034474|Pericardial effusion|10034474|pericardial effusion|C0031039|Pericardial effusion|| +011936|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Pericarditis|10034484|Pericarditis|10034484|pericarditis|C0031046|Pericarditis|| +011937|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Low platelets|10024922|platelet count low|C0392386|Decreased platelet count|| +011938|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Pleural effusion|10035598|Pleural effusion|10035598|pleural effusion|C0032227|Pleural effusion disorder|| +011939|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Bronchopneumonia|10006469|bronchopneumonia|C0006285|Bronchopneumonia|| +011940|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Lobar pneumonia|10024738|lobar pneumonia|C0032300|Lobar Pneumonia|| +011941|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +011942|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +011943|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Pulmonary hypertension|10037400|Pulmonary hypertension|10037400|pulmonary hypertension|C0020542|Pulmonary Hypertension|| +011944|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +011945|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +011946|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +011947|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Respiratory failure|10038695|Respiratory failure|10038695|respiratory failure|C1145670|Respiratory Failure|| +011948|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Respiratory tract infection|10062352|Respiratory tract infection|10062352|respiratory tract infection|C0035243|Respiratory Tract Infections|| +011949|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +011950|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Tinnitus|10043882|Tinnitus|10043882|tinnitus|C0040264|Tinnitus|| +011951|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Upper gastrointestinal haemorrhage|10046274|Upper gastrointestinal hemorrhage|10055356|upper gastrointestinal hemorrhage|C0041909|Upper gastrointestinal hemorrhage|| +011952|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +011953|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +011954|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +011955|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increase in alt|C0151905|Alanine aminotransferase increased|| +011956|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +011957|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increase in ast|C0151904|Aspartate aminotransferase increased|| +011958|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|alkaline phosphatase less than 2*uln|C0151849|Alkaline phosphatase raised|| +011959|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|total bilirubin greater than 2*uln|C0741494|Elevated total bilirubin|| +011960|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|myelosuppression|C0854467|Myelosuppression|| +011961|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +011962|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Drug-induced liver injury|10072268|Drug-induced liver injury|10072268|drug induced liver injury|C0860207|Drug-Induced Liver Injury|| +011963|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Fluid retention|10016807|Fluid retention|10016807|fluid retention|C0268000|Body fluid retention|| +011964|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +011965|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal toxicity|10059024|Gastrointestinal toxicity|10059024|gastrointestinal toxicity|C1142499|Gastrointestinal toxicity|| +011966|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Glomerular filtration rate decreased|10018358|Glomerular filtration rate decreased|10018358|decline in estimated glomerular filtration rate|C0853068|Decreased glomerular filtration rate|| +011967|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatic toxicity|C0348754|Toxic liver disease|| +011968|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryofetal toxicities|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk||Animal +011969|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +011970|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Nephropathy toxic|10029155|Toxicity renal|10044258|renal toxicity|C0595916|Toxic nephropathy|| +011971|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +011972|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +011973|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +011974|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Pericardial effusion|10034474|Pericardial effusion|10034474|pericardial effusions|C0031039|Pericardial effusion|| +011975|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Pleural effusion|10035598|Pleural effusion|10035598|pleural effusion|C0032227|Pleural effusion disorder|| +011976|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary oedema|10037423|Pulmonary edema|10037375|pulmonary edema|C0034063|Pulmonary Edema|| +011977|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Renal failure|10038435|Kidney failure|10023418|kidney failure|C0035078|Kidney Failure|| +011978|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +011979|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminase elevations|C0438717|Transaminases increased|| +011980|d5929f91-6496-4c0e-97e8-0bd524e15763|BOSULIF|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +011981|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34066-1|BOXED WARNINGS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +011982|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34066-1|BOXED WARNINGS|Foetal death|10055690|Fetal death|10016479|fetal death|C0015927|Fetal Death||Animal +011983|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34066-1|BOXED WARNINGS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +011984|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34066-1|BOXED WARNINGS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenicity|C0232910|Teratogenesis||Animal +011985|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +011986|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +011987|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Abscess|10000269|Abscess|10000269|abscess|C0000833|Abscess|| +011988|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis|| +011989|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increase|C0151905|Alanine aminotransferase increased|| +011990|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +011991|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Arthritis|10003246|Arthritis|10003246|arthritis|C0003864|Arthritis|| +011992|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast increase|C0151904|Aspartate aminotransferase increased|| +011993|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +011994|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|creatinine elevations|C0151578|Creatinine increased|| +011995|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Cellulitis|10007882|Cellulitis|10007882|cellulitis|C0007642|Cellulitis|| +011996|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +011997|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|died|C1306577|Death (finding)|| +011998|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +011999|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012000|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +012001|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +012002|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Ecthyma|10014141|Ecthyma|10014141|ecthyma|C0013568|Ecthyma|| +012003|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Ejaculation failure|10014328|Anejaculation|10073936|absent ejaculation|C0278106|Anejaculation|| +012004|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Ejaculation failure|10014328|Ejaculation decreased|10014324|decreased ejaculate volume|C0235213|Ejaculation decreased|| +012005|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +012006|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +012007|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +012008|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Generalised oedema|10018092|Generalized edema|10018112|generalized edema|C1850534|Edema, generalized|| +012009|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +012010|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Hyperbilirubinaemia|10020578|Hyperbilirubinemia|10020582|hyperbilirubinemia|C0020433|Hyperbilirubinemia|| +012011|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Jaundice|10023126|Jaundice|10023126|jaundice|C0022346|Icterus|| +012012|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Lymphadenopathy|10025197|Lymphadenopathy|10025197|lymphadenopathy|C0497156|Lymphadenopathy|| +012013|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Lymphangitis|10025226|Lymphangitis|10025226|lymphangitis|C0024225|Lymphangitis|| +012014|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Malaise|10025482|Malaise|10025482|malaise|C0231218|Malaise|| +012015|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Melaena|10027141|Melena|10027162|melena|C0025222|Melena|| +012016|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Motion sickness|10027990|Motion sickness|10027990|motion sickness|C0026603|Motion Sickness|| +012017|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012018|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +012019|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +012020|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Low platelets|10024922|platelet count < 50,000|C0392386|Decreased platelet count|| +012021|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +012022|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Pyoderma|10037632|Pyoderma|10037632|pyoderma|C0034212|Pyoderma|| +012023|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +012024|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +012025|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Rash|10037844|Skin rash|10040913|skin rash|C0015230|Exanthema|| +012026|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Scrotal pain|10039757|Scrotal pain|10039757|scrotal pain|C0236078|Pain in scrotum|| +012027|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Seizure|10039906|Seizure|10039906|seizure|C0036572|Seizures|| +012028|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +012029|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +012030|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Testicular pain|10043345|Testicular pain|10043345|testicular pain|C0039591|Pain in testicle|| +012031|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Testicular swelling|10043354|Testicular swelling|10043354|testicular swelling|C2584688|Swelling of testicle (finding)|| +012032|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +012033|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevated transaminases|C0438717|Transaminases increased|| +012034|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +012035|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +012036|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevations in alt|C0151905|Alanine aminotransferase increased|| +012037|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|elevations in ast|C0151904|Aspartate aminotransferase increased|| +012038|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevations in bilirubin|C0311468|Increased bilirubin level (finding)|| +012039|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Blood creatinine increased|10005483|Raised serum creatinine|10037825|elevations of serum cr|C0700225|Serum creatinine raised|| +012040|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012041|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Drug effect decreased|10013678|Drug effect decreased|10013678|affect the absorption of oral contraceptives|C0521845|Drug action decreased|| +012042|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Ejaculation failure|10014328|Anejaculation|10073936|absent ejaculation|C0278106|Anejaculation|| +012043|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Ejaculation failure|10014328|Ejaculation decreased|10014324|decreased ejaculation|C0235213|Ejaculation decreased|| +012044|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +012045|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Foetal death|10055690|Fetal death|10016479|fetal death|C0015927|Fetal Death||Animal +012046|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal effects|C0426576|Gastrointestinal symptom|| +012047|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxic effect|10019850|hepatic effects|C0235378|Hepatotoxicity|| +012048|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Hypovolaemia|10021137|Volume depletion|10047691|volume depletion|C0546884|Hypovolemia|| +012049|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Infertility female|10021928|Infertility female|10021928|diestrus|C0012154|Diestrus||Animal +012050|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Infertility|10021926|Fertility decreased|10049232|impaired fertility|C0520927|Decreased fertility||Animal +012051|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk||Animal +012052|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Renal disorder|10038428|Renal disorder|10038428|renal effect|C1406663|symptoms; kidney|| +012053|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Scrotal pain|10039757|Scrotal pain|10039757|scrotal pain|C0236078|Pain in scrotum|| +012054|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Sperm concentration decreased|10070925|Sperm count decreased|10041481|reduced viable sperm counts|C0853711|Sperm count decreased||Animal +012055|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +012056|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenicity|C0232910|Teratogenesis||Animal +012057|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Testicular atrophy|10043298|Testicular atrophy|10043298|testicular atrophy|C0156312|Atrophy of testis||Animal +012058|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +012059|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevations in liver transaminases|C2674385|Elevated liver transaminases|| +012060|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +012061|d6658aeb-7bc1-4eef-ad0d-0a873ddbecf5|IMPAVIDO|43685-7|WARNINGS AND PRECAUTIONS|||||follicular atresia|||unmapped|Animal +012062|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +012063|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +012064|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +012065|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Apnoea|10002974|Apnea|10002972|apnea|C0003578|Apnea|| +012066|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +012067|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +012068|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Cardiac disorder|10061024|Cardiac disorder|10061024|acute exacerbation of cardiac compromise|C0018799|Heart Diseases|| +012069|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Cardiopulmonary failure|10051093|Cardio-respiratory failure|10049125|cardiorespiratory failure|C1444565|Cardiorespiratory failure|| +012070|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +012071|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Face oedema|10016029|Face edema|10016025|face edema|C0542571|Facial edema|| +012072|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Fluid overload|10016803|Fluid overload|10016803|fluid overload|C0546817|Fluid overload|| +012073|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +012074|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Hypersensitivity|10020751|Hypersensitivity|10020751|immune-mediated reactions|C0020517|Hypersensitivity|| +012075|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +012076|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Hypoxia|10021143|Hypoxia|10021143|hypoxia|C0242184|Hypoxia|| +012077|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Lip swelling|10024570|Lip swelling|10024570|lip swelling|C0240211|Lip swelling|| +012078|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Nephrotic syndrome|10029164|Nephrotic syndrome|10029164|nephrotic syndrome|C0027726|Nephrotic Syndrome|| +012079|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Periorbital oedema|10034545|Periorbital edema|10054541|periorbital edema|C0151205|Periorbital edema|| +012080|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +012081|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Respiratory disorder|10038683|Respiratory disorder|10038683|acute exacerbation of respiratory compromise|C0035204|Respiration Disorders|| +012082|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Respiratory distress|10038687|Respiratory distress|10038687|respiratory distress|C0476273|Respiratory distress|| +012083|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Skin necrosis|10040893|Skin necrosis|10040893|necrotizing skin lesions|C0151799|Skin necrosis|| +012084|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Swollen tongue|10042727|Tongue swelling non-specific|10043984|tongue swelling|C0236068|Tongue swelling|| +012085|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +012086|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Throat tightness|10043528|Throat tightness|10043528|throat tightness|C0236071|Feeling of throat tightness|| +012087|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34066-1|BOXED WARNINGS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +012088|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +012089|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +012090|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +012091|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +012092|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Anaphylactic shock|10002199|Anaphylactic shock|10002199|anaphylactic shock|C0002792|anaphylaxis|| +012093|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +012094|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Apnoea|10002974|Apnea|10002972|apnea|C0003578|Apnea|| +012095|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +012096|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +012097|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|Increased blood pressure|10021655|increased blood pressure|C0497247|Increase in blood pressure|| +012098|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +012099|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Cardiopulmonary failure|10051093|Cardio-respiratory failure|10049125|acute cardiorespiratory failure|C1444565|Cardiorespiratory failure|| +012100|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +012101|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +012102|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +012103|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Chills|10008531|Rigors|10039177|rigors|C0424790|Rigor - Temperature-associated observation|| +012104|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Cold sweat|10009866|Cold sweat|10009866|cold sweat|C0232431|Cold sweat|| +012105|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +012106|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +012107|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Cyanosis|10011703|Cyanosis|10011703|cyanosis|C0010520|Cyanosis|| +012108|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Dermatitis allergic|10012434|Allergic skin reaction|10001729|cutaneous immune-mediated reactions|C0863090|Allergic skin reaction|| +012109|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012110|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +012111|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +012112|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +012113|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +012114|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Feeling hot|10016334|Feeling hot|10016334|feeling hot|C2939147|Feels hot|| +012115|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Fluid overload|10016803|Fluid overload|10016803|fluid overload|C0546817|Fluid overload|| +012116|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +012117|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Glomerulonephritis membranous|10018372|Glomerulonephritis membranous|10018372|membranous glomerulonephritis|C0017665|Membranous glomerulonephritis|| +012118|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +012119|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +012120|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Hyperparathyroidism|10020705|Hyperparathyroidism|10020705|hyperparathyroidism|C0020502|Hyperparathyroidism|| +012121|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +012122|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|recurrent hypersensitivity reactions|C0020517|Hypersensitivity|| +012123|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Systemic allergic reaction|10066472|systemic immune-mediated reactions|C1736167|Systemic allergic reaction|| +012124|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +012125|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Hypoxia|10021143|Hypoxia|10021143|hypoxia|C0242184|Hypoxia|| +012126|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Influenza like illness|10022004|Flu-like illness|10016796|flu-like illness|C0521839|Influenza-like illness|| +012127|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +012128|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Lacrimation increased|10023644|Lacrimation increased|10023644|increased lacrimation|C0152227|Excessive tearing|| +012129|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Livedo reticularis|10024648|Livedo reticularis|10024648|livedo reticularis|C0085642|Livedo Reticularis|| +012130|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Local swelling|10024770|Local swelling|10024770|local swelling|C0853619|Local swelling|| +012131|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasm|10028333|muscle spasm|C0037763|Spasm|| +012132|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Muscle twitching|10028347|Muscle twitching|10028347|muscle twitching|C0231530|Muscle twitch|| +012133|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +012134|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012135|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Nephrotic syndrome|10029164|Nephrotic syndrome|10029164|nephrotic syndrome|C0027726|Nephrotic Syndrome|| +012136|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Nervousness|10029216|Nervousness|10029216|nervousness|C0027769|Nervousness|| +012137|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Nodal rhythm|10029470|Nodal rhythm|10029470|nodal rhythm|C0232208|Atrioventricular junctional rhythm|| +012138|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema, peripheral|C0085649|Peripheral edema|| +012139|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Oxygen saturation decreased|10033318|Oxygen saturation decreased|10033318|decreased oxygen saturation|C0746961|Oxygen saturation below reference range|| +012140|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +012141|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Pallor|10033546|Pallor|10033546|pallor|C0030232|Pallor|| +012142|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +012143|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Peripheral coldness|10034568|Peripheral coldness|10034568|peripheral coldness|C0277925|Cold extremities|| +012144|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Pharyngeal oedema|10034829|Pharyngeal edema|10054544|pharyngeal edema|C0236024|Edema of pharynx|| +012145|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +012146|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +012147|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +012148|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Rales|10037833|Rales|10037833|rales|C0034642|Rales|| +012149|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Rash erythematous|10037855|Rash erythematous|10037855|rash erythematous|C0234913|Rash erythematous|| +012150|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Rash macular|10037867|Rash macular|10037867|rash macular|C0221201|Macular rash|| +012151|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Rash maculo-papular|10037868|rash maculo-papular|C0423791|Maculopapular eruption|| +012152|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Rash papular|10037876|Rash papular|10037876|rash papular|C1519353|Skin Papule|| +012153|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +012154|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Respiratory arrest|10038669|Respiratory arrest|10038669|respiratory arrest|C0162297|Respiratory arrest|| +012155|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Respiratory failure|10038695|Respiratory failure|10038695|respiratory failure|C1145670|Respiratory Failure|| +012156|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Respiratory tract irritation|10038731|Respiratory tract irritation|10038731|respiratory tract irritation|C0854118|Respiratory tract irritation|| +012157|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Restlessness|10038743|Restlessness|10038743|restlessness|C3887611|Restlessness|| +012158|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Retching|10038776|Retching|10038776|retching|C0232602|Retching|| +012159|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsions|10010914|convulsions|C0036572|Seizures|| +012160|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Skin necrosis|10040893|Skin necrosis|10040893|necrotizing skin lesions|C0151799|Skin necrosis|| +012161|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Stridor|10042241|Stridor|10042241|stridor|C0038450|Stridor|| +012162|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Supraventricular tachycardia|10042604|Supraventricular tachycardia|10042604|supraventricular tachycardia|C0039240|Supraventricular tachycardia|| +012163|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +012164|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Tachypnoea|10043089|Tachypnea|10043088|tachypnea|C0231835|Tachypnea|| +012165|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Throat tightness|10043528|Throat tightness|10043528|throat tightness|C0236071|Feeling of throat tightness|| +012166|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Tremor|10044565|Tremor|10044565|tremor|C0040822|Tremor|| +012167|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +012168|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Ventricular extrasystoles|10047289|Ventricular extrasystoles|10047289|ventricular extrasystoles|C0151636|Premature ventricular contractions|| +012169|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +012170|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +012171|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|34084-4|ADVERSE REACTIONS|||||igg antibody titers with inhibitory activity|||unmapped| +012172|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +012173|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic shock|10002199|Anaphylactic shock|10002199|anaphylactic shock|C0002792|anaphylaxis|| +012174|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +012175|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Apnoea|10002974|Apnea|10002972|apnea|C0003578|Apnea|| +012176|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Arrhythmia|10003119|Cardiac arrhythmia|10007518|cardiac arrhythmia|C0003811|Cardiac Arrhythmia|| +012177|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Arthropathy|10003285|Arthropathy|10003285|inflammatory arthropathy|C0022408|Arthropathy|underspecified| +012178|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +012179|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure increased|10005750|Increased blood pressure|10021655|increased blood pressure|C0497247|Increase in blood pressure|| +012180|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +012181|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +012182|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +012183|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Cardiac disorder|10061024|Cardiac disorder|10061024|exacerbation of cardiac compromise|C0018799|Heart Diseases|| +012184|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Cardiopulmonary failure|10051093|Cardio-respiratory failure|10049125|acute cardiorespiratory failure|C1444565|Cardiorespiratory failure|| +012185|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +012186|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +012187|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Cyanosis|10011703|Cyanosis|10011703|cyanosis|C0010520|Cyanosis|| +012188|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +012189|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis allergic|10012434|Allergic skin reaction|10001729|immune-mediated cutaneous reactions|C0863090|Allergic skin reaction|| +012190|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +012191|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Drug effect decreased|10013678|Drug effect decreased|10013678|reduced clinical efficacy|C0521845|Drug action decreased|| +012192|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +012193|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +012194|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Face oedema|10016029|Face edema|10016025|face edema|C0542571|Facial edema|| +012195|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Feeling hot|10016334|Feeling hot|10016334|feeling hot|C2939147|Feels hot|| +012196|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Fluid overload|10016803|Fluid overload|10016803|fluid overload|C0546817|Fluid overload|| +012197|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +012198|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Glomerulonephritis membranous|10018372|Glomerulonephritis membranous|10018372|membranous glomerulonephritis|C0017665|Membranous glomerulonephritis|| +012199|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +012200|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +012201|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +012202|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|immune-mediated reactions|C0020517|Hypersensitivity|| +012203|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Systemic allergic reaction|10066472|systemic immune-mediated reactions|C1736167|Systemic allergic reaction|| +012204|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +012205|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +012206|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Hypoxia|10021143|Hypoxia|10021143|hypoxia|C0242184|Hypoxia|| +012207|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Lip swelling|10024570|Lip swelling|10024570|lip swelling|C0240211|Lip swelling|| +012208|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Motor dysfunction|10061296|Motor dysfunction|10061296|loss of motor function|C1864672|Loss of motor functions|| +012209|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012210|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Nephrotic syndrome|10029164|Nephrotic syndrome|10029164|nephrotic syndrome|C0027726|Nephrotic Syndrome|| +012211|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Nervousness|10029216|Nervousness|10029216|nervousness|C0027769|Nervousness|| +012212|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Oxygen saturation decreased|10033318|Oxygen saturation decreased|10033318|decreased oxygen saturation|C0746961|Oxygen saturation below reference range|| +012213|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Pallor|10033546|Pallor|10033546|pallor|C0030232|Pallor|| +012214|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +012215|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Periorbital oedema|10034545|Periorbital edema|10054541|periorbital edema|C0151205|Periorbital edema|| +012216|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Peripheral coldness|10034568|Peripheral coldness|10034568|peripheral coldness|C0277925|Cold extremities|| +012217|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +012218|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +012219|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +012220|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Red blood cell sedimentation rate increased|10049187|Erythrocyte sedimentation increased|10015257|elevated erythrocyte sedimentation rate|C0151632|ESR raised|| +012221|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Respiratory arrest|10038669|Respiratory arrest|10038669|respiratory arrest|C0162297|Respiratory arrest|| +012222|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Respiratory distress|10038687|Respiratory distress|10038687|respiratory distress|C0476273|Respiratory distress|| +012223|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Respiratory failure|10038695|Respiratory failure aggravated|10068615|exacerbation of respiratory compromise|C2363912|Respiratory failure aggravated|| +012224|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Restlessness|10038743|Restlessness|10038743|restlessness|C3887611|Restlessness|| +012225|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Seizure|10039906|Convulsions|10010914|convulsions|C0036572|Seizures|| +012226|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Skin necrosis|10040893|Skin necrosis|10040893|necrotizing skin lesions|C0151799|Skin necrosis|| +012227|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Sudden cardiac death|10049418|Sudden cardiac death|10049418|sudden cardiac death|C0085298|Sudden Cardiac Death|| +012228|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Swollen tongue|10042727|Tongue swelling non-specific|10043984|tongue swelling|C0236068|Tongue swelling|| +012229|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +012230|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Tachypnoea|10043089|Tachypnea|10043088|tachypnea|C0231835|Tachypnea|| +012231|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Throat tightness|10043528|Throat tightness|10043528|throat tightness|C0236071|Feeling of throat tightness|| +012232|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Type III immune complex mediated reaction|10053614|Type III immune complex mediated reaction|10053614|type iii immune-mediated reactions|C1096071|Type III immune complex mediated reaction|| +012233|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +012234|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Ventricular arrhythmia|10047281|Ventricular arrhythmia|10047281|ventricular arrhythmias|C0085612|Ventricular arrhythmia|| +012235|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +012236|d6bfbc45-2d34-439e-8aad-59ee2d53d4df|Lumizyme|43685-7|WARNINGS AND PRECAUTIONS|||||immune complex deposition|||unmapped| +012237|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Abdominal pain lower|10000084|Abdominal pain lower|10000084|abdominal pain lower|C0232495|Lower abdominal pain|| +012238|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +012239|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +012240|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Abdominal tenderness|10000097|Abdominal tenderness|10000097|abdominal tenderness|C0232498|Abdominal tenderness|| +012241|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Alanine aminotransferase abnormal|10001547|Alanine aminotransferase abnormal|10001547|alanine aminotransferase abnormal|C0855619|Alanine aminotransferase abnormal|| +012242|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +012243|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase abnormal|10003477|Aspartate aminotransferase abnormal|10003477|aspartate aminotransferase abnormal|C0855623|Aspartate aminotransferase abnormal|| +012244|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +012245|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Blood alkaline phosphatase increased|10059570|blood alkaline phosphatase-increased|C0852911|Blood alkaline phosphatase increased|| +012246|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|bilirubin elevations|C0311468|Increased bilirubin level (finding)|| +012247|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|blood pressure increased|C0497247|Increase in blood pressure|| +012248|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +012249|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|mace|C1320716|Cardiovascular event|| +012250|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +012251|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +012252|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012253|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolic events|C3544094|Arterial thromboembolism|| +012254|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase abnormal|10017688|Gamma-glutamyltransferase abnormal|10017688|gamma-glutamyltransferase abnormal|C0541979|Gamma-glutamyltransferase abnormal|| +012255|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|Gamma-glutamyltransferase increased|10017693|gamma-glutamyltransferase increased|C0151662|Gamma-glutamyl transferase raised|| +012256|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal disorder|10017944|gastrointestinal disorders|C0017178|Gastrointestinal Diseases|| +012257|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Gastrointestinal pain|10017999|Gastrointestinal pain|10017999|gastrointestinal pain|C0687713|Gastrointestinal pain|| +012258|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +012259|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +012260|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +012261|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|liver enzyme elevations|C0235996|Elevated liver enzymes|| +012262|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Hepatic enzyme increased|10060795|hepatic enzyme increased|C0235996|Elevated liver enzymes|| +012263|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Hepatic function abnormal|10019670|Hepatic function abnormal|10019670|hepatic function abnormal|C0086565|Liver Dysfunction|| +012264|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +012265|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Hypertensive cardiomyopathy|10058222|Hypertensive cardiomyopathy|10058222|hypertensive cardiomyopathy|C1144799|Hypertensive cardiomyopathy|| +012266|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Hypertensive crisis|10020802|Hypertensive crisis|10020802|hypertensive crisis|C0020546|Hypertensive crisis|| +012267|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +012268|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Liver function test abnormal|10024690|Liver function test abnormal|10024690|liver function test abnormal|C0151766|Liver function tests abnormal finding|| +012269|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Lung neoplasm malignant|10058467|Lung neoplasm malignant|10058467|lung neoplasm malignant|C0242379|Malignant neoplasm of lung|| +012270|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryofetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +012271|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +012272|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012273|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +012274|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminase increased|C0438717|Transaminases increased|| +012275|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +012276|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +012277|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevations of alt|C0151905|Alanine aminotransferase increased|| +012278|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast elevations|C0151904|Aspartate aminotransferase increased|| +012279|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|elevations of alkp|C0151849|Alkaline phosphatase raised|| +012280|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevations of bilirubin|C0311468|Increased bilirubin level (finding)|| +012281|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012282|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolic events|C3544094|Arterial thromboembolism|| +012283|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +012284|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Foetal death|10055690|Fetal death|10016479|embryofetocidal|C0015927|Fetal Death||Animal +012285|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Gamma-glutamyltransferase increased|10017693|GGT increased|10056910|elevations of ggt|C0151662|Gamma-glutamyl transferase raised|| +012286|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +012287|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding events|C0019080|Hemorrhage|| +012288|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|liver enzyme increases|C0235996|Elevated liver enzymes|| +012289|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryofetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +012290|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +012291|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012292|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenic|C0232910|Teratogenesis||Animal +012293|da1c9f37-779e-4682-816f-93d0faa4cfc9|Ofev|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +012294|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34066-1|BOXED WARNINGS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis|| +012295|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +012296|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34066-1|BOXED WARNINGS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +012297|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34066-1|BOXED WARNINGS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +012298|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +012299|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +012300|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Acute respiratory distress syndrome|10001052|Acute respiratory distress syndrome|10001052|acute respiratory distress syndrome|C0035222|Respiratory Distress Syndrome, Adult|| +012301|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis|| +012302|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevated alt|C0151905|Alanine aminotransferase increased|| +012303|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +012304|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Anaphylactic shock|10002199|Anaphylactic shock|10002199|anaphylactic shock|C0002792|anaphylaxis|| +012305|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +012306|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Arthropathy|10003285|Arthropathy|10003285|arthropathy|C0022408|Arthropathy|| +012307|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +012308|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +012309|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +012310|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Blood bilirubin increased|10005364|blood bilirubin increased|C0311468|Increased bilirubin level (finding)|| +012311|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|Blood creatine phosphokinase increased|10005470|blood creatinine phosphokinase increased|C0853034|Blood creatine phosphokinase increased|| +012312|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Blood zinc decreased|10005867|Zinc decreased|10048258|decreased plasma zinc concentrations|C0855675|Blood zinc decreased|| +012313|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Bruxism|10006514|Bruxism|10006514|bruxism|C0006325|Bruxism|| +012314|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Cardiac failure|10007554|cardiac failure|C0018801|Heart failure|| +012315|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Cerebellar syndrome|10008072|Cerebellar syndrome|10008072|cerebellar syndrome|C0007760|Cerebellar Diseases|| +012316|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Cerebral haemorrhage|10008111|Cerebral hemorrhage|10008114|cerebral hemorrhage|C2937358|Cerebral Hemorrhage|| +012317|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +012318|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Chondropathy|10061762|Chondropathy|10061762|chondropathy|C0007302|Cartilage Diseases|| +012319|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Chromaturia|10008796|Chromaturia|10008796|chromaturia|C0541832|Chromaturia|| +012320|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Cryptococcal cutaneous infection|10054216|Cryptococcal cutaneous infection|10054216|cryptococcal cutaneous infection|C1096256|Cryptococcal cutaneous infection|| +012321|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +012322|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +012323|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +012324|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012325|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +012326|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +012327|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Encephalitis enteroviral|10063946|Encephalitis enteroviral|10063946|enteroviral encephalitis|C0338401|Enteroviral encephalitis|| +012328|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Enterocolitis|10014893|Enterocolitis|10014893|enterocolitis|C0014356|Enterocolitis|| +012329|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +012330|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Furuncle|10017553|Furuncle|10017553|furuncle|C0242301|furuncle|| +012331|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Gait disturbance|10017577|gait disturbance|C0575081|Gait abnormality|| +012332|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Gastric ulcer|10017822|Gastric ulcer|10017822|gastric ulcer|C0038358|Gastric ulcer|| +012333|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Glycosuria|10018473|Glycosuria|10018473|glycosuria|C0017979|Glycosuria|| +012334|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Haemoglobinuria|10018906|Hemoglobinuria|10019489|hemoglobinuria|C0019048|Hemoglobinuria|| +012335|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Haemoptysis|10018964|Hemoptysis|10019523|hemoptysis|C0019079|Hemoptysis|| +012336|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +012337|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Henoch-Schonlein purpura|10019617|Henoch-Schonlein purpura|10019617|henoch-schonlein purpura|C0034152|Henoch-Schoenlein Purpura|| +012338|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Hepatitis infectious|10019780|Infectious hepatitis|10021913|infectious hepatitis|C0019159|Hepatitis A|| +012339|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Hepatomegaly|10019842|Hepatomegaly|10019842|hepatomegaly|C0019209|Hepatomegaly|| +012340|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +012341|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +012342|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +012343|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Hypospadias|10021093|Hypospadias|10021093|hypospadias|C1691215|Penile hypospadias|| +012344|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +012345|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Increased appetite|10021654|Increased appetite|10021654|increased appetite|C0232461|Increased appetite (finding)|| +012346|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Intracranial pressure increased|10022773|Intracranial pressure increased|10022773|intracranial pressure increased|C0151740|Intracranial Hypertension|| +012347|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Jaundice|10023126|Jaundice|10023126|jaundice|C0022346|Icterus|| +012348|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Metabolic acidosis|10027417|Metabolic acidosis|10027417|metabolic acidosis|C0220981|Metabolic acidosis|| +012349|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Multi-organ failure|10028154|Multi-organ failure|10028154|multi-organ failure|C0026766|Multiple Organ Failure|| +012350|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Myositis|10028653|Myositis|10028653|myositis|C0027121|Myositis|| +012351|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012352|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +012353|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|neutrophil count decreased|C0853697|Neutrophil count decreased|| +012354|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Obsessive-compulsive disorder|10029898|Obsessive-compulsive disorder|10029898|obsessive-compulsive disorder|C0028768|Obsessive-Compulsive Disorder|| +012355|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +012356|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +012357|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +012358|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +012359|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Papilloedema|10033712|Papilledema|10033703|papilledema|C0030353|Papilledema|| +012360|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Parotid gland enlargement|10034023|Parotid gland enlargement|10034023|parotid gland enlargement|C0341047|Hypertrophy of parotid gland|| +012361|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Periorbital oedema|10034545|Periorbital edema|10054541|periorbital edema|C0151205|Periorbital edema|| +012362|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Pharyngitis|10034835|Pharyngitis|10034835|pharyngitis|C0031350|Pharyngitis|| +012363|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Photosensitivity reaction|10034972|Photosensitivity reaction|10034972|photosensitivity reaction|C0162830|Dermatitis, Phototoxic|| +012364|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +012365|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritis|C0033774|Pruritus|| +012366|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Psychomotor skills impaired|10049215|Psychomotor skills impaired|10049215|psychomotor skills impaired|C0877167|Psychomotor skills impaired|| +012367|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +012368|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Pyramidal tract syndrome|10063636|Pyramidal tract syndrome|10063636|pyramidal tract syndrome|C1504405|Pyramidal tract dysfunction|| +012369|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +012370|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Rash pustular|10037888|Rash pustular|10037888|rash pustular|C0085641|Pustular rash|| +012371|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +012372|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Rectal haemorrhage|10038063|Rectal hemorrhage|10038064|rectal hemorrhage|C0267596|Rectal hemorrhage|| +012373|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Retinal toxicity|10048955|Retinal toxicity|10048955|retinal toxicity|C0877104|Retinal toxicity|| +012374|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsion|10010904|convulsion|C0036572|Seizures|| +012375|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +012376|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +012377|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Subcutaneous abscess|10042343|Subcutaneous abscess|10042343|subcutaneous abscess|C0241266|Subcutaneous Abscess|| +012378|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Thrombocytosis|10043563|Thrombocytosis|10043563|thrombocytosis|C0836924|Thrombocytosis|| +012379|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Trismus|10044684|Trismus|10044684|trismus|C0041105|Trismus|| +012380|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +012381|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +012382|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +012383|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|43685-7|WARNINGS AND PRECAUTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis|| +012384|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increase in alt|C0151905|Alanine aminotransferase increased|| +012385|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increase in ast|C0151904|Aspartate aminotransferase increased|| +012386|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|43685-7|WARNINGS AND PRECAUTIONS|Blood zinc decreased|10005867|Zinc decreased|10048258|decreased plasma zinc concentrations|C0855675|Blood zinc decreased|| +012387|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|43685-7|WARNINGS AND PRECAUTIONS|Congenital anomaly|10010356|Congenital anomaly|10010356|embryofetal malformations|C0000768|Congenital Abnormality||Animal +012388|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +012389|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +012390|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|43685-7|WARNINGS AND PRECAUTIONS|Foetal death|10055690|Fetal death|10016479|embryofetal death|C0015927|Fetal Death||Animal +012391|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +012392|dc8cbc3d-026c-0db5-42e8-8e93d374dd23|FERRIPROX|43685-7|WARNINGS AND PRECAUTIONS|||||genotoxicity|C0598309|genotoxicity|unmapped|Animal +012393|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +012394|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +012395|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Abdominal tenderness|10000097|Abdominal tenderness|10000097|abdominal tenderness|C0232498|Abdominal tenderness|| +012396|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +012397|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +012398|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Blood alkaline phosphatase increased|10059570|increased blood alkaline phosphatase|C0852911|Blood alkaline phosphatase increased|| +012399|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Blood bicarbonate decreased|10005359|Blood bicarbonate decreased|10005359|decreased blood bicarbonate|C0852909|Blood bicarbonate level decreased below normal|| +012400|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Drug eruption|10013687|Drug eruption|10013687|drug eruption|C0011609|Drug Eruptions|| +012401|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +012402|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +012403|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +012404|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +012405|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +012406|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Hepatic enzyme increased|10060795|increased hepatic enzymes|C0235996|Elevated liver enzymes|| +012407|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +012408|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +012409|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Intestinal obstruction|10022687|Intestinal obstruction|10022687|intestinal obstruction|C0021843|Intestinal Obstruction|| +012410|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Megacolon|10027110|Megacolon|10027110|megacolon|C0025160|Megacolon|| +012411|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Metabolic acidosis|10027417|Metabolic acidosis|10027417|metabolic acidosis|C0220981|Metabolic acidosis|| +012412|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012413|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +012414|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|decreased platelet count|C0392386|Decreased platelet count|| +012415|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +012416|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +012417|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +012418|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema of the face|C0743747|FACE ANGIOEDEMA|duplicate| +012419|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +012420|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|43685-7|WARNINGS AND PRECAUTIONS|Face oedema|10016029|Face edema|10016025|angioedema of the face|C0743747|FACE ANGIOEDEMA|duplicate| +012421|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|acute hypersensitivity reactions|C0020517|Hypersensitivity|| +012422|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|43685-7|WARNINGS AND PRECAUTIONS|Oedema mouth|10030110|Edema mouth|10054496|angioedema of the mouth|C0236065|Edema of mouth|duplicate| +012423|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|43685-7|WARNINGS AND PRECAUTIONS|Pharyngeal oedema|10034829|Throat edema|10043519|angioedema of the throat|C0236024|Edema of pharynx|duplicate| +012424|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +012425|dd966338-c820-4270-b704-09ef75fa3ceb|Dificid|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +012426|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distention|C0000731|Abdomen distended|| +012427|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Aggression|10001488|Aggression|10001488|aggression|C0001807|Aggressive behavior|| +012428|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Agitation|10001497|Agitation|10001497|agitation|C0085631|Agitation|| +012429|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +012430|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +012431|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +012432|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Apathy|10002942|Apathy|10002942|apathy|C0085632|Apathy|| +012433|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Aspiration|10003504|Aspiration|10003504|aspiration|C0700198|Pulmonary aspiration|| +012434|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Ataxia|10003591|Ataxia|10003591|ataxia|C0004134|Ataxia|| +012435|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +012436|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Confusional state|10010305|Confusional state|10010305|confusional state|C0009676|Confusion|| +012437|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +012438|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +012439|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +012440|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Delirium|10012218|Delirium|10012218|delirium|C0011206|Delirium|| +012441|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Delusion|10012239|Delusion|10012239|delusion|C0011253|Delusions|| +012442|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Dependence|10012335|Dependence physiological|10012351|physical dependence|C0278080|Physical addiction|| +012443|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +012444|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Diplopia|10013036|Diplopia|10013036|diplopia|C0012569|Diplopia|| +012445|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Drooling|10013642|Drooling|10013642|drooling|C0013132|Drooling|| +012446|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Drug dependence|10013663|Dependence psychological|10012352|psychological dependence|C0278079|Psychological addiction|| +012447|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Dysarthria|10013887|Dysarthria|10013887|dysarthria|C0013362|Dysarthria|| +012448|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +012449|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Eosinophilia|10014950|Eosinophilia|10014950|eosinophilia|C0014457|Eosinophilia|| +012450|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Face oedema|10016029|Face edema|10016025|facial edema|C0542571|Facial edema|| +012451|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +012452|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Hallucination|10019063|Hallucination|10019063|hallucination|C0018524|Hallucinations|| +012453|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Hepatic enzyme increased|10060795|hepatic enzyme increased|C0235996|Elevated liver enzymes|| +012454|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Hypothermia|10021113|Hypothermia|10021113|hypothermia|C0413252|Hypothermia due to exposure|| +012455|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Increased appetite|10021654|Increased appetite|10021654|increased appetite|C0232461|Increased appetite (finding)|| +012456|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +012457|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +012458|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Lethargy|10024264|Lethargy|10024264|lethargy|C0023380|Lethargy|| +012459|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +012460|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Lip oedema|10024558|Lip edema|10024553|lip edema|C0541923|Lip oedema|| +012461|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +012462|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +012463|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Psychomotor hyperactivity|10037211|Psychomotor hyperactivity|10037211|psychomotor hyperactivity|C3887612|Psychomotor Agitation|| +012464|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +012465|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +012466|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Respiratory depression|10038678|Respiratory depression|10038678|respiratory depression|C0235063|Respiratory Depression|| +012467|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Sedation|10039897|Sedation aggravated|10048344|potentiation of sedation|C0856086|Sedation aggravated|| +012468|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +012469|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|dermatological reactions|C0221743|Skin reaction|| +012470|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +012471|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +012472|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +012473|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +012474|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +012475|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Urinary retention|10046555|Urinary retention|10046555|urinary retention|C0080274|Urinary Retention|| +012476|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +012477|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +012478|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +012479|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +012480|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Suicide|10042462|suicides|C0038661|Suicide|| +012481|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|43685-7|WARNINGS AND PRECAUTIONS|Dependence|10012335|Dependence physiological|10012351|physical dependence|C0278080|Physical addiction|| +012482|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|43685-7|WARNINGS AND PRECAUTIONS|Drug dependence|10013663|Dependence psychological|10012352|psychological dependence|C0278079|Psychological addiction|| +012483|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|43685-7|WARNINGS AND PRECAUTIONS|Sedation|10039897|Sedation|10039897|sedation|C0235195|Sedated state|| +012484|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|skin reactions|C0221743|Skin reaction|| +012485|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +012486|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|43685-7|WARNINGS AND PRECAUTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +012487|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal behavior|C1760428|Suicidal behavior|| +012488|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thinking|C0424000|Feeling suicidal (finding)||DrugClass +012489|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|TEN|10043221|ten|C0014518|Toxic Epidermal Necrolysis|| +012490|de03bd69-2dca-459c-93b4-541fd3e9571c|Onfi|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +012491|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34066-1|BOXED WARNINGS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +012492|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|deaths|C1306577|Death (finding)|| +012493|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34066-1|BOXED WARNINGS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +012494|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34066-1|BOXED WARNINGS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +012495|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34066-1|BOXED WARNINGS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +012496|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34066-1|BOXED WARNINGS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +012497|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34066-1|BOXED WARNINGS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +012498|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34066-1|BOXED WARNINGS|Rash generalised|10037858|Generalized rash|10049201|generalized rash|C0497365|Rash generalised|| +012499|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +012500|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increased alt|C0151905|Alanine aminotransferase increased|| +012501|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +012502|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +012503|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Arrhythmia|10003119|Arrhythmia|10003119|arrhythmia|C0003811|Cardiac Arrhythmia|| +012504|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +012505|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increased ast|C0151904|Aspartate aminotransferase increased|| +012506|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +012507|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +012508|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|increased bilirubin|C0311468|Increased bilirubin level (finding)|| +012509|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|bone marrow suppression|C0854467|Myelosuppression|| +012510|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Cerebral haemorrhage|10008111|Cerebral hemorrhage|10008114|cerebral hemorrhage|C2937358|Cerebral Hemorrhage|| +012511|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +012512|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +012513|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +012514|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +012515|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +012516|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012517|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +012518|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +012519|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +012520|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +012521|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Dysuria|10013990|Dysuria|10013990|dysuria|C0013428|Dysuria|| +012522|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +012523|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +012524|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +012525|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal adverse reactions|C0426576|Gastrointestinal symptom|| +012526|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Haematology test abnormal|10057755|Hematology test abnormal|10057760|hematologic abnormalities|C0475182|Hematology finding abnormal|| +012527|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +012528|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +012529|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +012530|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +012531|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infectious adverse events|C1556682|Adverse Event Associated with Infection|| +012532|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Intestinal obstruction|10022687|Intestinal obstruction|10022687|intestinal obstruction|C0021843|Intestinal Obstruction|| +012533|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +012534|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +012535|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Mucosal inflammation|10028116|Mucosal inflammation|10028116|mucosal inflammation|C0333355|Inflammatory disease of mucous membrane|| +012536|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +012537|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012538|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +012539|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +012540|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +012541|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +012542|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +012543|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +012544|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +012545|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Septic shock|10040070|Septic shock|10040070|septic shock|C0036983|Septic Shock|| +012546|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +012547|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +012548|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Ventricular fibrillation|10047290|Ventricular fibrillation|10047290|ventricular fibrillation|C0042510|Ventricular Fibrillation|| +012549|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +012550|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +012551|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Abortion|10000210|Abortion|10000210|abortifacient|C0156543|Unspecified Abortion||Animal +012552|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +012553|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Bone marrow failure|10065553|Myelosuppression|10028584|bone marrow suppression|C0854467|Myelosuppression|| +012554|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +012555|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|mortality|C1306577|Death (finding)|| +012556|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +012557|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012558|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Electrolyte imbalance|10014418|Electrolyte imbalance|10014418|electrolyte imbalance|C0342579|Electrolyte imbalance|| +012559|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Enterocolitis|10014893|Enterocolitis|10014893|enterocolitis|C0014356|Enterocolitis|| +012560|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +012561|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +012562|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +012563|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal disorder|10017944|Gastrointestinal disorder|10017944|gastrointestinal disorders|C0017178|Gastrointestinal Diseases|| +012564|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +012565|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|perforation gastrointestinal|C0151664|Gastrointestinal perforation|| +012566|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +012567|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +012568|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +012569|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Ileus|10021328|Ileus|10021328|ileus|C1258215|Ileus|| +012570|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infectious adverse events|C1556682|Adverse Event Associated with Infection|| +012571|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Liver disorder|10024670|Hepatic impairment|10052254|hepatic impairment|C0948807|Hepatic impairment|| +012572|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|fetotoxic|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk||Animal +012573|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012574|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +012575|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Neutropenic colitis|10062959|Neutropenic enterocolitis|10029359|neutropenic enterocolitis|C0343387|Enterocolitis, Neutropenic|| +012576|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Neutropenic infection|10059482|Neutropenic infection|10059482|neutropenic infections|C1167779|Neutropenic infection|| +012577|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Obstructive uropathy|10029984|Obstructive uropathy|10029984|obstructive uropathy|C0178879|Urinary tract obstruction|| +012578|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +012579|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Rash generalised|10037858|Generalized rash|10049201|generalized rash|C0497365|Rash generalised|| +012580|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +012581|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +012582|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Septic shock|10040070|Septic shock|10040070|septic shock|C0036983|Septic Shock|| +012583|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +012584|de3d9c26-572b-4ea4-9b2d-dd58a2b3e8fa|Jevtana|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +012585|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +012586|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34066-1|BOXED WARNINGS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +012587|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34066-1|BOXED WARNINGS|Hepatitis B|10019731|Hepatitis B reactivation|10058827|hbv reactivation|C1142420|Hepatitis B reactivation|| +012588|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34066-1|BOXED WARNINGS|Hepatitis fulminant|10019772|Hepatitis fulminant|10019772|fulminant hepatitis|C0302809|Fulminant hepatitis|| +012589|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34066-1|BOXED WARNINGS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|progressive multifocal leukoencephalopathy|C0023524|Leukoencephalopathy, Progressive Multifocal|| +012590|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increased|C0151905|Alanine aminotransferase increased|| +012591|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|SGPT increased|10040526|sgpt increased|C0151905|Alanine aminotransferase increased|| +012592|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +012593|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast increased|C0151904|Aspartate aminotransferase increased|| +012594|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|SGOT increased|10040524|sgot increased|C0151904|Aspartate aminotransferase increased|| +012595|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +012596|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|alkaline phosphatase increased|C0151849|Alkaline phosphatase raised|| +012597|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|creatinine increased|C0151578|Creatinine increased|| +012598|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiac events|C0741923|cardiac event|| +012599|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +012600|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +012601|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +012602|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012603|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhagic events|C0019080|Hemorrhage|| +012604|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Elevated liver enzymes|10014481|elevations in liver enzymes|C0235996|Elevated liver enzymes|| +012605|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Hepatic enzyme increased|10060795|Hepatic enzyme increased|10060795|hepatic enzyme elevations|C0235996|Elevated liver enzymes|| +012606|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Hepatitis B|10019731|Hepatitis B reactivation|10058827|hepatitis b reactivation|C1142420|Hepatitis B reactivation|| +012607|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxic effect|10019850|hepatotoxicity adverse events|C0235378|Hepatotoxicity|| +012608|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Hyperkalaemia|10020646|Hyperkalemia|10020647|hyperkalemia|C0020461|Hyperkalemia|| +012609|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Hypoalbuminaemia|10020942|Hypoalbuminemia|10020943|hypoalbuminemia|C0239981|Hypoalbuminemia|| +012610|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +012611|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +012612|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +012613|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infection|C3714514|Infection|| +012614|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +012615|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +012616|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +012617|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Musculoskeletal disorder|10048592|Musculoskeletal disorder|10048592|adverse events related to musculoskeletal disorders|C0026857|Musculoskeletal Diseases|| +012618|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +012619|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012620|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Late onset neutropenia|10074781|late-onset neutropenia|C3805247|Late onset neutropenia|| +012621|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +012622|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +012623|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|progressive multifocal leukoencephalopathy|C0023524|Leukoencephalopathy, Progressive Multifocal|| +012624|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +012625|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +012626|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +012627|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +012628|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +012629|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Bacterial infection|10060945|Bacterial infection|10060945|bacterial infections|C0004623|Bacterial Infections|| +012630|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|increase in bilirubin levels|C0311468|Increased bilirubin level (finding)|| +012631|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +012632|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +012633|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)||DrugClass +012634|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012635|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +012636|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +012637|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Fungal infection|10017533|Fungal infection|10017533|fungal infections|C0026946|Mycoses|| +012638|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhagic events|C0019080|Hemorrhage|| +012639|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +012640|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure||DrugClass +012641|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Liver failure|10024678|liver failure|C0085605|Liver Failure|| +012642|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis B|10019731|Hepatitis B reactivation|10058827|reactivation hepatitis b infection|C1142420|Hepatitis B reactivation|| +012643|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis fulminant|10019772|Hepatitis fulminant|10019772|fulminant hepatitis|C0302809|Fulminant hepatitis||DrugClass +012644|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +012645|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Hyperkalaemia|10020646|Hyperkalemia|10020647|hyperkalemia|C0020461|Hyperkalemia|| +012646|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Hyperphosphataemia|10020711|Hyperphosphatemia|10020712|hyperphosphatemia|C0085681|Hyperphosphatemia (disorder)|| +012647|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +012648|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Hyperuricaemia|10020903|Hyperuricemia|10020907|hyperuricemia|C0740394|Hyperuricemia|| +012649|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +012650|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +012651|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Infection reactivation|10070891|Infection reactivation|10070891|reactivated viral infections|C3160756|Infection reactivation|duplicate| +012652|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infection|C3714514|Infection|| +012653|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +012654|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|JC virus infection|10023163|JC virus infection|10023163|jc virus infection|C0857836|JC virus infection|| +012655|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Laryngeal oedema|10023845|Laryngeal edema|10023838|laryngeal edema|C0023052|Laryngeal Edema|| +012656|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Larynx irritation|10058670|Larynx irritation|10058670|larynx irritation|C1142073|Larynx irritation|| +012657|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012658|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Late onset neutropenia|10074781|neutropenia late onset|C3805247|Late onset neutropenia|| +012659|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +012660|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|pml|C0023524|Leukoencephalopathy, Progressive Multifocal|| +012661|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +012662|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Respiratory symptom|10075535|Respiratory symptom|10075535|respiratory symptoms|C0037090|Signs and Symptoms, Respiratory|| +012663|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +012664|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Throat irritation|10043521|Throat irritation|10043521|throat irritation|C0700184|Throat irritation|| +012665|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|acute thrombocytopenia|C0040034|Thrombocytopenia|| +012666|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|increase in transaminase levels|C0438717|Transaminases increased|| +012667|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +012668|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Viral infection|10047461|Viral infection|10047461|new viral infections|C0042769|Virus Diseases|| +012669|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +012670|df12ceb2-5b4b-4ab5-a317-2a36bf2a3cda|Gazyva|43685-7|WARNINGS AND PRECAUTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +012671|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|Acute febrile neutrophilic dermatosis|10000748|Acute febrile neutrophilic dermatosis|10000748|acute febrile neutrophilic dermatosis|C0085077|Sweet Syndrome||DrugClass +012672|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|Acute febrile neutrophilic dermatosis|10000748|Sweet's syndrome|10042673|sweet's syndrome|C0085077|Sweet Syndrome||DrugClass +012673|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|Acute respiratory distress syndrome|10001052|Acute respiratory distress syndrome|10001052|acute respiratory distress syndrome|C0035222|Respiratory Distress Syndrome, Adult|| +012674|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|Bone pain|10006002|Bone pain|10006002|bone pain|C0151825|Bone pain|| +012675|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|Capillary leak syndrome|10007196|Capillary leak syndrome|10007196|capillary leak syndrome|C0343084|Capillary Leak Syndrome|| +012676|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|Cutaneous vasculitis|10011686|Cutaneous vasculitis|10011686|cutaneous vasculitis|C0262988|Vasculitis of the skin||DrugClass +012677|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache||DrugClass +012678|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +012679|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|Leukocytosis|10024378|Leukocytosis|10024378|leukocytosis|C0023518|Leukocytosis|| +012680|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia||DrugClass +012681|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Malignant neoplasm growth accelerated|10065302|tumor growth stimulatory effects on malignant cells|C1699554|Malignant neoplasm growth accelerated|| +012682|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|Splenic rupture|10041658|Splenic rupture|10041658|splenic rupture|C0038000|Splenic Rupture|| +012683|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia||DrugClass +012684|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting||DrugClass +012685|df918ec2-0907-443f-a52a-b72866959644|GRANIX|34084-4|ADVERSE REACTIONS|White blood cell count increased|10047943|WBC increased|10056739|wbc counts > 100,000 x 10 6 /l|C0750426|White blood cell count increased (lab result)|| +012686|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Acute respiratory distress syndrome|10001052|ARDS|10003083|ards|C0035222|Respiratory Distress Syndrome, Adult||DrugClass +012687|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Acute respiratory distress syndrome|10001052|Acute respiratory distress syndrome|10001052|acute respiratory distress syndrome|C0035222|Respiratory Distress Syndrome, Adult||DrugClass +012688|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis||DrugClass +012689|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioneurotic edema|10002471|angioneurotic edema|C0002994|Angioedema|| +012690|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Capillary leak syndrome|10007196|Capillary leak syndrome|10007196|capillary leak syndrome|C0343084|Capillary Leak Syndrome||DrugClass +012691|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +012692|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis allergic|10012434|Dermatitis allergic|10012434|dermatitis allergic|C0011615|Dermatitis, Atopic|| +012693|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Drug hypersensitivity|10013700|Drug hypersensitivity|10013700|drug hypersensitivity|C0013182|Drug Allergy|| +012694|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Haemoconcentration|10018873|Hemoconcentration|10019479|hemoconcentration|C0854379|Haemoconcentration|| +012695|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction||DrugClass +012696|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +012697|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Hypoalbuminaemia|10020942|Hypoalbuminemia|10020943|hypoalbuminemia|C0239981|Hypoalbuminemia|| +012698|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +012699|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Myelodysplastic syndrome|10028533|Myelodysplasia|10028532|myelodysplasia|C0026985|Myelodysplasia|| +012700|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Myeloid metaplasia|10028561|Myeloid metaplasia|10028561|myeloid malignancies|C2939461|Myeloid neoplasm|| +012701|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm|10028980|Neoplasm growth accelerated|10028994|growth factor for tumor|C0549387|Neoplasm growth accelerated|| +012702|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +012703|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Rash pruritic|10037884|Pruritic rash|10037085|pruritic rash|C0033771|Prurigo|| +012704|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +012705|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Sickle cell anaemia with crisis|10040642|Sickle cell crisis|10040643|sickle cell crisis|C0238425|Hemoglobin SS disease with crisis|| +012706|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Splenic rupture|10041658|Splenic rupture|10041658|splenic rupture|C0038000|Splenic Rupture|| +012707|df918ec2-0907-443f-a52a-b72866959644|GRANIX|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +012708|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34066-1|BOXED WARNINGS|Cardiovascular disorder|10007649|Cardiovascular disorder|10007649|cardiovascular disorders|C0007222|Cardiovascular Diseases|| +012709|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34066-1|BOXED WARNINGS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident||DrugClass +012710|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34066-1|BOXED WARNINGS|Deep vein thrombosis|10051055|DVT|10013877|dvt|C0149871|Deep Vein Thrombosis||DrugClass +012711|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34066-1|BOXED WARNINGS|Deep vein thrombosis|10051055|Deep vein thrombosis|10051055|deep vein thrombosis|C0149871|Deep Vein Thrombosis||DrugClass +012712|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34066-1|BOXED WARNINGS|Dementia|10012267|Dementia|10012267|dementia|C0497327|Dementia|| +012713|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34066-1|BOXED WARNINGS|Endometrial cancer|10014733|Endometrial cancer|10014733|endometrial cancer|C0476089|Endometrial Carcinoma||DrugClass +012714|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +012715|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Cardiovascular disorder|10007649|Cardiovascular disorder|10007649|cardiovascular disorders|C0007222|Cardiovascular Diseases|| +012716|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Deep vein thrombosis|10051055|Thrombosis venous deep|10043642|deep venous thrombosis|C0149871|Deep Vein Thrombosis|| +012717|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012718|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +012719|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +012720|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolism|C1861172|Venous Thromboembolism|| +012721|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Gallbladder disorder|10017626|Gallbladder disease|10017641|gallbladder disease|C0016977|Gall Bladder Diseases|| +012722|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Hot flush|10060800|Hot flush|10060800|hot flush|C0600142|Hot flushes|| +012723|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Hypertriglyceridaemia|10020869|Hypertriglyceridemia|10020870|hypertriglyceridemia|C0020557|Hypertriglyceridemia|| +012724|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +012725|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012726|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Neck pain|10028836|Neck pain|10028836|neck pain|C0007859|Neck Pain|| +012727|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignant neoplasms|C0006826|Malignant Neoplasms|| +012728|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +012729|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +012730|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|34084-4|ADVERSE REACTIONS|Retinal vein thrombosis|10038908|Retinal vein thrombosis|10038908|retinal vein thrombosis|C1527411|Thrombosis of retinal vein|| +012731|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Activated partial thromboplastin time shortened|10000637|Partial thromboplastin time shortened|10075335|accelerated partial thromboplastin time|C0853224|Activated partial thromboplastin time shortened|| +012732|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Alpha-1 anti-trypsin increased|10001808|Alpha-1 anti-trypsin increased|10001808|increased alpha-1-antitrypsin|C0860914|Alpha-1 anti-trypsin increased|| +012733|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema aggravated|10048331|exacerbate angioedema|C0863128|Angioedema aggravated|| +012734|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Antithrombin III decreased|10049547|Antithrombin III decreased|10049547|decreased antithrombin iii activity|C3670602|Antithrombin III activity decreased below normal range|| +012735|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Blood fibrinogen increased|10005521|Fibrinogen increased|10016597|increased levels of fibrinogen activity|C0852921|Blood fibrinogen increased|| +012736|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Blood oestrogen increased|10005688|Estrogen increased|10015518|increased total circulating sex steroids|C0235923|Oestrogen increased|duplicate| +012737|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure increased|10005750|Blood pressure increased|10005750|increases in blood pressure|C0497247|Increase in blood pressure|| +012738|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Blood testosterone decreased|10005814|Testosterone decreased|10043368|testosterone decreased|C1295654|Decreased testosterone level|| +012739|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Blood testosterone increased|10005815|Testosterone increased|10043370|increased total circulating sex steroids|C0241358|Increased testosterone|duplicate| +012740|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Blood triglycerides increased|10005839|Plasma triglycerides increased|10035456|elevations of plasma triglycerides|C0858041|Plasma triglycerides increased|| +012741|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Blood triglycerides increased|10005839|Triglycerides high|10052373|increased triglyceride levels|C1522137|Hypertriglyceridemia result|| +012742|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Breast cancer|10006187|Breast cancer|10006187|breast cancer|C0006142|Malignant neoplasm of breast|| +012743|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Cardiac death|10049993|Cardiac death|10049993|chd death|C0376297|Cardiac Death||DrugClass +012744|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular disorder|10007649|Cardiovascular disorder|10007649|cardiovascular disorders|C0007222|Cardiovascular Diseases|| +012745|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident||DrugClass +012746|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Ceruloplasmin increased|10008219|Ceruloplasmin increased|10008219|increased ceruloplasmin|C0236043|Ceruloplasmin increased|| +012747|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Coagulation factor IX level increased|10009748|Coagulation factor IX level increased|10009748|increased factors ix|C0855396|Coagulation factor IX level increased|| +012748|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Coagulation factor VIII level increased|10009770|Coagulation factor VIII level increased|10009770|increased factors viii coagulant activity|C0855412|Coagulation factor VIII level increased|| +012749|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Coagulation factor X level increased|10009776|Coagulation factor X level increased|10009776|increased factors x|C0855416|Coagulation factor X level increased|| +012750|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Coagulation factor XII level increased|10009784|Coagulation factor XII level increased|10009784|increased factors xii|C0855424|Coagulation factor XII level increased|| +012751|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Coronary artery disease|10011078|Coronary heart disease|10068617|coronary heart disease|C0010068|Coronary heart disease||DrugClass +012752|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Corticosteroid binding globulin increased|10072935|Corticosteroid binding globulin increased|10072935|elevated corticosteroid binding globulin|C3544308|Corticosteroid binding globulin increased|| +012753|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Deep vein thrombosis|10051055|DVT|10013877|dvt|C0149871|Deep Vein Thrombosis||DrugClass +012754|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Dementia|10012267|Dementia|10012267|dementia|C0497327|Dementia||DrugClass +012755|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|vte|C1861172|Venous Thromboembolism|| +012756|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Endometrial cancer|10014733|Endometrial cancer|10014733|endometrial cancer|C0476089|Endometrial Carcinoma||DrugClass +012757|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Fluid retention|10016807|Fluid retention|10016807|fluid retention|C0268000|Body fluid retention|| +012758|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Gallbladder disorder|10017626|Gallbladder disease|10017641|gallbladder disease|C0016977|Gall Bladder Diseases|| +012759|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Glucose tolerance impaired|10018429|Glucose tolerance impaired|10018429|impaired glucose tolerance|C0159069|abnormal glucose tolerance test|| +012760|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|High density lipoprotein increased|10020061|HDL cholesterol increased|10070544|increased hdl2 cholesterol subfraction concentrations|C0853084|High density lipoprotein increased|underspecified| +012761|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|High density lipoprotein increased|10020061|High density lipoprotein increased|10020061|increased plasma high-density lipoprotein|C0853084|High density lipoprotein increased|| +012762|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|High density lipoprotein increased|10020061|Increased HDL|10021662|increased hdl|C0853084|High density lipoprotein increased|| +012763|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Hypercorticoidism|10020610|Hypercorticoidism|10020610|increased total circulating corticosteroids|C0001622|Adrenal Gland Hyperfunction|| +012764|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Invasive breast carcinoma|10075713|Invasive breast carcinoma|10075713|invasive breast cancer|C0853879|Invasive breast carcinoma||DrugClass +012765|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Low density lipoprotein decreased|10024909|Decreased LDL|10011972|reduced ldl cholesterol concentrations|C0853085|Decreased LDL|| +012766|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Low density lipoprotein decreased|10024909|Low density lipoprotein decreased|10024909|reduced low-density lipoprotein cholesterol concentrations|C0853085|Decreased LDL|| +012767|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction||DrugClass +012768|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Neoplasm malignant|10028997|Neoplasm malignant|10028997|malignant neoplasms|C0006826|Malignant Neoplasms|| +012769|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Oestradiol decreased|10030229|Estradiol decreased|10054509|estradiol decreased|C0860850|Oestradiol decreased|| +012770|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Ovarian cancer|10033128|Ovarian cancer|10033128|ovarian cancer|C1140680|Malignant neoplasm of ovary||DrugClass +012771|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +012772|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Plasminogen activator inhibitor increased|10059618|Plasminogen activator inhibitor increased|10059618|increased plasminogen antigen|C1167843|Plasminogen activator inhibitor increased|| +012773|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Plasminogen increased|10035495|Plasminogen increased|10035495|increased plasminogen activity|C0855434|Plasminogen increased|| +012774|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Platelet aggregation increased|10035518|Platelet aggregation increased|10035518|accelerated platelet aggregation time|C2745924|Platelet aggregation increased (finding)|| +012775|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Platelet count increased|10051608|Platelet count increased|10051608|increased platelet count|C0857460|Increased number of platelets|| +012776|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Protein total increased|10037016|Protein total increased|10037016|plasma proteins increased|C0855758|Protein total increased|| +012777|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Prothrombin level increased|10037051|Coagulation factor II level increased|10009741|increased factors ii|C0151872|Prothrombin time increased|| +012778|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Prothrombin time shortened|10037070|Prothrombin time shortened|10037070|accelerated prothrombin time|C0580413|Prothrombin time low|| +012779|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pe|C0034065|Pulmonary Embolism||DrugClass +012780|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Retinal vascular thrombosis|10062108|Retinal vascular thrombosis|10062108|retinal vascular thrombosis|C0919714|Retinal vascular thrombosis|| +012781|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Sex hormone binding globulin increased|10059659|Sex hormone binding globulin increased|10059659|elevated shbg|C1167859|Sex hormone binding globulin increased|| +012782|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Silent myocardial infarction|10049768|Silent myocardial infarction|10049768|silent myocardial infarction|C0340324|Silent myocardial infarction||DrugClass +012783|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Thyroid hormones increased|10063161|Thyroid hormones increased|10063161|increased circulating total thyroid hormone|C1328578|Thyroid hormones increased|| +012784|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Thyroxin binding globulin increased|10051420|Thyroxin binding globulin increased|10051420|increased tbg levels|C0241400|Thyroxin binding globulin increased|| +012785|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Thyroxine increased|10043818|T4 increased|10043063|increased t4 levels|C1295665|Increased thyroxine level|| +012786|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Tri-iodothyronine increased|10044596|T3 increased|10043053|increased t3 levels|C1295668|Increased triiodothyronine level|| +012787|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|Tri-iodothyronine uptake decreased|10044601|T3 uptake decreased|10043057|t3 resin uptake decreased|C0241322|Tri-iodothyronine uptake decreased|| +012788|e16705d8-4472-4f83-96ac-69fa2be066cb|Duavee|43685-7|WARNINGS AND PRECAUTIONS|||||decreased levels of antifactor xa|||unmapped| +012789|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34066-1|BOXED WARNINGS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevation alt|C0151905|Alanine aminotransferase increased|| +012790|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34066-1|BOXED WARNINGS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|elevation in alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +012791|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34066-1|BOXED WARNINGS|Aspartate aminotransferase increased|10003481|AST increased|10003544|elevation ast|C0151904|Aspartate aminotransferase increased|| +012792|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34066-1|BOXED WARNINGS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|elevation aspartate aminotransferase|C0151904|Aspartate aminotransferase increased|| +012793|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34066-1|BOXED WARNINGS|Hepatic cirrhosis|10019641|Hepatic cirrhosis|10019641|cirrhosis|C0023890|Liver Cirrhosis|| +012794|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34066-1|BOXED WARNINGS|Hepatic steatosis|10019708|Hepatic steatosis|10019708|increases hepatic fat|C2711227|Steatohepatitis|| +012795|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34066-1|BOXED WARNINGS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +012796|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34066-1|BOXED WARNINGS|Liver disorder|10024670|Liver disorder|10024670|progressive liver disease|C1859539|Progressive liver disease|| +012797|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34066-1|BOXED WARNINGS|Steatohepatitis|10076331|Steatohepatitis|10076331|steatohepatitis|C2711227|Steatohepatitis|| +012798|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34066-1|BOXED WARNINGS|Transaminases increased|10054889|Transaminases increased|10054889|increases in transaminases|C0438717|Transaminases increased|| +012799|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +012800|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +012801|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +012802|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increased alt|C0151905|Alanine aminotransferase increased|| +012803|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Angina pectoris|10002383|Angina pectoris|10002383|angina pectoris|C0002962|Angina Pectoris|| +012804|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|elevation ast|C0151904|Aspartate aminotransferase increased|| +012805|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +012806|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +012807|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +012808|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Defaecation urgency|10012110|Defecation urgency|10012114|defecation urgency|C0426636|Urgent desire for stool|| +012809|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012810|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +012811|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +012812|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +012813|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +012814|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Gastroenteritis|10017888|Gastroenteritis|10017888|gastroenteritis|C0017160|Gastroenteritis|| +012815|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal adverse reactions|C0426576|Gastrointestinal symptom|| +012816|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +012817|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +012818|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Hepatic steatosis|10019708|Hepatic steatosis|10019708|hepatic fat accumulation|C2711227|Steatohepatitis|| +012819|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +012820|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +012821|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|International normalised ratio fluctuation|10063351|INR fluctuation|10072751|difficulty controlling inr|C1504327|International normalised ratio fluctuation|| +012822|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Laryngeal pain|10023848|Pharyngolaryngeal pain|10034844|pharyngolaryngeal pain|C0858635|Pharyngolaryngeal pain|| +012823|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Malabsorption|10025476|Malabsorption|10025476|reduced absorption of fatty acids|C3714745|Malabsorption|underspecified| +012824|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Nasal congestion|10028735|Nasal congestion|10028735|nasal congestion|C0027424|Nasal congestion (finding)|| +012825|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +012826|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012827|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +012828|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +012829|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Rectal tenesmus|10057071|Rectal tenesmus|10057071|rectal tenesmus|C0232726|Rectal tenesmus|| +012830|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevated transaminases|C0438717|Transaminases increased|| +012831|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +012832|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|decreased weight|C1262477|Weight decreased|| +012833|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight loss|10047900|weight loss|C1262477|Weight decreased|| +012834|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +012835|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Abdominal distension|10000060|Abdominal distension|10000060|abdominal distension|C0000731|Abdomen distended|| +012836|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +012837|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevations alt|C0151905|Alanine aminotransferase increased|| +012838|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|elevations alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +012839|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|elevation in ast|C0151904|Aspartate aminotransferase increased|| +012840|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|elevations aspartate aminotransferase|C0151904|Aspartate aminotransferase increased|| +012841|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +012842|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012843|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +012844|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +012845|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +012846|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal adverse reactions|C0426576|Gastrointestinal symptom|| +012847|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal disorder|10017944|Reaction gastrointestinal|10037947|gastrointestinal reactions|C0542184|Reaction gastrointestinal|| +012848|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Hepatic cirrhosis|10019641|Hepatic cirrhosis|10019641|cirrhosis|C0023890|Liver Cirrhosis|| +012849|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Hepatic steatosis|10019708|Hepatic steatosis|10019708|increase in hepatic fat|C2711227|Steatohepatitis|| +012850|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +012851|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Malabsorption|10025476|Malabsorption|10025476|malabsorption|C3714745|Malabsorption|| +012852|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Malnutrition|10061273|Unspecified nutritional deficiency|10046058|deficiencies in nutrients|C3647269|nutrient deficiency|| +012853|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +012854|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012855|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Steatohepatitis|10076331|Steatohepatitis|10076331|steatohepatitis|C2711227|Steatohepatitis|| +012856|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenicity|C0232910|Teratogenesis||Animal +012857|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|increased transaminases|C0438717|Transaminases increased|| +012858|e4c45bb5-15f4-437e-ab98-a649b3676d14|Juxtapid|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +012859|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Abnormal behaviour|10061422|Behavior abnormal|10004203|behavioral changes|C0233514|Abnormal behavior|| +012860|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Abnormal dreams|10000125|Abnormal dreams|10000125|abnormal dreams|C0234458|Dream disorder|| +012861|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Blood cholesterol increased|10005425|Serum cholesterol increased|10040190|increase in serum cholesterol|C0595929|Serum cholesterol raised|| +012862|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Cataplexy|10007737|Cataplexy|10007737|cataplexy-like symptoms|C0007384|Cataplexy|| +012863|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +012864|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Depressed level of consciousness|10012373|CNS depression|10009710|cns depressant effects|C0151559|Central nervous system depression (disorder)|| +012865|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression worsened|10012398|worsening of depression|C0541869|Depression worsened|| +012866|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012867|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +012868|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +012869|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +012870|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Hypnagogic hallucination|10020927|Hypnagogic hallucination|10020927|hypnagogic hallucinations|C0233773|Hallucinations, Hypnagogic|| +012871|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Hypnopompic hallucination|10020928|Hypnopompic hallucination|10020928|hypnopompic hallucinations|C0424082|Hallucinations, Hypnapompic|| +012872|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Nervous system disorder|10029202|CNS disorder (NOS)|10009712|cns adverse reactions|C0007682|CNS disorder|| +012873|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Sleep paralysis|10041002|Sleep paralysis|10041002|sleep paralysis|C0456511|Sleep Paralysis|| +012874|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Daytime sleepiness|10011865|cns daytime impairment|C0541854|Daytime sleepiness|| +012875|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +012876|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal ideation|C0424000|Feeling suicidal (finding)|| +012877|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Thinking abnormal|10043431|Abnormal thinking|10000182|abnormal thinking|C0233632|Disturbance in thinking|| +012878|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +012879|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Abnormal behaviour|10061422|Behavior abnormal|10004203|complex behaviors|C0233514|Abnormal behavior||DrugClass +012880|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Amnesia|10001949|Amnesia|10001949|amnesia|C0002622|Amnesia||DrugClass +012881|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Anterograde amnesia|10002711|Anterograde amnesia|10002711|making phone calls with amnesia for the event|C0233795|Amnesia, Anterograde|underspecified| +012882|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety||DrugClass +012883|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Cataplexy|10007737|Cataplexy|10007737|cataplexy-like symptoms|C0007384|Cataplexy|| +012884|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Cognitive disorder|10057668|Cognitive function abnormal|10048599|cognitive changes|C1392786|Cognitive changes||DrugClass +012885|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Cognitive disorder|10057668|Cognitive impairment|10009846|next-day impairment|C0338656|Impaired cognition|| +012886|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Completed suicide|10010144|Completed suicide|10010144|completed suicides|C0852733|Completed Suicide||DrugClass +012887|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Coordination abnormal|10010947|Coordination impaired|10010950|motor coordination impaired|C0814161|impaired motor coordination|| +012888|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Depressed level of consciousness|10012373|Alertness decreased|10049875|impaired alertness|C0877609|Alertness decreased|| +012889|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Depressed level of consciousness|10012373|CNS depression|10009710|cns depressant effects|C0151559|Central nervous system depression (disorder)|| +012890|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Depression|10012378|Depression worsened|10012398|worsening of depression|C0541869|Depression worsened|| +012891|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Hallucination|10019063|Hallucinations|10019077|hallucinations|C0018524|Hallucinations||DrugClass +012892|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Hypnagogic hallucination|10020927|Hypnagogic hallucination|10020927|hypnagogic hallucinations|C0233773|Hallucinations, Hypnagogic|| +012893|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Hypnopompic hallucination|10020928|Hypnopompic hallucination|10020928|hypnopompic hallucinations|C0424082|Hallucinations, Hypnapompic|| +012894|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Impaired driving ability|10049564|Impaired driving ability|10049564|impaired driving|C0684311|impaired driving|| +012895|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Muscular weakness|10028372|Muscle weakness lower limb|10065776|leg weakness|C1836296|Weakness of lower limb|| +012896|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Neuropsychiatric syndrome|10071323|Neuropsychiatric syndrome|10071323|neuro-psychiatric symptoms|C3534763|One or more neuropsychiatric symptoms||DrugClass +012897|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Respiratory disorder|10038683|Respiratory dysfunction NOS|10038694|compromised respiratory function|C0035229|Respiratory Insufficiency|| +012898|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Sleep paralysis|10041002|Sleep paralysis|10041002|sleep paralysis|C0456511|Sleep Paralysis|| +012899|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Somnambulism|10041347|Sleep driving|10067495|driving while not fully awake|C1963892|Sleep driving||DrugClass +012900|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Somnolence|10041349|Daytime sleepiness|10011865|impair daytime wakefulness|C0541854|Daytime sleepiness|| +012901|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Suicidal behaviour|10065604|Suicidal behavior|10065607|suicidal actions|C1760428|Suicidal behavior||DrugClass +012902|e5b72731-1acb-45b7-9c13-290ad12d3951|BELSOMRA|43685-7|WARNINGS AND PRECAUTIONS|Suicidal ideation|10042458|Suicidal ideation|10042458|suicidal thoughts|C0424000|Feeling suicidal (finding)||DrugClass +012903|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +012904|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34066-1|BOXED WARNINGS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +012905|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34066-1|BOXED WARNINGS|Hepatitis B|10019731|Hepatitis B reactivation|10058827|hepatitis b virus reactivation|C1142420|Hepatitis B reactivation|| +012906|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34066-1|BOXED WARNINGS|Hepatitis fulminant|10019772|Hepatitis fulminant|10019772|fulminant hepatitis|C0302809|Fulminant hepatitis|| +012907|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34066-1|BOXED WARNINGS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|progressive multifocal leukoencephalopathy|C0023524|Leukoencephalopathy, Progressive Multifocal|| +012908|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Upper abdominal pain|10046272|upper abdominal pain|C0232492|Upper abdominal pain|| +012909|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis|| +012910|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +012911|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +012912|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +012913|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +012914|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Bacteraemia|10003997|Bacteremia|10003999|bacteremia|C0004610|Bacteremia|| +012915|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Bacterial infection|10060945|Bacterial infection|10060945|bacterial infections|C0004623|Bacterial Infections|| +012916|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +012917|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +012918|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +012919|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +012920|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Cytopenia|10066274|Cytopenia|10066274|cytopenias|C0010828|Cytopenia|| +012921|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +012922|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +012923|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +012924|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +012925|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +012926|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Fungal infection|10017533|Fungal infection|10017533|fungal infections|C0026946|Mycoses|| +012927|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Genital herpes|10018150|Genital herpes|10018150|genital herpes|C0019342|Genital Herpes|| +012928|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Haematology test abnormal|10057755|Hematology test abnormal|10057760|hematologic laboratory abnormalities|C1112712|Haematology test abnormal|| +012929|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +012930|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Hepatitis B|10019731|Hepatitis B reactivation|10058827|hepatitis b virus reactivation|C1142420|Hepatitis B reactivation|| +012931|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Hepatitis B|10019731|Hepatitis B|10019731|hepatitis b virus infection|C0019163|Hepatitis B|| +012932|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Herpes simplex|10019948|Herpes simplex|10019948|herpes simplex|C0019348|Herpes Simplex Infections|| +012933|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Herpes virus infection|10019973|Herpes NOS|10019944|herpes|C0019340|Herpes NOS|| +012934|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Herpes virus infection|10019973|Herpes virus infection|10019973|herpes virus infection|C0019372|Herpesviridae Infections|| +012935|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +012936|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +012937|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +012938|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +012939|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +012940|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +012941|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +012942|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +012943|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Lower respiratory tract infection|10024968|Lower respiratory tract infection|10024968|lower respiratory tract infection|C0149725|Lower respiratory tract infection|| +012944|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Lung infection|10061229|Lung infection|10061229|lung infection|C0876973|Infectious disease of lung|| +012945|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +012946|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +012947|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +012948|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +012949|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Late onset neutropenia|10074781|late-onset neutropenia|C3805247|Late onset neutropenia|| +012950|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +012951|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Neutropenic sepsis|10049151|Neutropenic sepsis|10049151|neutropenic sepsis|C0877153|Neutropenic sepsis|| +012952|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +012953|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Oral herpes|10067152|Oral herpes|10067152|oral herpes|C0341012|Oral herpes simplex infection|| +012954|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +012955|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Bronchopneumonia|10006469|bronchopneumonia|C0006285|Bronchopneumonia|| +012956|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Lobar pneumonia|10024738|lobar pneumonia|C0032300|Lobar Pneumonia|| +012957|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +012958|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Porphyria non-acute|10036186|Porphyria cutanea tarda|10036183|porphyria cutanea tarda|C0162566|Porphyria Cutanea Tarda|| +012959|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|progressive multifocal leukoencephalopathy|C0023524|Leukoencephalopathy, Progressive Multifocal|| +012960|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +012961|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +012962|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Rash macular|10037867|Rash macular|10037867|rash macular|C0221201|Macular rash|| +012963|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Rash vesicular|10037898|Rash vesicular|10037898|rash vesicular|C0221203|Vesicular rash|| +012964|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +012965|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +012966|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Septic shock|10040070|Septic shock|10040070|septic shock|C0036983|Septic Shock|| +012967|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +012968|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Stevens-Johnson syndrome|10042033|Stevens-Johnson syndrome|10042033|stevens-johnson syndrome|C0038325|Stevens-Johnson Syndrome|| +012969|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +012970|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +012971|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infections|C0041912|Upper Respiratory Infections|| +012972|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +012973|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|34084-4|ADVERSE REACTIONS|Viral infection|10047461|Viral infection|10047461|viral infections|C0042769|Virus Diseases|| +012974|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +012975|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Acute coronary syndrome|10051592|Acute coronary syndrome|10051592|acute coronary syndrome|C0948089|Acute Coronary Syndrome|| +012976|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Agranulocytosis|10001507|Agranulocytosis|10001507|agranulocytosis|C0001824|Agranulocytosis|| +012977|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +012978|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +012979|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactoid reaction|10002216|Anaphylactoid reaction|10002216|reactions anaphylactoid|C0340865|Anaphylactoid reaction|| +012980|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +012981|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Arrhythmia|10003119|Arrhythmia|10003119|arrhythmia|C0003811|Cardiac Arrhythmia|| +012982|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +012983|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +012984|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Bronchospasm|10006482|Bronchospasm|10006482|bronchospasm|C0006266|Bronchial Spasm|| +012985|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiac events|C0741923|cardiac event|| +012986|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Cytokine release syndrome|10052015|Cytokine release syndrome|10052015|cytokine release syndrome|C0948245|Cytokine release syndrome|| +012987|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Cytopenia|10066274|Cytopenia|10066274|cytopenias|C0010828|Cytopenia|| +012988|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +012989|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +012990|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +012991|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +012992|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis B|10019731|Hepatitis B reactivation|10058827|hepatitis b virus reactivation|C1142420|Hepatitis B reactivation|| +012993|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis B|10019731|Hepatitis B|10019731|hepatitis b|C0019163|Hepatitis B|| +012994|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis fulminant|10019772|Hepatitis fulminant|10019772|fulminant hepatitis|C0302809|Fulminant hepatitis|| +012995|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +012996|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +012997|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infection|C3714514|Infection|| +012998|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +012999|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Laryngeal oedema|10023845|Laryngeal edema|10023838|laryngeal edema|C0023052|Laryngeal Edema|| +013000|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +013001|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Myocardial ischaemia|10028600|Myocardial ischemia|10028601|myocardial ischemia|C0151744|Myocardial Ischemia|| +013002|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Late onset neutropenia|10074781|late-onset neutropenia|C3805247|Late onset neutropenia|| +013003|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +013004|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Neutropenic sepsis|10049151|Neutropenic sepsis|10049151|neutropenic sepsis|C0877153|Neutropenic sepsis|| +013005|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Pancytopenia|10033661|Pancytopenia|10033661|pancytopenia|C0030312|Pancytopenia|| +013006|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|pml|C0023524|Leukoencephalopathy, Progressive Multifocal|| +013007|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary oedema|10037423|Pulmonary edema|10037375|pulmonary edema|C0034063|Pulmonary Edema|| +013008|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +013009|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +013010|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +013011|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +013012|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +013013|e6e738dc-9026-4cd3-8f85-7b10ac730e7d|ARZERRA|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +013014|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34066-1|BOXED WARNINGS|Extradural haematoma|10015769|Epidural hematoma|10015013|epidural hematomas|C0238154|Hematoma, Epidural, Cranial|| +013015|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34066-1|BOXED WARNINGS|Haematoma|10018852|Hematoma|10019428|hematomas|C0018944|Hematoma|| +013016|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34066-1|BOXED WARNINGS|Paralysis|10033799|Paralysed|10033798|long-term paralysis|C0522224|Paralysed|| +013017|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34066-1|BOXED WARNINGS|Paralysis|10033799|Paralysis|10033799|permanent paralysis|C0522224|Paralysed|| +013018|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34066-1|BOXED WARNINGS|Spinal cord haematoma|10076051|Spinal hematoma|10055382|spinal hematomas|C0856150|spinal hematoma|| +013019|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34066-1|BOXED WARNINGS|Thrombosis|10043607|Thrombosis|10043607|thrombotic events|C0040053|Thrombosis|| +013020|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Alanine aminotransferase abnormal|10001547|Alanine aminotransferase abnormal|10001547|alanine aminotransferase abnormal|C0855619|Alanine aminotransferase abnormal|| +013021|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +013022|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Allergic oedema|10060934|Allergic edema|10054306|allergic edema|C0847033|Allergic oedema|| +013023|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Anaemia postoperative|10048861|Anemia postoperative|10054312|postoperative anemia|C0877398|Anaemia postoperative|| +013024|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +013025|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Anal haemorrhage|10049555|Anal hemorrhage|10055226|anal hemorrhage|C0426747|Bleeding from anus|| +013026|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylactic reaction|10002198|anaphylactic reactions|C0002792|anaphylaxis|| +013027|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +013028|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Blood alkaline phosphatase increased|10059570|blood alkaline phosphatase increased|C0852911|Blood alkaline phosphatase increased|| +013029|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Blood bilirubin increased|10005364|blood bilirubin increased|C0311468|Increased bilirubin level (finding)|| +013030|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Blood urine present|10018870|Blood urine present|10018870|blood urine present|C0947999|Blood urine present|| +013031|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Catheter site haemorrhage|10051099|Catheter site hemorrhage|10052266|catheter site hemorrhage|C0920166|Catheter site bleeding|| +013032|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Cerebral haemorrhage|10008111|Cerebral hemorrhage|10008114|intracerebral bleeding|C2937358|Cerebral Hemorrhage|| +013033|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Compartment syndrome|10010121|Compartment syndrome|10010121|compartment syndrome|C0009492|Compartment syndromes|| +013034|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Conjunctival haemorrhage|10010719|Conjunctival hemorrhage|10010720|conjunctival hemorrhage|C0009760|Conjunctival hemorrhage|| +013035|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Contusion|10050584|Contusion|10050584|contusion|C0009938|Contusions|| +013036|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +013037|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Drug hypersensitivity|10013700|Drug hypersensitivity|10013700|drug hypersensitivity|C0013182|Drug Allergy|| +013038|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Ecchymosis|10014080|Ecchymosis|10014080|ecchymosis|C0013491|Ecchymosis|| +013039|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +013040|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Eye haemorrhage|10015926|Eye hemorrhage|10015928|eye hemorrhage|C0015402|Eye Hemorrhage|| +013041|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Eye haemorrhage|10015926|Hemorrhage intraocular|10019553|bleeding intraocular|C0015402|Eye Hemorrhage|| +013042|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Eye haemorrhage|10015926|Ocular hemorrhage|10030040|ocular hemorrhage|C0015402|Eye Hemorrhage|| +013043|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|Gamma-glutamyltransferase increased|10017693|gamma-glutamyltransferase increased|C0151662|Gamma-glutamyl transferase raised|| +013044|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|GI bleed|10018230|gi bleed|C0017181|Gastrointestinal Hemorrhage|| +013045|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +013046|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Genital haemorrhage|10061178|Genital hemorrhage|10055260|genital hemorrhage|C0854381|Genital hemorrhage|| +013047|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Gingival bleeding|10018276|Gingival bleeding|10018276|gingival bleeding|C0017565|Gingival Hemorrhage|| +013048|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haemarthrosis|10018829|Hemarthrosis|10019409|bleeding into an operated joint|C0018924|Hemarthrosis|duplicate| +013049|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haematemesis|10018830|Hematemesis|10019418|hematemesis|C0018926|Hematemesis|| +013050|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haematochezia|10018836|Hematochezia|10060544|hematochezia|C0018932|Hematochezia|| +013051|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haematoma|10018852|Hematoma|10019428|hematoma|C0018944|Hematoma|| +013052|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +013053|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decrease in hemoglobin|C0162119|Hemoglobin low|| +013054|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hgb decrease|C0162119|Hemoglobin low|| +013055|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haemoptysis|10018964|Hemoptysis|10019523|hemoptysis|C0019079|Hemoptysis|| +013056|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haemorrhage intracranial|10018985|Bleeding intracranial|10005121|intracranial bleed|C0151699|Intracranial Hemorrhages|| +013057|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haemorrhage intracranial|10018985|Intracranial hemorrhage|10022763|ich|C0151699|Intracranial Hemorrhages|| +013058|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +013059|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +013060|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haemorrhagic anaemia|10052293|Hemorrhagic anemia|10052294|hemorrhagic anemia|C0948824|Anemia due to blood loss|| +013061|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haemorrhagic stroke|10019016|Hemorrhagic stroke|10048863|hemorrhagic stroke|C0553692|Brain hemorrhage|| +013062|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Haemorrhoidal haemorrhage|10054787|Hemorrhoidal hemorrhage|10060640|hemorrhoidal hemorrhage|C0265031|Bleeding hemorrhoids|| +013063|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +013064|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +013065|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +013066|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Incision site haematoma|10059241|Incision site hematoma|10059246|incision-site hematoma|C1168175|Incision site haematoma|| +013067|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Incision site haemorrhage|10051100|Incision site hemorrhage|10055289|incision-site hemorrhage|C0919882|Incision site haemorrhage|| +013068|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Injection site haematoma|10022066|Injection site hematoma|10055371|injection-site hematoma|C0542008|Injection site haematoma|| +013069|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Intraventricular haemorrhage|10022840|Intraventricular bleeding|10071830|intraventricular bleeding|C0240059|Ventricular hemorrhage|| +013070|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Liver function test abnormal|10024690|Liver function test abnormal|10024690|liver function test abnormal|C0151766|Liver function tests abnormal finding|| +013071|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Lower gastrointestinal haemorrhage|10050953|Lower gastrointestinal bleeding|10071838|lower gi bleeding|C0024050|Lower gastrointestinal hemorrhage|| +013072|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Melaena|10027141|Melena|10027162|melena|C0025222|Melena|| +013073|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Menometrorrhagia|10027295|Menometrorrhagia|10027295|menometrorrhagia|C0232943|Intermenstrual heavy bleeding|| +013074|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Menorrhagia|10027313|Menorrhagia|10027313|menorrhagia|C0025323|Menorrhagia|| +013075|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Metrorrhagia|10027514|Metrorrhagia|10027514|metrorrhagia|C0025874|Metrorrhagia|| +013076|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Muscle haemorrhage|10028309|Muscle bleeding|10071842|bleeding intramuscular|C0151702|Muscle hemorrhage|| +013077|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Muscle haemorrhage|10028309|Muscle hemorrhage|10028310|muscle hemorrhage|C0151702|Muscle hemorrhage|| +013078|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +013079|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Occult blood positive|10061880|Occult blood positive|10061880|occult blood positive|C0877047|Occult blood positive|| +013080|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Occult blood|10061878|Occult blood|10061878|occult blood|C0877047|Occult blood positive|| +013081|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Pericardial haemorrhage|10034476|Pericardial bleeding|10071860|bleeding pericardial|C0019064|Hemopericardium|| +013082|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Periorbital haematoma|10034544|Periorbital hematoma|10055379|periorbital hematoma|C0520723|Periorbital hematoma|| +013083|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Petechiae|10034754|Petechiae|10034754|petechiae|C0031256|Petechiae|| +013084|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelet count decreased|10035528|platelet count decreases|C0392386|Decreased platelet count|| +013085|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Post procedural haematoma|10063188|Post procedural hematoma|10063193|postprocedural hematoma|C1328411|Post procedural hematoma|| +013086|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Post procedural haemorrhage|10051077|Post procedural hemorrhage|10055320|postprocedural hemorrhage|C0919874|Post procedural hemorrhage|| +013087|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Procedural haemorrhage|10071229|Operation site bleed|10030859|bleeding into an operated joint|C0741556|Operation site bleed|duplicate| +013088|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Procedural haemorrhage|10071229|Operative hemorrhage|10055310|operative hemorrhage|C0079027|Blood Loss, Surgical|| +013089|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Procedural hypotension|10062300|Procedural hypotension|10062300|procedural hypotension|C1262109|Procedural hypotension|| +013090|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Rash|10037844|Skin rash|10040913|skin rash|C0015230|Exanthema|| +013091|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Rectal haemorrhage|10038063|Rectal bleeding|10038035|rectal bleeding|C0267596|Rectal hemorrhage|| +013092|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Rectal haemorrhage|10038063|Rectal hemorrhage|10038064|rectal hemorrhage|C0267596|Rectal hemorrhage|| +013093|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Red blood cells urine positive|10038182|Red blood cells urine positive|10038182|red blood cells urine positive|C0221752|Hematuria present|| +013094|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Retinal haemorrhage|10038867|Retinal hemorrhage|10038870|retinal hemorrhage|C0035317|Retinal Hemorrhage|| +013095|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Retroperitoneal haemorrhage|10038980|Retroperitoneal bleeding|10071878|bleeding retroperitoneal|C0151705|Retroperitoneal hemorrhage|| +013096|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Skin haemorrhage|10064265|Skin hemorrhage|10064266|skin hemorrhage|C0852361|Skin hemorrhages|| +013097|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Spinal cord haemorrhage|10048992|Intraspinal bleeding|10073572|bleeding intraspinal|C3665900|Intraspinal bleeding|| +013098|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Subarachnoid haemorrhage|10042316|Subarachnoid bleeding|10071890|subarachnoid bleeding|C0038525|Subarachnoid Hemorrhage|| +013099|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Subdural haemorrhage|10042364|Subdural bleeding|10071893|subdural bleeding|C0018946|Hematoma, Subdural|| +013100|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +013101|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +013102|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Thrombosis|10043607|Thrombosis|10043607|thrombotic events|C0040053|Thrombosis|| +013103|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminases increased|C0438717|Transaminases increased|| +013104|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Traumatic haematoma|10044522|Traumatic hematoma|10044525|traumatic hematoma|C0549453|Traumatic hematoma|| +013105|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Upper gastrointestinal haemorrhage|10046274|Upper gastrointestinal bleeding|10071910|upper gi bleeding|C0041909|Upper gastrointestinal hemorrhage|| +013106|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Urethral haemorrhage|10049710|Urethral hemorrhage|10055357|urethral hemorrhage|C0241558|Hemorrhage of urethra|| +013107|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Vaginal haemorrhage|10046910|Vaginal hemorrhage|10046912|vaginal hemorrhage|C2979982|Vaginal Hemorrhage|| +013108|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Vessel puncture site haematoma|10065902|Vessel puncture site hematoma|10065905|vessel puncture site hematoma|C1696110|Vessel puncture site haematoma|| +013109|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Wound haemorrhage|10051373|Wound hemorrhage|10055360|wound hemorrhage|C0241742|Wound hemorrhage|| +013110|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|34084-4|ADVERSE REACTIONS|Wound secretion|10048629|Wound secretion|10048629|wound secretion|C0406834|Wound discharge finding|| +013111|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Stroke|10042244|stroke|C0038454|Cerebrovascular accident|| +013112|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +013113|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|43685-7|WARNINGS AND PRECAUTIONS|Extradural haematoma|10015769|Epidural hematoma|10015013|epidural hematoma|C0238154|Hematoma, Epidural, Cranial|| +013114|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +013115|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|43685-7|WARNINGS AND PRECAUTIONS|Paralysis|10033799|Paralysed|10033798|long-term paralysis|C0522224|Paralysed|| +013116|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|43685-7|WARNINGS AND PRECAUTIONS|Paralysis|10033799|Paralysis|10033799|permanent paralysis|C0522224|Paralysed|| +013117|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|43685-7|WARNINGS AND PRECAUTIONS|Spinal cord haematoma|10076051|Spinal hematoma|10055382|spinal hematoma|C0856150|spinal hematoma|| +013118|e9481622-7cc6-418a-acb6-c5450daae9b0|ELIQUIS|43685-7|WARNINGS AND PRECAUTIONS|Thrombosis|10043607|Thrombosis|10043607|thrombotic events|C0040053|Thrombosis|| +013119|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +013120|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +013121|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +013122|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Acute kidney injury|10069339|Renal failure acute|10038436|renal failure acute|C0022660|Kidney Failure, Acute|| +013123|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +013124|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +013125|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +013126|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +013127|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +013128|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Blood phosphorus decreased|10049471|Phosphorus low|10050715|decreased phosphorus|C0920102|Phosphorus low|| +013129|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Blood potassium decreased|10005724|Potassium decreased|10036443|decreased potassium|C0860866|Potassium low|| +013130|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Blood sodium decreased|10005802|Sodium decreased|10041268|decreased sodium|C0860871|Sodium decreased|| +013131|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +013132|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +013133|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Cardiac disorder|10061024|Cardiac disorder|10061024|cardiac disorders|C0018799|Heart Diseases|| +013134|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Cardiac failure congestive|10007559|Cardiac failure congestive|10007559|cardiac failure congestive|C0018802|Congestive heart failure|| +013135|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Cardiac failure congestive|10007559|Congestive heart failure|10010684|congestive heart failure|C0018802|Congestive heart failure|| +013136|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Cardiac failure|10007554|Cardiac failure|10007554|cardiac failure|C0018801|Heart failure|| +013137|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Cardiotoxicity|10048610|Cardiotoxicity|10048610|cardiac toxicities|C0876994|Cardiotoxicity|| +013138|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiac adverse events|C0741923|cardiac event|| +013139|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Cataract|10007739|Cataract|10007739|cataract|C0086543|Cataract|| +013140|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +013141|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +013142|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +013143|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Deafness|10011878|Deafness|10011878|deafness|C0011053|Deafness|| +013144|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +013145|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +013146|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Deep vein thrombosis|10051055|Deep vein thrombosis|10051055|deep vein thrombosis|C0149871|Deep Vein Thrombosis|| +013147|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +013148|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Delirium|10012218|Delirium|10012218|delirium|C0011206|Delirium|| +013149|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +013150|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Disease progression|10061818|Disease progression|10061818|disease progression|C0242656|Disease Progression|| +013151|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +013152|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +013153|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Dysphonia|10013952|Dysphonia|10013952|dysphonia|C1527344|Dysphonia|| +013154|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Dyspnoea exertional|10013971|Dyspnea exertional|10013966|dyspnea exertional|C0231807|Dyspnea on exertion|| +013155|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +013156|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|embolic and thrombotic events, venous|C1997614|Thromboembolism of vein|| +013157|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +013158|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +013159|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +013160|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +013161|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decreased hemoglobin|C0162119|Hemoglobin low|| +013162|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Haemolytic uraemic syndrome|10018932|HUS|10020472|hus|C0019061|Hemolytic-Uremic Syndrome|| +013163|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Haemolytic uraemic syndrome|10018932|Hemolytic uremic syndrome|10019515|hemolytic uremic syndrome|C0019061|Hemolytic-Uremic Syndrome|| +013164|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Haemolytic uraemic syndrome|10018932|Hemolytic-uremic syndrome|10019516|hus|C0019061|Hemolytic-Uremic Syndrome|| +013165|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +013166|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +013167|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatic toxicity|C0348754|Toxic liver disease|| +013168|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hypercalcaemia|10020583|Hypercalcemia|10020587|hypercalcemia|C0020437|Hypercalcemia|| +013169|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +013170|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +013171|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hyperkalaemia|10020646|Hyperkalemia|10020647|hyperkalemia|C0020461|Hyperkalemia|| +013172|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +013173|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hypertensive crisis|10020802|Hypertensive crisis|10020802|hypertensive crisis|C0020546|Hypertensive crisis|| +013174|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hypertensive emergency|10058179|Hypertensive emergency|10058179|hypertensive emergency|C0745136|Hypertensive emergency|| +013175|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hyperuricaemia|10020903|Hyperuricemia|10020907|hyperuricemia|C0740394|Hyperuricemia|| +013176|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +013177|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hypoalbuminaemia|10020942|Hypoalbuminemia|10020943|hypoalbuminemia|C0239981|Hypoalbuminemia|| +013178|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +013179|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +013180|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +013181|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +013182|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hypophosphataemia|10021058|Hypophosphatemia|10021059|hypophosphatemia|C0085682|Hypophosphatemia|| +013183|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +013184|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infection adverse events|C1556682|Adverse Event Associated with Infection|| +013185|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +013186|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +013187|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Infusion site reaction|10054996|Infusion site reaction|10054996|infusion site reaction|C1096343|Infusion site reaction|| +013188|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +013189|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +013190|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Lymphocyte count decreased|10025256|Lymphocyte count decreased|10025256|decreased lymphocyte|C0853986|Lymphocyte count decreased|| +013191|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +013192|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Multi-organ failure|10028154|Multi-organ failure|10028154|multi-organ failure|C0026766|Multiple Organ Failure|| +013193|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +013194|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasm|10028333|muscle spasm|C0037763|Spasm|| +013195|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Muscular weakness|10028372|Muscular weakness|10028372|muscular weakness|C0151786|Muscle Weakness|| +013196|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Musculoskeletal chest pain|10050819|Musculoskeletal chest pain|10050819|musculoskeletal chest pain|C0476280|Musculoskeletal chest pain|| +013197|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +013198|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +013199|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +013200|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Myocardial ischaemia|10028600|Myocardial ischemia|10028601|myocardial ischemia|C0151744|Myocardial Ischemia|| +013201|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +013202|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +013203|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +013204|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Absolute neutrophil count decreased|10059234|decreased absolute neutrophil count|C1168174|Absolute neutrophil count decreased|| +013205|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +013206|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +013207|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +013208|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +013209|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +013210|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Peripheral neuropathies NEC|10034607|Peripheral neuropathies NEC|10034607|peripheral neuropathies nec|C0853004|Peripheral neuropathies NEC|HLT| +013211|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Plasma cell myeloma|10035226|Multiple myeloma|10028228|multiple myeloma|C0026764|Multiple Myeloma|| +013212|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelets decreased|10035545|decreased platelets|C0392386|Decreased platelet count|| +013213|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Bronchopneumonia|10006469|bronchopneumonia|C0006285|Bronchopneumonia|| +013214|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +013215|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Posterior reversible encephalopathy syndrome|10071066|Posterior reversible encephalopathy syndrome|10071066|posterior reversible encephalopathy syndrome|C3160858|Posterior reversible encephalopathy syndrome|| +013216|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +013217|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +013218|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Pulmonary hypertension|10037400|Pulmonary hypertension|10037400|pulmonary hypertension|C0020542|Pulmonary Hypertension|| +013219|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Pulmonary oedema|10037423|Pulmonary edema|10037375|pulmonary edema|C0034063|Pulmonary Edema|| +013220|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Pulmonary toxicity|10061924|Pulmonary toxicity|10061924|pulmonary toxicity|C0919924|Pulmonary toxicity|| +013221|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +013222|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +013223|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Renal disorder|10038428|Renal disorder|10038428|renal disorders|C0022658|Kidney Diseases|| +013224|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +013225|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal function disorder|10038455|renal adverse events|C1557806|Adverse Event Associated with the Kidney and Genitourinary System|| +013226|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +013227|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Respiratory tract infection|10062352|Respiratory tract infection|10062352|respiratory tract infection|C0035243|Respiratory Tract Infections|| +013228|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +013229|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +013230|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Thrombotic thrombocytopenic purpura|10043648|Thrombotic thrombocytopenic purpura|10043648|ttp|C0034155|Purpura, Thrombotic Thrombocytopenic|| +013231|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Toothache|10044055|Toothache|10044055|toothache|C0040460|Toothache|| +013232|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +013233|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +013234|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +013235|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Venous thrombosis|10047249|Venous thrombosis|10047249|venous thrombosis|C0042487|Venous Thrombosis|| +013236|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Viral infection|10047461|Viral infection|10047461|viral infection|C0042769|Virus Diseases|| +013237|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +013238|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +013239|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +013240|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|34084-4|ADVERSE REACTIONS|White blood cell count decreased|10047942|White blood cell count decreased|10047942|decreased total white blood cell count|C0750394|White blood cell count decreased|| +013241|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Acute kidney injury|10069339|Acute renal failure|10001041|acute renal failure|C0022660|Kidney Failure, Acute|| +013242|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Acute respiratory distress syndrome|10001052|ARDS|10003083|ards|C0035222|Respiratory Distress Syndrome, Adult|| +013243|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Acute respiratory distress syndrome|10001052|Acute respiratory distress syndrome|10001052|acute respiratory distress syndrome|C0035222|Respiratory Distress Syndrome, Adult|| +013244|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Acute respiratory failure|10001053|Acute respiratory failure|10001053|acute respiratory failure|C0264490|Acute respiratory failure|| +013245|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Angina pectoris|10002383|Angina|10002372|angina|C0002962|Angina Pectoris|| +013246|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +013247|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Asthenia|10003549|Weakness|10047862|weakness|C3714552|Weakness|| +013248|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +013249|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure congestive|10007559|Congestive heart failure|10010684|congestive heart failure|C0018802|Congestive heart failure|| +013250|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Cardiac failure aggravated|10007557|worsening of pre-existing cardiac failure|C0235875|Cardiac failure aggravated|| +013251|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure|10007554|Cardiac failure|10007554|cardiac failure|C0018801|Heart failure|| +013252|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Cardiotoxicity|10048610|Cardiotoxicity|10048610|cardiac toxicities|C0876994|Cardiotoxicity|| +013253|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Chest discomfort|10008469|Chest tightness|10008492|chest tightness|C0232292|Chest tightness|| +013254|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +013255|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +013256|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Deep vein thrombosis|10051055|Thrombosis venous deep|10043642|deep venous thrombosis|C0149871|Deep Vein Thrombosis|| +013257|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +013258|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Shortness of breath|10040604|shortness of breath|C0013404|Dyspnea|| +013259|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Ejection fraction decreased|10050528|Ejection fraction decreased|10050528|decreased ejection fraction|C0743400|Ejection fraction decreased|| +013260|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolic events|C1861172|Venous Thromboembolism|| +013261|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Face oedema|10016029|Face edema|10016025|facial edema|C0542571|Facial edema|| +013262|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Facial flushing|10016046|facial flushing|C0016382|Flushing|| +013263|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +013264|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Haemolytic uraemic syndrome|10018932|HUS|10020472|hus|C0019061|Hemolytic-Uremic Syndrome|| +013265|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Haemolytic uraemic syndrome|10018932|Hemolytic uremic syndrome|10019515|hemolytic uremic syndrome|C0019061|Hemolytic-Uremic Syndrome|| +013266|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Haemolytic uraemic syndrome|10018932|Hemolytic-uremic syndrome|10019516|hus|C0019061|Hemolytic-Uremic Syndrome|| +013267|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +013268|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatic toxicity|C0348754|Toxic liver disease|| +013269|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +013270|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Hypertensive crisis|10020802|Hypertensive crisis|10020802|hypertensive crisis|C0020546|Hypertensive crisis|| +013271|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Hypertensive emergency|10058179|Hypertensive emergency|10058179|hypertensive emergency|C0745136|Hypertensive emergency|| +013272|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +013273|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion reactions|C0948715|Infusion related reaction|| +013274|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Acute diffuse infiltrative lung disease|10066153|acute diffuse infiltrative pulmonary disease|C1735346|Acute diffuse infiltrative lung disease|| +013275|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +013276|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk||Animal +013277|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +013278|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +013279|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Myocardial ischaemia|10028600|Myocardial ischemia|10028601|myocardial ischemia|C0151744|Myocardial Ischemia|| +013280|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Platelet count decreased|10035528|Low platelets|10024922|platelet nadirs|C0392386|Decreased platelet count|| +013281|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +013282|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Posterior reversible encephalopathy syndrome|10071066|Posterior reversible encephalopathy syndrome|10071066|pres|C3160858|Posterior reversible encephalopathy syndrome|| +013283|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary arterial hypertension|10064911|Pulmonary arterial hypertension|10064911|pah|C2973725|Pulmonary arterial hypertension|| +013284|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +013285|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary hypertension|10037400|Pulmonary hypertension|10037400|pulmonary hypertension|C0020542|Pulmonary Hypertension|| +013286|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary oedema|10037423|Pulmonary edema|10037375|pulmonary edema|C0034063|Pulmonary Edema|| +013287|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary toxicity|10061924|Pulmonary toxicity|10061924|pulmonary toxicity|C0919924|Pulmonary toxicity|| +013288|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Pyrexia|10037660|Fever|10016558|fever|C0015967|Fever|| +013289|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +013290|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Renal failure|10038435|Renal insufficiency|10038474|renal insufficiency adverse events|C1565489|Renal Insufficiency|| +013291|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +013292|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Restrictive cardiomyopathy|10038748|Restrictive cardiomyopathy|10038748|restrictive cardiomyopathy|C0007196|Restrictive cardiomyopathy|| +013293|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +013294|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +013295|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Thrombotic thrombocytopenic purpura|10043648|Thrombotic thrombocytopenic purpura|10043648|ttp|C0034155|Purpura, Thrombotic Thrombocytopenic|| +013296|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Serum transaminase increased|10040421|increased serum transaminases|C0859350|Serum transaminase increased|| +013297|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Tumour lysis syndrome|10045170|Tumor lysis syndrome|10045152|tumor lysis syndrome|C0041364|Tumor Lysis Syndrome|| +013298|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Venous thrombosis|10047249|Venous thrombosis|10047249|venous thrombosis|C0042487|Venous Thrombosis|| +013299|ea66eb30-e665-4693-99a1-a9d3b4bbe2d6|KYPROLIS|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +013300|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34066-1|BOXED WARNINGS|Adactyly|10049207|Adactyly|10049207|missing digits|C0238591|Adactyly|| +013301|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34066-1|BOXED WARNINGS|Congenital anomaly|10010356|Birth defects|10048305|birth defects|C0000768|Congenital Abnormality|| +013302|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34066-1|BOXED WARNINGS|Foetal death|10055690|Fetal death|10016479|embryo-fetal death|C0015927|Fetal Death|| +013303|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34066-1|BOXED WARNINGS|Foetal malformation|10060919|Fetal malformation|10060920|malformations|C0000768|Congenital Abnormality|| +013304|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34066-1|BOXED WARNINGS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +013305|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34066-1|BOXED WARNINGS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenic|C0232910|Teratogenesis||Animal +013306|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34066-1|BOXED WARNINGS|||||midline defects|C3278239|Midline defects|unmapped| +013307|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Ageusia|10001480|Ageusia|10001480|ageusia|C2364111|Ageusia|| +013308|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +013309|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Amenorrhoea|10001928|Amenorrhea|10001927|amenorrhea|C0002453|Amenorrhea|| +013310|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgias|C0003862|Arthralgia|| +013311|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Azotaemia|10003885|Azotemia|10003886|azotemia|C0242528|Azotemia|| +013312|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +013313|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +013314|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +013315|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +013316|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +013317|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +013318|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +013319|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +013320|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +013321|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +013322|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight loss|10047900|weight loss|C1262477|Weight decreased|| +013323|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|43685-7|WARNINGS AND PRECAUTIONS|Congenital anomaly|10010356|Birth defects|10048305|birth defects|C0000768|Congenital Abnormality|| +013324|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|embryo-fetal harm|C0854268|Foetal damage|| +013325|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|43685-7|WARNINGS AND PRECAUTIONS|Foetal death|10055690|Fetal death|10016479|embryo-fetal death|C0015927|Fetal Death|| +013326|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryotoxic|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk||Animal +013327|eb368bb6-80e3-4df9-8a85-91df0a2ada6a|ERIVEDGE|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenic|C0232910|Teratogenesis||Animal +013328|ed6657ca-ab68-477a-9968-e12dc928b540|Firazyr|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +013329|ed6657ca-ab68-477a-9968-e12dc928b540|Firazyr|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +013330|ed6657ca-ab68-477a-9968-e12dc928b540|Firazyr|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +013331|ed6657ca-ab68-477a-9968-e12dc928b540|Firazyr|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +013332|ed6657ca-ab68-477a-9968-e12dc928b540|Firazyr|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +013333|ed6657ca-ab68-477a-9968-e12dc928b540|Firazyr|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +013334|ed6657ca-ab68-477a-9968-e12dc928b540|Firazyr|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminase increased|C0438717|Transaminases increased|| +013335|ef7804d7-c691-495b-8aaf-5bc54fd5d9f6|DaTscan|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +013336|ef7804d7-c691-495b-8aaf-5bc54fd5d9f6|DaTscan|34084-4|ADVERSE REACTIONS|Dry mouth|10013781|Dry mouth|10013781|dry mouth|C0043352|Xerostomia|| +013337|ef7804d7-c691-495b-8aaf-5bc54fd5d9f6|DaTscan|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +013338|ef7804d7-c691-495b-8aaf-5bc54fd5d9f6|DaTscan|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +013339|ef7804d7-c691-495b-8aaf-5bc54fd5d9f6|DaTscan|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +013340|ef7804d7-c691-495b-8aaf-5bc54fd5d9f6|DaTscan|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +013341|ef7804d7-c691-495b-8aaf-5bc54fd5d9f6|DaTscan|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +013342|ef7804d7-c691-495b-8aaf-5bc54fd5d9f6|DaTscan|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +013343|ef7804d7-c691-495b-8aaf-5bc54fd5d9f6|DaTscan|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritis|C0033774|Pruritus|| +013344|ef7804d7-c691-495b-8aaf-5bc54fd5d9f6|DaTscan|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +013345|ef7804d7-c691-495b-8aaf-5bc54fd5d9f6|DaTscan|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +013346|ef7804d7-c691-495b-8aaf-5bc54fd5d9f6|DaTscan|43685-7|WARNINGS AND PRECAUTIONS|Erythema|10015150|Skin erythema|10040842|skin erythema|C0041834|Erythema|| +013347|ef7804d7-c691-495b-8aaf-5bc54fd5d9f6|DaTscan|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +013348|ef7804d7-c691-495b-8aaf-5bc54fd5d9f6|DaTscan|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritis|C0033774|Pruritus|| +013349|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34066-1|BOXED WARNINGS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +013350|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +013351|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34066-1|BOXED WARNINGS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +013352|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34066-1|BOXED WARNINGS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|toxicities hepatic|C0235378|Hepatotoxicity|| +013353|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34066-1|BOXED WARNINGS|Intestinal perforation|10022694|Intestinal perforation|10022694|intestinal perforation|C0021845|Intestinal Perforation|| +013354|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34066-1|BOXED WARNINGS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +013355|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34066-1|BOXED WARNINGS|Toxicity to various agents|10070863|Drug toxicity|10013746|toxicities|C0013221|Drug toxicity|| +013356|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +013357|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increased|C0151905|Alanine aminotransferase increased|| +013358|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +013359|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +013360|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast increased|C0151904|Aspartate aminotransferase increased|| +013361|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +013362|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +013363|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +013364|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +013365|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +013366|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +013367|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +013368|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +013369|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +013370|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +013371|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Gamma-glutamyltransferase increased|10017693|GGT increased|10056910|ggt increased|C0151662|Gamma-glutamyl transferase raised|| +013372|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +013373|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hemoglobin decreased|C0162119|Hemoglobin low|| +013374|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +013375|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +013376|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +013377|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Hypertriglyceridaemia|10020869|Hypertriglyceridemia|10020870|hypertriglyceridemia|C0020557|Hypertriglyceridemia|| +013378|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +013379|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +013380|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +013381|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Intestinal perforation|10022694|Intestinal perforation|10022694|intestinal perforation|C0021845|Intestinal Perforation|| +013382|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Lymphocyte count decreased|10025256|Lymphocyte count decreased|10025256|lymphocyte count decreased|C0853986|Lymphocyte count decreased|| +013383|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Lymphocyte count increased|10025258|Lymphocyte count increased|10025258|lymphocyte count increased|C0853698|Lymphocyte count increased|| +013384|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Nasal congestion|10028735|Nasal congestion|10028735|nasal congestion|C0027424|Nasal congestion (finding)|| +013385|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +013386|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +013387|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Neutrophil count decreased|10029366|Neutrophil count decreased|10029366|neutrophils decreased|C0853697|Neutrophil count decreased|| +013388|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Night sweats|10029410|Night sweats|10029410|night sweats|C0028081|Night sweats|| +013389|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +013390|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +013391|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Platelet count decreased|10035528|Platelets decreased|10035545|platelets decreased|C0392386|Decreased platelet count|| +013392|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +013393|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +013394|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +013395|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +013396|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +013397|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +013398|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Skin reaction|10040914|Skin reaction|10040914|cutaneous reactions|C0221743|Skin reaction|| +013399|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +013400|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevated transaminases|C0438717|Transaminases increased|| +013401|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +013402|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +013403|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +013404|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|recurrence alt elevations|C0151905|Alanine aminotransferase increased|| +013405|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +013406|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|elevations in ast|C0151904|Aspartate aminotransferase increased|| +013407|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +013408|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +013409|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis exfoliative|10012455|Dermatitis exfoliative|10012455|dermatitis exfoliative|C0011606|Exfoliative dermatitis|| +013410|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +013411|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Exfoliative rash|10064579|Exfoliative rash|10064579|exfoliative rash|C1608945|Exfoliative rash|| +013412|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +013413|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +013414|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Allergic reaction|10001718|allergic reactions|C1527304|Allergic Reaction|| +013415|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Intestinal perforation|10022694|Intestinal perforation|10022694|intestinal perforation|C0021845|Intestinal Perforation|| +013416|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryo-fetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +013417|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +013418|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +013419|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Rash erythematous|10037855|Rash erythematous|10037855|rash erythematous|C0234913|Rash erythematous|| +013420|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Rash generalised|10037858|Generalized rash|10049201|rash generalized|C0497365|Rash generalised|| +013421|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Rash macular|10037867|Rash macular|10037867|rash macular|C0221201|Macular rash|| +013422|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Rash maculo-papular|10037868|Rash maculo-papular|10037868|rash maculo-papular|C0423791|Maculopapular eruption|| +013423|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Rash papular|10037876|Rash papular|10037876|rash papular|C1519353|Skin Papule|| +013424|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Rash pruritic|10037884|Rash pruritic|10037884|rash pruritic|C0033771|Prurigo|| +013425|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +013426|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Skin disorder|10040831|Skin disorder|10040831|skin disorder|C0037274|Dermatologic disorders|| +013427|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|cutaneous reactions|C0221743|Skin reaction|| +013428|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenic|C0232910|Teratogenesis||Animal +013429|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|TEN|10043221|ten|C0014518|Toxic Epidermal Necrolysis|| +013430|efbdafa9-d18c-4e85-b4a2-1e620fc74e50|Zydelig|43685-7|WARNINGS AND PRECAUTIONS|Toxic epidermal necrolysis|10044223|Toxic epidermal necrolysis|10044223|toxic epidermal necrolysis|C0014518|Toxic Epidermal Necrolysis|| +013431|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Abdominal pain lower|10000084|Abdominal pain lower|10000084|abdominal pain lower|C0232495|Lower abdominal pain|| +013432|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +013433|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +013434|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Abnormal weight gain|10000188|Abnormal weight gain|10000188|abnormal weight gain|C0332544|Abnormal weight gain|| +013435|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Alanine aminotransferase abnormal|10001547|Alanine aminotransferase abnormal|10001547|abnormalities in alanine transaminase|C0855619|Alanine aminotransferase abnormal|| +013436|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevated alt|C0151905|Alanine aminotransferase increased|| +013437|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +013438|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +013439|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase abnormal|10003477|Aspartate aminotransferase abnormal|10003477|abnormalities in ast|C0855623|Aspartate aminotransferase abnormal|| +013440|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast elevations|C0151904|Aspartate aminotransferase increased|| +013441|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +013442|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Bacterial test positive|10059421|Bacteria urine identified|10061678|bacteria urine identified|C0948579|Bacteria urine identified|| +013443|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Balance disorder|10049848|Balance disorder|10049848|balance disorder|C0575090|Equilibration disorder|| +013444|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Blood cholesterol increased|10005425|Cholesterol levels raised|10008663|cholesterol elevations|C1522133|Hypercholesterolemia result|| +013445|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Blood disorder|10061590|Hematologic disorder|10019426|hematologic adverse reactions|C0018939|Hematological Disease|| +013446|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +013447|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Contusion|10050584|Bruising|10006504|bruising|C0009938|Contusions|| +013448|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Contusion|10050584|Contusion|10050584|contusion|C0009938|Contusions|| +013449|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +013450|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Cystitis|10011781|Cystitis|10011781|cystitis|C0010692|Cystitis|| +013451|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +013452|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Dizziness postural|10013578|Dizziness postural|10013578|postural dizziness|C0234987|Postural dizziness|| +013453|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +013454|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Dyspnoea exertional|10013971|Dyspnea exertional|10013966|dyspnea exertional|C0231807|Dyspnea on exertion|| +013455|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +013456|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Ecchymosis|10014080|Ecchymosis|10014080|ecchymosis|C0013491|Ecchymosis|| +013457|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +013458|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +013459|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +013460|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Haematology test abnormal|10057755|Hematology test abnormal|10057760|hematology abnormalities|C1112712|Haematology test abnormal|| +013461|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Haematoma|10018852|Hematoma|10019428|hematoma|C0018944|Hematoma|| +013462|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decreases in hemoglobin|C0162119|Hemoglobin low|| +013463|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +013464|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Herpes zoster|10019974|Herpes zoster|10019974|herpes zoster|C0019360|Herpes zoster disease|| +013465|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Hypercholesterolaemia|10020603|Hypercholesterolemia|10020604|hypercholesterolemia|C0020443|Hypercholesterolemia|| +013466|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +013467|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Hypertriglyceridaemia|10020869|Hypertriglyceridemia|10020870|hypertriglyceridemia|C0020557|Hypertriglyceridemia|| +013468|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Increased tendency to bruise|10021688|Increased tendency to bruise|10021688|increased tendency to bruise|C0423798|Increased tendency to bruise|| +013469|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infection|C3714514|Infection|| +013470|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Injection site haematoma|10022066|Injection site hematoma|10055371|injection site hematoma|C0542008|Injection site haematoma|| +013471|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Kidney infection|10023424|Kidney infection|10023424|kidney infection|C0021313|Infection of kidney|| +013472|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Labyrinthitis|10023567|Labyrinthitis|10023567|labyrinthitis|C0022893|Labyrinthitis|| +013473|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Meniere's disease|10027183|Meniere's disease|10027183|meniere's disease|C0025281|Meniere Disease|| +013474|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +013475|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +013476|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +013477|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +013478|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Nitrite urine present|10051469|Nitrite urine present|10051469|nitrite urine present|C1278267|Urine nitrite positive|| +013479|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +013480|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +013481|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Periorbital haematoma|10034544|Periorbital hematoma|10055379|periorbital hematoma|C0520723|Periorbital hematoma|| +013482|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Petechiae|10034754|Petechiae|10034754|petechiae|C0031256|Petechiae|| +013483|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Post herpetic neuralgia|10036376|Post herpetic neuralgia|10036376|post-herpetic neuralgia|C0032768|Postherpetic neuralgia|| +013484|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +013485|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Purpura|10037549|Purpura|10037549|purpura|C0034150|Purpura|| +013486|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Pyuria|10037686|Pyuria|10037686|pyuria|C0034359|Pyuria|| +013487|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Skin cancer|10040808|Cancer of skin (excl melanoma)|10007116|non-melanoma skin cancer|C0699893|Skin carcinoma|| +013488|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +013489|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Urinary tract infection bacterial|10054088|Urinary tract infection bacterial|10054088|urinary tract infection bacterial|C0729524|Bacterial urinary infection|| +013490|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +013491|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Urosepsis|10048709|Urosepsis|10048709|urosepsis|C0149801|Sepsis due to urinary tract infection|| +013492|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +013493|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Vessel puncture site haematoma|10065902|Vessel puncture site hematoma|10065905|vessel puncture site hematoma|C1696110|Vessel puncture site haematoma|| +013494|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight gain|10047896|weight gain|C0043094|Weight Gain|| +013495|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|34084-4|ADVERSE REACTIONS|Weight increased|10047899|Weight increased|10047899|weight increased|C0043094|Weight Gain|| +013496|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +013497|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Bacterial infection|10060945|Bacterial infection|10060945|bacterial infections|C0004623|Bacterial Infections|| +013498|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Basal cell carcinoma|10004146|Basal cell carcinoma|10004146|basal cell carcinoma|C0007117|Basal cell carcinoma|| +013499|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Condition aggravated|10010264|Exacerbation of disease|10015576|symptom exacerbation|C0235874|Disease Exacerbation|| +013500|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Fungal infection|10017533|Fungal infection|10017533|fungal infections|C0026946|Mycoses|| +013501|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infection|C3714514|Infection|| +013502|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Mycobacterial infection|10062207|Mycobacterial infection|10062207|mycobacterial infections|C0026918|Mycobacterium Infections|| +013503|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Neuroendocrine carcinoma of the skin|10029266|Merkel cell carcinoma|10064025|merkel cell carcinoma|C0007129|Merkel cell carcinoma|| +013504|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +013505|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Neutrophil count decreased|10029366|Absolute neutrophil count decreased|10059234|anc less than 0.5 x 10 9 /l|C1168174|Absolute neutrophil count decreased|| +013506|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Progressive multifocal leukoencephalopathy|10036807|Progressive multifocal leukoencephalopathy|10036807|pml|C0023524|Leukoencephalopathy, Progressive Multifocal|| +013507|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Skin cancer|10040808|Cancer of skin (excl melanoma)|10007116|non-melanoma skin cancer|C0699893|Skin carcinoma|| +013508|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Squamous cell carcinoma|10041823|Squamous cell carcinoma|10041823|squamous cell carcinoma|C0007137|Squamous cell carcinoma|| +013509|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +013510|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Tuberculosis|10044755|Infection tuberculosis|10021870|tuberculosis infection|C0041296|Tuberculosis|| +013511|f1c82580-87ae-11e0-bc84-0002a5d5c51b|JAKAFI|43685-7|WARNINGS AND PRECAUTIONS|Viral infection|10047461|Viral infection|10047461|viral infections|C0042769|Virus Diseases|| +013512|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +013513|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Apnoea|10002974|Apnea|10002972|apnea|C0003578|Apnea|| +013514|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Aspiration tracheal|10003530|Endotracheal aspiration|10050802|endotracheal tube reflux|C0220787|Endotracheal aspiration|duplicate| +013515|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +013516|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +013517|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Endotracheal intubation complication|10063349|Endotracheal intubation complication|10063349|endotracheal tube reflux|C0281803|Endotracheal intubation complication|duplicate| +013518|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Endotracheal intubation complication|10063349|Endotracheal tube obstruction|10066831|endotracheal tube obstruction|C1868879|Endotracheal tube obstruction|| +013519|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +013520|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +013521|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +013522|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Hypoxia|10021143|Hypoxia|10021143|oxygen desaturation|C0242184|Hypoxia|| +013523|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Hypoxic-ischaemic encephalopathy|10070511|Anoxic encephalopathy|10050750|anoxic encephalopathy|C0003132|Anoxic Encephalopathy|| +013524|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Intraventricular haemorrhage|10022840|Intraventricular hemorrhage|10055299|intraventricular hemorrhage|C0240059|Ventricular hemorrhage|| +013525|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Jaundice|10023126|Jaundice|10023126|jaundice|C0022346|Icterus|| +013526|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Metabolic acidosis|10027417|Metabolic acidosis|10027417|metabolic acidosis|C0220981|Metabolic acidosis|| +013527|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Multi-organ failure|10028154|Multi-organ failure|10028154|multi-organ failure|C0026766|Multiple Organ Failure|| +013528|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Necrotising colitis|10051606|Necrotizing enterocolitis|10055646|necrotizing enterocolitis|C0520459|Necrotizing Enterocolitis|| +013529|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Oxygen saturation decreased|10033318|Oxygen saturation decreased|10033318|decreased oxygen saturation|C0746961|Oxygen saturation below reference range|| +013530|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Pallor|10033546|Pallor|10033546|pallor|C0030232|Pallor|| +013531|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Patent ductus arteriosus|10034130|Patent ductus arteriosus|10034130|patent ductus arteriosus|C0013274|Patent ductus arteriosus|| +013532|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Periventricular leukomalacia|10052594|Periventricular leukomalacia|10052594|periventricular leukomalacia|C0023529|Leukomalacia, Periventricular|| +013533|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +013534|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Pneumothorax|10035759|Pneumothorax|10035759|pneumothorax|C0032326|Pneumothorax|| +013535|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Pulmonary air leakage|10067826|Pulmonary air leakage|10067826|pulmonary air leak|C2242512|Air leaking from lung|| +013536|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +013537|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Pulmonary haemorrhage|10037394|Pulmonary hemorrhage|10037397|pulmonary hemorrhage|C0151701|Pulmonary hemorrhage|| +013538|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Pulmonary interstitial emphysema syndrome|10037415|Pulmonary interstitial emphysema syndrome|10037415|pulmonary interstitial emphysema|C0853845|Pulmonary interstitial emphysema syndrome|| +013539|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +013540|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Respiratory acidosis|10038661|Respiratory acidosis|10038661|respiratory acidosis|C0001127|Acidosis, Respiratory|| +013541|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Retinopathy of prematurity|10038933|Retinopathy of prematurity|10038933|retinopathy of prematurity|C0035344|Retinopathy of Prematurity|| +013542|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +013543|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Administration site reaction|10001315|Administration site reaction|10001315|administration-related adverse reactions|C0851536|Administration site reaction|| +013544|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Aspiration|10003504|Aspiration of gastrointestinal contents into airways|10048996|reflux into the endotracheal tube|C0877412|Aspiration of gastrointestinal contents into airways|duplicate| +013545|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +013546|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +013547|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Endotracheal intubation complication|10063349|Endotracheal intubation complication|10063349|reflux into the endotracheal tube|C0281803|Endotracheal intubation complication|duplicate| +013548|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Endotracheal intubation complication|10063349|Endotracheal tube obstruction|10066831|ett obstruction|C1868879|Endotracheal tube obstruction|| +013549|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +013550|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Hypoxia|10021143|Hypoxia|10021143|hypoxia|C0242184|Hypoxia|| +013551|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Hypoxic-ischaemic encephalopathy|10070511|Anoxic encephalopathy|10050750|anoxic encephalopathy|C0003132|Anoxic Encephalopathy|| +013552|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Multi-organ failure|10028154|Multi-organ failure|10028154|multi-organ failure|C0026766|Multiple Organ Failure|| +013553|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Obstructive airways disorder|10061877|Airways obstruction|10001539|airway obstruction|C0001883|Airway Obstruction|| +013554|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Pneumothorax|10035759|Pneumothorax|10035759|pneumothorax|C0032326|Pneumothorax|| +013555|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +013556|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary function test abnormal|10061602|Lung function abnormal|10025092|acute changes in lung compliance|C0476405|Lung function testing abnormal|| +013557|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +013558|f2ba0c81-ceb0-11e0-9572-0800200c9a66|SURFAXIN|43685-7|WARNINGS AND PRECAUTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +013559|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +013560|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|34084-4|ADVERSE REACTIONS|Anxiety|10002855|Anxiety|10002855|anxiety|C0003467|Anxiety|| +013561|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +013562|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +013563|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|34084-4|ADVERSE REACTIONS|Drug withdrawal syndrome|10013754|Opiate withdrawal symptoms|10030882|opioid withdrawal|C0029104|Opioid withdrawal|| +013564|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|34084-4|ADVERSE REACTIONS|Flatulence|10016766|Flatulence|10016766|flatulence|C0016204|Flatulence|| +013565|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|34084-4|ADVERSE REACTIONS|Gastrointestinal disorder|10017944|Gastrointestinal symptom NOS|10018011|gastrointestinal adverse reactions|C0426576|Gastrointestinal symptom|| +013566|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|34084-4|ADVERSE REACTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +013567|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +013568|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|34084-4|ADVERSE REACTIONS|Hyperhidrosis|10020642|Hyperhidrosis|10020642|hyperhidrosis|C0020458|Hyperhidrosis disorder|| +013569|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|34084-4|ADVERSE REACTIONS|Irritability|10022998|Irritability|10022998|irritability|C0022107|Irritable Mood|| +013570|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +013571|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +013572|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|34084-4|ADVERSE REACTIONS|Yawning|10048232|Yawning|10048232|yawning|C0043387|Yawning|| +013573|f49c6978-ca7b-4a66-919b-757f8f92ef64|MOVANTIK|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation||DrugClass +013574|f4ec77e4-bae8-4db0-b3d5-bde09c5fa075|Harvoni|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|bilirubin elevations|C0311468|Increased bilirubin level (finding)|| +013575|f4ec77e4-bae8-4db0-b3d5-bde09c5fa075|Harvoni|34084-4|ADVERSE REACTIONS|Blood creatine phosphokinase increased|10005470|Creatine kinase increased|10011336|creatine kinase elevations|C0151576|Elevated creatine kinase|| +013576|f4ec77e4-bae8-4db0-b3d5-bde09c5fa075|Harvoni|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|symptomatic bradycardia|C0741627|BRADYCARDIA SYMPTOMATIC|| +013577|f4ec77e4-bae8-4db0-b3d5-bde09c5fa075|Harvoni|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +013578|f4ec77e4-bae8-4db0-b3d5-bde09c5fa075|Harvoni|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +013579|f4ec77e4-bae8-4db0-b3d5-bde09c5fa075|Harvoni|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +013580|f4ec77e4-bae8-4db0-b3d5-bde09c5fa075|Harvoni|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +013581|f4ec77e4-bae8-4db0-b3d5-bde09c5fa075|Harvoni|34084-4|ADVERSE REACTIONS|Lipase increased|10024574|Lipase increased|10024574|lipase elevations|C1963823|Hyperlipasaemia|| +013582|f4ec77e4-bae8-4db0-b3d5-bde09c5fa075|Harvoni|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +013583|f4ec77e4-bae8-4db0-b3d5-bde09c5fa075|Harvoni|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|symptomatic bradycardia|C0741627|BRADYCARDIA SYMPTOMATIC|| +013584|f4ec77e4-bae8-4db0-b3d5-bde09c5fa075|Harvoni|43685-7|WARNINGS AND PRECAUTIONS|Cardiac arrest|10007515|Cardiac arrest|10007515|cardiac arrest|C0018790|Cardiac Arrest|| +013585|f4ec77e4-bae8-4db0-b3d5-bde09c5fa075|Harvoni|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +013586|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Stomach discomfort|10042101|stomach discomfort|C0235309|Upset stomach|| +013587|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +013588|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Angina pectoris|10002383|Angina|10002372|angina|C0002962|Angina Pectoris|| +013589|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Angina unstable|10002388|Unstable angina|10046251|unstable angina|C0002965|Angina, Unstable|| +013590|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +013591|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +013592|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Balanoposthitis|10004078|Balanitis|10004073|balanitis|C0004690|Balanitis|| +013593|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Blindness|10005169|Loss of vision|10024881|permanent loss of vision|C4012505|Permanent loss of sight||DrugClass +013594|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Blood glucose increased|10005557|blood glucose increased|C0595877|Blood glucose increased|| +013595|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +013596|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +013597|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +013598|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Deep vein thrombosis|10051055|Deep vein thrombosis|10051055|deep vein thrombosis|C0149871|Deep Vein Thrombosis|| +013599|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Depression|10012378|Depression|10012378|depression|C0011570|Mental Depression|| +013600|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +013601|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +013602|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +013603|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Dyspnoea exertional|10013971|Dyspnea exertional|10013966|dyspnea exertional|C0231807|Dyspnea on exertion|| +013604|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Electrocardiogram abnormal|10014363|Electrocardiogram abnormal|10014363|electrocardiogram abnormal|C0522055|Electrocardiogram abnormal|| +013605|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +013606|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Erection increased|10015120|Erection increased|10015120|erection increased|C0541941|Erection increased|| +013607|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +013608|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +013609|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Gastritis|10017853|Gastritis|10017853|gastritis|C0017152|Gastritis|| +013610|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Gastroenteritis viral|10017918|Gastroenteritis viral|10017918|gastroenteritis viral|C0152517|Enteritis due to specified virus|| +013611|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +013612|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +013613|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +013614|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +013615|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +013616|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Influenza|10022000|Influenza|10022000|influenza|C0021400|Influenza|| +013617|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +013618|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +013619|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +013620|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +013621|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Nasal congestion|10028735|Nasal congestion|10028735|nasal congestion|C0027424|Nasal congestion (finding)|| +013622|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +013623|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +013624|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Nephrolithiasis|10029148|Nephrolithiasis|10029148|nephrolithiasis|C0392525|Nephrolithiasis|| +013625|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +013626|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Optic ischaemic neuropathy|10030924|NAION|10068245|naion|C1852242|Nonarteritic anterior ischemic optic neuropathy (NAION)||DrugClass +013627|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Optic ischaemic neuropathy|10030924|Nonarteritic anterior ischaemic optic neuropathy|10068242|non-arteritic anterior ischemic optic neuropathy|C1852242|Nonarteritic anterior ischemic optic neuropathy (NAION)||DrugClass +013628|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +013629|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +013630|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +013631|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Pollakiuria|10036018|Pollakiuria|10036018|pollakiuria|C0042023|Increased frequency of micturition|| +013632|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +013633|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +013634|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Sinus congestion|10040742|Sinus congestion|10040742|sinus congestion|C0152029|Congestion of nasal sinus|| +013635|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +013636|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Somnolence|10041349|Somnolence|10041349|somnolence|C2830004|Somnolence|| +013637|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory infection|10046300|upper respiratory infection|C0041912|Upper Respiratory Infections|| +013638|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|uri|C0041912|Upper Respiratory Infections|| +013639|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +013640|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Vertigo|10047340|Vertigo|10047340|vertigo|C0042571|Vertigo|| +013641|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Visual acuity reduced|10047531|Vision decreased|10047516|decreased vision|C0558171|Deteriorating vision||DrugClass +013642|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Visual impairment|10047571|Color vision change|10068914|change in color vision|C2609264|Color vision change|| +013643|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +013644|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|34084-4|ADVERSE REACTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +013645|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Blindness|10005169|Loss of vision|10024881|permanent loss of vision|C4012505|Permanent loss of sight||DrugClass +013646|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure decreased|10005734|Blood pressure dropped transient|10005745|transient decreases in sitting blood pressure|C0858766|Blood pressure dropped transient|| +013647|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Cardiac disorder|10061024|Cardiac disorder|10061024|cardiac risk|C2024776|cardiac risk factors|| +013648|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Deafness|10011878|Hearing loss|10019246|loss of hearing|C3887873|Hearing Loss||DrugClass +013649|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +013650|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Lightheadedness|10024492|lightheadedness|C0220870|Lightheadedness|| +013651|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Erection increased|10015120|Erection prolonged|10068039|prolonged erection|C2242621|Erection prolonged||DrugClass +013652|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension symptomatic|10021105|symptomatic hypotension|C0863113|Hypotension symptomatic|| +013653|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +013654|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Optic ischaemic neuropathy|10030924|NAION|10068245|naion|C1852242|Nonarteritic anterior ischemic optic neuropathy (NAION)||DrugClass +013655|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Optic ischaemic neuropathy|10030924|Nonarteritic anterior ischaemic optic neuropathy|10068242|non-arteritic anterior ischemic optic neuropathy|C1852242|Nonarteritic anterior ischemic optic neuropathy (NAION)||DrugClass +013656|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Painful erection|10056303|Painful erection|10056303|painful erections|C0233973|Painful penile erection||DrugClass +013657|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Platelet aggregation inhibition|10050661|Platelet aggregation inhibition|10050661|potentiates the anti-aggregatory effect of sodium nitroprusside|C0919737|Platelet aggregation inhibition|duplicate| +013658|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Priapism|10036661|Priapism|10036661|priapism|C0033117|Priapism||DrugClass +013659|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Sudden hearing loss|10061373|Sudden hearing loss|10061373|sudden decrease of hearing|C0011057|Hearing Loss, Sudden||DrugClass +013660|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Syncope|10042772|Fainting|10016169|fainting|C0039070|Syncope|| +013661|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Tinnitus|10043882|Tinnitus|10043882|tinnitus|C0040264|Tinnitus||DrugClass +013662|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|Visual acuity reduced|10047531|Vision decreased|10047516|decreased vision|C0558171|Deteriorating vision||DrugClass +013663|f5172788-e1ab-45f9-99fa-878ee42cf91d|Stendra|43685-7|WARNINGS AND PRECAUTIONS|||||potentiates the anti-aggregatory effect of sodium nitroprusside|C0570475|Sodium nitroprusside adverse reaction|duplicate| +013664|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34066-1|BOXED WARNINGS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +013665|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Upper abdominal pain|10046272|upper abdominal pain|C0232492|Upper abdominal pain|| +013666|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +013667|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +013668|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +013669|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +013670|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +013671|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Injection site bruising|10022052|Injection site bruising|10022052|injection site bruising|C0521508|Injection site bruising|| +013672|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Injection site erythema|10022061|Injection site erythema|10022061|injection site erythema|C0852625|Injection site erythema|| +013673|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Injection site irritation|10022079|Injection site irritation|10022079|injection site irritation|C0521498|Injection site irritation|| +013674|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +013675|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Injection site pruritus|10022093|Injection site pruritus|10022093|injection site pruritus|C0852995|Injection site pruritus|| +013676|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Injection site reaction|10022095|Injection site reaction|10022095|injection site reactions|C0151735|Injection site reaction|| +013677|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Injection site urticaria|10022107|Injection site urticaria|10022107|injection site urticaria|C0392196|Injection site urticaria|| +013678|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +013679|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +013680|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +013681|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +013682|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +013683|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +013684|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +013685|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +013686|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +013687|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +013688|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +013689|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +013690|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Nasal congestion|10028735|Nasal congestion|10028735|nasal congestion|C0027424|Nasal congestion (finding)|| +013691|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Pharyngeal oedema|10034829|Pharyngeal edema|10054544|pharyngeal edema|C0236024|Edema of pharynx|| +013692|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +013693|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +013694|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Rhinorrhoea|10039101|Rhinorrhea|10039100|rhinorrhea|C1260880|Rhinorrhea|| +013695|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Sneezing|10041232|Sneezing|10041232|sneezing|C0037383|Sneezing|| +013696|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Throat irritation|10043521|Throat irritation|10043521|throat irritation|C0700184|Throat irritation|| +013697|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +013698|f56aec67-c662-477c-b866-bfc23e8809cf|Kalbitor|43685-7|WARNINGS AND PRECAUTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +013699|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Abdominal pain lower|10000084|Abdominal pain lower|10000084|abdominal pain lower|C0232495|Lower abdominal pain|| +013700|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +013701|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +013702|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increased alt|C0151905|Alanine aminotransferase increased|| +013703|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Allergic colitis|10059447|Allergic colitis|10059447|immune-mediated colitis|C1262482|Allergic colitis|| +013704|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Amylase increased|10002016|Amylase increased|10002016|increased amylase|C0151479|Amylase increased|| +013705|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Anaemia|10002034|Anemia|10002272|anemia|C0002871|Anemia|| +013706|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +013707|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Arthritis|10003246|Arthritis|10003246|arthritis|C0003864|Arthritis|| +013708|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increased ast|C0151904|Aspartate aminotransferase increased|| +013709|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|increased aspartate aminotransferase|C0151904|Aspartate aminotransferase increased|| +013710|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +013711|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Autoimmune hepatitis|10003827|Autoimmune hepatitis|10003827|immune-mediated hepatitis|C0241910|Hepatitis, Autoimmune|underspecified| +013712|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Autoimmune hypothyroidism|10076644|Autoimmune hypothyroidism|10076644|immune-mediated hypothyroidism|C0342158|Hypothyroidism, Autoimmune|underspecified| +013713|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Autoimmune nephritis|10077087|Autoimmune nephritis|10077087|immune-mediated renal dysfunction|C1142150|Nephritis autoimmune|underspecified| +013714|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +013715|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Basedow's disease|10004161|Autoimmune hyperthyroidism|10068004|immune-mediated hyperthyroidism|C0018213|Graves Disease|underspecified| +013716|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|increased alkaline phosphatase|C0151849|Alkaline phosphatase raised|| +013717|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|increased creatinine|C0151578|Creatinine increased|| +013718|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Bone pain|10006002|Bone pain|10006002|bone pain|C0151825|Bone pain|| +013719|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Bronchitis|10006451|Bronchitis|10006451|bronchitis|C0006277|Bronchitis|| +013720|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +013721|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +013722|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Chronic obstructive pulmonary disease|10009033|COPD exacerbation|10010953|chronic obstructive pulmonary disease exacerbation|C0740304|COPD exacerbation|| +013723|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +013724|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +013725|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +013726|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Dermatitis acneiform|10012432|Dermatitis acneiform|10012432|dermatitis acneiform|C0234894|Dermatitis acneiform|| +013727|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Dermatitis exfoliative|10012455|Dermatitis exfoliative|10012455|dermatitis exfoliative|C0011606|Exfoliative dermatitis|| +013728|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Dermatitis exfoliative|10012455|Exfoliative dermatitis|10015665|exfoliative dermatitis|C0011606|Exfoliative dermatitis|| +013729|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Dermatitis|10012431|Dermatitis|10012431|dermatitis|C0011603|Dermatitis|| +013730|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +013731|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +013732|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +013733|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Erythema multiforme|10015218|Erythema multiforme|10015218|erythema multiforme|C0014742|Erythema Multiforme|| +013734|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +013735|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Face oedema|10016029|Face edema|10016025|face edema|C0542571|Facial edema|| +013736|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +013737|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Gastrointestinal pain|10017999|Gastrointestinal pain|10017999|gastrointestinal pain|C0687713|Gastrointestinal pain|| +013738|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Haemoptysis|10018964|Hemoptysis|10019523|hemoptysis|C0019079|Hemoptysis|| +013739|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Hypercalcaemia|10020583|Hypercalcemia|10020587|hypercalcemia|C0020437|Hypercalcemia|| +013740|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Hyperkalaemia|10020646|Hyperkalemia|10020647|hyperkalemia|C0020461|Hyperkalemia|| +013741|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|immune-mediated adverse reactions|C0020517|Hypersensitivity|| +013742|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Hypocalcaemia|10020947|Hypocalcemia|10020949|hypocalcemia|C0020598|Hypocalcemia|| +013743|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +013744|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Hypomagnesaemia|10021027|Hypomagnesemia|10021028|hypomagnesemia|C0151723|Hypomagnesemia|| +013745|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Hyponatraemia|10021036|Hyponatremia|10021038|hyponatremia|C0020625|Hyponatremia|| +013746|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Infusion related reaction|10051792|Infusion related reaction|10051792|infusion-related reactions|C0948715|Infusion related reaction|| +013747|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Iridocyclitis|10022941|Iridocyclitis|10022941|iridocyclitis|C0022073|Iridocyclitis|| +013748|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Lipase increased|10024574|Lipase increased|10024574|increased lipase|C0549475|Lipase increased|| +013749|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Local swelling|10024770|Local swelling|10024770|local swelling|C0853619|Local swelling|| +013750|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Localised oedema|10048961|Localized edema|10062466|localized edema|C0013609|Localized edema|| +013751|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Lung infection|10061229|Lung infection|10061229|lung infection|C0876973|Infectious disease of lung|| +013752|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Lymphoedema|10025282|Lymphoedema|10025282|lymphoedema|C0024236|Lymphedema|| +013753|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphopenia|10025327|lymphopenia|C0024312|Lymphopenia|| +013754|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Musculoskeletal chest pain|10050819|Musculoskeletal chest pain|10050819|musculoskeletal chest pain|C0476280|Musculoskeletal chest pain|| +013755|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +013756|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +013757|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +013758|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +013759|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Neck pain|10028836|Neck pain|10028836|neck pain|C0007859|Neck Pain|| +013760|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +013761|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Neutralising antibodies|10058063|Neutralizing antibodies|10058033|neutralizing antibodies|C1609515|Neutralising antibodies positive|| +013762|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Non-cardiac chest pain|10062501|Non-cardiac chest pain|10062501|noncardiac chest pain|C0476281|Non-cardiac chest pain|| +013763|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +013764|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Oedema|10030095|Edema|10014210|edema|C0013604|Edema|| +013765|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Osteoarthritis|10031161|Osteoarthritis|10031161|osteoarthritis|C0029408|Degenerative polyarthritis|| +013766|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +013767|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Pain|10033371|Pain|10033371|pain|C0030193|Pain|| +013768|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Peripheral sensory neuropathy|10034620|Sensory neuropathy|10062975|sensory neuropathy|C0151313|Sensory neuropathy|| +013769|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Pharyngitis|10034835|Pharyngitis|10034835|pharyngitis|C0031350|Pharyngitis|| +013770|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Pleural effusion|10035598|Pleural effusion|10035598|pleural effusion|C0032227|Pleural effusion disorder|| +013771|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Pneumonia aspiration|10035669|Pneumonia aspiration|10035669|pneumonia aspiration|C0032290|Aspiration Pneumonia|| +013772|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +013773|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|immune-mediated pneumonitis|C3714636|Pneumonitis|underspecified| +013774|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +013775|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Psoriasis|10037153|Psoriasis|10037153|psoriasis|C0033860|Psoriasis|| +013776|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +013777|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Rash erythematous|10037855|Rash erythematous|10037855|rash erythematous|C0234913|Rash erythematous|| +013778|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Rash follicular|10037857|Rash follicular|10037857|rash follicular|C0234916|Rash follicular|| +013779|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Rash macular|10037867|Rash macular|10037867|rash macular|C0221201|Macular rash|| +013780|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Maculopapular rash|10025424|maculopapular rash|C0423791|Maculopapular eruption|| +013781|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Rash papular|10037876|Rash papular|10037876|rash papular|C1519353|Skin Papule|| +013782|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Rash pruritic|10037884|Rash pruritic|10037884|rash pruritic|C0033771|Prurigo|| +013783|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Rash pustular|10037888|Rash pustular|10037888|rash pustular|C0085641|Pustular rash|| +013784|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Rash vesicular|10037898|Rash vesicular|10037898|rash vesicular|C0221203|Vesicular rash|| +013785|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +013786|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Rhinitis|10039083|Rhinitis|10039083|rhinitis|C0035455|Rhinitis|| +013787|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Spinal pain|10072005|Spinal pain|10072005|spinal pain|C0423673|Pain in spine|| +013788|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +013789|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +013790|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +013791|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Ventricular arrhythmia|10047281|Ventricular arrhythmia|10047281|ventricular arrhythmia|C0085612|Ventricular arrhythmia|| +013792|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Vitiligo|10047642|Vitiligo|10047642|vitiligo|C0042900|Vitiligo|| +013793|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +013794|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|decreased weight|C1262477|Weight decreased|| +013795|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Abortion|10000210|Abortion|10000210|abortion|C0156543|Unspecified Abortion||Animal +013796|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Adrenal insufficiency|10001367|Adrenal insufficiency|10001367|adrenal insufficiency|C0001623|Adrenal gland hypofunction|| +013797|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|increases in alt|C0151905|Alanine aminotransferase increased|| +013798|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Allergic colitis|10059447|Allergic colitis|10059447|immune-mediated colitis|C1262482|Allergic colitis|| +013799|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Alveolitis allergic|10001890|Pneumonitis allergic|10035743|pneumonitis immune-mediated|C0002390|Extrinsic allergic alveolitis|| +013800|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increased ast|C0151904|Aspartate aminotransferase increased|| +013801|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune hepatitis|10003827|Autoimmune hepatitis|10003827|immune-mediated hepatitis|C0241910|Hepatitis, Autoimmune|underspecified| +013802|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune hypothyroidism|10076644|Autoimmune hypothyroidism|10076644|immune-mediated hypothyroidism|C0342158|Hypothyroidism, Autoimmune|underspecified| +013803|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune nephritis|10077087|Autoimmune nephritis|10077087|immune-mediated renal dysfunction|C1142150|Nephritis autoimmune|underspecified| +013804|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Autoimmune neuropathy|10070439|Autoimmune neuropathy|10070439|autoimmune neuropathy|C2748363|Autoimmune neuropathy|| +013805|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Basedow's disease|10004161|Autoimmune hyperthyroidism|10068004|immune-mediated hyperthyroidism|C0018213|Graves Disease|underspecified| +013806|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|increases in alkaline phosphatase|C0151849|Alkaline phosphatase raised|| +013807|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|increases in total bilirubin|C0741494|Elevated total bilirubin|| +013808|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|increased creatinine|C0151578|Creatinine increased|| +013809|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Colitis|10009887|Colitis|10009887|colitis|C0009319|Colitis|| +013810|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|died|C1306577|Death (finding)|| +013811|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Demyelination|10012305|Demyelination|10012305|demyelination|C0011304|Demyelination|| +013812|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Diabetic ketoacidosis|10012671|Diabetic ketoacidosis|10012671|diabetic ketoacidosis|C0011880|Diabetic Ketoacidosis|| +013813|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +013814|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Disease progression|10061818|Disease progression|10061818|disease progression|C0242656|Disease Progression|| +013815|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Facial nerve disorder|10061457|Facial nerve disorder|10061457|facial nerve paresis|C0221338|Facial paresis associated with facial nerve dysfunction|duplicate| +013816|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +013817|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Guillain-Barre syndrome|10018767|Guillain-Barre syndrome|10018767|guillain-barre syndrome|C0018378|Guillain-Barre Syndrome|| +013818|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis chronic persistent|10019759|Chronic persistent hepatitis|10009103|persistent hepatitis|C0149519|Chronic Persistent Hepatitis|| +013819|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Hepatitis|10019717|Hepatitis|10019717|hepatitis|C0019158|Hepatitis|| +013820|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|immune-mediated adverse reactions|C0020517|Hypersensitivity|| +013821|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Hyperthyroidism|10020850|Hyperthyroidism|10020850|hyperthyroidism|C0020550|Hyperthyroidism|| +013822|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Hypophysitis|10062767|Hypophysitis|10062767|hypophysitis|C0342409|Hypophysitis|| +013823|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Hypopituitarism|10021067|Hypopituitarism|10021067|hypopituitarism|C0020635|Hypopituitarism|| +013824|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +013825|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +013826|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Liver function test abnormal|10024690|Liver function tests multiple abnorm|10024694|liver test abnormalities|C0151766|Liver function tests abnormal finding|| +013827|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Liver function test abnormal|10024690|Raised liver function tests|10048557|increased liver test values|C0877359|Increased liver function tests|| +013828|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Motor dysfunction|10061296|Motor dysfunction|10061296|motor dysfunction|C0221163|Motor Disorders|| +013829|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Myasthenic syndrome|10028424|Myasthenic syndrome|10028424|myasthenic syndrome|C0549225|Myasthenic Syndrome|| +013830|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +013831|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Paresis|10033985|Paresis|10033985|abducens nerve paresis|C0030552|Paresis|duplicate| +013832|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +013833|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Kidney dysfunction|10023417|renal dysfunction|C0151746|Abnormal renal function|| +013834|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Uveitis|10046851|Uveitis|10046851|uveitis|C0042164|Uveitis|| +013835|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|VIth nerve disorder|10053646|Abducens nerve disorder|10053662|abducens nerve paresis|C0271355|Abducens Nerve Diseases|duplicate| +013836|f570b9c4-6846-4de2-abfa-4d0a4ae4e394|OPDIVO|43685-7|WARNINGS AND PRECAUTIONS|Vasculitis|10047115|Vasculitis|10047115|vasculitis|C0042384|Vasculitis|| +013837|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +013838|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34066-1|BOXED WARNINGS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +013839|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +013840|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increased|C0151905|Alanine aminotransferase increased|| +013841|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +013842|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +013843|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast increased|C0151904|Aspartate aminotransferase increased|| +013844|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +013845|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Blood albumin decreased|10005287|Albumin decreased|10001561|albumin decreased|C0860864|Decreased albumin|| +013846|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Blood alkaline phosphatase increased|10059570|Alkaline phosphatase increased|10001675|alkaline phosphatase increased|C0151849|Alkaline phosphatase raised|| +013847|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|total bilirubin increased|C0741494|Elevated total bilirubin|| +013848|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Blood glucose decreased|10005555|Glucose decreased|10018419|glucose decreased|C1704381|Glucose decreased|| +013849|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Glucose increased|10018421|glucose increased|C0860803|Glucose increased|| +013850|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Blood magnesium decreased|10005654|Magnesium decreased|10025432|magnesium decreased|C0240291|Mg reduced|| +013851|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Blood phosphorus decreased|10049471|Blood phosphorus decreased|10049471|phosphorus decreased|C0877517|Blood phosphorus decreased|| +013852|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Blood potassium increased|10005725|Potassium increased|10036450|potassium increased|C0856882|Potassium increased|| +013853|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Blood sodium decreased|10005802|Sodium decreased|10041268|sodium decreased|C0860871|Sodium decreased|| +013854|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +013855|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Cardiac disorder|10061024|Cardiac disorder|10061024|cardiac dysfunction|C0018799|Heart Diseases|| +013856|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Chest pain|10008479|Chest pain|10008479|chest pain|C0008031|Chest Pain|| +013857|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Chills|10008531|Chills|10008531|chills|C0085593|Chills|| +013858|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +013859|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Anorexia|10002646|anorexia|C0003123|Anorexia|| +013860|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Appetite decreased NOS|10003020|appetite decreased|C0232462|Decrease in appetite|| +013861|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +013862|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +013863|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +013864|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +013865|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Dysgeusia|10013911|dysgeusia|C0013378|Dysgeusia|| +013866|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Dysgeusia|10013911|Taste altered|10043126|altered taste|C0740425|Altered Taste|| +013867|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +013868|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Dysphonia|10013952|Dysphonia|10013952|dysphonia|C1527344|Dysphonia|| +013869|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +013870|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation|C0151878|Prolonged QT interval|| +013871|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolic events|C3544094|Arterial thromboembolism|| +013872|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolic events|C1861172|Venous Thromboembolism|| +013873|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +013874|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Exfoliative rash|10064579|Exfoliative rash|10064579|exfoliative rash|C1608945|Exfoliative rash|| +013875|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Face oedema|10016029|Face edema|10016025|facial edema|C0542571|Facial edema|| +013876|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +013877|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Gastrointestinal fistula|10017877|Gastrointestinal fistula|10017877|gastrointestinal fistula|C0079238|Digestive System Fistula|| +013878|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Gastrointestinal pain|10017999|Gastrointestinal pain|10017999|gastrointestinal pain|C0687713|Gastrointestinal pain|| +013879|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +013880|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhagic events|C0019080|Hemorrhage|| +013881|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Hair colour changes|10019030|Hair color changes|10055525|hair color changes|C0474378|Hair color change (finding)|| +013882|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Hair colour changes|10019030|Hair depigmented|10019033|hair color depigmentation|C0239794|HAIR DEPIGMENTATION|| +013883|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +013884|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +013885|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +013886|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +013887|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infection|C3714514|Infection|| +013888|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Insomnia|10022437|Insomnia|10022437|insomnia|C0917801|Sleeplessness|| +013889|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|ild|C0206062|Lung Diseases, Interstitial|| +013890|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Left ventricular dysfunction|10049694|Left ventricular dysfunction|10049694|left ventricular dysfunction|C0242698|Ventricular Dysfunction, Left|| +013891|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +013892|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Lipase increased|10024574|Lipase increased|10024574|increases in lipase values|C0549475|Lipase increased|| +013893|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Lymphopenia|10025327|Lymphocytopenia|10025278|lymphocytopenia|C0024312|Lymphopenia|| +013894|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Mucosal inflammation|10028116|Mucositis|10028127|mucositis|C0333355|Inflammatory disease of mucous membrane|| +013895|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasms|10028334|muscle spasms|C0037763|Spasm|| +013896|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +013897|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Myalgia|10028411|Myalgia|10028411|myalgia|C0231528|Myalgia|| +013898|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Nail disorder|10028694|Nail disorder|10028694|nail disorder|C0027339|Nail Diseases|| +013899|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +013900|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +013901|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Peripheral edema|10034570|peripheral edema|C0085649|Peripheral edema|| +013902|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Hand and foot syndrome|10019111|hand-foot syndrome|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +013903|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysesthesia syndrome|10054524|palmar-plantar erythrodysesthesia|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +013904|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +013905|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +013906|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Pneumothorax|10035759|Pneumothorax|10035759|pneumothorax|C0032326|Pneumothorax|| +013907|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|reversible posterior leukoencephalopathy syndrome|C3160858|Posterior reversible encephalopathy syndrome|| +013908|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +013909|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +013910|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Retinal detachment|10038848|Retinal detachment|10038848|retinal detachment|C0035305|Retinal Detachment|| +013911|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Retinal tear|10038897|Retinal tear|10038897|retinal tear|C0035321|Retinal Perforations|| +013912|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Skin depigmentation|10040825|Skin depigmentation|10040825|skin depigmentation|C0262977|Achromia of skin|| +013913|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Skin disorder|10040831|Skin disorder|10040831|skin disorder|C0037274|Dermatologic disorders|| +013914|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Skin hypopigmentation|10040868|Skin hypopigmentation|10040868|skin hypopigmentation|C0162835|Hypopigmentation disorder|| +013915|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +013916|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +013917|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Thrombotic microangiopathy|10043645|Thrombotic microangiopathy|10043645|thrombotic microangiopathy|C2717961|Thrombotic Microangiopathies|| +013918|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Torsade de pointes|10044066|Torsades de pointes|10044067|torsades de pointes|C0040479|Torsades de Pointes|| +013919|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Toxicity to various agents|10070863|Drug toxicity|10013746|increased toxicity|C0013221|Drug toxicity|| +013920|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Tumour pain|10045171|Tumor pain|10045158|tumor pain|C0854069|Tumor pain|| +013921|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +013922|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +013923|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|decreased weight|C1262477|Weight decreased|| +013924|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Abortion|10000210|Abortion|10000210|abortifacient|C0156543|Unspecified Abortion||Animal +013925|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevation in alt|C0151905|Alanine aminotransferase increased|| +013926|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Anal haemorrhage|10049555|Anal hemorrhage|10055226|anal hemorrhage|C0426747|Bleeding from anus|| +013927|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|increases in serum ast|C0151904|Aspartate aminotransferase increased|| +013928|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin elevated|10004688|elevation in bilirubin|C0311468|Increased bilirubin level (finding)|| +013929|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin increased|10004690|increases in bilirubin|C0311468|Increased bilirubin level (finding)|| +013930|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Serum bilirubin increased|10040159|increases in serum bilirubin|C0859062|Serum bilirubin increased|| +013931|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure diastolic increased|10005739|Blood pressure diastolic high|10005738|diastolic blood pressure >=100 mm hg|C0277889|Increased diastolic arterial pressure|| +013932|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure systolic increased|10005760|Blood pressure systolic high|10005759|systolic blood pressure >=150|C0277884|Increased systolic arterial pressure|| +013933|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Blood thyroid stimulating hormone increased|10005833|TSH increase|10044717|rise of tsh|C0586553|Raised TSH level|| +013934|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Cardiac disorder|10061024|Cardiac disorder|10061024|cardiac dysfunction|C0018799|Heart Diseases|| +013935|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Cardiac failure congestive|10007559|Congestive heart failure|10010684|congestive heart failure|C0018802|Congestive heart failure|| +013936|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Cardiotoxicity|10048610|Cardiotoxicity|10048610|toxicity to the heart|C0876994|Cardiotoxicity||Animal +013937|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Cerebral haemorrhage|10008111|Cerebral hemorrhage|10008114|cerebral hemorrhage|C2937358|Cerebral Hemorrhage|| +013938|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Cerebrovascular accident|10008190|cerebrovascular accident|C0038454|Cerebrovascular accident|| +013939|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal outcome|C0206277|Fatal Outcome|| +013940|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Developmental delay|10012559|Developmental disturbance|10012563|affect organ growth|C0000768|Congenital Abnormality||Animal +013941|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Disease progression|10061818|Disease progression|10061818|disease progression|C0242656|Disease Progression|| +013942|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Ejection fraction decreased|10050528|Left ventricular ejection fraction decreased|10053222|decreased lvef|C1096403|Left ventricular ejection fraction decreased|| +013943|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT interval prolonged|10037703|prolonged qt intervals|C0151878|Prolonged QT interval|| +013944|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT prolonged|10037705|qt prolongation values|C0151878|Prolonged QT interval|| +013945|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram abnormal|10014363|ECG abnormal|10014085|ecg abnormalities|C0522055|Electrocardiogram abnormal|| +013946|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolic events|C3544094|Arterial thromboembolism|| +013947|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|vte|C1861172|Venous Thromboembolism|| +013948|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +013949|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Fertility increased|10016467|Fertility increased|10016467|adverse reproductive effects|C0520926|Increased fertility|duplicate| +013950|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +013951|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal fistula|10017877|Gastrointestinal fistula|10017877|gastrointestinal fistula|C0079238|Digestive System Fistula|| +013952|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +013953|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +013954|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +013955|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Haemolytic uraemic syndrome|10018932|HUS|10020472|hus|C0019061|Hemolytic-Uremic Syndrome|| +013956|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Haemolytic uraemic syndrome|10018932|Hemolytic uremic syndrome|10019515|hemolytic uremic syndrome|C0019061|Hemolytic-Uremic Syndrome|| +013957|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Haemolytic uraemic syndrome|10018932|Hemolytic-uremic syndrome|10019516|hus|C0019061|Hemolytic-Uremic Syndrome|| +013958|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Haemoptysis|10018964|Hemoptysis|10019523|hemoptysis|C0019079|Hemoptysis|| +013959|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage intracranial|10018985|Intracranial hemorrhage|10022763|intracranial hemorrhage|C0151699|Intracranial Hemorrhages|| +013960|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +013961|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Hepatic failure|10019663|Hepatic failure|10019663|hepatic failure|C0085605|Liver Failure|| +013962|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +013963|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Hyperbilirubinaemia|10020578|Indirect hyperbilirubinemia|10075817|unconjugated hyperbilirubinemia|C0268306|Unconjugated hyperbilirubinemia|| +013964|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +013965|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Hypertensive crisis|10020802|Hypertensive crisis|10020802|hypertensive crisis|C0020546|Hypertensive crisis|| +013966|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Hypothyroidism|10021114|Hypothyroidism|10021114|hypothyroidism|C0020676|Hypothyroidism|| +013967|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Impaired healing|10021519|Impaired healing|10021519|impair wound healing|C0151692|Impaired wound healing|| +013968|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +013969|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Infertility|10021926|Infertility|10021926|adverse reproductive effects|C0021359|Infertility|duplicate| +013970|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|ild|C0206062|Lung Diseases, Interstitial|| +013971|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Ischaemia|10061255|Ischemia|10054438|ischemia|C0022116|Ischemia|| +013972|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|fetotoxic|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk||Animal +013973|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Mouth haemorrhage|10028024|Mouth hemorrhage|10028025|mouth hemorrhage|C0029163|Oral Hemorrhage|| +013974|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Myocardial depression|10069140|Myocardial depression|10069140|myocardial dysfunction|C0340515|Myocardial dysfunction|| +013975|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Myocardial infarction|10028596|Myocardial infarction|10028596|myocardial infarction|C0027051|Myocardial Infarction|| +013976|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Nephropathy toxic|10029155|Nephrotoxicity|10067571|toxicity to the kidney|C0599918|Nephrotoxicity||Animal +013977|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Nephrotic syndrome|10029164|Nephrotic syndrome|10029164|nephrotic syndrome|C0027726|Nephrotic Syndrome|| +013978|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +013979|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Peritoneal haemorrhage|10034666|Peritoneal hemorrhage|10034667|peritoneal hemorrhage|C0019065|Hemoperitoneum|| +013980|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +013981|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|rpls|C3160858|Posterior reversible encephalopathy syndrome|| +013982|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +013983|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pe|C0034065|Pulmonary Embolism|| +013984|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary embolism|10037377|Pulmonary embolus|10037380|pulmonary emboli|C0034065|Pulmonary Embolism|| +013985|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary haemorrhage|10037394|Pulmonary hemorrhage|10037397|pulmonary hemorrhage|C0151701|Pulmonary hemorrhage|| +013986|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary toxicity|10061924|Pulmonary toxicity|10061924|toxicity to the lungs|C0919924|Pulmonary toxicity||Animal +013987|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Rectal haemorrhage|10038063|Rectal hemorrhage|10038064|rectal hemorrhage|C0267596|Rectal hemorrhage|| +013988|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Subarachnoid haemorrhage|10042316|Subarachnoid hemorrhage|10042320|subarachnoid hemorrhage|C0038525|Subarachnoid Hemorrhage|| +013989|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Sudden death|10042434|Sudden death|10042434|sudden death|C0011071|Sudden death|| +013990|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Teratogenicity|10043275|Teratogenicity|10043275|teratogenic|C0232910|Teratogenesis||Animal +013991|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Thrombotic microangiopathy|10043645|Thrombotic microangiopathy|10043645|tma|C2717961|Thrombotic Microangiopathies|| +013992|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Thrombotic thrombocytopenic purpura|10043648|Thrombotic thrombocytopenic purpura|10043648|thrombotic thrombocytopenic purpura|C0034155|Purpura, Thrombotic Thrombocytopenic|| +013993|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Thyroxine decreased|10043816|T4 decreased|10043062|decline of t4|C1295666|Decreased thyroxine level|| +013994|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Torsade de pointes|10044066|Torsades de pointes|10044067|torsades de pointes|C0040479|Torsades de Pointes|| +013995|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Toxicity to various agents|10070863|Drug toxicity|10013746|toxicities|C0013221|Drug toxicity|| +013996|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Serum transaminase increased|10040421|increases in serum transaminase levels|C0859350|Serum transaminase increased|| +013997|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|transaminase elevations|C0438717|Transaminases increased|| +013998|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Transient ischaemic attack|10044390|Transient ischemic attack|10072760|transient ischemic attack|C0007787|Transient Ischemic Attack|| +013999|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Urogenital haemorrhage|10050058|Urogenital hemorrhage|10055358|genitourinary hemorrhage|C0919591|Genitourinary tract hemorrhage|| +014000|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|Venous thrombosis|10047249|Venous thrombosis|10047249|venous thrombosis|C0042487|Venous Thrombosis|| +014001|f5b7b3a4-c3a4-4722-8ca5-8f6a5c622553|VOTRIENT|43685-7|WARNINGS AND PRECAUTIONS|||||exacerbated cardiac dysfunction|C3277906|Cardiac dysfunction|unmapped| +014002|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +014003|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34066-1|BOXED WARNINGS|Gastrointestinal haemorrhage|10017955|GI hemorrhage|10018233|gi hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +014004|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34066-1|BOXED WARNINGS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +014005|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34066-1|BOXED WARNINGS|Gastrointestinal perforation|10018001|GI perforation|10018242|gi perforation|C0151664|Gastrointestinal perforation|| +014006|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34066-1|BOXED WARNINGS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +014007|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34066-1|BOXED WARNINGS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +014008|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34066-1|BOXED WARNINGS|Impaired healing|10021519|Wound healing disturbance of|10048037|compromised wound healing|C0151692|Impaired wound healing|| +014009|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Abdominal pain upper|10000087|abdominal pain upper|C0232492|Upper abdominal pain|| +014010|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +014011|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increased|C0151905|Alanine aminotransferase increased|| +014012|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast increased|C0151904|Aspartate aminotransferase increased|| +014013|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +014014|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|serum creatinine increased|C0700225|Serum creatinine raised|| +014015|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Catheter site infection|10056520|Catheter site infection|10056520|catheter site infection|C1112210|Catheter site infection|| +014016|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +014017|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Deep vein thrombosis|10051055|Thrombosis venous deep|10043642|deep venous thrombosis|C0149871|Deep Vein Thrombosis|| +014018|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +014019|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +014020|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Dysphonia|10013952|Dysphonia|10013952|dysphonia|C1527344|Dysphonia|| +014021|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +014022|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolic events|C3544094|Arterial thromboembolism|| +014023|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Embolism venous|10014522|Venous thromboembolism|10066899|venous thromboembolic events|C1861172|Venous Thromboembolism|| +014024|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +014025|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +014026|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Fistula|10016717|Fistula|10016717|fistula formation|C0016169|pathologic fistula|| +014027|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +014028|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +014029|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Haemorrhoids|10019022|Hemorrhoids|10019611|hemorrhoids|C0019112|Hemorrhoids|| +014030|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +014031|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +014032|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +014033|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Impaired healing|10021519|Wound healing disturbance of|10048037|compromised wound healing|C0151692|Impaired wound healing|| +014034|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Infection|10021789|Infection|10021789|infections|C3714514|Infection|| +014035|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Leukopenia|10024384|Leukopenia|10024384|leukopenia|C0023530|Leukopenia|| +014036|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +014037|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia aggravated|10029356|neutropenic complications|C0549294|Neutropenia aggravated|| +014038|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +014039|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +014040|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysesthesia syndrome|10054524|palmar-plantar erythrodysesthesia syndrome|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +014041|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +014042|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|reversible posterior leukoencephalopathy syndrome|C3160858|Posterior reversible encephalopathy syndrome|| +014043|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Proctalgia|10036772|Proctalgia|10036772|proctalgia|C0034886|Rectal pain|| +014044|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +014045|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Pulmonary embolism|10037377|Pulmonary embolism|10037377|pulmonary embolism|C0034065|Pulmonary Embolism|| +014046|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Rectal haemorrhage|10038063|Rectal hemorrhage|10038064|rectal hemorrhage|C0267596|Rectal hemorrhage|| +014047|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Rhinorrhoea|10039101|Rhinorrhea|10039100|rhinorrhea|C1260880|Rhinorrhea|| +014048|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Skin hyperpigmentation|10040865|Skin hyperpigmentation|10040865|skin hyperpigmentation|C0162834|Hyperpigmentation|| +014049|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +014050|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Thrombocytopenia|10043554|Thrombocytopenia|10043554|thrombocytopenia|C0040034|Thrombocytopenia|| +014051|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Tooth infection|10048762|Tooth infection|10048762|tooth infection|C0877046|Infection of tooth|| +014052|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +014053|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infection|C0042029|Urinary tract infection|| +014054|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +014055|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Anal fistula|10002156|Fistula anal|10016718|fistulas anal|C0205929|Anal Fistula|| +014056|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Angina pectoris|10002383|Angina pectoris|10002383|angina pectoris|C0002962|Angina Pectoris|| +014057|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Cerebrovascular accident|10008190|Cerebrovascular accident|10008190|cerebrovascular accident|C0038454|Cerebrovascular accident|| +014058|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +014059|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +014060|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +014061|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolic events|C3544094|Arterial thromboembolism|| +014062|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Enterocutaneous fistula|10051425|Enterocutaneous fistula|10051425|fistulas enterocutaneous|C0341318|Enterocutaneous Fistula|| +014063|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Enterovesical fistula|10062570|Enterovesical fistula|10062570|fistulas enterovesical|C0156272|Intestinovesical fistula|| +014064|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Febrile neutropenia|10016288|Febrile neutropenia|10016288|febrile neutropenia|C0746883|Febrile Neutropenia|| +014065|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Female genital tract fistula|10061149|Colovaginal fistula|10010065|fistulas colovaginal|C0341368|Colovaginal fistula|| +014066|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Fistula|10016717|Fistula|10016717|fistula formation|C0016169|pathologic fistula|| +014067|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal fistula|10017877|Gastrointestinal fistula|10017877|fistula formation gastrointestinal|C0079238|Digestive System Fistula|| +014068|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal haemorrhage|10017955|Gastrointestinal hemorrhage|10017960|gastrointestinal hemorrhage|C0017181|Gastrointestinal Hemorrhage|| +014069|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|GI perforation|10018242|gi perforation|C0151664|Gastrointestinal perforation|| +014070|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Gastrointestinal perforation|10018001|Gastrointestinal perforation|10018001|gastrointestinal perforation|C0151664|Gastrointestinal perforation|| +014071|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Haematuria|10018867|Hematuria|10019450|hematuria|C0018965|Hematuria|| +014072|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Haemoptysis|10018964|Hemoptysis|10019523|hemoptysis|C0019079|Hemoptysis|| +014073|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage intracranial|10018985|Intracranial hemorrhage|10022763|intracranial hemorrhage|C0151699|Intracranial Hemorrhages|| +014074|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +014075|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +014076|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Hypertension|10020772|Hypertension|10020772|hypertension|C0020538|Hypertensive disease|| +014077|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Hypertensive crisis|10020802|Hypertensive crisis|10020802|hypertensive crisis|C0020546|Hypertensive crisis|| +014078|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Impaired healing|10021519|Impaired healing|10021519|impairs wound healing|C0151692|Impaired wound healing||Animal +014079|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Impaired healing|10021519|Wound healing disturbance of|10048037|compromised wound healing|C0151692|Impaired wound healing|| +014080|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Intestinal fistula|10022647|Intestinal fistula|10022647|fistulas intestinal|C0021833|Intestinal Fistula|| +014081|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Nephrotic syndrome|10029164|Nephrotic syndrome|10029164|nephrotic syndrome|C0027726|Nephrotic Syndrome|| +014082|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia aggravated|10029356|neutropenic complications|C0549294|Neutropenia aggravated|| +014083|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Neutropenia|10029354|Neutropenia|10029354|neutropenia|C0027947|Neutropenia|| +014084|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Neutropenic infection|10059482|Neutropenic infection|10059482|neutropenic infection|C1167779|Neutropenic infection|| +014085|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Post procedural haemorrhage|10051077|Post procedural hemorrhage|10055320|post-procedural hemorrhage|C0919874|Post procedural hemorrhage|| +014086|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Posterior reversible encephalopathy syndrome|10071066|Posterior reversible encephalopathy syndrome|10071066|posterior reversible encephalopathy syndrome|C3160858|Posterior reversible encephalopathy syndrome|| +014087|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Posterior reversible encephalopathy syndrome|10071066|Reversible posterior leukoencephalopathy syndrome|10063761|rpls|C3160858|Posterior reversible encephalopathy syndrome|| +014088|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Proteinuria|10037032|Proteinuria|10037032|proteinuria|C0033687|Proteinuria|| +014089|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Pulmonary haemorrhage|10037394|Pulmonary hemorrhage|10037397|pulmonary hemorrhage|C0151701|Pulmonary hemorrhage|| +014090|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +014091|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Thrombotic microangiopathy|10043645|Thrombotic microangiopathy|10043645|tma|C2717961|Thrombotic Microangiopathies|| +014092|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Transient ischaemic attack|10044390|Transient ischemic attacks|10044391|transient ischemic attacks|C0007787|Transient Ischemic Attack|| +014093|f6725df6-50ee-4b0a-b900-d02ba634395d|ZALTRAP|43685-7|WARNINGS AND PRECAUTIONS|Transient ischaemic attack|10044390|Transient ischemic attack|10072760|transient ischemic attack|C0007787|Transient Ischemic Attack|| +014094|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +014095|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34066-1|BOXED WARNINGS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +014096|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Blindness|10005169|Vision loss|10047522|permanent vision loss|C4012505|Permanent loss of sight|| +014097|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Increased serum creatinine|10021678|increase in serum creatinine levels|C0700225|Serum creatinine raised|| +014098|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|serum creatinine concentration increased|C0700225|Serum creatinine raised|| +014099|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Blood uric acid increased|10005861|Raised serum uric acid|10037827|serum uric acid levels increased|C0857189|Raised serum uric acid|| +014100|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Cardiac tamponade|10007610|Cardiac tamponade|10007610|cardiac tamponade|C0007177|Cardiac Tamponade|| +014101|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +014102|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +014103|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +014104|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +014105|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Eye haemorrhage|10015926|Hemorrhage intraocular|10019553|bleed intraocular|C0015402|Eye Hemorrhage|| +014106|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Gout|10018627|Gout|10018627|gout|C0018099|Gout|| +014107|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Haematocrit decreased|10018838|Hematocrit decreased|10019423|fall in hct|C0744727|Hematocrit decreased|| +014108|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Decreased hemoglobin|10011964|decrease in hemoglobin|C0162119|Hemoglobin low|| +014109|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Haemorrhage intracranial|10018985|Bleeding intracranial|10005121|bleed intracranial|C0151699|Intracranial Hemorrhages|| +014110|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Haemorrhage intracranial|10018985|Intracranial hemorrhage|10022763|intracranial hemorrhage|C0151699|Intracranial Hemorrhages|| +014111|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Bleeding|10005103|bleed|C0019080|Hemorrhage|| +014112|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Haemorrhage|10055798|Hemorrhage|10019524|hemorrhage|C0019080|Hemorrhage|| +014113|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +014114|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Hypovolaemic shock|10021138|Hypovolemic shock|10021140|hypovolemic shock|C0020683|Hypovolemic Shock|| +014115|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Loss of consciousness|10024855|Loss of consciousness|10024855|loss of consciousness|C0041657|Unconscious State|| +014116|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +014117|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Pericardial haemorrhage|10034476|Pericardial bleeding|10071860|bleed intrapericardial|C0019064|Hemopericardium|| +014118|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Post procedural haemorrhage|10051077|Post procedural bleeding|10051014|cabg-related bleeding|C0919874|Post procedural hemorrhage|| +014119|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Presyncope|10036653|Pre-syncope|10036507|pre-syncope|C0700200|Presyncope|| +014120|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Rhythm idioventricular|10039111|Ventricular escape rhythm|10070762|ventricular pauses|C0232216|Ventricular escape rhythm|| +014121|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +014122|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|43685-7|WARNINGS AND PRECAUTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +014123|f7b3f443-e83d-4bf2-0e96-023448fed9a8|BRILINTA|43685-7|WARNINGS AND PRECAUTIONS|Haemorrhage|10055798|Bleeding|10005103|bleeding|C0019080|Hemorrhage|| +014124|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34066-1|BOXED WARNINGS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +014125|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Angina pectoris|10002383|Angina pectoris|10002383|angina pectoris|C0002962|Angina Pectoris|| +014126|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Asthma|10003553|Asthma|10003553|asthma|C0004096|Asthma|| +014127|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Asthma|10003553|Exacerbation of asthma|10015575|asthma exacerbation|C0349790|Exacerbation of asthma|| +014128|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Atrial fibrillation|10003658|Atrial fibrillation|10003658|atrial fibrillation|C0004238|Atrial Fibrillation|| +014129|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Bronchospasm paradoxical|10006486|Paradoxical bronchospasm|10033770|paradoxical bronchospasm|C0236072|Paradoxical bronchospasm|| +014130|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|cardiovascular adverse reactions|C0476270|Cardiovascular symptoms|| +014131|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Chronic obstructive pulmonary disease|10009033|COPD exacerbation|10010953|copd exacerbation|C0740304|COPD exacerbation|| +014132|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Chronic obstructive pulmonary disease|10009033|COPD|10010952|copd|C0024117|Chronic Obstructive Airway Disease|| +014133|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +014134|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +014135|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Diabetes mellitus|10012601|Diabetes mellitus|10012601|diabetes mellitus|C0011849|Diabetes Mellitus|| +014136|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +014137|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +014138|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +014139|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Heart rate increased|10019303|Heart rate increased|10019303|heart rate increase|C0039231|Tachycardia|| +014140|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +014141|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +014142|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Muscle spasms|10028334|Muscle spasm|10028333|muscle spasm|C0037763|Spasm|| +014143|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Musculoskeletal pain|10028391|Musculoskeletal pain|10028391|musculoskeletal pain|C0026858|Musculoskeletal Pain|| +014144|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Nasopharyngitis|10028810|Nasopharyngitis|10028810|nasopharyngitis|C0027441|Nasopharyngitis|| +014145|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +014146|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Oedema peripheral|10030124|Edema peripheral|10014251|edema peripheral|C0085649|Peripheral edema|| +014147|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Oropharyngeal pain|10068319|Oropharyngeal pain|10068319|oropharyngeal pain|C2363731|Oropharyngeal pain|| +014148|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Palpitations|10033557|Palpitations|10033557|palpitations|C0030252|Palpitations|| +014149|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +014150|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +014151|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +014152|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Sinusitis|10040753|Sinusitis|10040753|sinusitis|C0037199|Sinusitis|| +014153|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Tachycardia|10043071|Tachycardia|10043071|tachycardia|C0039231|Tachycardia|| +014154|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +014155|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Blood glucose fluctuation|10049803|Blood glucose fluctuation|10049803|changes in blood glucose|C0877314|Blood glucose fluctuation|| +014156|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Blood glucose increased|10005557|Blood glucose increased|10005557|increases in plasma glucose|C0595877|Blood glucose increased||DrugClass +014157|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Blood potassium decreased|10005724|Serum potassium decreased|10040378|decreases in serum potassium|C0595885|Serum potassium decreased|| +014158|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure diastolic increased|10005739|Blood pressure diastolic increased|10005739|increases in diastolic blood pressure|C0277889|Increased diastolic arterial pressure|| +014159|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Blood pressure systolic increased|10005760|Blood pressure systolic increased|10005760|increases in systolic blood pressure|C0277884|Increased systolic arterial pressure|| +014160|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Bronchospasm paradoxical|10006486|Paradoxical bronchospasm|10033770|paradoxical bronchospasm|C0236072|Paradoxical bronchospasm|| +014161|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Cardiovascular symptom|10075534|Cardiovascular symptom|10075534|adverse cardiovascular effects|C0476270|Cardiovascular symptoms||DrugClass +014162|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|deaths|C1306577|Death (finding)||DrugClass +014163|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Diabetes mellitus|10012601|Diabetes mellitus aggravated|10012603|aggravate pre-existing diabetes mellitus|C0235398|Diabetes mellitus exacerbated||DrugClass +014164|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|prolongation of the qtc interval|C0855333|Electrocardiogram QT corrected interval prolonged||DrugClass +014165|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram ST segment depression|10014391|ST segment depression|10041892|st segment depression|C0520887|ST segment depression (finding)||DrugClass +014166|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram T wave amplitude decreased|10014394|T wave flattening of|10042965|flattening of the t wave|C0429059|Flattened T wave (finding)||DrugClass +014167|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram change|10061116|Change in ECG|10008396|ecg changes|C0855329|Electrocardiographic changes||DrugClass +014168|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Heart rate increased|10019303|Pulse rate increased|10037490|increases in pulse rate|C0039231|Tachycardia|| +014169|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +014170|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia||DrugClass +014171|f7d013b1-5ee9-4126-8297-9efd9a5a8344|Arcapta|43685-7|WARNINGS AND PRECAUTIONS|Ketoacidosis|10023379|Ketoacidosis|10023379|aggravate ketoacidosis|C0220982|Ketoacidosis||DrugClass +014172|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Cataract|10007739|Cataract|10007739|cataract|C0086543|Cataract|| +014173|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Conjunctival haemorrhage|10010719|Conjunctival hemorrhage|10010720|conjunctival hemorrhage|C0009760|Conjunctival hemorrhage|| +014174|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Corneal epithelium defect|10011010|Corneal epithelium defect|10011010|corneal epithelium defect|C0854114|Corneal epithelium defect|| +014175|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Corneal oedema|10011033|Corneal edema|10011007|corneal edema|C0010037|Corneal edema|| +014176|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Detachment of retinal pigment epithelium|10052501|Detachment of retinal pigment epithelium|10052501|detachment of the retinal pigment epithelium|C0948862|Detachment of retinal pigment epithelium|| +014177|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Embolism|10061169|Thromboembolic event|10043565|thromboembolic events|C0040038|Thromboembolism|| +014178|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Endophthalmitis|10014801|Endophthalmitis|10014801|endophthalmitis|C0014236|Endophthalmitis|| +014179|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Eye inflammation|10015943|Eye inflammation|10015943|intraocular inflammation|C0042164|Uveitis|| +014180|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Eye pain|10015958|Eye pain|10015958|eye pain|C0151827|Eye pain|| +014181|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Eyelid oedema|10015993|Eyelid edema|10015985|eyelid edema|C0162285|Edema of eyelid|| +014182|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Foreign body sensation in eyes|10051116|Foreign body sensation in eyes|10051116|foreign body sensation in eyes|C0920171|Foreign body sensation in eyes|| +014183|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity|10020751|hypersensitivity|C0020517|Hypersensitivity|| +014184|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Injection site haemorrhage|10022067|Injection site hemorrhage|10022068|injection site hemorrhage|C0151698|Injection site hemorrhage|| +014185|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Injection site pain|10022086|Injection site pain|10022086|injection site pain|C0151828|Injection site pain|| +014186|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Intraocular pressure increased|10022806|Increased intraocular pressure|10021667|increased intraocular pressure|C0234708|Raised intraocular pressure|| +014187|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Intraocular pressure increased|10022806|Intraocular pressure increased|10022806|intraocular pressure increased|C0234708|Raised intraocular pressure|| +014188|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Lacrimation increased|10023644|Lacrimation increased|10023644|lacrimation increased|C0152227|Excessive tearing|| +014189|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Ocular hyperaemia|10030041|Ocular hyperemia|10030042|ocular hyperemia|C0155169|Ocular hyperemia|| +014190|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Retinal detachment|10038848|Retinal detachment|10038848|retinal detachment|C0035305|Retinal Detachment|| +014191|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Retinal pigment epithelial tear|10062971|Retinal pigment epithelial tear|10062971|retinal pigment epithelium tear|C1328519|Retinal pigment epithelial tear|| +014192|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Retinal tear|10038897|Retinal tear|10038897|retinal tear|C0035321|Retinal Perforations|| +014193|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Vision blurred|10047513|vision blurred|C0344232|Blurred vision|| +014194|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Vitreous detachment|10047650|Vitreous detachment|10047650|vitreous detachment|C0042907|Vitreous Detachment|| +014195|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|34084-4|ADVERSE REACTIONS|Vitreous floaters|10047654|Vitreous floaters|10047654|vitreous floaters|C0016242|Vitreous floaters|| +014196|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|43685-7|WARNINGS AND PRECAUTIONS|Embolism arterial|10014513|Arterial thromboembolism|10073529|arterial thromboembolic events|C3544094|Arterial thromboembolism|| +014197|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|43685-7|WARNINGS AND PRECAUTIONS|Embolism|10061169|Thromboembolic event|10043565|thromboembolic events|C0040038|Thromboembolism|| +014198|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|43685-7|WARNINGS AND PRECAUTIONS|Endophthalmitis|10014801|Endophthalmitis|10014801|endophthalmitis|C0014236|Endophthalmitis|| +014199|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|43685-7|WARNINGS AND PRECAUTIONS|Intraocular pressure increased|10022806|Acute intraocular pressure increase|10074448|acute increases in intraocular pressure|C3805171|Acute intraocular pressure increase|| +014200|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|43685-7|WARNINGS AND PRECAUTIONS|Intraocular pressure increased|10022806|Increased intraocular pressure|10021667|increases in intraocular pressure|C0234708|Raised intraocular pressure|| +014201|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|43685-7|WARNINGS AND PRECAUTIONS|Intraocular pressure increased|10022806|Intraocular pressure increased|10022806|sustained increases in intraocular pressure|C0234708|Raised intraocular pressure|underspecified|DrugClass +014202|f96cfd69-da34-41ee-90a9-610a4655cd1c|EYLEA|43685-7|WARNINGS AND PRECAUTIONS|Retinal detachment|10038848|Retinal detachment|10038848|retinal detachments|C0035305|Retinal Detachment|| +014203|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +014204|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +014205|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +014206|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Back pain|10003988|Back pain|10003988|back pain|C0004604|Back Pain|| +014207|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Chest discomfort|10008469|Chest discomfort|10008469|chest discomfort|C0235710|Chest discomfort|| +014208|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +014209|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Drug eruption|10013687|Fixed drug eruption|10016740|type iii immune-mediated fixed drug eruption|C0221242|Fixed drug eruption|| +014210|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +014211|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +014212|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Gastrointestinal inflammation|10064147|Gastrointestinal inflammation|10064147|gastrointestinal inflammation|C1535950|Gastrointestinal inflammation|| +014213|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Headache|10019211|Headache|10019211|headache|C0018681|Headache|| +014214|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +014215|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +014216|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Neutralising antibodies|10058063|Neutralizing antibodies|10058033|neutralizing antibodies|C1609515|Neutralising antibodies positive|| +014217|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Pain in extremity|10033425|Pain in extremity|10033425|pain in extremity|C0030196|Pain in limb|| +014218|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +014219|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +014220|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Throat irritation|10043521|Throat irritation|10043521|throat irritation|C0700184|Throat irritation|| +014221|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +014222|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +014223|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Anaphylactic reaction|10002198|Anaphylaxis|10002218|anaphylaxis|C0002792|anaphylaxis|| +014224|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Angioedema|10002424|Angioedema|10002424|angioedema|C0002994|Angioedema|| +014225|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Chest discomfort|10008469|Chest tightness|10008492|chest tightness|C0232292|Chest tightness|| +014226|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Cough|10011224|Cough|10011224|cough|C0010200|Coughing|| +014227|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Dizziness|10013573|Dizziness|10013573|dizziness|C0012833|Dizziness|| +014228|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +014229|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Flushing|10016825|Flushing|10016825|flushing|C0016382|Flushing|| +014230|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Hypersensitivity|10020751|Hypersensitivity reaction|10020756|hypersensitivity reactions|C0020517|Hypersensitivity|| +014231|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +014232|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +014233|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +014234|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +014235|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Throat irritation|10043521|Throat irritation|10043521|throat irritation|C0700184|Throat irritation|| +014236|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Urticaria|10046735|Urticaria|10046735|urticaria|C0042109|Urticaria|| +014237|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +014238|fa3cbd5d-677c-4b19-9032-d9182cb69a83|ELELYSO|43685-7|WARNINGS AND PRECAUTIONS|Wheezing|10047924|Wheezing|10047924|wheezing|C0043144|Wheezing|| +014239|fa90ccc8-2df0-49f7-8878-2b33e34cd272|Natroba|34084-4|ADVERSE REACTIONS|Alopecia|10001760|Alopecia|10001760|alopecia|C0002170|Alopecia|| +014240|fa90ccc8-2df0-49f7-8878-2b33e34cd272|Natroba|34084-4|ADVERSE REACTIONS|Application site dryness|10048943|Application site dryness|10048943|application site dryness|C0877098|Application site dryness|| +014241|fa90ccc8-2df0-49f7-8878-2b33e34cd272|Natroba|34084-4|ADVERSE REACTIONS|Application site erythema|10003041|Application site erythema|10003041|application site erythema|C0853700|Application site erythema|| +014242|fa90ccc8-2df0-49f7-8878-2b33e34cd272|Natroba|34084-4|ADVERSE REACTIONS|Application site exfoliation|10064578|Application site exfoliation|10064578|application site exfoliation|C1610049|Application site exfoliation|| +014243|fa90ccc8-2df0-49f7-8878-2b33e34cd272|Natroba|34084-4|ADVERSE REACTIONS|Application site irritation|10003046|Application site irritation|10003046|application site irritation|C0521490|Application site irritation|| +014244|fa90ccc8-2df0-49f7-8878-2b33e34cd272|Natroba|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +014245|fa90ccc8-2df0-49f7-8878-2b33e34cd272|Natroba|34084-4|ADVERSE REACTIONS|Erythema|10015150|Erythema circumocular-blepharal|10015158|ocular erythema|C0858688|Erythema circumocular-blepharal|| +014246|fa90ccc8-2df0-49f7-8878-2b33e34cd272|Natroba|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|death|C1306577|Death (finding)|| +014247|fa90ccc8-2df0-49f7-8878-2b33e34cd272|Natroba|43685-7|WARNINGS AND PRECAUTIONS|Toxicity to various agents|10070863|Drug toxicity|10013746|benzyl alcohol toxicity|C0013221|Drug toxicity|| +014248|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Arthralgia|10003239|Arthralgia|10003239|arthralgia|C0003862|Arthralgia|| +014249|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Asymptomatic bacteriuria|10056396|Asymptomatic bacteriuria|10056396|asymptomatic bacteriuria|C0262380|Asymptomatic bacteriuria|| +014250|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Balanitis candida|10004074|Balanitis candida|10004074|balanitis candida|C0276684|Candidal balanitis|| +014251|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Balanoposthitis|10004078|Balanitis|10004073|balanitis|C0004690|Balanitis|| +014252|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Balanoposthitis|10004078|Balanoposthitis|10004078|balanoposthitis|C0004691|Balanoposthitis|| +014253|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|increases in serum creatinine|C0700225|Serum creatinine raised|| +014254|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Blood glucose decreased|10005555|Blood glucose decreased|10005555|capillary glucose of less than or equal to 70 mg/dl|C0595883|Blood glucose decreased|| +014255|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Blood glucose decreased|10005555|Plasma glucose decreased|10035305|plasma glucose of less than or equal to 70 mg/dl|C0860802|Plasma glucose decreased|| +014256|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Blood pressure decreased|10005734|Blood pressure decreased|10005734|blood pressure decreased|C0020649|Hypotension|| +014257|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Blood pressure systolic decreased|10005758|Blood pressure systolic decreased|10005758|blood pressure systolic decreased|C0277885|Decreased systolic arterial pressure|| +014258|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Cervicitis|10008323|Cervicitis|10008323|cervicitis|C0007860|Uterine Cervicitis|| +014259|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Cystitis|10011781|Cystitis|10011781|cystitis|C0010692|Cystitis|| +014260|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +014261|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Dyslipidaemia|10058108|Dyslipidemia|10058110|dyslipidemia|C0242339|Dyslipidemias|| +014262|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Genital candidiasis|10018143|Genital candidiasis|10018143|genital candidiasis|C0343863|Candida infection of genital region|| +014263|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Genital infection female|10061977|Genital infection female|10061977|female genital mycotic infections|C0729565|Female genital infection|duplicate| +014264|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Genital infection fungal|10061180|Genital infection fungal|10061180|female genital mycotic infections|C0740330|Genital infection fungal|duplicate| +014265|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Genital infection male|10062521|Genital infection male|10062521|male genital mycotic infections|C0564768|Male genital infection|duplicate| +014266|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Genital infection|10048461|Genital infection|10048461|genital infection|C0729552|Genital infection|| +014267|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Genitourinary tract infection|10061182|Genitourinary tract infection|10061182|genitourinary tract infection|C1279247|Genitourinary tract infection|| +014268|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Glomerular filtration rate decreased|10018358|GFR decreased|10018214|decreases in egfr|C0853068|Decreased glomerular filtration rate|| +014269|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Haematocrit increased|10018840|Hematocrit increased|10019424|increase in hematocrit|C0239935|Hematocrit increased|| +014270|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycaemia|10020993|hypoglycemic events|C0020615|Hypoglycemia|| +014271|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +014272|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +014273|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Hypovolaemia|10021137|Hypovolemia|10021139|hypovolemia|C0546884|Hypovolemia|| +014274|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Hypovolaemia|10021137|Intravascular depletion|10074191|intravascular volume contraction|C0750310|Intravascular depletion|| +014275|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Hypovolaemia|10021137|Volume depletion|10047691|volume depletion|C0546884|Hypovolemia|| +014276|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Low density lipoprotein increased|10024910|LDL cholesterol increased|10024055|ldl-c increased|C0549399|Low density lipoprotein increased|| +014277|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Low density lipoprotein increased|10024910|Low density lipoprotein increased|10024910|increased low-density lipoprotein cholesterol|C0549399|Low density lipoprotein increased|| +014278|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +014279|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Nocturia|10029446|Nocturia|10029446|nocturia|C0028734|Nocturia|| +014280|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Orthostatic hypotension|10031127|Orthostatic hypotension|10031127|orthostatic hypotension|C0020651|Hypotension, Orthostatic|| +014281|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Penile infection|10061912|Penile infection|10061912|penile infection|C0581395|Infection of penis|| +014282|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Phimosis|10034878|Phimosis|10034878|phimosis|C0345326|Congenital phimosis|| +014283|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Pollakiuria|10036018|Micturition frequency increased|10071065|increased urination|C0042023|Increased frequency of micturition|| +014284|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Pollakiuria|10036018|Pollakiuria|10036018|pollakiuria|C0042023|Increased frequency of micturition|| +014285|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Polydipsia|10036067|Polydipsia|10036067|polydipsia|C0085602|Polydipsia|| +014286|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Polyuria|10036142|Diuresis|10013523|osmotic diuresis|C0032617|Polyuria|underspecified| +014287|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Polyuria|10036142|Polyuria|10036142|polyuria|C0032617|Polyuria|| +014288|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Renal impairment|10062237|Impaired renal function|10021523|impairment in renal function|C1565489|Renal Insufficiency|| +014289|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Scrotal abscess|10049571|Scrotal abscess|10049571|scrotal abscess|C0238418|Abscess of scrotum|| +014290|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Syncope|10042772|Syncope|10042772|syncope|C0039070|Syncope|| +014291|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Thirst|10043458|Thirst|10043458|thirst|C0039971|Thirst|| +014292|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Upper respiratory tract infection|10046306|Upper respiratory tract infection|10046306|upper respiratory tract infection|C0041912|Upper Respiratory Infections|| +014293|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infections|C0042029|Urinary tract infection|| +014294|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Urogenital infection fungal|10065582|Urogenital infection fungal|10065582|urogenital infection fungal|C1698399|Urogenital infection fungal|| +014295|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Vaginal infection|10046914|Vaginal infection|10046914|vaginal infection|C0404521|Infective vaginitis|| +014296|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Vaginitis bacterial|10062167|Vaginitis bacterial|10062167|vaginitis bacterial|C0085166|Bacterial Vaginosis|| +014297|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Vulvitis|10047780|Vulvitis|10047780|vulvitis|C0042996|Vulvitis|| +014298|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Vulvovaginal candidiasis|10047784|Vulvovaginal candidiasis|10047784|vulvovaginal candidiasis|C0700345|Candidiasis, Vulvovaginal|| +014299|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Vulvovaginal mycotic infection|10064899|Vulvovaginal mycotic infection|10064899|vaginal mycotic infection|C1609512|Vulvovaginal mycotic infection|| +014300|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|34084-4|ADVERSE REACTIONS|Vulvovaginitis|10047794|Vulvovaginitis|10047794|vulvovaginitis|C0042998|Vulvovaginitis|| +014301|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|43685-7|WARNINGS AND PRECAUTIONS|Blood creatinine increased|10005483|Serum creatinine increased|10040233|increases serum creatinine|C0700225|Serum creatinine raised|| +014302|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|43685-7|WARNINGS AND PRECAUTIONS|Genital infection fungal|10061180|Genital infection fungal|10061180|genital mycotic infections|C0740330|Genital infection fungal|| +014303|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|43685-7|WARNINGS AND PRECAUTIONS|Glomerular filtration rate decreased|10018358|GFR decreased|10018214|decreases egfr|C0853068|Decreased glomerular filtration rate|| +014304|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|43685-7|WARNINGS AND PRECAUTIONS|Hypoglycaemia|10020993|Hypoglycemia|10021005|hypoglycemia|C0020615|Hypoglycemia|| +014305|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension symptomatic|10021105|symptomatic hypotension|C0863113|Hypotension symptomatic|| +014306|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|43685-7|WARNINGS AND PRECAUTIONS|Hypotension|10021097|Hypotension|10021097|hypotension|C0020649|Hypotension|| +014307|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|43685-7|WARNINGS AND PRECAUTIONS|Hypovolaemia|10021137|Intravascular depletion|10074191|intravascular volume contraction|C0750310|Intravascular depletion|| +014308|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|43685-7|WARNINGS AND PRECAUTIONS|Low density lipoprotein increased|10024910|LDL cholesterol increased|10024055|increased ldl-c|C0549399|Low density lipoprotein increased|| +014309|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Impaired renal function|10021523|impaired renal function|C1565489|Renal Insufficiency|| +014310|faf3dd6a-9cd0-39c2-0d2e-232cb3f67565|Jardiance|43685-7|WARNINGS AND PRECAUTIONS|Urinary tract infection|10046571|Urinary tract infection|10046571|urinary tract infections|C0042029|Urinary tract infection|| +014311|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Acne pustular|10000513|Acne pustular|10000513|acne pustular|C0263443|Pustular acne|| +014312|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Acne|10000496|Acne|10000496|acne|C0702166|Acne|| +014313|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine aminotransferase increased|C0151905|Alanine aminotransferase increased|| +014314|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Aphthous ulcer|10002959|Aphthous stomatitis|10002958|aphthous stomatitis|C0038363|Aphthous Stomatitis|| +014315|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate aminotransferase increased|C0151904|Aspartate aminotransferase increased|| +014316|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Blood potassium decreased|10005724|Blood potassium decreased|10005724|blood potassium decreased|C0853761|Blood potassium decreased|| +014317|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Cheilitis|10008417|Cheilitis|10008417|cheilitis|C0007971|Cheilitis|| +014318|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Conjunctivitis|10010741|Conjunctivitis|10010741|conjunctivitis|C0009763|Conjunctivitis|| +014319|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Cystitis|10011781|Cystitis|10011781|cystitis|C0010692|Cystitis|| +014320|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +014321|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +014322|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Dermatitis acneiform|10012432|Dermatitis acneiform|10012432|dermatitis acneiform|C0234894|Dermatitis acneiform|| +014323|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Dermatitis bullous|10012441|Dermatitis bullous|10012441|bullous skin disorders|C0085932|Skin Diseases, Bullous|| +014324|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +014325|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Diastolic dysfunction|10052337|Diastolic dysfunction|10052337|diastolic dysfunction|C0520863|Diastolic dysfunction|| +014326|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Dilatation ventricular|10013012|Dilatation ventricular|10013012|ventricular dilation|C0264733|Ventricular dilatation (disorder)|| +014327|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Dry skin|10013786|Dry skin|10013786|dry skin|C0151908|Dry skin|| +014328|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +014329|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Epistaxis|10015090|Epistaxis|10015090|epistaxis|C0014591|Epistaxis|| +014330|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +014331|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatic toxicity|C0348754|Toxic liver disease|| +014332|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Hypokalaemia|10021015|Hypokalemia|10021018|hypokalemia|C0020621|Hypokalemia|| +014333|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|interstitial lung disease|C0206062|Lung Diseases, Interstitial|| +014334|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Keratitis|10023332|Keratitis|10023332|keratitis|C0022568|Keratitis|| +014335|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Left ventricular dysfunction|10049694|Left ventricular dysfunction|10049694|left ventricular dysfunction|C0242698|Ventricular Dysfunction, Left|| +014336|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Mouth ulceration|10028034|Mouth ulceration|10028034|mouth ulceration|C0149745|Oral Ulcer|| +014337|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Mucosal erosion|10061297|Mucosal erosion|10061297|mucosal erosion|C0546343|Mucosal erosion|| +014338|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Mucosal inflammation|10028116|Mucosal inflammation|10028116|mucosal inflammation|C0333355|Inflammatory disease of mucous membrane|| +014339|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Mucosal ulceration|10028124|Mucosal ulceration|10028124|mucosal ulceration|C0236053|Mucosal ulcer|| +014340|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Nail bed infection|10061303|Nail bed infection|10061303|nail bed infection|C0521476|Nail bed infection|| +014341|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Nail infection|10061304|Nail infection|10061304|nail infection|C0343026|Infection of nail|| +014342|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +014343|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Oral mucosa erosion|10064594|Oral mucosa erosion|10064594|oral mucosa erosion|C0399461|Erosion of oral mucosa|| +014344|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +014345|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Paronychia|10034016|Paronychia|10034016|paronychia|C0030578|Paronychia Inflammation|| +014346|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +014347|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Pruritus|10037087|Pruritus|10037087|pruritus|C0033774|Pruritus|| +014348|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Pulmonary toxicity|10061924|Pulmonary toxicity|10061924|pulmonary toxicity|C0919924|Pulmonary toxicity|| +014349|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Pyrexia|10037660|Pyrexia|10037660|pyrexia|C0015967|Fever|| +014350|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +014351|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Rhinorrhoea|10039101|Rhinorrhea|10039100|rhinorrhea|C1260880|Rhinorrhea|| +014352|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +014353|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Skin exfoliation|10040844|Skin exfoliation|10040844|exfoliative skin disorders|C0237849|Peeling of skin|| +014354|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Stomatitis|10042128|Stomatitis|10042128|stomatitis|C0038362|Stomatitis|| +014355|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Ventricular dysfunction|10059056|Ventricular dysfunction|10059056|ventricular dysfunction|C0242973|Ventricular Dysfunction|| +014356|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +014357|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|34084-4|ADVERSE REACTIONS|Weight decreased|10047895|Weight decreased|10047895|weight decreased|C1262477|Weight decreased|| +014358|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Abortion late|10052847|Abortion late|10052847|abortions at late gestational stages|C0948496|Abortion late||Animal +014359|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Acute respiratory distress syndrome|10001052|Acute respiratory distress syndrome|10001052|acute respiratory distress syndrome|C0035222|Respiratory Distress Syndrome, Adult|| +014360|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Alveolitis allergic|10001890|Alveolitis allergic|10001890|alveolitis allergic|C0002390|Extrinsic allergic alveolitis|| +014361|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Blister|10005191|Blistering|10005214|blistering lesions|C0005758|Bulla|| +014362|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Blister|10005191|Blister|10005191|skin blistering lesions|C2220104|Blister of skin|| +014363|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +014364|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +014365|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis acneiform|10012432|Rash acneiform|10037847|acneiform rash|C0175167|Acneiform Eruptions|| +014366|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis bullous|10012441|Bullous dermatitis|10006556|skin bullous lesions|C0085932|Skin Diseases, Bullous|| +014367|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis bullous|10012441|Bullous lesions|10006565|bullous lesions|C0005758|Bulla|| +014368|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Dermatitis exfoliative|10012455|Exfoliative dermatitis|10015665|skin exfoliating lesions|C0011606|Exfoliative dermatitis|| +014369|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +014370|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Erythema|10015150|Erythema|10015150|erythema|C0041834|Erythema|| +014371|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Eye inflammation|10015943|Eye inflammation|10015943|worsening eye inflammation|C0014236|Endophthalmitis|| +014372|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Eye pain|10015958|Eye pain|10015958|eye pain|C0151827|Eye pain|| +014373|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +014374|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatic toxicity|C0348754|Toxic liver disease|| +014375|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|ild-like adverse reactions|C0206062|Lung Diseases, Interstitial|| +014376|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Keratitis|10023332|Keratitis|10023332|keratitis|C0022568|Keratitis|| +014377|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Lacrimation increased|10023644|Lacrimation|10023639|lacrimation|C0423153|Lacrimation|| +014378|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Liver disorder|10024670|Hepatic impairment|10052254|hepatic impairment|C0948807|Hepatic impairment|| +014379|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Liver function test abnormal|10024690|Liver function tests multiple abnorm|10024694|liver test abnormalities|C0151766|Liver function tests abnormal finding|| +014380|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Lung infiltration|10025102|Lung infiltration|10025102|lung infiltration|C0235896|Infiltrate of lung|| +014381|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryofetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +014382|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Ocular hyperaemia|10030041|Red eye|10038189|red eye|C0235267|Redness of eye|| +014383|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Palmar-plantar erythrodysaesthesia syndrome|10033553|Palmar-plantar erythrodysesthesia syndrome|10054524|palmar-plantar erythrodysesthesia syndrome|C0549410|Palmar-plantar erythrodysesthesia syndrome|| +014384|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Photophobia|10034960|Photophobia|10034960|light sensitivity|C0085636|Photophobia|| +014385|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +014386|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +014387|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Renal failure|10038435|Renal failure|10038435|renal failure|C0035078|Kidney Failure|| +014388|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Renal impairment|10062237|Renal impairment|10062237|renal impairment|C1565489|Renal Insufficiency|| +014389|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Skin exfoliation|10040844|Skin exfoliation|10040844|exfoliating lesions|C0237849|Peeling of skin|| +014390|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Skin reaction|10040914|Skin reaction|10040914|cutaneous reactions|C0221743|Skin reaction|| +014391|fd638e5e-8032-e7ca-0179-95e96ab5d387|Gilotrif|43685-7|WARNINGS AND PRECAUTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +014392|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Abdominal discomfort|10000059|Abdominal discomfort|10000059|abdominal discomfort|C0232487|Abdominal discomfort|| +014393|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Abdominal pain upper|10000087|Upper abdominal pain|10046272|upper abdominal pain|C0232492|Upper abdominal pain|| +014394|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +014395|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Accommodation disorder|10000389|Accommodation disorder|10000389|accommodation disorder|C0152198|Disorder of accommodation|| +014396|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|alt increased|C0151905|Alanine aminotransferase increased|| +014397|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|alanine transaminase increased|C0151905|Alanine aminotransferase increased|| +014398|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|AST increased|10003544|ast increased|C0151904|Aspartate aminotransferase increased|| +014399|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Aspartate aminotransferase increased|10003481|Aspartate aminotransferase increased|10003481|aspartate transaminase increased|C0151904|Aspartate aminotransferase increased|| +014400|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Asthenia|10003549|Asthenia|10003549|asthenia|C0004093|Asthenia|| +014401|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|bilirubin total increased|C0741494|Elevated total bilirubin|| +014402|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Blood creatinine increased|10005483|Creatinine increased|10011368|creatinine increased|C0151578|Creatinine increased|| +014403|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Blood glucose increased|10005557|Glucose increased|10018421|glucose increased|C0860803|Glucose increased|| +014404|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Blood phosphorus decreased|10049471|Phosphate decreased|10034930|phosphate decreased|C0860987|Phosphate low|| +014405|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +014406|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Cardiac tamponade|10007610|Cardiac tamponade|10007610|cardiac tamponade|C0007177|Cardiac Tamponade|| +014407|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Constipation|10010774|Constipation|10010774|constipation|C0009806|Constipation|| +014408|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Death|10011906|Death|10011906|fatal|C1306577|Death (finding)|| +014409|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Decreased appetite|10061428|Decreased appetite|10061428|decreased appetite|C0232462|Decrease in appetite|| +014410|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Dehydration|10012174|Dehydration|10012174|dehydration|C0011175|Dehydration|| +014411|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Dermatitis acneiform|10012432|Acneiform dermatitis|10000520|acneiform dermatitis|C0234894|Dermatitis acneiform|| +014412|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +014413|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Dysaesthesia|10013886|Dysesthesia|10062872|dysesthesia|C0392699|Dysesthesia|| +014414|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Dyspepsia|10013946|Dyspepsia|10013946|dyspepsia|C0013395|Dyspepsia|| +014415|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Dysphagia|10013950|Dysphagia|10013950|dysphagia|C0011168|Deglutition Disorders|| +014416|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Dyspnoea|10013968|Dyspnea|10013963|dyspnea|C0013404|Dyspnea|| +014417|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Electrocardiogram QT prolonged|10014387|QT interval prolonged|10037703|qt interval prolongation|C0151878|Prolonged QT interval|| +014418|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Epigastric discomfort|10053155|Epigastric discomfort|10053155|epigastric discomfort|C1291078|Epigastric discomfort|| +014419|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Fatigue|10016256|Fatigue|10016256|fatigue|C0015672|Fatigue|| +014420|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Gait disturbance|10017577|Gait disturbance|10017577|gait disturbance|C0575081|Gait abnormality|| +014421|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Gastric haemorrhage|10017788|Gastric hemorrhage|10017789|gastric hemorrhage|C0235325|Gastric hemorrhage|| +014422|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Gastrointestinal toxicity|10059024|Gastrointestinal toxicity|10059024|gastrointestinal toxicity|C1142499|Gastrointestinal toxicity|| +014423|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Gastrooesophageal reflux disease|10017885|Gastroesophageal reflux disease|10066874|gastroesophageal reflux disease|C0017168|Gastroesophageal reflux disease|| +014424|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|General physical health deterioration|10049438|General physical health deterioration|10049438|general physical health deterioration|C0877211|General physical health deterioration|| +014425|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Haemoglobin decreased|10018884|Hemoglobin decreased|10019483|hemoglobin decreased|C0162119|Hemoglobin low|| +014426|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +014427|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +014428|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Hypoaesthesia|10020937|Hypoesthesia|10020976|hypoesthesia|C0020580|Hypesthesia|| +014429|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Hypotonia|10021118|Hypotonia|10021118|hypotonia|C0026827|Muscle hypotonia|| +014430|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|ild|C0206062|Lung Diseases, Interstitial|| +014431|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Lipase increased|10024574|Lipase increased|10024574|lipase increased|C0549475|Lipase increased|| +014432|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Muscular weakness|10028372|Muscular weakness|10028372|muscular weakness|C0151786|Muscle Weakness|| +014433|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +014434|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Neuralgia|10029223|Neuralgia|10029223|neuralgia|C0027796|Neuralgia|| +014435|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy peripheral|10029331|peripheral neuropathy|C0031117|Peripheral Neuropathy|| +014436|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Neuropathy peripheral|10029331|Neuropathy|10029328|neuropathy|C0442874|Neuropathy|| +014437|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Oesophageal disorder|10061318|Esophageal disorder|10015380|esophageal disorder|C0014852|Esophageal Diseases|| +014438|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +014439|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Paraesthesia|10033775|Paresthesia|10033987|paresthesia|C0030554|Paresthesia|| +014440|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Peripheral motor neuropathy|10034580|Peripheral motor neuropathy|10034580|peripheral motor neuropathy|C0235025|Peripheral motor neuropathy|| +014441|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Peripheral sensory neuropathy|10034620|Peripheral sensory neuropathy|10034620|peripheral sensory neuropathy|C0151313|Sensory neuropathy|| +014442|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Photopsia|10034962|Photopsia|10034962|photopsia|C0085635|Photopsia|| +014443|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Pneumonia|10035664|Pneumonia|10035664|pneumonia|C0032285|Pneumonia|| +014444|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +014445|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Pneumothorax|10035759|Pneumothorax|10035759|pneumothorax|C0032326|Pneumothorax|| +014446|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Polyneuropathy|10036105|Polyneuropathy|10036105|polyneuropathy|C0152025|Polyneuropathy|| +014447|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Presbyopia|10036628|Presbyopia|10036628|presbyopia|C0033075|Presbyopia|| +014448|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Pulmonary tuberculosis|10037440|Pulmonary tuberculosis|10037440|pulmonary tuberculosis|C0041327|Tuberculosis, Pulmonary|| +014449|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Rash maculo-papular|10037868|Maculopapular rash|10025424|maculopapular rash|C0423791|Maculopapular eruption|| +014450|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Rash|10037844|Rash|10037844|rash|C0015230|Exanthema|| +014451|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Respiratory failure|10038695|Respiratory failure|10038695|respiratory failure|C1145670|Respiratory Failure|| +014452|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Seizure|10039906|Convulsion|10010904|convulsion|C0036572|Seizures|| +014453|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Sepsis|10040047|Sepsis|10040047|sepsis|C0243026|Sepsis|| +014454|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevated transaminases|C0438717|Transaminases increased|| +014455|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Vision blurred|10047513|Blurred vision|10005886|blurred vision|C0344232|Blurred vision|| +014456|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Vision disorders|10047518|Vision disorders|10047518|vision disorder|C0042790|Vision Disorders|HLGT| +014457|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Visual acuity reduced|10047531|Visual acuity reduced|10047531|reduced visual acuity|C0234632|Reduced visual acuity|| +014458|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Visual impairment|10047571|Visual impairment|10047571|vision impairment|C3665347|Visual Impairment|| +014459|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|34084-4|ADVERSE REACTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| +014460|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Abdominal pain|10000081|Abdominal pain|10000081|abdominal pain|C0000737|Abdominal Pain|| +014461|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|ALT increased|10001845|elevations in alt|C0151905|Alanine aminotransferase increased|| +014462|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Alanine aminotransferase increased|10001551|Alanine aminotransferase increased|10001551|elevations in alanine aminotransferase|C0151905|Alanine aminotransferase increased|| +014463|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Amylase increased|10002016|Amylase increased|10002016|elevations of amylase|C0151479|Amylase increased|| +014464|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Blood bilirubin increased|10005364|Bilirubin total increased|10056806|total bilirubin 2 times the uln|C0741494|Elevated total bilirubin|| +014465|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Bradycardia|10006093|Bradycardia|10006093|bradycardia|C0428977|Bradycardia|| +014466|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Congenital musculoskeletal anomaly|10062344|Other congenital musculoskeletal anomalies|10031851|increases in skeletal anomalies|C0151491|Congenital musculoskeletal anomalies||Animal +014467|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Death|10011906|Death|10011906|fatality|C1306577|Death (finding)|| +014468|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Diarrhoea|10012735|Diarrhea|10012727|diarrhea|C0011991|Diarrhea|| +014469|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|Electrocardiogram QTc interval prolonged|10053698|qtc interval prolongation|C0855333|Electrocardiogram QT corrected interval prolonged|| +014470|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Electrocardiogram QT prolonged|10014387|QT interval prolonged|10037703|qt interval prolongation|C0151878|Prolonged QT interval|| +014471|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Foetal damage|10016852|Fetal damage|10054743|fetal harm|C0854268|Foetal damage|| +014472|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Heart rate decreased|10019301|Heart rate decreased|10019301|heart rate of less than 50 beats per minute|C2230138|Pulse slow (finding)|| +014473|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Hepatotoxicity|10019851|Hepatotoxicity|10019851|hepatotoxicity|C0235378|Hepatotoxicity|| +014474|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Hyperglycaemia|10020635|Hyperglycemia|10020639|hyperglycemia|C0020456|Hyperglycemia|| +014475|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Interstitial lung disease|10022611|Interstitial lung disease|10022611|ild|C0206062|Lung Diseases, Interstitial|| +014476|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Jaundice|10023126|Jaundice|10023126|jaundice|C0022346|Icterus|| +014477|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Lipase increased|10024574|Lipase increased|10024574|elevations of lipase|C1963823|Hyperlipasaemia|| +014478|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Maternal drugs affecting foetus|10026923|Drug toxicity NEC affecting foetus|10013750|embryofetal toxicity|C0270009|Fetal or neonatal effect of toxic substance transmitted via placenta and/or breast milk|| +014479|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Nausea|10028813|Nausea|10028813|nausea|C0027497|Nausea|| +014480|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Pancreatitis|10033645|Pancreatitis|10033645|pancreatitis|C0030305|Pancreatitis|| +014481|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Pneumonitis|10035742|Pneumonitis|10035742|pneumonitis|C3714636|Pneumonitis|| +014482|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Sinus bradycardia|10040741|Sinus bradycardia|10040741|sinus bradycardia|C0085610|Sinus bradycardia|| +014483|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Sudden death|10042434|Sudden death|10042434|sudden death|C0011071|Sudden death|| +014484|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Torsade de pointes|10044066|Torsade de pointes|10044066|torsade de pointes|C0040479|Torsades de Pointes|| +014485|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Transaminases increased|10054889|Transaminases increased|10054889|elevated transaminases|C0438717|Transaminases increased|| +014486|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Ventricular tachyarrhythmia|10065341|Ventricular tachyarrhythmia|10065341|ventricular tachyarrhythmias|C0042514|Tachycardia, Ventricular|| +014487|fff5d805-4ffd-4e8e-8e63-6f129697563e|ZYKADIA|43685-7|WARNINGS AND PRECAUTIONS|Vomiting|10047700|Vomiting|10047700|vomiting|C0042963|Vomiting|| diff --git a/scheduled_bots/SPL_ADR_standard_dataset/results/drug_wdid_df.tsv b/scheduled_bots/SPL_ADR_standard_dataset/results/drug_wdid_df.tsv new file mode 100644 index 0000000..ad69d00 --- /dev/null +++ b/scheduled_bots/SPL_ADR_standard_dataset/results/drug_wdid_df.tsv @@ -0,0 +1,176 @@ + Drug Name drug_WDID drug_wd_label instance_of +0 NUCYNTA Q47521917 Nucynta pharmaceutical product +1 EDURANT Q29005767 Edurant pharmaceutical product +2 ISTODAX Q29006038 Istodax pharmaceutical product +3 Ella Q29005662 Constella pharmaceutical product +4 Orbactiv Q29006288 Orbactiv pharmaceutical product +5 Plegridy Q29006344 Plegridy pharmaceutical product +6 Cleviprex Q47521364 Cleviprex pharmaceutical product +7 Linzess Q47521771 Linzess pharmaceutical product +8 Banzel Q47521237 Banzel pharmaceutical product +9 Kalydeco Q29006068 Kalydeco pharmaceutical product +10 Esbriet Q29005821 Esbriet pharmaceutical product +11 POTIGA Q47522007 Potiga pharmaceutical product +12 VIMIZIM Q29006649 Vimizim pharmaceutical product +13 IMBRUVICA Q29005968 Imbruvica pharmaceutical product +14 Carbaglu Q29004954 Carbaglu pharmaceutical product +15 SIRTURO Q29006489 Sirturo pharmaceutical product +16 LASTACAFT Q47521756 Lastacaft pharmaceutical product +17 PERJETA Q29006332 Perjeta pharmaceutical product +18 OLYSIO Q29006263 Olysio pharmaceutical product +19 COMETRIQ Q29005654 Cometriq pharmaceutical product +20 Kerydin Q48826188 Kerydin pharmaceutical product +21 OPSUMIT Q29006283 Opsumit pharmaceutical product +22 Afinitor Q28890051 Afinitor pharmaceutical product +23 Northera Q47521912 Northera pharmaceutical product +24 YERVOY Q29006706 Yervoy pharmaceutical product +25 KADCYLA Q29006063 Kadcyla pharmaceutical product +26 Xalkori Q29006680 Xalkori pharmaceutical product +27 Pomalyst Q47522004 Pomalyst pharmaceutical product +28 AKYNZEO Q29004399 Akynzeo pharmaceutical product +29 Anoro Q29004831 Anoro pharmaceutical product +30 ACTEMRA Q29006460 Roactemra pharmaceutical product +31 BENLYSTA Q29004890 Benlysta pharmaceutical product +32 Halaven Q29005920 Halaven pharmaceutical product +33 Kynamro Q29006100 Kynamro pharmaceutical product +34 ULORIC Q47522249 Uloric pharmaceutical product +35 BLINCYTO Q29004905 Blincyto pharmaceutical product +36 ZELBORAF Q29006728 Zelboraf pharmaceutical product +37 ADCETRIS Q29004381 Adcetris pharmaceutical product +38 JETREA Q29006059 Jetrea pharmaceutical product +39 TREANDA Q47522221 Treanda pharmaceutical product +40 OTEZLA Q29006301 Otezla pharmaceutical product +41 Multaq Q29006188 Multaq pharmaceutical product +42 Aptiom Q47521181 Aptiom pharmaceutical product +43 Teflaro Q47522186 Teflaro pharmaceutical product +44 FANAPT Q47521593 Fanapt pharmaceutical product +45 Signifor Q29006478 Signifor pharmaceutical product +46 Livalo Q48828245 Livalo pharmaceutical product +47 SYLVANT Q29006520 Sylvant pharmaceutical product +48 ZONTIVITY Q29006755 Zontivity pharmaceutical product +49 Trulicity Q29006606 Trulicity pharmaceutical product +50 Aubagio Q29004862 Aubagio pharmaceutical product +51 Prolia Q29006374 Prolia pharmaceutical product +52 Brintellix Q29004924 Brintellix pharmaceutical product +53 DALVANCE Q47521435 Dalvance pharmaceutical product +54 Horizant Q47521685 Horizant pharmaceutical product +55 VIIBRYD Q47522298 Viibryd pharmaceutical product +56 CAPRELSA Q29004953 Caprelsa pharmaceutical product +57 Zytiga Q29006769 Zytiga pharmaceutical product +58 Edarbi Q29005764 Edarbi pharmaceutical product +59 SAPHRIS Q47522111 Saphris pharmaceutical product +60 AMPYRA Q29005853 Fampyra pharmaceutical product +61 SAMSCA Q29006464 Samsca pharmaceutical product +62 Ulesfia Q47522248 Ulesfia pharmaceutical product +63 Toviaz Q29006585 Toviaz pharmaceutical product +64 Victoza Q29006645 Victoza pharmaceutical product +65 Picato Q29006336 Picato pharmaceutical product +66 Striverdi Q47522156 Striverdi pharmaceutical product +67 Lynparza Q29006151 Lynparza pharmaceutical product +68 Folotyn Q29005877 Folotyn pharmaceutical product +69 PROMACTA Q48825972 Promacta pharmaceutical product +70 Tivicay Q29006571 Tivicay pharmaceutical product +71 Tecfidera Q29006540 Tecfidera pharmaceutical product +72 Kit Q29005682 Cyanokit pharmaceutical product +73 Gattex Q48826242 Gattex pharmaceutical product +74 FULYZAQ Q48828161 Fulyzaq pharmaceutical product +75 Bepreve Q48832132 Bepreve pharmaceutical product +76 Intelence Q29006007 Intelence pharmaceutical product +77 Entyvio Q29005802 Entyvio pharmaceutical product +78 ZERBAXA Q29006732 Zerbaxa pharmaceutical product +79 Fycompa Q29005890 Fycompa pharmaceutical product +80 FARXIGA Q47521594 Farxiga pharmaceutical product +81 Stribild Q29006513 Stribild pharmaceutical product +82 SIVEXTRO Q29006490 Sivextro pharmaceutical product +83 COARTEM Q47521385 Coartem pharmaceutical product +84 Effient Q47521531 Effient pharmaceutical product +85 Daliresp Q29005695 Daliresp pharmaceutical product +86 Adempas Q29004385 Adempas pharmaceutical product +87 Belviq Q47521244 Belviq pharmaceutical product +88 Ilaris Q29005960 Ilaris pharmaceutical product +89 RAPIVAB Q47522064 Rapivab pharmaceutical product +90 Tafinlar Q29006525 Tafinlar pharmaceutical product +91 Iclusig Q29005952 Iclusig pharmaceutical product +92 Sovaldi Q29006498 Sovaldi pharmaceutical product +93 Cerdelga Q29004966 Cerdelga pharmaceutical product +94 Stivarga Q29006510 Stivarga pharmaceutical product +95 DOTAREM Q2570844 Ch?p c?ng h??ng t? Dotarem medication +96 SYNRIBO Q47522179 Synribo pharmaceutical product +97 Osphena Q47521947 Osphena pharmaceutical product +98 Beleodaq Q47521242 Beleodaq pharmaceutical product +99 INLYTA Q29005990 Inlyta pharmaceutical product +100 Savella Q47522114 Savella pharmaceutical product +101 Choline Q47521259 Urecholine pharmaceutical product +102 Asclera Q47521197 Asclera pharmaceutical product +103 JUBLIA Q47521733 Jublia pharmaceutical product +104 KEYTRUDA Q29006084 Keytruda pharmaceutical product +105 Krystexxa Q29006097 Krystexxa pharmaceutical product +106 SIMPONI Q29006487 Simponi pharmaceutical product +107 Vimpat Q29006650 Vimpat pharmaceutical product +108 Nesina Q47521890 Nesina pharmaceutical product +109 Xofigo Q29006697 Xofigo pharmaceutical product +110 Besivance Q47521253 Besivance pharmaceutical product +111 SABRIL Q47522108 Sabril pharmaceutical product +112 Luzu Q47521797 Luzu pharmaceutical product +113 Raxibacumab Q7297093 Raxibacumab medication +114 Pristiq Q47521465 Pristiq pharmaceutical product +115 Qutenza Q29006389 Qutenza pharmaceutical product +116 Viekira Q29006648 Viekirax pharmaceutical product +117 Xenazine Q47522320 Xenazine pharmaceutical product +118 Tudorza Q47522239 Tudorza pharmaceutical product +119 VICTRELIS Q29006646 Victrelis pharmaceutical product +120 Mekinist Q29006164 Mekinist pharmaceutical product +121 Latuda Q29006112 Latuda pharmaceutical product +122 Neuraceq Q29006214 Neuraceq pharmaceutical product +123 Xtandi Q29006700 Xtandi pharmaceutical product +124 Vizamyl Q29006664 Vizamyl pharmaceutical product +125 Cimzia Q29004978 Cimzia pharmaceutical product +126 INVOKANA Q29006019 Invokana pharmaceutical product +127 Pradaxa Q29006351 Pradaxa pharmaceutical product +128 Myrbetriq Q47521862 Myrbetriq pharmaceutical product +129 Amyvid Q29004826 Amyvid pharmaceutical product +130 Vibativ Q29006644 Vibativ pharmaceutical product +131 NULOJIX Q29006240 Nulojix pharmaceutical product +132 Nplate Q29006237 Nplate pharmaceutical product +133 Relistor Q29006413 Relistor pharmaceutical product +134 ONGLYZA Q29006275 Onglyza pharmaceutical product +135 CYRAMZA Q29005685 Cyramza pharmaceutical product +136 STELARA Q29006509 Stelara pharmaceutical product +137 VPRIV Q29006672 Vpriv pharmaceutical product +138 Hetlioz Q29005932 Hetlioz pharmaceutical product +139 Gilenya Q29005901 Gilenya pharmaceutical product +140 XELJANZ Q47522319 Xeljanz pharmaceutical product +141 Xarelto Q29006683 Xarelto pharmaceutical product +142 BOSULIF Q29004916 Bosulif pharmaceutical product +143 IMPAVIDO Q47521707 Impavido pharmaceutical product +144 Ofev Q29006250 Ofev pharmaceutical product +145 FERRIPROX Q29005863 Ferriprox pharmaceutical product +146 Dificid Q47521483 Dificid pharmaceutical product +147 Onfi Q47521934 Onfi pharmaceutical product +148 Jevtana Q29006060 Jevtana pharmaceutical product +149 Gazyva Q29005896 Gazyvaro pharmaceutical product +150 Duavee Q47521507 Duavee pharmaceutical product +151 Juxtapid Q47521734 Juxtapid pharmaceutical product +152 BELSOMRA Q47521243 Belsomra pharmaceutical product +153 ARZERRA Q29004853 Arzerra pharmaceutical product +154 ELIQUIS Q29005779 Eliquis pharmaceutical product +155 KYPROLIS Q29006101 Kyprolis pharmaceutical product +156 ERIVEDGE Q29005820 Erivedge pharmaceutical product +157 Firazyr Q29005870 Firazyr pharmaceutical product +158 DaTscan Q29005703 Datscan pharmaceutical product +159 Zydelig Q29006763 Zydelig pharmaceutical product +160 JAKAFI Q47521730 Jakafi pharmaceutical product +161 MOVANTIK Q47521849 Movantik pharmaceutical product +162 Harvoni Q29005922 Harvoni pharmaceutical product +163 Stendra Q47522151 Stendra pharmaceutical product +164 OPDIVO Q29006280 Opdivo pharmaceutical product +165 VOTRIENT Q29006670 Votrient pharmaceutical product +166 ZALTRAP Q29006714 Zaltrap pharmaceutical product +167 BRILINTA Q47521276 Brilinta pharmaceutical product +168 Arcapta Q47521184 Arcapta pharmaceutical product +169 EYLEA Q29005849 Eylea pharmaceutical product +170 ELELYSO Q29005778 Elelyso pharmaceutical product +171 Natroba Q47521874 Natroba pharmaceutical product +172 Jardiance Q29006055 Jardiance pharmaceutical product +173 Gilotrif Q47521650 Gilotrif pharmaceutical product +174 ZYKADIA Q29006764 Zykadia pharmaceutical product From 8572739e6921485c3a8eb20ea6b5f55858a6c232 Mon Sep 17 00:00:00 2001 From: gtsueng Date: Fri, 8 Nov 2019 13:50:58 -0800 Subject: [PATCH 2/6] clean up code, dump to script --- .../SPL ADR Standard Data set.ipynb | 203 +++++------ .../SPL ADR rewrite for bot.ipynb | 321 ++++++++++++++++++ .../SPL_ADR_standard_dataset/bot.py | 181 ++++++++++ .../results/drug_wdid_df.tsv | 297 ++++++++-------- 4 files changed, 743 insertions(+), 259 deletions(-) create mode 100644 scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb create mode 100644 scheduled_bots/SPL_ADR_standard_dataset/bot.py diff --git a/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR Standard Data set.ipynb b/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR Standard Data set.ipynb index add2c64..4251199 100644 --- a/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR Standard Data set.ipynb +++ b/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR Standard Data set.ipynb @@ -40,41 +40,10 @@ "metadata": {}, "outputs": [], "source": [ - "## Login for Scheduled bot\n", - "\"\"\"\n", - "print(\"Logging in...\")\n", - "try:\n", - " from scheduled_bots.local import WDUSER, WDPASS\n", - "except ImportError:\n", - " if \"WDUSER\" in os.environ and \"WDPASS\" in os.environ:\n", - " WDUSER = os.environ['WDUSER']\n", - " WDPASS = os.environ['WDPASS']\n", - " else:\n", - " raise ValueError(\"WDUSER and WDPASS must be specified in local.py or as environment variables\")\n", - "\"\"\"" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Logging in...\n", - "https://www.wikidata.org/w/api.php\n", - "Successfully logged in as Gtsulab\n" - ] - } - ], - "source": [ - "\n", "print(\"Logging in...\")\n", "import wdi_user_config ## Credentials stored in a wdi_user_config file\n", "login_dict = wdi_user_config.get_credentials()\n", - "login = wdi_login.WDLogin(login_dict['WDUSER'], login_dict['WDPASS'])\n" + "login = wdi_login.WDLogin(login_dict['WDUSER'], login_dict['WDPASS'])" ] }, { @@ -121,43 +90,35 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ - "# Retrieve the QIDs for each UMLS CUI ID (The property for Orphanet IDs is P2892)\n", - "umls_cui_list = spl_adr_raw['UMLS CUI'].unique().tolist()\n", - "#umls_cui_list = ['C0002792', 'C0002994', 'C0003467'] ##test list\n", + "## Retrieve the QIDs for each UMLS CUI ID (The property for UMLS CUI IDs is P2892)\n", + "sparqlQuery = \"SELECT * WHERE {?topic wdt:P2892 ?CUI}\"\n", + "result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", "\n", - "i=0\n", + "## Format the data for analysis\n", "wdmap = []\n", - "wdmapfail = []\n", - "for i in tqdm(range(len(umls_cui_list))):\n", - " cui_id = umls_cui_list[i]\n", - " try:\n", - " sparqlQuery = \"SELECT * WHERE {?topic wdt:P2892 \\\"\"+cui_id+\"\\\"}\"\n", - " result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", - " k=0\n", - " while k < len(result[\"results\"][\"bindings\"]): ## Take into account that there may be one to many mappings\n", - " umls_qid = result[\"results\"][\"bindings\"][k][\"topic\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", - " tmpdict = {'UMLS CUI':cui_id,'disease_WDID':umls_qid}\n", - " wdmap.append(tmpdict)\n", - " k=k+1\n", - " except:\n", - " wdmapfail.append(cui_id)\n", + "i=0\n", + "while i < len(result[\"results\"][\"bindings\"]):\n", + " umls_qid = result[\"results\"][\"bindings\"][i][\"topic\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", + " cui_id = result[\"results\"][\"bindings\"][i][\"CUI\"][\"value\"]\n", + " tmpdict = {'UMLS CUI':cui_id,'disease_WDID':umls_qid}\n", + " wdmap.append(tmpdict)\n", " i=i+1\n", "\n", - "## Inspect the results for mapping or coverage issues\n", - "wdid_umls_df = pd.DataFrame(wdmap)\n", - "print(\"resulting mapping table has: \",len(wdid_umls_df),\" rows.\")\n", + "wdid_umls_all = pd.DataFrame(wdmap)\n", "\n", - "# Store the data to minimize having to run the sparql query again within a short period of time\n", + "## Drop any entries that are not of interest\n", + "umls_cui_list = spl_adr_raw['UMLS CUI'].unique().tolist()\n", + "wdid_umls_df = wdid_umls_all.loc[wdid_umls_all['UMLS CUI'].isin(umls_cui_list)]\n", "wdid_umls_df.to_csv(exppath+'cui_wdid_xref.tsv',sep='\\t',header=True)" ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -173,7 +134,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "initial mapping table size: 1013 de-duplicated: 921\n" + "initial mapping table size: 1013 de-duplicated: 918\n" ] } ], @@ -261,7 +222,6 @@ " drug_qid = result[\"results\"][\"bindings\"][0][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", " drug_label = result[\"results\"][\"bindings\"][0][\"itemLabel\"][\"value\"]\n", " drug_wdid_list.append({'Drug Name':drug_list[i],'drug_WDID':drug_qid,'drug_wd_label':drug_label,'instance_of':'pharmaceutical product'})\n", - " time.sleep(1)\n", " except:\n", " try:\n", " sparqlQuery = med_start+query_subject+query_end\n", @@ -269,7 +229,6 @@ " drug_qid = result[\"results\"][\"bindings\"][0][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", " drug_label = result[\"results\"][\"bindings\"][0][\"itemLabel\"][\"value\"]\n", " drug_wdid_list.append({'Drug Name':drug_list[i],'drug_WDID':drug_qid,'drug_wd_label':drug_label,'instance_of':'medication'})\n", - " time.sleep(1)\n", " except:\n", " try:\n", " sparqlQuery = chem_start+query_subject+query_end\n", @@ -277,7 +236,6 @@ " drug_qid = result[\"results\"][\"bindings\"][0][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", " drug_label = result[\"results\"][\"bindings\"][0][\"itemLabel\"][\"value\"]\n", " drug_wdid_list.append({'Drug Name':drug_list[i],'drug_WDID':drug_qid,'drug_wd_label':drug_label,'instance_of':'chemical'}) \n", - " time.sleep(1)\n", " except:\n", " drug_match_failed.append(drug_list[i])\n", "\n", @@ -286,41 +244,53 @@ "print(i)" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print(drug_match_failed)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## In the future, consider only running these\n", + "with open(exppath+'drug_match_failed.txt','w') as store_it:\n", + " for eachfailure in drug_match_failed:\n", + " store_it.write(eachfailure+'\\n')" + ] + }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ - "drug_wdid_df = read_csv(exppath+'drug_wdid_df.tsv',delimiter='\\t',header=0, index_col=0)" + "drug_match_failed = []\n", + "with open(exppath+'drug_match_failed.txt','r') as stored_it:\n", + " for eachline in stored_it:\n", + " drug_match_failed.append(eachline.strip())" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Drug Name drug_WDID drug_wd_label instance_of\n", - "0 NUCYNTA Q47521917 Nucynta pharmaceutical product\n", - "1 EDURANT Q29005767 Edurant pharmaceutical product\n" - ] - }, - { - "ename": "NameError", - "evalue": "name 'drug_match_failed' is not defined", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", - "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdrug_wdid_df\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mhead\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mn\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;36m2\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 2\u001b[1;33m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdrug_match_failed\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 3\u001b[0m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mlen\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdrug_wdid_df\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m+\u001b[0m\u001b[0mlen\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdrug_match_failed\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", - "\u001b[1;31mNameError\u001b[0m: name 'drug_match_failed' is not defined" - ] - } - ], + "outputs": [], + "source": [ + "drug_wdid_df = read_csv(exppath+'drug_wdid_df.tsv',delimiter='\\t',header=0, index_col=0)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], "source": [ "print(drug_wdid_df.head(n=2))\n", "print(drug_match_failed)\n", @@ -345,7 +315,18 @@ "output_type": "stream", "text": [ "14487\n", - "7127\n" + "7047\n", + " Index Drug ID Drug Name Section LOINC \\\n", + "5 6 00a8921e-46a6-4df1-a744-9e532b6fb06f NUCYNTA 34084-4 \n", + "\n", + " Section Display Name MedDRA PT PT ID MedDRA LLT \\\n", + "5 ADVERSE REACTIONS Anaphylactic reaction 10002198 Anaphylaxis \n", + "\n", + " LLT ID Matching String UMLS CUI UMLS PrefName Flag 1 Flag 2 \\\n", + "5 10002218 anaphylaxis C0002792 anaphylaxis None None \n", + "\n", + " disease_WDID drug_WDID drug_wd_label instance_of \n", + "5 Q168800 Q47521917 Nucynta pharmaceutical product \n" ] } ], @@ -356,10 +337,14 @@ "all_data_available = df_to_write.loc[(~df_to_write['disease_WDID'].isnull()) & \n", " (~df_to_write['drug_WDID'].isnull())]\n", "\n", - "wdid_not_available = df_to_write.loc[(df_to_write['disease_WDID'].isnull()) | \n", + "not_attempted = df_to_write.loc[(df_to_write['disease_WDID'].isnull()) | \n", " (df_to_write['drug_WDID'].isnull())]\n", "print(len(all_data_available))\n", - "#print(wdid_not_available.head(n=2))" + "#print(not_attempted.head(n=2))\n", + "print(all_data_available.head(n=1))\n", + "\n", + "## Save the Failures\n", + "not_attempted.to_csv(exppath+'qid_missing_not_attempted.tsv',sep='\\t',header=True)" ] }, { @@ -370,38 +355,33 @@ "\n", "The Adverse Effect of \"lactic acidosis\" from metformin use was modeled on the Risk Factor property page and discussed there. These adverse effects can be expected to modeled similarly. \n", "\n", - "We can use rank as a means to indicate severity of the warning. For example, a Black Box Warning would get a higher priority rank than text mined from 'adverse effect'. Alternatively, we can try to include a qualifier that would indicate where the ADR was derived.\n", + "We can use rank as a means to indicate severity of the warning. For example, a Black Box Warning would get a higher priority rank than text mined from 'adverse effect'. Alternatively, we can try to include a reference statement that would indicate where the ADR was derived.\n", "Eg- using \"P958\" Paragraph/section/clause\n", "in conjunction with:\n", "* Q879952 (Boxed Warning)\n", "* Q45959 (Adverse Drug Reactions)\n", - "* Q21010924 (Safety Precautions)\n" + "* Q21010924 (Safety Precautions)\n", + "\n", + "edit--P958 takes a string as an input instead of a QID, so the source can be directly added" ] }, { "cell_type": "code", - "execution_count": 9, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from datetime import datetime\n", "import copy\n", - "def create_reference(spl_url):\n", + "def create_reference(spl_url,source_type):\n", " timeStringNow = datetime.now().strftime(\"+%Y-%m-%dT00:00:00Z\")\n", " archived_date = datetime.strptime('9/29/2015','%m/%d/%Y').strftime(\"+%Y-%m-%dT00:00:00Z\")\n", " refStatedIn = wdi_core.WDItemID(value=\"Q73670648\", prop_nr=\"P248\", is_reference=True)\n", " refRetrieved = wdi_core.WDTime(timeStringNow, prop_nr=\"P813\", is_reference=True)\n", " refRetrieved2 = wdi_core.WDTime(archived_date, prop_nr=\"P2960\", is_reference=True)\n", " refURL = wdi_core.WDUrl(value=spl_url, prop_nr=\"P854\", is_reference=True)\n", - " return [refStatedIn, refRetrieved, refRetrieved2, refURL]\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Unit TEST not complete\n", - "--trying to use qualifier to model source of the data (boxed warning, etc)" + " reftype = wdi_core.WDString(value=source_type, prop_nr=\"P958\", is_reference=True)\n", + " return [refStatedIn, refRetrieved, refRetrieved2, refURL, reftype]\n" ] }, { @@ -419,11 +399,10 @@ "disease_qid = 'Q4115189' #sandbox run\n", "spl_drug_id = all_data_available.iloc[i]['Drug ID']\n", "spl_url = fda_base_spl_url+spl_drug_id\n", - "reference = create_reference(spl_url)\n", - "source_qualifier = wdi_core.WDItemID('Q56478729', prop_nr='P2241', is_qualifier=True)\n", + "source_type = all_data_available.iloc[i]['Section Display Name']\n", + "reference = create_reference(spl_url,source_type)\n", "\n", "statement = [wdi_core.WDItemID(value=drug_qid, prop_nr=\"P5642\", \n", - " qualifiers=[source_qualifier],\n", " references=[copy.deepcopy(reference)])]\n", "wikidata_item = wdi_core.WDItemEngine(wd_item_id=disease_qid, data=statement, append_value=\"P5642\",\n", " global_ref_mode='CUSTOM', ref_handler=update_retrieved_if_new_multiple_refs)\n", @@ -439,20 +418,28 @@ "metadata": {}, "outputs": [], "source": [ + "wd_revision_list = []\n", "run_list = all_data_available[0:3] ## test run\n", "#run_list = all_data_available\n", "\n", - "for i in tqdm(range(len(run_list))):\n", + "while i < len(run_list):\n", " drug_qid = all_data_available.iloc[i]['drug_WDID']\n", " disease_qid = all_data_available.iloc[i]['disease_WDID']\n", " spl_drug_id = all_data_available.iloc[i]['Drug ID']\n", " spl_url = fda_base_spl_url+spl_drug_id\n", - " reference = create_reference(spl_url)\n", + " source_type = all_data_available.iloc[i]['Section Display Name']\n", + " reference = create_reference(spl_url,source_type)\n", "\n", " statement = [wdi_core.WDItemID(value=drug_qid, prop_nr=\"P5642\", references=[copy.deepcopy(reference)])]\n", " wikidata_item = wdi_core.WDItemEngine(wd_item_id=disease_qid, data=statement, append_value=\"P5642\",\n", " global_ref_mode='CUSTOM', ref_handler=update_retrieved_if_new_multiple_refs)\n", - " wikidata_item.write(login, edit_summary='added ADR relationship from FDA SPLs') " + " wikidata_item.write(login, edit_summary='added ADR relationship from FDA SPLs') \n", + " wd_revision_list.append({'drug':drug_qid,'disease':disease_qid,'wd_revid':wikidata_item.lastrevid})\n", + " i=i+1\n", + "\n", + "wd_edit_results = pd.DataFrame(wd_revision_list)\n", + "print(wd_edit_results)\n", + "wd_edit_results.to_csv(exppath+'run_results.tsv',sep='\\t',header=True)" ] }, { @@ -460,11 +447,7 @@ "execution_count": null, "metadata": {}, "outputs": [], - "source": [ - "fda_base_spl_url = 'Base url: https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid='\n", - "spl_sample_id = '00a8921e-46a6-4df1-a744-9e532b6fb06f'\n", - "original_retrieval_date = 'September 29, 2015' ## Use 'P2960' (archived date)\n" - ] + "source": [] } ], "metadata": { diff --git a/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb b/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb new file mode 100644 index 0000000..7ecaef7 --- /dev/null +++ b/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb @@ -0,0 +1,321 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## A dataset of 200 structured product labels annotated for adverse drug reactions\n", + "The annotations were performed by Dina Demner-Fushman's team in order to create a standard set to encourage the development of NLP tools for ADR annotation from FDA Structured Product labels.\n", + "\n", + "The publication can be found here: https://www.nature.com/articles/sdata20181\n", + "\n", + "We have been given explicit permission to import this data set so long as we make it clear that it is not an NLM-sanctioned gold standard database and that the curation was done by a small team of biocurators to the best of their ability and not by experts verse in pharmacology.\n", + "\n", + "It should be noted that the dataset is not expected to change in the future; however, coverage of corresponding entries in Wikidata may grow over time so re-running the dataset on a schedule may help to improve representation of the dataset in Wikidata over time." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "from wikidataintegrator import wdi_core, wdi_login, wdi_helpers\n", + "from wikidataintegrator.ref_handlers import update_retrieved_if_new_multiple_refs\n", + "import pandas as pd\n", + "from pandas import read_csv\n", + "import requests\n", + "from datetime import datetime\n", + "import copy\n", + "\n", + "datasrc = 'data/FinalReferenceStandard200Labels.csv'\n", + "exppath = 'results/'" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Logging in...\n", + "https://www.wikidata.org/w/api.php\n", + "Successfully logged in as Gtsulab\n" + ] + } + ], + "source": [ + "print(\"Logging in...\")\n", + "import wdi_user_config ## Credentials stored in a wdi_user_config file\n", + "login_dict = wdi_user_config.get_credentials()\n", + "login = wdi_login.WDLogin(login_dict['WDUSER'], login_dict['WDPASS'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Query Wikidata for instances of drugs whose names match to product label names\n", + "We can limit the query by selecting for instances of Pharmaceutical products, medications, or chemical compounds. The queries should be run in that order...only search for medications of a label doesn't match a pharmaceutical product. Only search for chemical compounds if a label doesn't match a medication OR pharmaceutical product:\n", + "* pharm_wid = 'Q28885102'\n", + "* chem_wdid = 'Q11173'\n", + "* medi_wdid = 'Q12140'" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "def disease_search(spl_adr_raw):\n", + " ## Retrieve the QIDs for each UMLS CUI ID (The property for UMLS CUI IDs is P2892)\n", + " sparqlQuery = \"SELECT * WHERE {?topic wdt:P2892 ?CUI}\"\n", + " result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", + "\n", + " ## Format the data for analysis\n", + " wdmap = []\n", + " i=0\n", + " while i < len(result[\"results\"][\"bindings\"]):\n", + " umls_qid = result[\"results\"][\"bindings\"][i][\"topic\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", + " cui_id = result[\"results\"][\"bindings\"][i][\"CUI\"][\"value\"]\n", + " tmpdict = {'UMLS CUI':cui_id,'disease_WDID':umls_qid}\n", + " wdmap.append(tmpdict)\n", + " i=i+1\n", + "\n", + " wdid_umls_all = pd.DataFrame(wdmap)\n", + "\n", + " ## Drop any entries that are not of interest\n", + " umls_cui_list = spl_adr_raw['UMLS CUI'].unique().tolist()\n", + " wdid_umls_df = wdid_umls_all.loc[wdid_umls_all['UMLS CUI'].isin(umls_cui_list)]\n", + "\n", + " ## Exclude entities with one to many OR many to one mappings\n", + " wdid_umls_df_unique = wdid_umls_df.drop_duplicates(subset='disease_WDID').copy()\n", + " wdid_umls_df_unique.drop_duplicates(subset='UMLS CUI',inplace=True)\n", + " \n", + " return wdid_umls_df_unique" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "def drug_search(drug_list):\n", + " pharm_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q28885102; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), \"'\n", + " med_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q12140; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), \"'\n", + " chem_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q11173; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), \"'\n", + " query_end = '\"@en)).}'\n", + " drug_wdid_list = []\n", + " drug_match_failed = []\n", + " i=0\n", + " while i < len(drug_list):\n", + " query_subject = drug_list[i].lower()\n", + " try:\n", + " sparqlQuery = pharm_start+query_subject+query_end\n", + " result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", + " drug_qid = result[\"results\"][\"bindings\"][0][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", + " drug_label = result[\"results\"][\"bindings\"][0][\"itemLabel\"][\"value\"]\n", + " drug_wdid_list.append({'Drug Name':drug_list[i],'drug_WDID':drug_qid,'drug_wd_label':drug_label,'instance_of':'pharmaceutical product'})\n", + " except:\n", + " try:\n", + " sparqlQuery = med_start+query_subject+query_end\n", + " result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", + " drug_qid = result[\"results\"][\"bindings\"][0][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", + " drug_label = result[\"results\"][\"bindings\"][0][\"itemLabel\"][\"value\"]\n", + " drug_wdid_list.append({'Drug Name':drug_list[i],'drug_WDID':drug_qid,'drug_wd_label':drug_label,'instance_of':'medication'})\n", + " except:\n", + " try:\n", + " sparqlQuery = chem_start+query_subject+query_end\n", + " result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", + " drug_qid = result[\"results\"][\"bindings\"][0][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", + " drug_label = result[\"results\"][\"bindings\"][0][\"itemLabel\"][\"value\"]\n", + " drug_wdid_list.append({'Drug Name':drug_list[i],'drug_WDID':drug_qid,'drug_wd_label':drug_label,'instance_of':'chemical'}) \n", + " except:\n", + " drug_match_failed.append(drug_list[i])\n", + " i=i+1\n", + "\n", + " drug_wdid_df = pd.DataFrame(drug_wdid_list)\n", + " \n", + " return drug_wdid_df, drug_match_failed" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "def create_reference(spl_url,source_type):\n", + " timeStringNow = datetime.now().strftime(\"+%Y-%m-%dT00:00:00Z\")\n", + " archived_date = datetime.strptime('9/29/2015','%m/%d/%Y').strftime(\"+%Y-%m-%dT00:00:00Z\")\n", + " refStatedIn = wdi_core.WDItemID(value=\"Q73670648\", prop_nr=\"P248\", is_reference=True)\n", + " refRetrieved = wdi_core.WDTime(timeStringNow, prop_nr=\"P813\", is_reference=True)\n", + " refRetrieved2 = wdi_core.WDTime(archived_date, prop_nr=\"P2960\", is_reference=True)\n", + " refURL = wdi_core.WDUrl(value=spl_url, prop_nr=\"P854\", is_reference=True)\n", + " reftype = wdi_core.WDString(value=source_type, prop_nr=\"P958\", is_reference=True)\n", + " return [refStatedIn, refRetrieved, refRetrieved2, refURL, reftype]" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "def write_adrs(run_list):\n", + " fda_base_spl_url = 'https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid='\n", + " wd_revision_list = []\n", + " i=0\n", + " while i < len(run_list):\n", + " drug_qid = run_list.iloc[i]['drug_WDID']\n", + " disease_qid = run_list.iloc[i]['disease_WDID']\n", + " spl_drug_id = run_list.iloc[i]['Drug ID']\n", + " spl_url = fda_base_spl_url+spl_drug_id\n", + " source_type = run_list.iloc[i]['Section Display Name']\n", + " reference = create_reference(spl_url,source_type)\n", + "\n", + " statement = [wdi_core.WDItemID(value=drug_qid, prop_nr=\"P5642\", references=[copy.deepcopy(reference)])]\n", + " wikidata_item = wdi_core.WDItemEngine(wd_item_id=disease_qid, data=statement, append_value=\"P5642\",\n", + " global_ref_mode='CUSTOM', ref_handler=update_retrieved_if_new_multiple_refs)\n", + " wikidata_item.write(login, edit_summary='added ADR relationship from FDA SPLs') \n", + " wd_revision_list.append({'drug':drug_qid,'disease':disease_qid,'wd_revid':wikidata_item.lastrevid})\n", + " i=i+1\n", + "\n", + " wd_edit_results = pd.DataFrame(wd_revision_list)\n", + " return wd_edit_results" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Merge tables to convert drug names to WDID products\n", + "Filter out the entries that could not be mapped to Wikidata." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## First Run\n", + "print(\"run started: \",datetime.now())\n", + "spl_adr_raw = read_csv(datasrc, delimiter=\"|\", header=0, dtype={'Index':int,'PT ID':str,'LLT ID':str}).fillna('None')\n", + "\n", + "## Pull QIDS using UMLS CUIS\n", + "wdid_umls_df_unique = disease_search(spl_adr_raw)\n", + "\n", + "## Merge the mapping table to the original table\n", + "spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left')\n", + "\n", + "## Pull QIDS using drug labels\n", + "#drug_list = ['NUCYNTA','Natazia','EDURANT'] ## Loop test\n", + "drug_list = spl_with_disease_wdids['Drug Name'].unique().tolist()\n", + "drug_wdid_df, drug_match_failed = drug_search(drug_list)\n", + "\n", + "## Merge the results to generate the table of entries to write\n", + "df_to_write = spl_with_disease_wdids.merge(drug_wdid_df, on='Drug Name',how = 'left')\n", + "\n", + "all_data_available = df_to_write.loc[(~df_to_write['disease_WDID'].isnull()) & \n", + " (~df_to_write['drug_WDID'].isnull())]\n", + "\n", + "not_attempted = df_to_write.loc[(df_to_write['disease_WDID'].isnull()) | \n", + " (df_to_write['drug_WDID'].isnull())]\n", + "\n", + "## Make the writes\n", + "run_list = all_data_available[0:3] ## test run\n", + "#run_list = all_data_available\n", + "wd_edit_results = write_adrs(run_list)\n", + "\n", + "#### Export the results of the run\n", + "\n", + "## Results of the drug search\n", + "drug_wdid_df.to_csv(exppath+'drug_wdid_df.tsv',sep='\\t',header=True)\n", + "\n", + "with open(exppath+'drug_match_failed.txt','w') as store_it:\n", + " for eachfailure in drug_match_failed:\n", + " store_it.write(eachfailure+'\\n')\n", + "\n", + "## Results of the actual run\n", + "wd_edit_results.to_csv(exppath+'run_results.tsv',sep='\\t',header=True)\n", + "\n", + "## Failures to attempt in the future\n", + "not_attempted.to_csv(exppath+'qid_missing_not_attempted.tsv',sep='\\t',header=True)\n", + "\n", + "print(\"run completed: \",datetime.now())" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [], + "source": [ + "## Future Runs\n", + "print(\"run started: \",datetime.now())\n", + "\n", + "datasrce = exppath+'qid_missing_not_attempted.tsv\n", + "drug_list = []\n", + "with open(exppath+'drug_match_failed.txt','r') as drug_match_failed:\n", + " for line in drug_match_failed:\n", + " drug_list.append(line+'\\n')\n", + "\n", + "spl_adr_raw = read_csv(datasrc, delimiter=\"|\", header=0, dtype={'Index':int,'PT ID':str,'LLT ID':str}).fillna('None')\n", + "wdid_umls_df_unique = disease_search(spl_adr_raw)\n", + "spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left')\n", + "drug_wdid_df, drug_match_failed = drug_search(drug_list)\n", + "df_to_write = spl_with_disease_wdids.merge(drug_wdid_df, on='Drug Name',how = 'left')\n", + "\n", + "all_data_available = df_to_write.loc[(~df_to_write['disease_WDID'].isnull()) & \n", + " (~df_to_write['drug_WDID'].isnull())]\n", + "\n", + "not_attempted = df_to_write.loc[(df_to_write['disease_WDID'].isnull()) | \n", + " (df_to_write['drug_WDID'].isnull())]\n", + "\n", + "run_list = all_data_available\n", + "wd_edit_results = write_adrs(run_list)\n", + "\n", + "#### Export the results of the run\n", + "drug_wdid_df.to_csv(exppath+'drug_wdid_df-'+str(datetime.now().strftime(\"+%Y-%m-%dT00:00:00Z\"))+'.tsv',sep='\\t',header=True)\n", + "wd_edit_results.to_csv(exppath+'run_results-'+str(datetime.now().strftime(\"+%Y-%m-%dT00:00:00Z\"))+'.tsv',sep='\\t',header=True)\n", + "not_attempted.to_csv(exppath+'qid_missing_not_attempted.tsv',sep='\\t',header=True)\n", + "\n", + "print(\"run completed: \",datetime.now())" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.2" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/scheduled_bots/SPL_ADR_standard_dataset/bot.py b/scheduled_bots/SPL_ADR_standard_dataset/bot.py new file mode 100644 index 0000000..54ec3b1 --- /dev/null +++ b/scheduled_bots/SPL_ADR_standard_dataset/bot.py @@ -0,0 +1,181 @@ +from wikidataintegrator import wdi_core, wdi_login, wdi_helpers +from wikidataintegrator.ref_handlers import update_retrieved_if_new_multiple_refs +import pandas as pd +from pandas import read_csv +import requests +from datetime import datetime +import copy + +datasrc = 'data/FinalReferenceStandard200Labels.csv' +exppath = 'results/' + + + +def disease_search(spl_adr_raw): + sparqlQuery = "SELECT * WHERE {?topic wdt:P2892 ?CUI}" + result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery) + wdmap = [] + i=0 + while i < len(result["results"]["bindings"]): + umls_qid = result["results"]["bindings"][i]["topic"]["value"].replace("http://www.wikidata.org/entity/", "") + cui_id = result["results"]["bindings"][i]["CUI"]["value"] + tmpdict = {'UMLS CUI':cui_id,'disease_WDID':umls_qid} + wdmap.append(tmpdict) + i=i+1 + wdid_umls_all = pd.DataFrame(wdmap) + umls_cui_list = spl_adr_raw['UMLS CUI'].unique().tolist() + wdid_umls_df = wdid_umls_all.loc[wdid_umls_all['UMLS CUI'].isin(umls_cui_list)] + wdid_umls_df_unique = wdid_umls_df.drop_duplicates(subset='disease_WDID').copy() + wdid_umls_df_unique.drop_duplicates(subset='UMLS CUI',inplace=True) + return wdid_umls_df_unique + + + +def drug_search(drug_list): + pharm_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q28885102; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), "' + med_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q12140; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), "' + chem_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q11173; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), "' + query_end = '"@en)).}' + drug_wdid_list = [] + drug_match_failed = [] + i=0 + while i < len(drug_list): + query_subject = drug_list[i].lower() + try: + sparqlQuery = pharm_start+query_subject+query_end + result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery) + drug_qid = result["results"]["bindings"][0]["item"]["value"].replace("http://www.wikidata.org/entity/", "") + drug_label = result["results"]["bindings"][0]["itemLabel"]["value"] + drug_wdid_list.append({'Drug Name':drug_list[i], 'drug_WDID':drug_qid, 'drug_wd_label':drug_label, + 'instance_of':'pharmaceutical product'}) + except: + try: + sparqlQuery = med_start+query_subject+query_end + result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery) + drug_qid = result["results"]["bindings"][0]["item"]["value"].replace("http://www.wikidata.org/entity/", "") + drug_label = result["results"]["bindings"][0]["itemLabel"]["value"] + drug_wdid_list.append({'Drug Name':drug_list[i], 'drug_WDID':drug_qid, 'drug_wd_label':drug_label, + 'instance_of':'medication'}) + except: + try: + sparqlQuery = chem_start+query_subject+query_end + result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery) + drug_qid = result["results"]["bindings"][0]["item"]["value"].replace("http://www.wikidata.org/entity/", "") + drug_label = result["results"]["bindings"][0]["itemLabel"]["value"] + drug_wdid_list.append({'Drug Name':drug_list[i], 'drug_WDID':drug_qid, 'drug_wd_label':drug_label, + 'instance_of':'chemical'}) + except: + drug_match_failed.append(drug_list[i]) + i=i+1 + drug_wdid_df = pd.DataFrame(drug_wdid_list) + return drug_wdid_df, drug_match_failed + + + +def create_reference(spl_url,source_type): + timeStringNow = datetime.now().strftime("+%Y-%m-%dT00:00:00Z") + archived_date = datetime.strptime('9/29/2015','%m/%d/%Y').strftime("+%Y-%m-%dT00:00:00Z") + refStatedIn = wdi_core.WDItemID(value="Q73670648", prop_nr="P248", is_reference=True) + refRetrieved = wdi_core.WDTime(timeStringNow, prop_nr="P813", is_reference=True) + refRetrieved2 = wdi_core.WDTime(archived_date, prop_nr="P2960", is_reference=True) + refURL = wdi_core.WDUrl(value=spl_url, prop_nr="P854", is_reference=True) + reftype = wdi_core.WDString(value=source_type, prop_nr="P958", is_reference=True) + return [refStatedIn, refRetrieved, refRetrieved2, refURL, reftype] + + + +def write_adrs(run_list): + fda_base_spl_url = 'https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid=' + wd_revision_list = [] + i=0 + while i < len(run_list): + drug_qid = run_list.iloc[i]['drug_WDID'] + disease_qid = run_list.iloc[i]['disease_WDID'] + spl_drug_id = run_list.iloc[i]['Drug ID'] + spl_url = fda_base_spl_url+spl_drug_id + source_type = run_list.iloc[i]['Section Display Name'] + reference = create_reference(spl_url,source_type) + statement = [wdi_core.WDItemID(value=drug_qid, prop_nr="P5642", references=[copy.deepcopy(reference)])] + wikidata_item = wdi_core.WDItemEngine(wd_item_id=disease_qid, data=statement, append_value="P5642", + global_ref_mode='CUSTOM', ref_handler=update_retrieved_if_new_multiple_refs) + wikidata_item.write(login, edit_summary='added ADR relationship from FDA SPLs') + wd_revision_list.append({'drug':drug_qid,'disease':disease_qid,'wd_revid':wikidata_item.lastrevid}) + i=i+1 + wd_edit_results = pd.DataFrame(wd_revision_list) + return wd_edit_results + + + + +###### Main Script + +#### Initial Run +print("run started: ",datetime.now()) +spl_adr_raw = read_csv(datasrc, delimiter="|", header=0, dtype={'Index':int,'PT ID':str,'LLT ID':str}).fillna('None') +wdid_umls_df_unique = disease_search(spl_adr_raw) ## Pull QIDS using UMLS CUIS +spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left') ## Merge the mapping table +drug_list = spl_with_disease_wdids['Drug Name'].unique().tolist() ## Pull QIDS using drug labels +drug_wdid_df, drug_match_failed = drug_search(drug_list) + +## Merge the results to generate the table of entries to write +df_to_write = spl_with_disease_wdids.merge(drug_wdid_df, on='Drug Name',how = 'left') +all_data_available = df_to_write.loc[(~df_to_write['disease_WDID'].isnull()) & + (~df_to_write['drug_WDID'].isnull())] +not_attempted = df_to_write.loc[(df_to_write['disease_WDID'].isnull()) | + (df_to_write['drug_WDID'].isnull())] +## Make the writes +run_list = all_data_available[0:3] ## test run +#run_list = all_data_available +wd_edit_results = write_adrs(run_list) + +#### Export the results of the run +## Results of the drug search +drug_wdid_df.to_csv(exppath+'drug_wdid_df.tsv',sep='\t',header=True) + +## Results of the actual run +wd_edit_results.to_csv(exppath+'run_results.tsv',sep='\t',header=True) + +## Failures to attempt in the future +not_attempted.to_csv(exppath+'qid_missing_not_attempted.tsv',sep='\t',header=True) + +with open(exppath+'drug_match_failed.txt','w') as store_it: + for eachfailure in drug_match_failed: + store_it.write(eachfailure+'\n') + +print("run completed: ",datetime.now()) + + + + +#### Subsequent Runs +print("run started: ",datetime.now()) + +datasrce = exppath+'qid_missing_not_attempted.tsv +drug_list = [] +with open(exppath+'drug_match_failed.txt','r') as drug_match_failed: + for line in drug_match_failed: + drug_list.append(line+'\n') + +spl_adr_raw = read_csv(datasrc, delimiter="|", header=0, dtype={'Index':int,'PT ID':str,'LLT ID':str}).fillna('None') +wdid_umls_df_unique = disease_search(spl_adr_raw) +spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left') +drug_wdid_df, drug_match_failed = drug_search(drug_list) +df_to_write = spl_with_disease_wdids.merge(drug_wdid_df, on='Drug Name',how = 'left') + +all_data_available = df_to_write.loc[(~df_to_write['disease_WDID'].isnull()) & + (~df_to_write['drug_WDID'].isnull())] + +not_attempted = df_to_write.loc[(df_to_write['disease_WDID'].isnull()) | + (df_to_write['drug_WDID'].isnull())] + +run_list = all_data_available +wd_edit_results = write_adrs(run_list) + +#### Export the results of the run +drug_wdid_df.to_csv(exppath+'drug_wdid_df-'+str(datetime.now().strftime("+%Y-%m-%dT00:00:00Z"))+'.tsv',sep='\t',header=True) +wd_edit_results.to_csv(exppath+'run_results-'+str(datetime.now().strftime("+%Y-%m-%dT00:00:00Z"))+'.tsv',sep='\t',header=True) +not_attempted.to_csv(exppath+'qid_missing_not_attempted.tsv',sep='\t',header=True) +with open(exppath+'drug_match_failed.txt','w') as store_it: + for eachfailure in drug_match_failed: + store_it.write(eachfailure+'\n') +print("run completed: ",datetime.now()) \ No newline at end of file diff --git a/scheduled_bots/SPL_ADR_standard_dataset/results/drug_wdid_df.tsv b/scheduled_bots/SPL_ADR_standard_dataset/results/drug_wdid_df.tsv index ad69d00..f218235 100644 --- a/scheduled_bots/SPL_ADR_standard_dataset/results/drug_wdid_df.tsv +++ b/scheduled_bots/SPL_ADR_standard_dataset/results/drug_wdid_df.tsv @@ -25,152 +25,151 @@ 23 Northera Q47521912 Northera pharmaceutical product 24 YERVOY Q29006706 Yervoy pharmaceutical product 25 KADCYLA Q29006063 Kadcyla pharmaceutical product -26 Xalkori Q29006680 Xalkori pharmaceutical product -27 Pomalyst Q47522004 Pomalyst pharmaceutical product -28 AKYNZEO Q29004399 Akynzeo pharmaceutical product -29 Anoro Q29004831 Anoro pharmaceutical product -30 ACTEMRA Q29006460 Roactemra pharmaceutical product -31 BENLYSTA Q29004890 Benlysta pharmaceutical product -32 Halaven Q29005920 Halaven pharmaceutical product -33 Kynamro Q29006100 Kynamro pharmaceutical product -34 ULORIC Q47522249 Uloric pharmaceutical product -35 BLINCYTO Q29004905 Blincyto pharmaceutical product -36 ZELBORAF Q29006728 Zelboraf pharmaceutical product -37 ADCETRIS Q29004381 Adcetris pharmaceutical product -38 JETREA Q29006059 Jetrea pharmaceutical product -39 TREANDA Q47522221 Treanda pharmaceutical product -40 OTEZLA Q29006301 Otezla pharmaceutical product -41 Multaq Q29006188 Multaq pharmaceutical product -42 Aptiom Q47521181 Aptiom pharmaceutical product -43 Teflaro Q47522186 Teflaro pharmaceutical product -44 FANAPT Q47521593 Fanapt pharmaceutical product -45 Signifor Q29006478 Signifor pharmaceutical product -46 Livalo Q48828245 Livalo pharmaceutical product -47 SYLVANT Q29006520 Sylvant pharmaceutical product -48 ZONTIVITY Q29006755 Zontivity pharmaceutical product -49 Trulicity Q29006606 Trulicity pharmaceutical product -50 Aubagio Q29004862 Aubagio pharmaceutical product -51 Prolia Q29006374 Prolia pharmaceutical product -52 Brintellix Q29004924 Brintellix pharmaceutical product -53 DALVANCE Q47521435 Dalvance pharmaceutical product -54 Horizant Q47521685 Horizant pharmaceutical product -55 VIIBRYD Q47522298 Viibryd pharmaceutical product -56 CAPRELSA Q29004953 Caprelsa pharmaceutical product -57 Zytiga Q29006769 Zytiga pharmaceutical product -58 Edarbi Q29005764 Edarbi pharmaceutical product -59 SAPHRIS Q47522111 Saphris pharmaceutical product -60 AMPYRA Q29005853 Fampyra pharmaceutical product -61 SAMSCA Q29006464 Samsca pharmaceutical product -62 Ulesfia Q47522248 Ulesfia pharmaceutical product -63 Toviaz Q29006585 Toviaz pharmaceutical product -64 Victoza Q29006645 Victoza pharmaceutical product -65 Picato Q29006336 Picato pharmaceutical product -66 Striverdi Q47522156 Striverdi pharmaceutical product -67 Lynparza Q29006151 Lynparza pharmaceutical product -68 Folotyn Q29005877 Folotyn pharmaceutical product -69 PROMACTA Q48825972 Promacta pharmaceutical product -70 Tivicay Q29006571 Tivicay pharmaceutical product -71 Tecfidera Q29006540 Tecfidera pharmaceutical product -72 Kit Q29005682 Cyanokit pharmaceutical product -73 Gattex Q48826242 Gattex pharmaceutical product -74 FULYZAQ Q48828161 Fulyzaq pharmaceutical product -75 Bepreve Q48832132 Bepreve pharmaceutical product -76 Intelence Q29006007 Intelence pharmaceutical product -77 Entyvio Q29005802 Entyvio pharmaceutical product -78 ZERBAXA Q29006732 Zerbaxa pharmaceutical product -79 Fycompa Q29005890 Fycompa pharmaceutical product -80 FARXIGA Q47521594 Farxiga pharmaceutical product -81 Stribild Q29006513 Stribild pharmaceutical product -82 SIVEXTRO Q29006490 Sivextro pharmaceutical product -83 COARTEM Q47521385 Coartem pharmaceutical product -84 Effient Q47521531 Effient pharmaceutical product -85 Daliresp Q29005695 Daliresp pharmaceutical product -86 Adempas Q29004385 Adempas pharmaceutical product -87 Belviq Q47521244 Belviq pharmaceutical product -88 Ilaris Q29005960 Ilaris pharmaceutical product -89 RAPIVAB Q47522064 Rapivab pharmaceutical product -90 Tafinlar Q29006525 Tafinlar pharmaceutical product -91 Iclusig Q29005952 Iclusig pharmaceutical product -92 Sovaldi Q29006498 Sovaldi pharmaceutical product -93 Cerdelga Q29004966 Cerdelga pharmaceutical product -94 Stivarga Q29006510 Stivarga pharmaceutical product -95 DOTAREM Q2570844 Ch?p c?ng h??ng t? Dotarem medication -96 SYNRIBO Q47522179 Synribo pharmaceutical product -97 Osphena Q47521947 Osphena pharmaceutical product -98 Beleodaq Q47521242 Beleodaq pharmaceutical product -99 INLYTA Q29005990 Inlyta pharmaceutical product -100 Savella Q47522114 Savella pharmaceutical product -101 Choline Q47521259 Urecholine pharmaceutical product -102 Asclera Q47521197 Asclera pharmaceutical product -103 JUBLIA Q47521733 Jublia pharmaceutical product -104 KEYTRUDA Q29006084 Keytruda pharmaceutical product -105 Krystexxa Q29006097 Krystexxa pharmaceutical product -106 SIMPONI Q29006487 Simponi pharmaceutical product -107 Vimpat Q29006650 Vimpat pharmaceutical product -108 Nesina Q47521890 Nesina pharmaceutical product -109 Xofigo Q29006697 Xofigo pharmaceutical product -110 Besivance Q47521253 Besivance pharmaceutical product -111 SABRIL Q47522108 Sabril pharmaceutical product -112 Luzu Q47521797 Luzu pharmaceutical product -113 Raxibacumab Q7297093 Raxibacumab medication -114 Pristiq Q47521465 Pristiq pharmaceutical product -115 Qutenza Q29006389 Qutenza pharmaceutical product -116 Viekira Q29006648 Viekirax pharmaceutical product -117 Xenazine Q47522320 Xenazine pharmaceutical product -118 Tudorza Q47522239 Tudorza pharmaceutical product -119 VICTRELIS Q29006646 Victrelis pharmaceutical product -120 Mekinist Q29006164 Mekinist pharmaceutical product -121 Latuda Q29006112 Latuda pharmaceutical product -122 Neuraceq Q29006214 Neuraceq pharmaceutical product -123 Xtandi Q29006700 Xtandi pharmaceutical product -124 Vizamyl Q29006664 Vizamyl pharmaceutical product -125 Cimzia Q29004978 Cimzia pharmaceutical product -126 INVOKANA Q29006019 Invokana pharmaceutical product -127 Pradaxa Q29006351 Pradaxa pharmaceutical product -128 Myrbetriq Q47521862 Myrbetriq pharmaceutical product -129 Amyvid Q29004826 Amyvid pharmaceutical product -130 Vibativ Q29006644 Vibativ pharmaceutical product -131 NULOJIX Q29006240 Nulojix pharmaceutical product -132 Nplate Q29006237 Nplate pharmaceutical product -133 Relistor Q29006413 Relistor pharmaceutical product -134 ONGLYZA Q29006275 Onglyza pharmaceutical product -135 CYRAMZA Q29005685 Cyramza pharmaceutical product -136 STELARA Q29006509 Stelara pharmaceutical product -137 VPRIV Q29006672 Vpriv pharmaceutical product -138 Hetlioz Q29005932 Hetlioz pharmaceutical product -139 Gilenya Q29005901 Gilenya pharmaceutical product -140 XELJANZ Q47522319 Xeljanz pharmaceutical product -141 Xarelto Q29006683 Xarelto pharmaceutical product -142 BOSULIF Q29004916 Bosulif pharmaceutical product -143 IMPAVIDO Q47521707 Impavido pharmaceutical product -144 Ofev Q29006250 Ofev pharmaceutical product -145 FERRIPROX Q29005863 Ferriprox pharmaceutical product -146 Dificid Q47521483 Dificid pharmaceutical product -147 Onfi Q47521934 Onfi pharmaceutical product -148 Jevtana Q29006060 Jevtana pharmaceutical product -149 Gazyva Q29005896 Gazyvaro pharmaceutical product -150 Duavee Q47521507 Duavee pharmaceutical product -151 Juxtapid Q47521734 Juxtapid pharmaceutical product -152 BELSOMRA Q47521243 Belsomra pharmaceutical product -153 ARZERRA Q29004853 Arzerra pharmaceutical product -154 ELIQUIS Q29005779 Eliquis pharmaceutical product -155 KYPROLIS Q29006101 Kyprolis pharmaceutical product -156 ERIVEDGE Q29005820 Erivedge pharmaceutical product -157 Firazyr Q29005870 Firazyr pharmaceutical product -158 DaTscan Q29005703 Datscan pharmaceutical product -159 Zydelig Q29006763 Zydelig pharmaceutical product -160 JAKAFI Q47521730 Jakafi pharmaceutical product -161 MOVANTIK Q47521849 Movantik pharmaceutical product -162 Harvoni Q29005922 Harvoni pharmaceutical product -163 Stendra Q47522151 Stendra pharmaceutical product -164 OPDIVO Q29006280 Opdivo pharmaceutical product -165 VOTRIENT Q29006670 Votrient pharmaceutical product -166 ZALTRAP Q29006714 Zaltrap pharmaceutical product -167 BRILINTA Q47521276 Brilinta pharmaceutical product -168 Arcapta Q47521184 Arcapta pharmaceutical product -169 EYLEA Q29005849 Eylea pharmaceutical product -170 ELELYSO Q29005778 Elelyso pharmaceutical product -171 Natroba Q47521874 Natroba pharmaceutical product -172 Jardiance Q29006055 Jardiance pharmaceutical product -173 Gilotrif Q47521650 Gilotrif pharmaceutical product -174 ZYKADIA Q29006764 Zykadia pharmaceutical product +26 Pomalyst Q47522004 Pomalyst pharmaceutical product +27 AKYNZEO Q29004399 Akynzeo pharmaceutical product +28 Anoro Q29004831 Anoro pharmaceutical product +29 ACTEMRA Q29006460 Roactemra pharmaceutical product +30 BENLYSTA Q29004890 Benlysta pharmaceutical product +31 Halaven Q29005920 Halaven pharmaceutical product +32 Kynamro Q29006100 Kynamro pharmaceutical product +33 ULORIC Q47522249 Uloric pharmaceutical product +34 BLINCYTO Q29004905 Blincyto pharmaceutical product +35 ZELBORAF Q29006728 Zelboraf pharmaceutical product +36 ADCETRIS Q29004381 Adcetris pharmaceutical product +37 JETREA Q29006059 Jetrea pharmaceutical product +38 TREANDA Q47522221 Treanda pharmaceutical product +39 OTEZLA Q29006301 Otezla pharmaceutical product +40 Multaq Q29006188 Multaq pharmaceutical product +41 Aptiom Q47521181 Aptiom pharmaceutical product +42 Teflaro Q47522186 Teflaro pharmaceutical product +43 FANAPT Q47521593 Fanapt pharmaceutical product +44 Signifor Q29006478 Signifor pharmaceutical product +45 Livalo Q48828245 Livalo pharmaceutical product +46 SYLVANT Q29006520 Sylvant pharmaceutical product +47 ZONTIVITY Q29006755 Zontivity pharmaceutical product +48 Trulicity Q29006606 Trulicity pharmaceutical product +49 Aubagio Q29004862 Aubagio pharmaceutical product +50 Prolia Q29006374 Prolia pharmaceutical product +51 Brintellix Q29004924 Brintellix pharmaceutical product +52 DALVANCE Q47521435 Dalvance pharmaceutical product +53 Horizant Q47521685 Horizant pharmaceutical product +54 VIIBRYD Q47522298 Viibryd pharmaceutical product +55 CAPRELSA Q29004953 Caprelsa pharmaceutical product +56 Zytiga Q29006769 Zytiga pharmaceutical product +57 Edarbi Q29005764 Edarbi pharmaceutical product +58 SAPHRIS Q47522111 Saphris pharmaceutical product +59 AMPYRA Q29005853 Fampyra pharmaceutical product +60 SAMSCA Q29006464 Samsca pharmaceutical product +61 Ulesfia Q47522248 Ulesfia pharmaceutical product +62 Toviaz Q29006585 Toviaz pharmaceutical product +63 Victoza Q29006645 Victoza pharmaceutical product +64 Picato Q29006336 Picato pharmaceutical product +65 Striverdi Q47522156 Striverdi pharmaceutical product +66 Lynparza Q29006151 Lynparza pharmaceutical product +67 Folotyn Q29005877 Folotyn pharmaceutical product +68 PROMACTA Q48825972 Promacta pharmaceutical product +69 Tivicay Q29006571 Tivicay pharmaceutical product +70 Tecfidera Q29006540 Tecfidera pharmaceutical product +71 Kit Q29005682 Cyanokit pharmaceutical product +72 Gattex Q48826242 Gattex pharmaceutical product +73 FULYZAQ Q48828161 Fulyzaq pharmaceutical product +74 Bepreve Q48832132 Bepreve pharmaceutical product +75 Intelence Q29006007 Intelence pharmaceutical product +76 Entyvio Q29005802 Entyvio pharmaceutical product +77 ZERBAXA Q29006732 Zerbaxa pharmaceutical product +78 Fycompa Q29005890 Fycompa pharmaceutical product +79 FARXIGA Q47521594 Farxiga pharmaceutical product +80 Stribild Q29006513 Stribild pharmaceutical product +81 SIVEXTRO Q29006490 Sivextro pharmaceutical product +82 COARTEM Q47521385 Coartem pharmaceutical product +83 Effient Q47521531 Effient pharmaceutical product +84 Daliresp Q29005695 Daliresp pharmaceutical product +85 Adempas Q29004385 Adempas pharmaceutical product +86 Belviq Q47521244 Belviq pharmaceutical product +87 Ilaris Q29005960 Ilaris pharmaceutical product +88 RAPIVAB Q47522064 Rapivab pharmaceutical product +89 Tafinlar Q29006525 Tafinlar pharmaceutical product +90 Iclusig Q29005952 Iclusig pharmaceutical product +91 Sovaldi Q29006498 Sovaldi pharmaceutical product +92 Cerdelga Q29004966 Cerdelga pharmaceutical product +93 Stivarga Q29006510 Stivarga pharmaceutical product +94 DOTAREM Q2570844 Ch?p c?ng h??ng t? Dotarem medication +95 SYNRIBO Q47522179 Synribo pharmaceutical product +96 Osphena Q47521947 Osphena pharmaceutical product +97 Beleodaq Q47521242 Beleodaq pharmaceutical product +98 INLYTA Q29005990 Inlyta pharmaceutical product +99 Savella Q47522114 Savella pharmaceutical product +100 Choline Q47521259 Urecholine pharmaceutical product +101 Asclera Q47521197 Asclera pharmaceutical product +102 JUBLIA Q47521733 Jublia pharmaceutical product +103 KEYTRUDA Q29006084 Keytruda pharmaceutical product +104 Krystexxa Q29006097 Krystexxa pharmaceutical product +105 SIMPONI Q29006487 Simponi pharmaceutical product +106 Vimpat Q29006650 Vimpat pharmaceutical product +107 Nesina Q47521890 Nesina pharmaceutical product +108 Xofigo Q29006697 Xofigo pharmaceutical product +109 Besivance Q47521253 Besivance pharmaceutical product +110 SABRIL Q47522108 Sabril pharmaceutical product +111 Luzu Q47521797 Luzu pharmaceutical product +112 Raxibacumab Q7297093 Raxibacumab medication +113 Pristiq Q47521465 Pristiq pharmaceutical product +114 Qutenza Q29006389 Qutenza pharmaceutical product +115 Viekira Q29006648 Viekirax pharmaceutical product +116 Xenazine Q47522320 Xenazine pharmaceutical product +117 Tudorza Q47522239 Tudorza pharmaceutical product +118 VICTRELIS Q29006646 Victrelis pharmaceutical product +119 Mekinist Q29006164 Mekinist pharmaceutical product +120 Latuda Q29006112 Latuda pharmaceutical product +121 Neuraceq Q29006214 Neuraceq pharmaceutical product +122 Xtandi Q29006700 Xtandi pharmaceutical product +123 Vizamyl Q29006664 Vizamyl pharmaceutical product +124 Cimzia Q29004978 Cimzia pharmaceutical product +125 INVOKANA Q29006019 Invokana pharmaceutical product +126 Pradaxa Q29006351 Pradaxa pharmaceutical product +127 Myrbetriq Q47521862 Myrbetriq pharmaceutical product +128 Amyvid Q29004826 Amyvid pharmaceutical product +129 Vibativ Q29006644 Vibativ pharmaceutical product +130 NULOJIX Q29006240 Nulojix pharmaceutical product +131 Nplate Q29006237 Nplate pharmaceutical product +132 Relistor Q29006413 Relistor pharmaceutical product +133 ONGLYZA Q29006275 Onglyza pharmaceutical product +134 CYRAMZA Q29005685 Cyramza pharmaceutical product +135 STELARA Q29006509 Stelara pharmaceutical product +136 VPRIV Q29006672 Vpriv pharmaceutical product +137 Hetlioz Q29005932 Hetlioz pharmaceutical product +138 Gilenya Q29005901 Gilenya pharmaceutical product +139 XELJANZ Q47522319 Xeljanz pharmaceutical product +140 Xarelto Q29006683 Xarelto pharmaceutical product +141 BOSULIF Q29004916 Bosulif pharmaceutical product +142 IMPAVIDO Q47521707 Impavido pharmaceutical product +143 Ofev Q29006250 Ofev pharmaceutical product +144 FERRIPROX Q29005863 Ferriprox pharmaceutical product +145 Dificid Q47521483 Dificid pharmaceutical product +146 Onfi Q47521934 Onfi pharmaceutical product +147 Jevtana Q29006060 Jevtana pharmaceutical product +148 Gazyva Q29005896 Gazyvaro pharmaceutical product +149 Duavee Q47521507 Duavee pharmaceutical product +150 Juxtapid Q47521734 Juxtapid pharmaceutical product +151 BELSOMRA Q47521243 Belsomra pharmaceutical product +152 ARZERRA Q29004853 Arzerra pharmaceutical product +153 ELIQUIS Q29005779 Eliquis pharmaceutical product +154 KYPROLIS Q29006101 Kyprolis pharmaceutical product +155 ERIVEDGE Q29005820 Erivedge pharmaceutical product +156 Firazyr Q29005870 Firazyr pharmaceutical product +157 DaTscan Q29005703 Datscan pharmaceutical product +158 Zydelig Q29006763 Zydelig pharmaceutical product +159 JAKAFI Q47521730 Jakafi pharmaceutical product +160 MOVANTIK Q47521849 Movantik pharmaceutical product +161 Harvoni Q29005922 Harvoni pharmaceutical product +162 Stendra Q47522151 Stendra pharmaceutical product +163 OPDIVO Q29006280 Opdivo pharmaceutical product +164 VOTRIENT Q29006670 Votrient pharmaceutical product +165 ZALTRAP Q29006714 Zaltrap pharmaceutical product +166 BRILINTA Q47521276 Brilinta pharmaceutical product +167 Arcapta Q47521184 Arcapta pharmaceutical product +168 EYLEA Q29005849 Eylea pharmaceutical product +169 ELELYSO Q29005778 Elelyso pharmaceutical product +170 Natroba Q47521874 Natroba pharmaceutical product +171 Jardiance Q29006055 Jardiance pharmaceutical product +172 Gilotrif Q47521650 Gilotrif pharmaceutical product +173 ZYKADIA Q29006764 Zykadia pharmaceutical product From a3b77994869c68f2254e782bf047e03fccbd7f7f Mon Sep 17 00:00:00 2001 From: gtsueng Date: Wed, 13 Nov 2019 13:07:08 -0800 Subject: [PATCH 3/6] tested alternative matching method --- .../SPL ADR rewrite for bot.ipynb | 196 +++++++++++++++++- 1 file changed, 191 insertions(+), 5 deletions(-) diff --git a/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb b/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb index 7ecaef7..229cdc0 100644 --- a/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb +++ b/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb @@ -16,7 +16,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -67,7 +67,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -101,7 +101,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -146,7 +146,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ @@ -163,7 +163,7 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -198,6 +198,192 @@ "Filter out the entries that could not be mapped to Wikidata." ] }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "run started: 2019-11-13 10:25:32.828818\n" + ] + } + ], + "source": [ + "## Method\n", + "print(\"run started: \",datetime.now())\n", + "spl_adr_raw = read_csv(datasrc, delimiter=\"|\", header=0, dtype={'Index':int,'PT ID':str,'LLT ID':str}).fillna('None')\n", + "\n", + "## Pull QIDS using UMLS CUIS\n", + "wdid_umls_df_unique = disease_search(spl_adr_raw)\n", + "\n", + "## Merge the mapping table to the original table\n", + "spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left')\n", + "\n", + "## Pull QIDS using drug labels\n", + "#drug_list = ['NUCYNTA','Natazia','EDURANT'] ## Loop test\n", + "drug_list = spl_with_disease_wdids['Drug Name'].astype(str).str.lower().unique().tolist()\n", + "drug_wdid_df, drug_match_failed = drug_search(drug_list)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Determine if it we can match labels more efficiently" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " WDID alias label source\n", + "0 Q2034113 No alias Actrapid pharm\n", + "1 Q3494359 No alias Q3494359 pharm\n", + "2 Q5451187 No alias Fioricet pharm\n" + ] + } + ], + "source": [ + "sparqlQuery = 'SELECT ?item ?itemLabel ?alias WHERE {?item wdt:P31 wd:Q28885102. OPTIONAL {?item skos:altLabel ?alias FILTER (LANG (?alias) = \"en\").} SERVICE wikibase:label { bd:serviceParam wikibase:language \"[AUTO_LANGUAGE],en\". }}'\n", + "pharm_list = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", + "\n", + "pharm_label_list = []\n", + "\n", + "for i in range(len(pharm_list[\"results\"][\"bindings\"])):\n", + " wdid = pharm_list[\"results\"][\"bindings\"][i][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", + " label = pharm_list[\"results\"][\"bindings\"][i][\"itemLabel\"][\"value\"]\n", + " try:\n", + " alias = pharm_list[\"results\"][\"bindings\"][i][\"alias\"][\"value\"]\n", + " except:\n", + " alias = \"No alias\"\n", + " pharm_label_list.append({'WDID':wdid,'label':label,'alias':alias})\n", + "\n", + "pharm_alias_in_wd = pd.DataFrame(pharm_label_list)\n", + "pharm_alias_in_wd['source'] = \"pharm\"\n", + "print(pharm_alias_in_wd.head(n=2))" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " WDID alias label \\\n", + "0 Q285911 3-(alpha-L-rhamnopyranosyloxy)-1beta,5beta,11a... ouabain \n", + "1 Q285911 g-strophanthin ouabain \n", + "2 Q286846 Protonix pantoprazole \n", + "\n", + " source \n", + "0 med \n", + "1 med \n", + "2 med \n" + ] + } + ], + "source": [ + "sparqlQuery = 'SELECT ?item ?itemLabel ?alias WHERE {?item wdt:P31 wd:Q12140. OPTIONAL {?item skos:altLabel ?alias FILTER (LANG (?alias) = \"en\").} SERVICE wikibase:label { bd:serviceParam wikibase:language \"[AUTO_LANGUAGE],en\". }}'\n", + "med_list = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", + "\n", + "med_label_list = []\n", + "\n", + "for i in range(len(med_list[\"results\"][\"bindings\"])):\n", + " wdid = med_list[\"results\"][\"bindings\"][i][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", + " label = med_list[\"results\"][\"bindings\"][i][\"itemLabel\"][\"value\"]\n", + " try:\n", + " alias = med_list[\"results\"][\"bindings\"][i][\"alias\"][\"value\"]\n", + " except:\n", + " alias = \"No alias\"\n", + " med_label_list.append({'WDID':wdid,'label':label,'alias':alias})\n", + "\n", + "med_alias_in_wd = pd.DataFrame(med_label_list)\n", + "med_alias_in_wd['source'] = \"med\"\n", + "print(med_alias_in_wd.head(n=2))" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " WDID alias label \\\n", + "0 Q285911 3-(alpha-L-rhamnopyranosyloxy)-1beta,5beta,11a... ouabain \n", + "1 Q285911 g-strophanthin ouabain \n", + "2 Q286846 Protonix pantoprazole \n", + "\n", + " source \n", + "0 chem \n", + "1 chem \n", + "2 chem \n" + ] + } + ], + "source": [ + "sparqlQuery = 'SELECT ?item ?itemLabel ?alias WHERE {?item wdt:P31 wd:Q11173. OPTIONAL {?item skos:altLabel ?alias FILTER (LANG (?alias) = \"en\").} SERVICE wikibase:label { bd:serviceParam wikibase:language \"[AUTO_LANGUAGE],en\". }}'\n", + "chem_list = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", + "\n", + "chem_label_list = []\n", + "\n", + "for i in range(len(chem_list[\"results\"][\"bindings\"])):\n", + " wdid = chem_list[\"results\"][\"bindings\"][i][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", + " label = chem_list[\"results\"][\"bindings\"][i][\"itemLabel\"][\"value\"]\n", + " try:\n", + " alias = chem_list[\"results\"][\"bindings\"][i][\"alias\"][\"value\"]\n", + " except:\n", + " alias = \"No alias\"\n", + " chem_label_list.append({'WDID':wdid,'label':label,'alias':alias})\n", + "\n", + "chem_alias_in_wd = pd.DataFrame(med_label_list)\n", + "chem_alias_in_wd['source'] = \"chem\"\n", + "print(chem_alias_in_wd.head(n=2))" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "50441\n" + ] + } + ], + "source": [ + "alias_list = pd.concat((pharm_alias_in_wd,med_alias_in_wd,chem_alias_in_wd), ignore_index=True)\n", + "print(len(alias_list))\n", + "\n", + "potential_drugs = alias_list.loc[(alias_list['alias'].astype(str).str.lower().isin(drug_list)) | \n", + " (alias_list['label'].astype(str).str.lower().isin(drug_list))]\n", + "\n", + "print(len(potential_drugs))\n", + "print(len(drug_wdid_df))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Bot for the run" + ] + }, { "cell_type": "code", "execution_count": null, From 6ffe156f0e71937b288c0b24c3924d74383be28d Mon Sep 17 00:00:00 2001 From: gtsueng Date: Tue, 19 Nov 2019 09:56:31 -0800 Subject: [PATCH 4/6] added logic to treat first and subsequent runs differently. Since this dataset is fixed, subsequent runs should focus on data previously not successfully written to Wikidata --- .../SPL ADR rewrite for bot.ipynb | 102 +++++----- .../SPL_ADR_standard_dataset/bot.py | 88 ++++----- .../SPL_ADR_standard_dataset/data/run_no.txt | 1 + .../results/drug_wdid_df.tsv | 175 ------------------ 4 files changed, 89 insertions(+), 277 deletions(-) create mode 100644 scheduled_bots/SPL_ADR_standard_dataset/data/run_no.txt delete mode 100644 scheduled_bots/SPL_ADR_standard_dataset/results/drug_wdid_df.tsv diff --git a/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb b/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb index 229cdc0..8d09d20 100644 --- a/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb +++ b/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb @@ -28,13 +28,12 @@ "from datetime import datetime\n", "import copy\n", "\n", - "datasrc = 'data/FinalReferenceStandard200Labels.csv'\n", "exppath = 'results/'" ] }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 2, "metadata": {}, "outputs": [ { @@ -67,7 +66,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -101,7 +100,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ @@ -146,7 +145,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -163,7 +162,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 10, "metadata": {}, "outputs": [], "source": [ @@ -179,9 +178,14 @@ " source_type = run_list.iloc[i]['Section Display Name']\n", " reference = create_reference(spl_url,source_type)\n", "\n", - " statement = [wdi_core.WDItemID(value=drug_qid, prop_nr=\"P5642\", references=[copy.deepcopy(reference)])]\n", + " treat_qualifier = wdi_core.WDItemID(value=\"Q179661\", prop_nr=\"P1013\", is_qualifier=True)\n", + " effect_qualifier = wdi_core.WDItemID(value=\"Q217690\", prop_nr=\"P1542\", is_qualifier=True)\n", + " \n", + " statement = [wdi_core.WDItemID(value=drug_qid, prop_nr=\"P5642\", qualifiers=[treat_qualifier, effect_qualifier],\n", + " references=[copy.deepcopy(reference)])]\n", " wikidata_item = wdi_core.WDItemEngine(wd_item_id=disease_qid, data=statement, append_value=\"P5642\",\n", - " global_ref_mode='CUSTOM', ref_handler=update_retrieved_if_new_multiple_refs)\n", + " global_ref_mode='CUSTOM', ref_handler=update_retrieved_if_new_multiple_refs)\n", + " \n", " wikidata_item.write(login, edit_summary='added ADR relationship from FDA SPLs') \n", " wd_revision_list.append({'drug':drug_qid,'disease':disease_qid,'wd_revid':wikidata_item.lastrevid})\n", " i=i+1\n", @@ -200,14 +204,14 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "run started: 2019-11-13 10:25:32.828818\n" + "run started: 2019-11-19 08:45:52.561055\n" ] } ], @@ -386,11 +390,28 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "run started: 2019-11-19 09:46:34.005333\n", + "run completed: 2019-11-19 09:50:19.880253\n" + ] + } + ], "source": [ - "## First Run\n", + "with open('data/run_no.txt', 'r') as run_file:\n", + " for line in run_file:\n", + " run_number = int(line.strip())\n", + "\n", + "if run_number ==0:\n", + " datasrc = 'data/FinalReferenceStandard200Labels.csv'\n", + "else:\n", + " datasrc = exppath+'qid_missing_not_attempted.tsv'\n", + "\n", "print(\"run started: \",datetime.now())\n", "spl_adr_raw = read_csv(datasrc, delimiter=\"|\", header=0, dtype={'Index':int,'PT ID':str,'LLT ID':str}).fillna('None')\n", "\n", @@ -401,13 +422,18 @@ "spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left')\n", "\n", "## Pull QIDS using drug labels\n", - "#drug_list = ['NUCYNTA','Natazia','EDURANT'] ## Loop test\n", - "drug_list = spl_with_disease_wdids['Drug Name'].unique().tolist()\n", + "if run_number == 0:\n", + " drug_list = spl_with_disease_wdids['Drug Name'].unique().tolist()\n", + "else:\n", + " drug_list = []\n", + " with open(exppath+'drug_match_failed.txt','r') as drug_match_failed:\n", + " for line in drug_match_failed:\n", + " drug_list.append(line+'\\n')\n", + "\n", "drug_wdid_df, drug_match_failed = drug_search(drug_list)\n", "\n", "## Merge the results to generate the table of entries to write\n", "df_to_write = spl_with_disease_wdids.merge(drug_wdid_df, on='Drug Name',how = 'left')\n", - "\n", "all_data_available = df_to_write.loc[(~df_to_write['disease_WDID'].isnull()) & \n", " (~df_to_write['drug_WDID'].isnull())]\n", "\n", @@ -415,7 +441,7 @@ " (df_to_write['drug_WDID'].isnull())]\n", "\n", "## Make the writes\n", - "run_list = all_data_available[0:3] ## test run\n", + "run_list = all_data_available[0:1] ## test run\n", "#run_list = all_data_available\n", "wd_edit_results = write_adrs(run_list)\n", "\n", @@ -434,45 +460,11 @@ "## Failures to attempt in the future\n", "not_attempted.to_csv(exppath+'qid_missing_not_attempted.tsv',sep='\\t',header=True)\n", "\n", - "print(\"run completed: \",datetime.now())" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "metadata": {}, - "outputs": [], - "source": [ - "## Future Runs\n", - "print(\"run started: \",datetime.now())\n", - "\n", - "datasrce = exppath+'qid_missing_not_attempted.tsv\n", - "drug_list = []\n", - "with open(exppath+'drug_match_failed.txt','r') as drug_match_failed:\n", - " for line in drug_match_failed:\n", - " drug_list.append(line+'\\n')\n", - "\n", - "spl_adr_raw = read_csv(datasrc, delimiter=\"|\", header=0, dtype={'Index':int,'PT ID':str,'LLT ID':str}).fillna('None')\n", - "wdid_umls_df_unique = disease_search(spl_adr_raw)\n", - "spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left')\n", - "drug_wdid_df, drug_match_failed = drug_search(drug_list)\n", - "df_to_write = spl_with_disease_wdids.merge(drug_wdid_df, on='Drug Name',how = 'left')\n", - "\n", - "all_data_available = df_to_write.loc[(~df_to_write['disease_WDID'].isnull()) & \n", - " (~df_to_write['drug_WDID'].isnull())]\n", - "\n", - "not_attempted = df_to_write.loc[(df_to_write['disease_WDID'].isnull()) | \n", - " (df_to_write['drug_WDID'].isnull())]\n", - "\n", - "run_list = all_data_available\n", - "wd_edit_results = write_adrs(run_list)\n", - "\n", - "#### Export the results of the run\n", - "drug_wdid_df.to_csv(exppath+'drug_wdid_df-'+str(datetime.now().strftime(\"+%Y-%m-%dT00:00:00Z\"))+'.tsv',sep='\\t',header=True)\n", - "wd_edit_results.to_csv(exppath+'run_results-'+str(datetime.now().strftime(\"+%Y-%m-%dT00:00:00Z\"))+'.tsv',sep='\\t',header=True)\n", - "not_attempted.to_csv(exppath+'qid_missing_not_attempted.tsv',sep='\\t',header=True)\n", + "print(\"run completed: \",datetime.now())\n", + "run_number = run_number + 1\n", "\n", - "print(\"run completed: \",datetime.now())" + "with open('data/run_no.txt', 'w') as run_file:\n", + " run_file.write(str(run_number))" ] }, { diff --git a/scheduled_bots/SPL_ADR_standard_dataset/bot.py b/scheduled_bots/SPL_ADR_standard_dataset/bot.py index 54ec3b1..4e6cfc5 100644 --- a/scheduled_bots/SPL_ADR_standard_dataset/bot.py +++ b/scheduled_bots/SPL_ADR_standard_dataset/bot.py @@ -6,7 +6,6 @@ from datetime import datetime import copy -datasrc = 'data/FinalReferenceStandard200Labels.csv' exppath = 'results/' @@ -95,7 +94,10 @@ def write_adrs(run_list): spl_url = fda_base_spl_url+spl_drug_id source_type = run_list.iloc[i]['Section Display Name'] reference = create_reference(spl_url,source_type) - statement = [wdi_core.WDItemID(value=drug_qid, prop_nr="P5642", references=[copy.deepcopy(reference)])] + treat_qualifier = wdi_core.WDItemID(value="Q179661", prop_nr="P1013", is_qualifier=True) + effect_qualifier = wdi_core.WDItemID(value="Q217690", prop_nr="P1542", is_qualifier=True) + statement = [wdi_core.WDItemID(value=drug_qid, prop_nr="P5642", qualifiers=[treat_qualifier, effect_qualifier], + references=[copy.deepcopy(reference)])] wikidata_item = wdi_core.WDItemEngine(wd_item_id=disease_qid, data=statement, append_value="P5642", global_ref_mode='CUSTOM', ref_handler=update_retrieved_if_new_multiple_refs) wikidata_item.write(login, edit_summary='added ADR relationship from FDA SPLs') @@ -109,73 +111,65 @@ def write_adrs(run_list): ###### Main Script -#### Initial Run +#### Determine the source based on the run +with open('data/run_no.txt', 'r') as run_file: + for line in run_file: + run_number = int(line.strip()) + +if run_number ==0: + datasrc = 'data/FinalReferenceStandard200Labels.csv' +else: + datasrc = exppath+'qid_missing_not_attempted.tsv + print("run started: ",datetime.now()) spl_adr_raw = read_csv(datasrc, delimiter="|", header=0, dtype={'Index':int,'PT ID':str,'LLT ID':str}).fillna('None') -wdid_umls_df_unique = disease_search(spl_adr_raw) ## Pull QIDS using UMLS CUIS -spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left') ## Merge the mapping table -drug_list = spl_with_disease_wdids['Drug Name'].unique().tolist() ## Pull QIDS using drug labels + +## Pull QIDS using UMLS CUIS +wdid_umls_df_unique = disease_search(spl_adr_raw) + +## Merge the mapping table to the original table +spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left') + +## Pull QIDS using drug labels +if run_number == 0: + drug_list = spl_with_disease_wdids['Drug Name'].unique().tolist() +else: + drug_list = [] + with open(exppath+'drug_match_failed.txt','r') as drug_match_failed: + for line in drug_match_failed: + drug_list.append(line+'\n') + drug_wdid_df, drug_match_failed = drug_search(drug_list) ## Merge the results to generate the table of entries to write df_to_write = spl_with_disease_wdids.merge(drug_wdid_df, on='Drug Name',how = 'left') all_data_available = df_to_write.loc[(~df_to_write['disease_WDID'].isnull()) & (~df_to_write['drug_WDID'].isnull())] + not_attempted = df_to_write.loc[(df_to_write['disease_WDID'].isnull()) | (df_to_write['drug_WDID'].isnull())] + ## Make the writes -run_list = all_data_available[0:3] ## test run -#run_list = all_data_available +run_list = all_data_available wd_edit_results = write_adrs(run_list) #### Export the results of the run + ## Results of the drug search drug_wdid_df.to_csv(exppath+'drug_wdid_df.tsv',sep='\t',header=True) +with open(exppath+'drug_match_failed.txt','w') as store_it: + for eachfailure in drug_match_failed: + store_it.write(eachfailure+'\n') + ## Results of the actual run wd_edit_results.to_csv(exppath+'run_results.tsv',sep='\t',header=True) ## Failures to attempt in the future not_attempted.to_csv(exppath+'qid_missing_not_attempted.tsv',sep='\t',header=True) -with open(exppath+'drug_match_failed.txt','w') as store_it: - for eachfailure in drug_match_failed: - store_it.write(eachfailure+'\n') - print("run completed: ",datetime.now()) +run_number = run_number + 1 - - - -#### Subsequent Runs -print("run started: ",datetime.now()) - -datasrce = exppath+'qid_missing_not_attempted.tsv -drug_list = [] -with open(exppath+'drug_match_failed.txt','r') as drug_match_failed: - for line in drug_match_failed: - drug_list.append(line+'\n') - -spl_adr_raw = read_csv(datasrc, delimiter="|", header=0, dtype={'Index':int,'PT ID':str,'LLT ID':str}).fillna('None') -wdid_umls_df_unique = disease_search(spl_adr_raw) -spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left') -drug_wdid_df, drug_match_failed = drug_search(drug_list) -df_to_write = spl_with_disease_wdids.merge(drug_wdid_df, on='Drug Name',how = 'left') - -all_data_available = df_to_write.loc[(~df_to_write['disease_WDID'].isnull()) & - (~df_to_write['drug_WDID'].isnull())] - -not_attempted = df_to_write.loc[(df_to_write['disease_WDID'].isnull()) | - (df_to_write['drug_WDID'].isnull())] - -run_list = all_data_available -wd_edit_results = write_adrs(run_list) - -#### Export the results of the run -drug_wdid_df.to_csv(exppath+'drug_wdid_df-'+str(datetime.now().strftime("+%Y-%m-%dT00:00:00Z"))+'.tsv',sep='\t',header=True) -wd_edit_results.to_csv(exppath+'run_results-'+str(datetime.now().strftime("+%Y-%m-%dT00:00:00Z"))+'.tsv',sep='\t',header=True) -not_attempted.to_csv(exppath+'qid_missing_not_attempted.tsv',sep='\t',header=True) -with open(exppath+'drug_match_failed.txt','w') as store_it: - for eachfailure in drug_match_failed: - store_it.write(eachfailure+'\n') -print("run completed: ",datetime.now()) \ No newline at end of file +with open('data/run_no.txt', 'w') as run_file: + run_file.write(str(run_number)) \ No newline at end of file diff --git a/scheduled_bots/SPL_ADR_standard_dataset/data/run_no.txt b/scheduled_bots/SPL_ADR_standard_dataset/data/run_no.txt new file mode 100644 index 0000000..c227083 --- /dev/null +++ b/scheduled_bots/SPL_ADR_standard_dataset/data/run_no.txt @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/scheduled_bots/SPL_ADR_standard_dataset/results/drug_wdid_df.tsv b/scheduled_bots/SPL_ADR_standard_dataset/results/drug_wdid_df.tsv deleted file mode 100644 index f218235..0000000 --- a/scheduled_bots/SPL_ADR_standard_dataset/results/drug_wdid_df.tsv +++ /dev/null @@ -1,175 +0,0 @@ - Drug Name drug_WDID drug_wd_label instance_of -0 NUCYNTA Q47521917 Nucynta pharmaceutical product -1 EDURANT Q29005767 Edurant pharmaceutical product -2 ISTODAX Q29006038 Istodax pharmaceutical product -3 Ella Q29005662 Constella pharmaceutical product -4 Orbactiv Q29006288 Orbactiv pharmaceutical product -5 Plegridy Q29006344 Plegridy pharmaceutical product -6 Cleviprex Q47521364 Cleviprex pharmaceutical product -7 Linzess Q47521771 Linzess pharmaceutical product -8 Banzel Q47521237 Banzel pharmaceutical product -9 Kalydeco Q29006068 Kalydeco pharmaceutical product -10 Esbriet Q29005821 Esbriet pharmaceutical product -11 POTIGA Q47522007 Potiga pharmaceutical product -12 VIMIZIM Q29006649 Vimizim pharmaceutical product -13 IMBRUVICA Q29005968 Imbruvica pharmaceutical product -14 Carbaglu Q29004954 Carbaglu pharmaceutical product -15 SIRTURO Q29006489 Sirturo pharmaceutical product -16 LASTACAFT Q47521756 Lastacaft pharmaceutical product -17 PERJETA Q29006332 Perjeta pharmaceutical product -18 OLYSIO Q29006263 Olysio pharmaceutical product -19 COMETRIQ Q29005654 Cometriq pharmaceutical product -20 Kerydin Q48826188 Kerydin pharmaceutical product -21 OPSUMIT Q29006283 Opsumit pharmaceutical product -22 Afinitor Q28890051 Afinitor pharmaceutical product -23 Northera Q47521912 Northera pharmaceutical product -24 YERVOY Q29006706 Yervoy pharmaceutical product -25 KADCYLA Q29006063 Kadcyla pharmaceutical product -26 Pomalyst Q47522004 Pomalyst pharmaceutical product -27 AKYNZEO Q29004399 Akynzeo pharmaceutical product -28 Anoro Q29004831 Anoro pharmaceutical product -29 ACTEMRA Q29006460 Roactemra pharmaceutical product -30 BENLYSTA Q29004890 Benlysta pharmaceutical product -31 Halaven Q29005920 Halaven pharmaceutical product -32 Kynamro Q29006100 Kynamro pharmaceutical product -33 ULORIC Q47522249 Uloric pharmaceutical product -34 BLINCYTO Q29004905 Blincyto pharmaceutical product -35 ZELBORAF Q29006728 Zelboraf pharmaceutical product -36 ADCETRIS Q29004381 Adcetris pharmaceutical product -37 JETREA Q29006059 Jetrea pharmaceutical product -38 TREANDA Q47522221 Treanda pharmaceutical product -39 OTEZLA Q29006301 Otezla pharmaceutical product -40 Multaq Q29006188 Multaq pharmaceutical product -41 Aptiom Q47521181 Aptiom pharmaceutical product -42 Teflaro Q47522186 Teflaro pharmaceutical product -43 FANAPT Q47521593 Fanapt pharmaceutical product -44 Signifor Q29006478 Signifor pharmaceutical product -45 Livalo Q48828245 Livalo pharmaceutical product -46 SYLVANT Q29006520 Sylvant pharmaceutical product -47 ZONTIVITY Q29006755 Zontivity pharmaceutical product -48 Trulicity Q29006606 Trulicity pharmaceutical product -49 Aubagio Q29004862 Aubagio pharmaceutical product -50 Prolia Q29006374 Prolia pharmaceutical product -51 Brintellix Q29004924 Brintellix pharmaceutical product -52 DALVANCE Q47521435 Dalvance pharmaceutical product -53 Horizant Q47521685 Horizant pharmaceutical product -54 VIIBRYD Q47522298 Viibryd pharmaceutical product -55 CAPRELSA Q29004953 Caprelsa pharmaceutical product -56 Zytiga Q29006769 Zytiga pharmaceutical product -57 Edarbi Q29005764 Edarbi pharmaceutical product -58 SAPHRIS Q47522111 Saphris pharmaceutical product -59 AMPYRA Q29005853 Fampyra pharmaceutical product -60 SAMSCA Q29006464 Samsca pharmaceutical product -61 Ulesfia Q47522248 Ulesfia pharmaceutical product -62 Toviaz Q29006585 Toviaz pharmaceutical product -63 Victoza Q29006645 Victoza pharmaceutical product -64 Picato Q29006336 Picato pharmaceutical product -65 Striverdi Q47522156 Striverdi pharmaceutical product -66 Lynparza Q29006151 Lynparza pharmaceutical product -67 Folotyn Q29005877 Folotyn pharmaceutical product -68 PROMACTA Q48825972 Promacta pharmaceutical product -69 Tivicay Q29006571 Tivicay pharmaceutical product -70 Tecfidera Q29006540 Tecfidera pharmaceutical product -71 Kit Q29005682 Cyanokit pharmaceutical product -72 Gattex Q48826242 Gattex pharmaceutical product -73 FULYZAQ Q48828161 Fulyzaq pharmaceutical product -74 Bepreve Q48832132 Bepreve pharmaceutical product -75 Intelence Q29006007 Intelence pharmaceutical product -76 Entyvio Q29005802 Entyvio pharmaceutical product -77 ZERBAXA Q29006732 Zerbaxa pharmaceutical product -78 Fycompa Q29005890 Fycompa pharmaceutical product -79 FARXIGA Q47521594 Farxiga pharmaceutical product -80 Stribild Q29006513 Stribild pharmaceutical product -81 SIVEXTRO Q29006490 Sivextro pharmaceutical product -82 COARTEM Q47521385 Coartem pharmaceutical product -83 Effient Q47521531 Effient pharmaceutical product -84 Daliresp Q29005695 Daliresp pharmaceutical product -85 Adempas Q29004385 Adempas pharmaceutical product -86 Belviq Q47521244 Belviq pharmaceutical product -87 Ilaris Q29005960 Ilaris pharmaceutical product -88 RAPIVAB Q47522064 Rapivab pharmaceutical product -89 Tafinlar Q29006525 Tafinlar pharmaceutical product -90 Iclusig Q29005952 Iclusig pharmaceutical product -91 Sovaldi Q29006498 Sovaldi pharmaceutical product -92 Cerdelga Q29004966 Cerdelga pharmaceutical product -93 Stivarga Q29006510 Stivarga pharmaceutical product -94 DOTAREM Q2570844 Ch?p c?ng h??ng t? Dotarem medication -95 SYNRIBO Q47522179 Synribo pharmaceutical product -96 Osphena Q47521947 Osphena pharmaceutical product -97 Beleodaq Q47521242 Beleodaq pharmaceutical product -98 INLYTA Q29005990 Inlyta pharmaceutical product -99 Savella Q47522114 Savella pharmaceutical product -100 Choline Q47521259 Urecholine pharmaceutical product -101 Asclera Q47521197 Asclera pharmaceutical product -102 JUBLIA Q47521733 Jublia pharmaceutical product -103 KEYTRUDA Q29006084 Keytruda pharmaceutical product -104 Krystexxa Q29006097 Krystexxa pharmaceutical product -105 SIMPONI Q29006487 Simponi pharmaceutical product -106 Vimpat Q29006650 Vimpat pharmaceutical product -107 Nesina Q47521890 Nesina pharmaceutical product -108 Xofigo Q29006697 Xofigo pharmaceutical product -109 Besivance Q47521253 Besivance pharmaceutical product -110 SABRIL Q47522108 Sabril pharmaceutical product -111 Luzu Q47521797 Luzu pharmaceutical product -112 Raxibacumab Q7297093 Raxibacumab medication -113 Pristiq Q47521465 Pristiq pharmaceutical product -114 Qutenza Q29006389 Qutenza pharmaceutical product -115 Viekira Q29006648 Viekirax pharmaceutical product -116 Xenazine Q47522320 Xenazine pharmaceutical product -117 Tudorza Q47522239 Tudorza pharmaceutical product -118 VICTRELIS Q29006646 Victrelis pharmaceutical product -119 Mekinist Q29006164 Mekinist pharmaceutical product -120 Latuda Q29006112 Latuda pharmaceutical product -121 Neuraceq Q29006214 Neuraceq pharmaceutical product -122 Xtandi Q29006700 Xtandi pharmaceutical product -123 Vizamyl Q29006664 Vizamyl pharmaceutical product -124 Cimzia Q29004978 Cimzia pharmaceutical product -125 INVOKANA Q29006019 Invokana pharmaceutical product -126 Pradaxa Q29006351 Pradaxa pharmaceutical product -127 Myrbetriq Q47521862 Myrbetriq pharmaceutical product -128 Amyvid Q29004826 Amyvid pharmaceutical product -129 Vibativ Q29006644 Vibativ pharmaceutical product -130 NULOJIX Q29006240 Nulojix pharmaceutical product -131 Nplate Q29006237 Nplate pharmaceutical product -132 Relistor Q29006413 Relistor pharmaceutical product -133 ONGLYZA Q29006275 Onglyza pharmaceutical product -134 CYRAMZA Q29005685 Cyramza pharmaceutical product -135 STELARA Q29006509 Stelara pharmaceutical product -136 VPRIV Q29006672 Vpriv pharmaceutical product -137 Hetlioz Q29005932 Hetlioz pharmaceutical product -138 Gilenya Q29005901 Gilenya pharmaceutical product -139 XELJANZ Q47522319 Xeljanz pharmaceutical product -140 Xarelto Q29006683 Xarelto pharmaceutical product -141 BOSULIF Q29004916 Bosulif pharmaceutical product -142 IMPAVIDO Q47521707 Impavido pharmaceutical product -143 Ofev Q29006250 Ofev pharmaceutical product -144 FERRIPROX Q29005863 Ferriprox pharmaceutical product -145 Dificid Q47521483 Dificid pharmaceutical product -146 Onfi Q47521934 Onfi pharmaceutical product -147 Jevtana Q29006060 Jevtana pharmaceutical product -148 Gazyva Q29005896 Gazyvaro pharmaceutical product -149 Duavee Q47521507 Duavee pharmaceutical product -150 Juxtapid Q47521734 Juxtapid pharmaceutical product -151 BELSOMRA Q47521243 Belsomra pharmaceutical product -152 ARZERRA Q29004853 Arzerra pharmaceutical product -153 ELIQUIS Q29005779 Eliquis pharmaceutical product -154 KYPROLIS Q29006101 Kyprolis pharmaceutical product -155 ERIVEDGE Q29005820 Erivedge pharmaceutical product -156 Firazyr Q29005870 Firazyr pharmaceutical product -157 DaTscan Q29005703 Datscan pharmaceutical product -158 Zydelig Q29006763 Zydelig pharmaceutical product -159 JAKAFI Q47521730 Jakafi pharmaceutical product -160 MOVANTIK Q47521849 Movantik pharmaceutical product -161 Harvoni Q29005922 Harvoni pharmaceutical product -162 Stendra Q47522151 Stendra pharmaceutical product -163 OPDIVO Q29006280 Opdivo pharmaceutical product -164 VOTRIENT Q29006670 Votrient pharmaceutical product -165 ZALTRAP Q29006714 Zaltrap pharmaceutical product -166 BRILINTA Q47521276 Brilinta pharmaceutical product -167 Arcapta Q47521184 Arcapta pharmaceutical product -168 EYLEA Q29005849 Eylea pharmaceutical product -169 ELELYSO Q29005778 Elelyso pharmaceutical product -170 Natroba Q47521874 Natroba pharmaceutical product -171 Jardiance Q29006055 Jardiance pharmaceutical product -172 Gilotrif Q47521650 Gilotrif pharmaceutical product -173 ZYKADIA Q29006764 Zykadia pharmaceutical product From cc76abac1eaa433ad1466196580445ce43559735 Mon Sep 17 00:00:00 2001 From: gtsueng Date: Tue, 19 Nov 2019 09:56:31 -0800 Subject: [PATCH 5/6] removal of unnecessary script --- .../SPL ADR rewrite for bot.ipynb | 110 ++++++++++++++++-- .../SPL_ADR_standard_dataset/bot.py | 11 +- 2 files changed, 100 insertions(+), 21 deletions(-) diff --git a/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb b/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb index 8d09d20..9a0c579 100644 --- a/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb +++ b/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb @@ -107,7 +107,6 @@ "def drug_search(drug_list):\n", " pharm_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q28885102; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), \"'\n", " med_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q12140; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), \"'\n", - " chem_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q11173; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), \"'\n", " query_end = '\"@en)).}'\n", " drug_wdid_list = []\n", " drug_match_failed = []\n", @@ -128,14 +127,7 @@ " drug_label = result[\"results\"][\"bindings\"][0][\"itemLabel\"][\"value\"]\n", " drug_wdid_list.append({'Drug Name':drug_list[i],'drug_WDID':drug_qid,'drug_wd_label':drug_label,'instance_of':'medication'})\n", " except:\n", - " try:\n", - " sparqlQuery = chem_start+query_subject+query_end\n", - " result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", - " drug_qid = result[\"results\"][\"bindings\"][0][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", - " drug_label = result[\"results\"][\"bindings\"][0][\"itemLabel\"][\"value\"]\n", - " drug_wdid_list.append({'Drug Name':drug_list[i],'drug_WDID':drug_qid,'drug_wd_label':drug_label,'instance_of':'chemical'}) \n", - " except:\n", - " drug_match_failed.append(drug_list[i])\n", + " drug_match_failed.append(drug_list[i])\n", " i=i+1\n", "\n", " drug_wdid_df = pd.DataFrame(drug_wdid_list)\n", @@ -162,7 +154,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ @@ -236,7 +228,11 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Determine if it we can match labels more efficiently" + "## Determine if it we can match labels more efficiently\n", + "\n", + "The default script using the drug search function defined above uses Wikidata's label searching to determine the best match. This is slow, but it allows us to avoid dealing with a lot of string formatting issues which could arise if we try to do the mapping ourselves.\n", + "\n", + "To see if we can speed things up, we can pull instances of pharmaceutical products, medications, and chemicals and their labels and aliases and then try string matching. This method gives us MORE results than the previous results due to alias ambiguity from an actual pharmaceutical product vs it's active ingredient. For this reason, we'll use the slower, but more accurate method for the bot." ] }, { @@ -381,6 +377,98 @@ "print(len(drug_wdid_df))" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Mapping check" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "run started: 2019-11-19 11:46:26.125699\n", + " Drug Name drug_WDID drug_wd_label instance_of\n", + "0 NUCYNTA Q47521917 Nucynta pharmaceutical product\n", + "1 EDURANT Q29005767 Edurant pharmaceutical product\n" + ] + } + ], + "source": [ + "with open('data/run_no.txt', 'r') as run_file:\n", + " for line in run_file:\n", + " run_number = int(line.strip())\n", + "\n", + "if run_number ==0:\n", + " datasrc = 'data/FinalReferenceStandard200Labels.csv'\n", + "else:\n", + " datasrc = exppath+'qid_missing_not_attempted.tsv'\n", + "\n", + "print(\"run started: \",datetime.now())\n", + "spl_adr_raw = read_csv(datasrc, delimiter=\"|\", header=0, dtype={'Index':int,'PT ID':str,'LLT ID':str}).fillna('None')\n", + "\n", + "## Pull QIDS using UMLS CUIS\n", + "wdid_umls_df_unique = disease_search(spl_adr_raw)\n", + "\n", + "## Merge the mapping table to the original table\n", + "spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left')\n", + "\n", + "## Pull QIDS using drug labels\n", + "if run_number == 0:\n", + " drug_list = spl_with_disease_wdids['Drug Name'].unique().tolist()\n", + "else:\n", + " drug_list = []\n", + " with open(exppath+'drug_match_failed.txt','r') as drug_match_failed:\n", + " for line in drug_match_failed:\n", + " drug_list.append(line+'\\n')\n", + "\n", + "drug_wdid_df, drug_match_failed = drug_search(drug_list)\n", + "\n", + "## Merge the results to generate the table of entries to write\n", + "df_to_write = spl_with_disease_wdids.merge(drug_wdid_df, on='Drug Name',how = 'left')\n", + "all_data_available = df_to_write.loc[(~df_to_write['disease_WDID'].isnull()) & \n", + " (~df_to_write['drug_WDID'].isnull())]\n", + "\n", + "not_attempted = df_to_write.loc[(df_to_write['disease_WDID'].isnull()) | \n", + " (df_to_write['drug_WDID'].isnull())]\n", + "\n", + "print(drug_wdid_df.head(n=2))" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "173\n", + "2\n", + "0\n" + ] + } + ], + "source": [ + "print(len(drug_wdid_df.loc[drug_wdid_df['instance_of']=='pharmaceutical product']))\n", + "print(len(drug_wdid_df.loc[drug_wdid_df['instance_of']=='medication']))\n", + "print(len(drug_wdid_df.loc[drug_wdid_df['instance_of']=='chemical']))\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "When label matching, the majority of matches were for pharmaceutical products (as expected), with a few matches to medications. None of the matches via label searches mapped to chemicals. For this reason, we'll remove that portion of the script (which will hopefully help speed it up)." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/scheduled_bots/SPL_ADR_standard_dataset/bot.py b/scheduled_bots/SPL_ADR_standard_dataset/bot.py index 4e6cfc5..8aea2d4 100644 --- a/scheduled_bots/SPL_ADR_standard_dataset/bot.py +++ b/scheduled_bots/SPL_ADR_standard_dataset/bot.py @@ -33,7 +33,6 @@ def disease_search(spl_adr_raw): def drug_search(drug_list): pharm_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q28885102; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), "' med_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q12140; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), "' - chem_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q11173; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), "' query_end = '"@en)).}' drug_wdid_list = [] drug_match_failed = [] @@ -56,15 +55,7 @@ def drug_search(drug_list): drug_wdid_list.append({'Drug Name':drug_list[i], 'drug_WDID':drug_qid, 'drug_wd_label':drug_label, 'instance_of':'medication'}) except: - try: - sparqlQuery = chem_start+query_subject+query_end - result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery) - drug_qid = result["results"]["bindings"][0]["item"]["value"].replace("http://www.wikidata.org/entity/", "") - drug_label = result["results"]["bindings"][0]["itemLabel"]["value"] - drug_wdid_list.append({'Drug Name':drug_list[i], 'drug_WDID':drug_qid, 'drug_wd_label':drug_label, - 'instance_of':'chemical'}) - except: - drug_match_failed.append(drug_list[i]) + drug_match_failed.append(drug_list[i]) i=i+1 drug_wdid_df = pd.DataFrame(drug_wdid_list) return drug_wdid_df, drug_match_failed From 87f833dbaa45c44ce18503abe1d4e5d1b6f65e34 Mon Sep 17 00:00:00 2001 From: gtsueng Date: Mon, 2 Dec 2019 14:33:43 -0800 Subject: [PATCH 6/6] added login script --- .../SPL ADR rewrite for bot.ipynb | 587 ------------------ .../SPL_ADR_standard_dataset/bot.py | 14 + .../results/drug_match_failed.txt | 25 + 3 files changed, 39 insertions(+), 587 deletions(-) delete mode 100644 scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb create mode 100644 scheduled_bots/SPL_ADR_standard_dataset/results/drug_match_failed.txt diff --git a/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb b/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb deleted file mode 100644 index 9a0c579..0000000 --- a/scheduled_bots/SPL_ADR_standard_dataset/SPL ADR rewrite for bot.ipynb +++ /dev/null @@ -1,587 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## A dataset of 200 structured product labels annotated for adverse drug reactions\n", - "The annotations were performed by Dina Demner-Fushman's team in order to create a standard set to encourage the development of NLP tools for ADR annotation from FDA Structured Product labels.\n", - "\n", - "The publication can be found here: https://www.nature.com/articles/sdata20181\n", - "\n", - "We have been given explicit permission to import this data set so long as we make it clear that it is not an NLM-sanctioned gold standard database and that the curation was done by a small team of biocurators to the best of their ability and not by experts verse in pharmacology.\n", - "\n", - "It should be noted that the dataset is not expected to change in the future; however, coverage of corresponding entries in Wikidata may grow over time so re-running the dataset on a schedule may help to improve representation of the dataset in Wikidata over time." - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "from wikidataintegrator import wdi_core, wdi_login, wdi_helpers\n", - "from wikidataintegrator.ref_handlers import update_retrieved_if_new_multiple_refs\n", - "import pandas as pd\n", - "from pandas import read_csv\n", - "import requests\n", - "from datetime import datetime\n", - "import copy\n", - "\n", - "exppath = 'results/'" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Logging in...\n", - "https://www.wikidata.org/w/api.php\n", - "Successfully logged in as Gtsulab\n" - ] - } - ], - "source": [ - "print(\"Logging in...\")\n", - "import wdi_user_config ## Credentials stored in a wdi_user_config file\n", - "login_dict = wdi_user_config.get_credentials()\n", - "login = wdi_login.WDLogin(login_dict['WDUSER'], login_dict['WDPASS'])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Query Wikidata for instances of drugs whose names match to product label names\n", - "We can limit the query by selecting for instances of Pharmaceutical products, medications, or chemical compounds. The queries should be run in that order...only search for medications of a label doesn't match a pharmaceutical product. Only search for chemical compounds if a label doesn't match a medication OR pharmaceutical product:\n", - "* pharm_wid = 'Q28885102'\n", - "* chem_wdid = 'Q11173'\n", - "* medi_wdid = 'Q12140'" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "def disease_search(spl_adr_raw):\n", - " ## Retrieve the QIDs for each UMLS CUI ID (The property for UMLS CUI IDs is P2892)\n", - " sparqlQuery = \"SELECT * WHERE {?topic wdt:P2892 ?CUI}\"\n", - " result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", - "\n", - " ## Format the data for analysis\n", - " wdmap = []\n", - " i=0\n", - " while i < len(result[\"results\"][\"bindings\"]):\n", - " umls_qid = result[\"results\"][\"bindings\"][i][\"topic\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", - " cui_id = result[\"results\"][\"bindings\"][i][\"CUI\"][\"value\"]\n", - " tmpdict = {'UMLS CUI':cui_id,'disease_WDID':umls_qid}\n", - " wdmap.append(tmpdict)\n", - " i=i+1\n", - "\n", - " wdid_umls_all = pd.DataFrame(wdmap)\n", - "\n", - " ## Drop any entries that are not of interest\n", - " umls_cui_list = spl_adr_raw['UMLS CUI'].unique().tolist()\n", - " wdid_umls_df = wdid_umls_all.loc[wdid_umls_all['UMLS CUI'].isin(umls_cui_list)]\n", - "\n", - " ## Exclude entities with one to many OR many to one mappings\n", - " wdid_umls_df_unique = wdid_umls_df.drop_duplicates(subset='disease_WDID').copy()\n", - " wdid_umls_df_unique.drop_duplicates(subset='UMLS CUI',inplace=True)\n", - " \n", - " return wdid_umls_df_unique" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "def drug_search(drug_list):\n", - " pharm_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q28885102; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), \"'\n", - " med_start = 'SELECT ?item ?itemLabel WHERE {?item wdt:P31 wd:Q12140; rdfs:label ?itemLabel. FILTER(CONTAINS(LCASE(?itemLabel), \"'\n", - " query_end = '\"@en)).}'\n", - " drug_wdid_list = []\n", - " drug_match_failed = []\n", - " i=0\n", - " while i < len(drug_list):\n", - " query_subject = drug_list[i].lower()\n", - " try:\n", - " sparqlQuery = pharm_start+query_subject+query_end\n", - " result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", - " drug_qid = result[\"results\"][\"bindings\"][0][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", - " drug_label = result[\"results\"][\"bindings\"][0][\"itemLabel\"][\"value\"]\n", - " drug_wdid_list.append({'Drug Name':drug_list[i],'drug_WDID':drug_qid,'drug_wd_label':drug_label,'instance_of':'pharmaceutical product'})\n", - " except:\n", - " try:\n", - " sparqlQuery = med_start+query_subject+query_end\n", - " result = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", - " drug_qid = result[\"results\"][\"bindings\"][0][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", - " drug_label = result[\"results\"][\"bindings\"][0][\"itemLabel\"][\"value\"]\n", - " drug_wdid_list.append({'Drug Name':drug_list[i],'drug_WDID':drug_qid,'drug_wd_label':drug_label,'instance_of':'medication'})\n", - " except:\n", - " drug_match_failed.append(drug_list[i])\n", - " i=i+1\n", - "\n", - " drug_wdid_df = pd.DataFrame(drug_wdid_list)\n", - " \n", - " return drug_wdid_df, drug_match_failed" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [], - "source": [ - "def create_reference(spl_url,source_type):\n", - " timeStringNow = datetime.now().strftime(\"+%Y-%m-%dT00:00:00Z\")\n", - " archived_date = datetime.strptime('9/29/2015','%m/%d/%Y').strftime(\"+%Y-%m-%dT00:00:00Z\")\n", - " refStatedIn = wdi_core.WDItemID(value=\"Q73670648\", prop_nr=\"P248\", is_reference=True)\n", - " refRetrieved = wdi_core.WDTime(timeStringNow, prop_nr=\"P813\", is_reference=True)\n", - " refRetrieved2 = wdi_core.WDTime(archived_date, prop_nr=\"P2960\", is_reference=True)\n", - " refURL = wdi_core.WDUrl(value=spl_url, prop_nr=\"P854\", is_reference=True)\n", - " reftype = wdi_core.WDString(value=source_type, prop_nr=\"P958\", is_reference=True)\n", - " return [refStatedIn, refRetrieved, refRetrieved2, refURL, reftype]" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [], - "source": [ - "def write_adrs(run_list):\n", - " fda_base_spl_url = 'https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid='\n", - " wd_revision_list = []\n", - " i=0\n", - " while i < len(run_list):\n", - " drug_qid = run_list.iloc[i]['drug_WDID']\n", - " disease_qid = run_list.iloc[i]['disease_WDID']\n", - " spl_drug_id = run_list.iloc[i]['Drug ID']\n", - " spl_url = fda_base_spl_url+spl_drug_id\n", - " source_type = run_list.iloc[i]['Section Display Name']\n", - " reference = create_reference(spl_url,source_type)\n", - "\n", - " treat_qualifier = wdi_core.WDItemID(value=\"Q179661\", prop_nr=\"P1013\", is_qualifier=True)\n", - " effect_qualifier = wdi_core.WDItemID(value=\"Q217690\", prop_nr=\"P1542\", is_qualifier=True)\n", - " \n", - " statement = [wdi_core.WDItemID(value=drug_qid, prop_nr=\"P5642\", qualifiers=[treat_qualifier, effect_qualifier],\n", - " references=[copy.deepcopy(reference)])]\n", - " wikidata_item = wdi_core.WDItemEngine(wd_item_id=disease_qid, data=statement, append_value=\"P5642\",\n", - " global_ref_mode='CUSTOM', ref_handler=update_retrieved_if_new_multiple_refs)\n", - " \n", - " wikidata_item.write(login, edit_summary='added ADR relationship from FDA SPLs') \n", - " wd_revision_list.append({'drug':drug_qid,'disease':disease_qid,'wd_revid':wikidata_item.lastrevid})\n", - " i=i+1\n", - "\n", - " wd_edit_results = pd.DataFrame(wd_revision_list)\n", - " return wd_edit_results" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Merge tables to convert drug names to WDID products\n", - "Filter out the entries that could not be mapped to Wikidata." - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "run started: 2019-11-19 08:45:52.561055\n" - ] - } - ], - "source": [ - "## Method\n", - "print(\"run started: \",datetime.now())\n", - "spl_adr_raw = read_csv(datasrc, delimiter=\"|\", header=0, dtype={'Index':int,'PT ID':str,'LLT ID':str}).fillna('None')\n", - "\n", - "## Pull QIDS using UMLS CUIS\n", - "wdid_umls_df_unique = disease_search(spl_adr_raw)\n", - "\n", - "## Merge the mapping table to the original table\n", - "spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left')\n", - "\n", - "## Pull QIDS using drug labels\n", - "#drug_list = ['NUCYNTA','Natazia','EDURANT'] ## Loop test\n", - "drug_list = spl_with_disease_wdids['Drug Name'].astype(str).str.lower().unique().tolist()\n", - "drug_wdid_df, drug_match_failed = drug_search(drug_list)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Determine if it we can match labels more efficiently\n", - "\n", - "The default script using the drug search function defined above uses Wikidata's label searching to determine the best match. This is slow, but it allows us to avoid dealing with a lot of string formatting issues which could arise if we try to do the mapping ourselves.\n", - "\n", - "To see if we can speed things up, we can pull instances of pharmaceutical products, medications, and chemicals and their labels and aliases and then try string matching. This method gives us MORE results than the previous results due to alias ambiguity from an actual pharmaceutical product vs it's active ingredient. For this reason, we'll use the slower, but more accurate method for the bot." - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " WDID alias label source\n", - "0 Q2034113 No alias Actrapid pharm\n", - "1 Q3494359 No alias Q3494359 pharm\n", - "2 Q5451187 No alias Fioricet pharm\n" - ] - } - ], - "source": [ - "sparqlQuery = 'SELECT ?item ?itemLabel ?alias WHERE {?item wdt:P31 wd:Q28885102. OPTIONAL {?item skos:altLabel ?alias FILTER (LANG (?alias) = \"en\").} SERVICE wikibase:label { bd:serviceParam wikibase:language \"[AUTO_LANGUAGE],en\". }}'\n", - "pharm_list = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", - "\n", - "pharm_label_list = []\n", - "\n", - "for i in range(len(pharm_list[\"results\"][\"bindings\"])):\n", - " wdid = pharm_list[\"results\"][\"bindings\"][i][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", - " label = pharm_list[\"results\"][\"bindings\"][i][\"itemLabel\"][\"value\"]\n", - " try:\n", - " alias = pharm_list[\"results\"][\"bindings\"][i][\"alias\"][\"value\"]\n", - " except:\n", - " alias = \"No alias\"\n", - " pharm_label_list.append({'WDID':wdid,'label':label,'alias':alias})\n", - "\n", - "pharm_alias_in_wd = pd.DataFrame(pharm_label_list)\n", - "pharm_alias_in_wd['source'] = \"pharm\"\n", - "print(pharm_alias_in_wd.head(n=2))" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " WDID alias label \\\n", - "0 Q285911 3-(alpha-L-rhamnopyranosyloxy)-1beta,5beta,11a... ouabain \n", - "1 Q285911 g-strophanthin ouabain \n", - "2 Q286846 Protonix pantoprazole \n", - "\n", - " source \n", - "0 med \n", - "1 med \n", - "2 med \n" - ] - } - ], - "source": [ - "sparqlQuery = 'SELECT ?item ?itemLabel ?alias WHERE {?item wdt:P31 wd:Q12140. OPTIONAL {?item skos:altLabel ?alias FILTER (LANG (?alias) = \"en\").} SERVICE wikibase:label { bd:serviceParam wikibase:language \"[AUTO_LANGUAGE],en\". }}'\n", - "med_list = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", - "\n", - "med_label_list = []\n", - "\n", - "for i in range(len(med_list[\"results\"][\"bindings\"])):\n", - " wdid = med_list[\"results\"][\"bindings\"][i][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", - " label = med_list[\"results\"][\"bindings\"][i][\"itemLabel\"][\"value\"]\n", - " try:\n", - " alias = med_list[\"results\"][\"bindings\"][i][\"alias\"][\"value\"]\n", - " except:\n", - " alias = \"No alias\"\n", - " med_label_list.append({'WDID':wdid,'label':label,'alias':alias})\n", - "\n", - "med_alias_in_wd = pd.DataFrame(med_label_list)\n", - "med_alias_in_wd['source'] = \"med\"\n", - "print(med_alias_in_wd.head(n=2))" - ] - }, - { - "cell_type": "code", - "execution_count": 32, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " WDID alias label \\\n", - "0 Q285911 3-(alpha-L-rhamnopyranosyloxy)-1beta,5beta,11a... ouabain \n", - "1 Q285911 g-strophanthin ouabain \n", - "2 Q286846 Protonix pantoprazole \n", - "\n", - " source \n", - "0 chem \n", - "1 chem \n", - "2 chem \n" - ] - } - ], - "source": [ - "sparqlQuery = 'SELECT ?item ?itemLabel ?alias WHERE {?item wdt:P31 wd:Q11173. OPTIONAL {?item skos:altLabel ?alias FILTER (LANG (?alias) = \"en\").} SERVICE wikibase:label { bd:serviceParam wikibase:language \"[AUTO_LANGUAGE],en\". }}'\n", - "chem_list = wdi_core.WDItemEngine.execute_sparql_query(sparqlQuery)\n", - "\n", - "chem_label_list = []\n", - "\n", - "for i in range(len(chem_list[\"results\"][\"bindings\"])):\n", - " wdid = chem_list[\"results\"][\"bindings\"][i][\"item\"][\"value\"].replace(\"http://www.wikidata.org/entity/\", \"\")\n", - " label = chem_list[\"results\"][\"bindings\"][i][\"itemLabel\"][\"value\"]\n", - " try:\n", - " alias = chem_list[\"results\"][\"bindings\"][i][\"alias\"][\"value\"]\n", - " except:\n", - " alias = \"No alias\"\n", - " chem_label_list.append({'WDID':wdid,'label':label,'alias':alias})\n", - "\n", - "chem_alias_in_wd = pd.DataFrame(med_label_list)\n", - "chem_alias_in_wd['source'] = \"chem\"\n", - "print(chem_alias_in_wd.head(n=2))" - ] - }, - { - "cell_type": "code", - "execution_count": 33, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "50441\n" - ] - } - ], - "source": [ - "alias_list = pd.concat((pharm_alias_in_wd,med_alias_in_wd,chem_alias_in_wd), ignore_index=True)\n", - "print(len(alias_list))\n", - "\n", - "potential_drugs = alias_list.loc[(alias_list['alias'].astype(str).str.lower().isin(drug_list)) | \n", - " (alias_list['label'].astype(str).str.lower().isin(drug_list))]\n", - "\n", - "print(len(potential_drugs))\n", - "print(len(drug_wdid_df))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Mapping check" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "run started: 2019-11-19 11:46:26.125699\n", - " Drug Name drug_WDID drug_wd_label instance_of\n", - "0 NUCYNTA Q47521917 Nucynta pharmaceutical product\n", - "1 EDURANT Q29005767 Edurant pharmaceutical product\n" - ] - } - ], - "source": [ - "with open('data/run_no.txt', 'r') as run_file:\n", - " for line in run_file:\n", - " run_number = int(line.strip())\n", - "\n", - "if run_number ==0:\n", - " datasrc = 'data/FinalReferenceStandard200Labels.csv'\n", - "else:\n", - " datasrc = exppath+'qid_missing_not_attempted.tsv'\n", - "\n", - "print(\"run started: \",datetime.now())\n", - "spl_adr_raw = read_csv(datasrc, delimiter=\"|\", header=0, dtype={'Index':int,'PT ID':str,'LLT ID':str}).fillna('None')\n", - "\n", - "## Pull QIDS using UMLS CUIS\n", - "wdid_umls_df_unique = disease_search(spl_adr_raw)\n", - "\n", - "## Merge the mapping table to the original table\n", - "spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left')\n", - "\n", - "## Pull QIDS using drug labels\n", - "if run_number == 0:\n", - " drug_list = spl_with_disease_wdids['Drug Name'].unique().tolist()\n", - "else:\n", - " drug_list = []\n", - " with open(exppath+'drug_match_failed.txt','r') as drug_match_failed:\n", - " for line in drug_match_failed:\n", - " drug_list.append(line+'\\n')\n", - "\n", - "drug_wdid_df, drug_match_failed = drug_search(drug_list)\n", - "\n", - "## Merge the results to generate the table of entries to write\n", - "df_to_write = spl_with_disease_wdids.merge(drug_wdid_df, on='Drug Name',how = 'left')\n", - "all_data_available = df_to_write.loc[(~df_to_write['disease_WDID'].isnull()) & \n", - " (~df_to_write['drug_WDID'].isnull())]\n", - "\n", - "not_attempted = df_to_write.loc[(df_to_write['disease_WDID'].isnull()) | \n", - " (df_to_write['drug_WDID'].isnull())]\n", - "\n", - "print(drug_wdid_df.head(n=2))" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "173\n", - "2\n", - "0\n" - ] - } - ], - "source": [ - "print(len(drug_wdid_df.loc[drug_wdid_df['instance_of']=='pharmaceutical product']))\n", - "print(len(drug_wdid_df.loc[drug_wdid_df['instance_of']=='medication']))\n", - "print(len(drug_wdid_df.loc[drug_wdid_df['instance_of']=='chemical']))\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "When label matching, the majority of matches were for pharmaceutical products (as expected), with a few matches to medications. None of the matches via label searches mapped to chemicals. For this reason, we'll remove that portion of the script (which will hopefully help speed it up)." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Bot for the run" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "run started: 2019-11-19 09:46:34.005333\n", - "run completed: 2019-11-19 09:50:19.880253\n" - ] - } - ], - "source": [ - "with open('data/run_no.txt', 'r') as run_file:\n", - " for line in run_file:\n", - " run_number = int(line.strip())\n", - "\n", - "if run_number ==0:\n", - " datasrc = 'data/FinalReferenceStandard200Labels.csv'\n", - "else:\n", - " datasrc = exppath+'qid_missing_not_attempted.tsv'\n", - "\n", - "print(\"run started: \",datetime.now())\n", - "spl_adr_raw = read_csv(datasrc, delimiter=\"|\", header=0, dtype={'Index':int,'PT ID':str,'LLT ID':str}).fillna('None')\n", - "\n", - "## Pull QIDS using UMLS CUIS\n", - "wdid_umls_df_unique = disease_search(spl_adr_raw)\n", - "\n", - "## Merge the mapping table to the original table\n", - "spl_with_disease_wdids = spl_adr_raw.merge(wdid_umls_df_unique, on='UMLS CUI', how='left')\n", - "\n", - "## Pull QIDS using drug labels\n", - "if run_number == 0:\n", - " drug_list = spl_with_disease_wdids['Drug Name'].unique().tolist()\n", - "else:\n", - " drug_list = []\n", - " with open(exppath+'drug_match_failed.txt','r') as drug_match_failed:\n", - " for line in drug_match_failed:\n", - " drug_list.append(line+'\\n')\n", - "\n", - "drug_wdid_df, drug_match_failed = drug_search(drug_list)\n", - "\n", - "## Merge the results to generate the table of entries to write\n", - "df_to_write = spl_with_disease_wdids.merge(drug_wdid_df, on='Drug Name',how = 'left')\n", - "all_data_available = df_to_write.loc[(~df_to_write['disease_WDID'].isnull()) & \n", - " (~df_to_write['drug_WDID'].isnull())]\n", - "\n", - "not_attempted = df_to_write.loc[(df_to_write['disease_WDID'].isnull()) | \n", - " (df_to_write['drug_WDID'].isnull())]\n", - "\n", - "## Make the writes\n", - "run_list = all_data_available[0:1] ## test run\n", - "#run_list = all_data_available\n", - "wd_edit_results = write_adrs(run_list)\n", - "\n", - "#### Export the results of the run\n", - "\n", - "## Results of the drug search\n", - "drug_wdid_df.to_csv(exppath+'drug_wdid_df.tsv',sep='\\t',header=True)\n", - "\n", - "with open(exppath+'drug_match_failed.txt','w') as store_it:\n", - " for eachfailure in drug_match_failed:\n", - " store_it.write(eachfailure+'\\n')\n", - "\n", - "## Results of the actual run\n", - "wd_edit_results.to_csv(exppath+'run_results.tsv',sep='\\t',header=True)\n", - "\n", - "## Failures to attempt in the future\n", - "not_attempted.to_csv(exppath+'qid_missing_not_attempted.tsv',sep='\\t',header=True)\n", - "\n", - "print(\"run completed: \",datetime.now())\n", - "run_number = run_number + 1\n", - "\n", - "with open('data/run_no.txt', 'w') as run_file:\n", - " run_file.write(str(run_number))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.6.2" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/scheduled_bots/SPL_ADR_standard_dataset/bot.py b/scheduled_bots/SPL_ADR_standard_dataset/bot.py index 8aea2d4..3d1698f 100644 --- a/scheduled_bots/SPL_ADR_standard_dataset/bot.py +++ b/scheduled_bots/SPL_ADR_standard_dataset/bot.py @@ -102,6 +102,20 @@ def write_adrs(run_list): ###### Main Script + +## Login for Scheduled bot +print("Logging in...") +try: + from scheduled_bots.local import WDUSER, WDPASS +except ImportError: + if "WDUSER" in os.environ and "WDPASS" in os.environ: + WDUSER = os.environ['WDUSER'] + WDPASS = os.environ['WDPASS'] + else: + raise ValueError("WDUSER and WDPASS must be specified in local.py or as environment variables") + + + #### Determine the source based on the run with open('data/run_no.txt', 'r') as run_file: for line in run_file: diff --git a/scheduled_bots/SPL_ADR_standard_dataset/results/drug_match_failed.txt b/scheduled_bots/SPL_ADR_standard_dataset/results/drug_match_failed.txt new file mode 100644 index 0000000..0cd583e --- /dev/null +++ b/scheduled_bots/SPL_ADR_standard_dataset/results/drug_match_failed.txt @@ -0,0 +1,25 @@ +Natazia +Lexiscan +Arcalyst +ERWINAZE +Gadavist +Xeomin +Tanzeum +EOVIST +PREPOPIK +Egrifta +Entereg +LumaSon +XIAFLEX +Breo +Dysport +ZIOPTAN +Voraxaze +Tradjenta +AdreView +Myalept +DUREZOL +Lumizyme +GRANIX +SURFAXIN +Kalbitor